From c21f20e7eb8fc564e354a846cc0b8d33fa2f688f Mon Sep 17 00:00:00 2001 From: Sascha Date: Fri, 5 Jun 2026 12:34:05 +0200 Subject: [PATCH] add: SemanticMediaWiki 6.0.1 as local extension --- .../SemanticMediaWiki/.github/FUNDING.yml | 12 + .../.github/ISSUE_TEMPLATE/add-tester.md | 10 + .../.github/ISSUE_TEMPLATE/bug_report.md | 24 + .../.github/ISSUE_TEMPLATE/feature_request.md | 10 + .../.github/ISSUE_TEMPLATE/make-a-release.md | 33 + .../.github/ISSUE_TEMPLATE/question.md | 10 + .../SemanticMediaWiki/.github/dependabot.yml | 8 + .../.github/workflows/main.yml | 83 + .../.github/workflows/tesa.yml | 44 + .../extensions/SemanticMediaWiki/.gitignore | 38 + .../extensions/SemanticMediaWiki/.gitmodules | 3 + .../SemanticMediaWiki/.jshintignore | 8 + .../extensions/SemanticMediaWiki/.jshintrc | 32 + .../extensions/SemanticMediaWiki/.phpcs.xml | 74 + .../extensions/SemanticMediaWiki/COPYING | 355 + .../SemanticMediaWiki/DefaultSettings.php | 13 + .../extensions/SemanticMediaWiki/Makefile | 29 + .../extensions/SemanticMediaWiki/README.md | 122 + .../extensions/SemanticMediaWiki/Tesa/LICENSE | 340 + .../SemanticMediaWiki/Tesa/README.md | 118 + .../SemanticMediaWiki/Tesa/phpunit.xml.dist | 27 + .../Tesa/src/CharacterExaminer.php | 61 + .../src/LanguageDetector/LanguageDetector.php | 22 + .../LanguageDetector/NullLanguageDetector.php | 24 + .../TextCatLanguageDetector.php | 64 + .../SemanticMediaWiki/Tesa/src/Normalizer.php | 97 + .../SemanticMediaWiki/Tesa/src/Sanitizer.php | 175 + .../Tesa/src/SanitizerFactory.php | 253 + .../ArrayStopwordAnalyzer.php | 45 + .../StopwordAnalyzer/CdbStopwordAnalyzer.php | 124 + .../StopwordAnalyzer/NullStopwordAnalyzer.php | 24 + .../Tesa/src/StopwordAnalyzer/README.md | 40 + .../src/StopwordAnalyzer/StopwordAnalyzer.php | 22 + .../Tesa/src/StopwordAnalyzer/data/cdb/de.cdb | Bin 0 -> 12724 bytes .../Tesa/src/StopwordAnalyzer/data/cdb/en.cdb | Bin 0 -> 32148 bytes .../Tesa/src/StopwordAnalyzer/data/cdb/es.cdb | Bin 0 -> 7487 bytes .../Tesa/src/StopwordAnalyzer/data/cdb/fr.cdb | Bin 0 -> 5435 bytes .../Tesa/src/StopwordAnalyzer/data/cdb/ja.cdb | Bin 0 -> 5472 bytes .../src/StopwordAnalyzer/data/cdb/pt-br.cdb | Bin 0 -> 5759 bytes .../Tesa/src/StopwordAnalyzer/data/cdb/pt.cdb | Bin 0 -> 6393 bytes .../Tesa/src/StopwordAnalyzer/data/cdb/zh.cdb | Bin 0 -> 18352 bytes .../Tesa/src/StopwordAnalyzer/data/de.json | 366 + .../Tesa/src/StopwordAnalyzer/data/en.json | 1009 ++ .../Tesa/src/StopwordAnalyzer/data/es.json | 185 + .../Tesa/src/StopwordAnalyzer/data/fr.json | 122 + .../Tesa/src/StopwordAnalyzer/data/ja.json | 115 + .../Tesa/src/StopwordAnalyzer/data/pt-br.json | 132 + .../Tesa/src/StopwordAnalyzer/data/pt.json | 151 + .../Tesa/src/StopwordAnalyzer/data/zh.json | 5 + .../Tesa/src/Synonymizer/NullSynonymizer.php | 24 + .../Tesa/src/Synonymizer/Synonymizer.php | 22 + .../CJKSimpleCharacterRegExTokenizer.php | 82 + .../src/Tokenizer/GenericRegExTokenizer.php | 85 + .../Tokenizer/IcuWordBoundaryTokenizer.php | 131 + .../Tokenizer/JaCompoundGroupTokenizer.php | 226 + .../Tokenizer/JaTinySegmenterTokenizer.php | 262 + .../Tesa/src/Tokenizer/NGramTokenizer.php | 127 + .../Tokenizer/PunctuationRegExTokenizer.php | 83 + .../Tesa/src/Tokenizer/Tokenizer.php | 46 + .../Tesa/src/Tokenizer/model/rwcp.model.json | 45 + .../Tesa/src/Transliterator.php | 303 + .../Tesa/tests/bootstrap.php | 15 + .../Fixtures/StopwordAnalyzer/invalid.json | 5 + .../StopwordAnalyzer/missingindex.json | 4 + .../CombinedNGramTokenizerTest.php | 107 + .../CombinedSanitizerTextStopwordTest.php | 101 + .../phpunit/Integration/JaTokenizerTest.php | 115 + .../phpunit/Unit/CharacterExaminerTest.php | 73 + .../NullLanguageDetectorTest.php | 34 + .../TextCatLanguageDetectorTest.php | 48 + .../tests/phpunit/Unit/NormalizerTest.php | 72 + .../phpunit/Unit/SanitizerFactoryTest.php | 176 + .../Tesa/tests/phpunit/Unit/SanitizerTest.php | 208 + .../ArrayStopwordAnalyzerTest.php | 62 + .../CdbStopwordAnalyzerTest.php | 162 + .../NullStopwordAnalyzerTest.php | 34 + .../Unit/Synonymizer/NullSynonymizerTest.php | 35 + .../CJKSimpleCharacterRegExTokenizerTest.php | 84 + .../Tokenizer/GenericRegExTokenizerTest.php | 91 + .../IcuWordBoundaryTokenizerTest.php | 169 + .../JaCompoundGroupTokenizerTest.php | 75 + .../JaTinySegmenterTokenizerTest.php | 189 + .../Unit/Tokenizer/NGramTokenizerTest.php | 214 + .../PunctuationRegExTokenizerTest.php | 113 + .../tests/phpunit/Unit/TransliteratorTest.php | 160 + .../extensions/SemanticMediaWiki/codecov.yml | 2 + .../SemanticMediaWiki/composer.json | 137 + .../data/config/db-primary-keys.php | 151 + .../data/config/developer.php | 62 + .../data/config/elastic-fileingest.php | 35 + .../SemanticMediaWiki/data/config/media.php | 17 + .../data/elastic/default-profile.json | 56 + .../data/elastic/smw-data-icu.json | 286 + .../data/elastic/smw-data-standard.json | 273 + .../data/elastic/smw-lookup.json | 15 + .../import/groups/predefined.properties.json | 76 + .../data/import/groups/schema.json | 23 + .../data/import/properties/foaf.homepage.txt | 4 + .../data/import/properties/foaf.knows.txt | 4 + .../data/import/properties/foaf.name.txt | 4 + .../import/properties/owl.differentFrom.txt | 4 + .../search/facetedsearch.defaultprofile.json | 44 + .../data/import/smw.groups.json | 28 + .../data/import/smw.search.json | 19 + .../data/import/smw.vocab.json | 88 + .../data/import/vocabularies/dcam.txt | 7 + .../data/import/vocabularies/dcmitype.txt | 15 + .../data/import/vocabularies/dct.txt | 81 + .../data/import/vocabularies/foaf.txt | 50 + .../data/import/vocabularies/owl.txt | 48 + .../data/import/vocabularies/rdfs.txt | 35 + .../data/import/vocabularies/schema.txt | 2885 ++++ .../data/import/vocabularies/skos.txt | 36 + .../schema/class-constraint-schema.v1.json | 134 + .../facetedsearch-profile-schema.v1.json | 465 + .../data/schema/link-format-schema.v1.json | 119 + .../schema/property-constraint-schema.v1.json | 115 + .../data/schema/property-group-schema.v1.json | 116 + .../schema/property-profile-schema.v1.json | 117 + .../data/schema/search-form-schema.v1.json | 34 + .../constraint/ConstraintErrorComment.ms | 1 + .../constraint/ConstraintErrorHighlighter.ms | 1 + .../constraint/ConstraintErrorLine.ms | 1 + .../constraint/constraint.error.top.line.ms | 1 + .../constraint/constraint.sticky.top.ms | 1 + .../indexer/CheckReplicationTaskComment.ms | 1 + .../CheckReplicationTaskHighlighter.ms | 1 + .../template/elastic/indexer/compare.list.ms | 1 + .../data/template/elastic/indexer/line.ms | 1 + .../data/template/elastic/indexer/text.ms | 1 + .../template/facetedsearch/container.empty.ms | 4 + .../data/template/facetedsearch/container.ms | 10 + .../data/template/facetedsearch/content.ms | 3 + .../template/facetedsearch/filter/cards.ms | 5 + .../template/facetedsearch/filter/facet.ms | 6 + .../facetedsearch/filter/item.checkbox.ms | 8 + .../filter/item.linked.button.ms | 8 + .../facetedsearch/filter/item.linked.ms | 1 + .../filter/item.unlink.button.ms | 11 + .../facetedsearch/filter/item.unlink.ms | 1 + .../filter/items.clear.button.ms | 1 + .../facetedsearch/filter/items.clear.ms | 1 + .../facetedsearch/filter/items.condition.ms | 1 + .../facetedsearch/filter/items.input.ms | 1 + .../template/facetedsearch/filter/items.ms | 1 + .../facetedsearch/filter/items.option.ms | 3 + .../data/template/facetedsearch/intro.ms | 1 + .../data/template/facetedsearch/options.ms | 12 + .../facetedsearch/search.extrafield.input.ms | 8 + .../facetedsearch/search.extrafields.ms | 6 + .../data/template/facetedsearch/search.ms | 27 + .../data/template/facetedsearch/sidebar.ms | 3 + .../data/template/indicator/bottom.comment.ms | 1 + .../data/template/indicator/bottom.marker.ms | 1 + .../data/template/indicator/bottom.sticky.ms | 1 + .../data/template/indicator/comment.ms | 1 + .../data/template/indicator/compare.list.ms | 1 + .../indicator/composite.highlighter.ms | 1 + .../data/template/indicator/composite.line.ms | 1 + .../indicator/composite.placeholder.ms | 1 + .../data/template/indicator/dot.label.ms | 1 + .../data/template/indicator/line.ms | 1 + .../data/template/indicator/tabpanel.ms | 1 + .../data/template/indicator/tabpanel.tab.ms | 1 + .../template/indicator/tabpanel.tabset.ms | 2 + .../data/template/indicator/text.ms | 1 + .../setupcheck/setupcheck.db.requirement.ms | 1 + .../setupcheck/setupcheck.errorbox.ms | 1 + .../data/template/setupcheck/setupcheck.json | 320 + .../data/template/setupcheck/setupcheck.ms | 142 + .../setupcheck/setupcheck.paragraph.ms | 1 + .../setupcheck/setupcheck.progress.ms | 1 + .../template/setupcheck/setupcheck.section.ms | 1 + .../template/setupcheck/setupcheck.version.ms | 1 + .../SemanticMediaWiki/docs/COMPATIBILITY.md | 437 + .../SemanticMediaWiki/docs/CONTRIBUTING.md | 56 + .../SemanticMediaWiki/docs/INSTALL.md | 121 + .../SemanticMediaWiki/docs/README.md | 20 + .../SemanticMediaWiki/docs/RELEASE-POLICY.md | 29 + .../docs/architecture/README.md | 125 + .../docs/architecture/changing.tableschema.md | 28 + .../docs/architecture/coding.conventions.md | 69 + .../docs/architecture/database.schema.md | 64 + .../docs/architecture/datamodel.dataitem.md | 51 + .../docs/architecture/datamodel.datatype.md | 53 + .../docs/architecture/datamodel.datavalue.md | 34 + .../docs/architecture/datamodel.md | 50 + .../architecture/datamodel.semanticdata.md | 22 + .../docs/architecture/developing.extension.md | 157 + .../docs/architecture/extending.constraint.md | 27 + .../extending.declarationexaminer.md | 8 + .../extending.propertyannotator.md | 10 + .../docs/architecture/managing.hooks.md | 68 + .../docs/architecture/querying.data.md | 43 + .../docs/architecture/storing.annotations.md | 17 + .../architecture/writing.resultprinter.md | 245 + .../SemanticMediaWiki/docs/examples/README.md | 8 + .../docs/examples/approve.update.md | 5 + .../examples/boilerplate.fileexportprinter.md | 63 + .../boilerplate.resultprinter.example.md | 376 + .../examples/boilerplate.resultprinter.md | 45 + .../docs/examples/constraint.schema.md | 103 + .../examples/hook.fileupload.beforeupdate.md | 28 + .../examples/hook.pagecontentsavecomplete.md | 101 + ...ook.parser.afterlinksprocessingcomplete.md | 84 + .../examples/hook.property.initproperties.md | 58 + ...re.installer.beforecreatetablescomplete.md | 54 + ...ok.store.afterqueryresultlookupcomplete.md | 70 + .../docs/examples/match.property.values.md | 63 + .../docs/examples/phpunit.test.property.md | 69 + .../docs/examples/query.description.md | 40 + .../query.someproperty.of.type.number.md | 71 + .../docs/examples/register.core.datatype.md | 63 + .../examples/register.custom.constraint.md | 216 + .../docs/examples/register.custom.datatype.md | 63 + .../docs/examples/semanticdata.access.md | 90 + .../docs/examples/store.subobject.md | 73 + .../docs/releasenotes/README.md | 97 + .../docs/releasenotes/RELEASE-NOTES-1.6.1.md | 10 + .../docs/releasenotes/RELEASE-NOTES-1.6.md | 50 + .../docs/releasenotes/RELEASE-NOTES-1.7.1.md | 24 + .../docs/releasenotes/RELEASE-NOTES-1.7.md | 56 + .../docs/releasenotes/RELEASE-NOTES-1.8.md | 79 + .../releasenotes/RELEASE-NOTES-1.9.0.1.md | 19 + .../releasenotes/RELEASE-NOTES-1.9.0.2.md | 11 + .../releasenotes/RELEASE-NOTES-1.9.1.1.md | 11 + .../docs/releasenotes/RELEASE-NOTES-1.9.1.md | 44 + .../docs/releasenotes/RELEASE-NOTES-1.9.2.md | 37 + .../docs/releasenotes/RELEASE-NOTES-1.9.md | 142 + .../docs/releasenotes/RELEASE-NOTES-2.0.md | 127 + .../docs/releasenotes/RELEASE-NOTES-2.1.0.md | 92 + .../docs/releasenotes/RELEASE-NOTES-2.1.1.md | 9 + .../docs/releasenotes/RELEASE-NOTES-2.1.2.md | 9 + .../docs/releasenotes/RELEASE-NOTES-2.1.3.md | 7 + .../docs/releasenotes/RELEASE-NOTES-2.2.0.md | 64 + .../docs/releasenotes/RELEASE-NOTES-2.2.1.md | 12 + .../docs/releasenotes/RELEASE-NOTES-2.2.2.md | 8 + .../docs/releasenotes/RELEASE-NOTES-2.2.3.md | 7 + .../docs/releasenotes/RELEASE-NOTES-2.3.0.md | 133 + .../docs/releasenotes/RELEASE-NOTES-2.3.1.md | 12 + .../docs/releasenotes/RELEASE-NOTES-2.4.0.md | 200 + .../docs/releasenotes/RELEASE-NOTES-2.4.1.md | 14 + .../docs/releasenotes/RELEASE-NOTES-2.4.2.md | 13 + .../docs/releasenotes/RELEASE-NOTES-2.4.3.md | 9 + .../docs/releasenotes/RELEASE-NOTES-2.4.4.md | 8 + .../docs/releasenotes/RELEASE-NOTES-2.4.5.md | 11 + .../docs/releasenotes/RELEASE-NOTES-2.4.6.md | 7 + .../docs/releasenotes/RELEASE-NOTES-2.5.0.md | 209 + .../docs/releasenotes/RELEASE-NOTES-2.5.1.md | 51 + .../docs/releasenotes/RELEASE-NOTES-2.5.2.md | 22 + .../docs/releasenotes/RELEASE-NOTES-2.5.3.md | 35 + .../docs/releasenotes/RELEASE-NOTES-2.5.4.md | 15 + .../docs/releasenotes/RELEASE-NOTES-2.5.5.md | 11 + .../docs/releasenotes/RELEASE-NOTES-2.5.6.md | 10 + .../docs/releasenotes/RELEASE-NOTES-2.5.7.md | 11 + .../docs/releasenotes/RELEASE-NOTES-2.5.8.md | 13 + .../docs/releasenotes/RELEASE-NOTES-3.0.0.md | 375 + .../docs/releasenotes/RELEASE-NOTES-3.0.1.md | 36 + .../docs/releasenotes/RELEASE-NOTES-3.0.2.md | 24 + .../docs/releasenotes/RELEASE-NOTES-3.1.0.md | 233 + .../docs/releasenotes/RELEASE-NOTES-3.1.1.md | 13 + .../docs/releasenotes/RELEASE-NOTES-3.1.2.md | 16 + .../docs/releasenotes/RELEASE-NOTES-3.1.3.md | 21 + .../docs/releasenotes/RELEASE-NOTES-3.1.4.md | 15 + .../docs/releasenotes/RELEASE-NOTES-3.1.5.md | 19 + .../docs/releasenotes/RELEASE-NOTES-3.1.6.md | 18 + .../docs/releasenotes/RELEASE-NOTES-3.2.0.md | 87 + .../docs/releasenotes/RELEASE-NOTES-3.2.1.md | 15 + .../docs/releasenotes/RELEASE-NOTES-3.2.2.md | 12 + .../docs/releasenotes/RELEASE-NOTES-3.2.3.md | 16 + .../docs/releasenotes/RELEASE-NOTES-4.0.0.md | 55 + .../docs/releasenotes/RELEASE-NOTES-4.0.1.md | 26 + .../docs/releasenotes/RELEASE-NOTES-4.0.2.md | 40 + .../docs/releasenotes/RELEASE-NOTES-4.1.0.md | 76 + .../docs/releasenotes/RELEASE-NOTES-4.1.1.md | 64 + .../docs/releasenotes/RELEASE-NOTES-4.1.2.md | 36 + .../docs/releasenotes/RELEASE-NOTES-4.1.3.md | 99 + .../docs/releasenotes/RELEASE-NOTES-4.2.0.md | 75 + .../docs/releasenotes/RELEASE-NOTES-5.0.0.md | 176 + .../docs/releasenotes/RELEASE-NOTES-5.0.1.md | 31 + .../docs/releasenotes/RELEASE-NOTES-5.0.2.md | 29 + .../docs/releasenotes/RELEASE-NOTES-5.1.0.md | 38 + .../docs/releasenotes/RELEASE-NOTES-6.0.0.md | 43 + .../docs/releasenotes/RELEASE-NOTES-6.0.1.md | 32 + .../docs/releasenotes/RELEASE-NOTES-old.md | 723 + .../docs/technical/README.md | 34 + .../SemanticMediaWiki/docs/technical/api.md | 175 + .../docs/technical/doc.serializers.md | 133 + .../docs/technical/doxygen.php | 196 + .../docs/technical/glossary.md | 13 + .../SemanticMediaWiki/docs/technical/hooks.md | 128 + .../hooks/hook.admin.registertaskhandlers.md | 28 + .../hook.browse.afterdatalookupcomplete.md | 18 + ...e.afterincomingpropertieslookupcomplete.md | 23 + ...incomingpropertyvaluesfurtherlinkcreate.md | 24 + .../hooks/hook.constraint.initconstraints.md | 25 + .../hooks/hook.datatype.inittypes.md | 24 + .../hook.event.registereventlisteners.md | 19 + .../hook.exporter.controller.addexpdata.md | 18 + .../hooks/hook.fileupload.beforeupdate.md | 17 + .../technical/hooks/hook.getpreferences.md | 17 + ...ermissions.beforeinitializationcomplete.md | 24 + ...ok.job.afterupdatedispatcherjobcomplete.md | 20 + ...istener.registerpropertychangelisteners.md | 71 + ...ance.afterupdateentitycollationcomplete.md | 25 + ...ook.parser.afterlinksprocessingcomplete.md | 26 + .../hook.parser.beforemagicwordsfinder.md | 20 + ...rseraftertidypropertyannotationcomplete.md | 24 + .../hooks/hook.property.initproperties.md | 22 + ...hook.resultformat.overridedefaultformat.md | 16 + .../hooks/hook.revisionguard.changefile.md | 24 + .../hook.revisionguard.changerevision.md | 26 + .../hook.revisionguard.changerevisionid.md | 23 + .../hook.revisionguard.isapprovedrevision.md | 23 + .../hooks/hook.schema.registerschematypes.md | 27 + ...k.settings.beforeinitializationcomplete.md | 19 + .../hook.setup.afterinitializationcomplete.md | 23 + ...k.sqlstore.addcustomfixedpropertytables.md | 20 + .../hook.sqlstore.afterdataupdatecomplete.md | 20 + ...ook.sqlstore.afterdeletesubjectcomplete.md | 15 + ...hook.sqlstore.beforechangetitlecomplete.md | 15 + ...ok.sqlstore.beforedatarebuildjobinserts.md | 17 + .../hook.sqlstore.beforedataupdatecomplete.md | 18 + ...ok.sqlstore.beforedeletesubjectcomplete.md | 15 + ...sqlstore.entityreferencecleanupcomplete.md | 22 + ...ore.installer.aftercreatetablescomplete.md | 26 + ...store.installer.afterdroptablescomplete.md | 26 + ...re.installer.beforecreatetablescomplete.md | 25 + .../hook.store.afterdataupdatecomplete.md | 18 + ...ok.store.afterqueryresultlookupcomplete.md | 18 + .../hook.store.beforedataupdatecomplete.md | 18 + ...k.store.beforequeryresultlookupcomplete.md | 18 + .../jobs/job.smw.elasticFileIngest.md | 10 + .../jobs/job.smw.entityIdDisposer.md | 27 + .../docs/technical/jsduck.categories.json | 83 + .../docs/technical/jsduck.json | 11 + .../docs/technical/migration-guide-3.0.md | 71 + .../SemanticMediaWiki/extension.json | 130 + .../SemanticMediaWiki/i18n/ace.json | 11 + .../SemanticMediaWiki/i18n/ady-cyrl.json | 12 + .../SemanticMediaWiki/i18n/aeb-latn.json | 9 + .../extensions/SemanticMediaWiki/i18n/af.json | 127 + .../SemanticMediaWiki/i18n/aln.json | 48 + .../extensions/SemanticMediaWiki/i18n/am.json | 13 + .../extensions/SemanticMediaWiki/i18n/an.json | 17 + .../SemanticMediaWiki/i18n/ang.json | 20 + .../SemanticMediaWiki/i18n/anp.json | 12 + .../extensions/SemanticMediaWiki/i18n/ar.json | 1033 ++ .../SemanticMediaWiki/i18n/arc.json | 53 + .../SemanticMediaWiki/i18n/arq.json | 11 + .../SemanticMediaWiki/i18n/ary.json | 22 + .../SemanticMediaWiki/i18n/arz.json | 189 + .../extensions/SemanticMediaWiki/i18n/as.json | 19 + .../SemanticMediaWiki/i18n/ast.json | 653 + .../SemanticMediaWiki/i18n/avk.json | 12 + .../SemanticMediaWiki/i18n/awa.json | 14 + .../extensions/SemanticMediaWiki/i18n/az.json | 41 + .../SemanticMediaWiki/i18n/azb.json | 17 + .../extensions/SemanticMediaWiki/i18n/ba.json | 22 + .../SemanticMediaWiki/i18n/bar.json | 14 + .../SemanticMediaWiki/i18n/bcc.json | 17 + .../SemanticMediaWiki/i18n/bcl.json | 21 + .../SemanticMediaWiki/i18n/be-tarask.json | 435 + .../extensions/SemanticMediaWiki/i18n/be.json | 39 + .../extensions/SemanticMediaWiki/i18n/bg.json | 173 + .../SemanticMediaWiki/i18n/bgn.json | 11 + .../SemanticMediaWiki/i18n/bho.json | 12 + .../SemanticMediaWiki/i18n/bjn.json | 15 + .../extensions/SemanticMediaWiki/i18n/bn.json | 219 + .../extensions/SemanticMediaWiki/i18n/br.json | 251 + .../extensions/SemanticMediaWiki/i18n/bs.json | 81 + .../SemanticMediaWiki/i18n/bug.json | 11 + .../extensions/SemanticMediaWiki/i18n/ca.json | 877 + .../extensions/SemanticMediaWiki/i18n/ce.json | 1106 ++ .../extensions/SemanticMediaWiki/i18n/ch.json | 12 + .../SemanticMediaWiki/i18n/ckb.json | 54 + .../SemanticMediaWiki/i18n/crh-cyrl.json | 12 + .../SemanticMediaWiki/i18n/crh-latn.json | 22 + .../extensions/SemanticMediaWiki/i18n/cs.json | 396 + .../extensions/SemanticMediaWiki/i18n/cu.json | 10 + .../extensions/SemanticMediaWiki/i18n/cv.json | 16 + .../extensions/SemanticMediaWiki/i18n/cy.json | 30 + .../extensions/SemanticMediaWiki/i18n/da.json | 235 + .../SemanticMediaWiki/i18n/de-ch.json | 20 + .../SemanticMediaWiki/i18n/de-formal.json | 11 + .../extensions/SemanticMediaWiki/i18n/de.json | 1149 ++ .../SemanticMediaWiki/i18n/din.json | 10 + .../SemanticMediaWiki/i18n/diq.json | 192 + .../SemanticMediaWiki/i18n/dsb.json | 270 + .../SemanticMediaWiki/i18n/dty.json | 25 + .../extensions/SemanticMediaWiki/i18n/ee.json | 12 + .../extensions/SemanticMediaWiki/i18n/el.json | 717 + .../SemanticMediaWiki/i18n/en-gb.json | 17 + .../extensions/SemanticMediaWiki/i18n/en.json | 1143 ++ .../extensions/SemanticMediaWiki/i18n/eo.json | 183 + .../SemanticMediaWiki/i18n/es-formal.json | 61 + .../extensions/SemanticMediaWiki/i18n/es.json | 890 + .../extensions/SemanticMediaWiki/i18n/et.json | 54 + .../extensions/SemanticMediaWiki/i18n/eu.json | 327 + .../SemanticMediaWiki/i18n/ext.json | 11 + .../i18n/extra/SemanticMediaWiki.alias.php | 847 + .../i18n/extra/SemanticMediaWiki.magic.php | 413 + .../SemanticMediaWiki/i18n/extra/ar.json | 189 + .../SemanticMediaWiki/i18n/extra/arz.json | 189 + .../SemanticMediaWiki/i18n/extra/ca.json | 200 + .../SemanticMediaWiki/i18n/extra/de-at.json | 7 + .../SemanticMediaWiki/i18n/extra/de-ch.json | 7 + .../i18n/extra/de-formal.json | 7 + .../SemanticMediaWiki/i18n/extra/de.json | 270 + .../SemanticMediaWiki/i18n/extra/en.json | 316 + .../SemanticMediaWiki/i18n/extra/es.json | 202 + .../SemanticMediaWiki/i18n/extra/fi.json | 183 + .../SemanticMediaWiki/i18n/extra/fr.json | 189 + .../SemanticMediaWiki/i18n/extra/he.json | 188 + .../SemanticMediaWiki/i18n/extra/hu.json | 181 + .../SemanticMediaWiki/i18n/extra/id.json | 187 + .../SemanticMediaWiki/i18n/extra/it.json | 191 + .../SemanticMediaWiki/i18n/extra/ja.json | 44 + .../SemanticMediaWiki/i18n/extra/ko.json | 129 + .../SemanticMediaWiki/i18n/extra/nb.json | 201 + .../SemanticMediaWiki/i18n/extra/nl.json | 193 + .../SemanticMediaWiki/i18n/extra/pl.json | 235 + .../SemanticMediaWiki/i18n/extra/pt-br.json | 236 + .../SemanticMediaWiki/i18n/extra/pt.json | 209 + .../SemanticMediaWiki/i18n/extra/ru.json | 192 + .../SemanticMediaWiki/i18n/extra/sk.json | 188 + .../SemanticMediaWiki/i18n/extra/uk.json | 226 + .../SemanticMediaWiki/i18n/extra/zh-cn.json | 267 + .../SemanticMediaWiki/i18n/extra/zh-hans.json | 7 + .../SemanticMediaWiki/i18n/extra/zh-hant.json | 7 + .../SemanticMediaWiki/i18n/extra/zh-tw.json | 192 + .../SemanticMediaWiki/i18n/extra/zh.json | 7 + .../extensions/SemanticMediaWiki/i18n/fa.json | 475 + .../extensions/SemanticMediaWiki/i18n/fi.json | 407 + .../extensions/SemanticMediaWiki/i18n/fo.json | 13 + .../extensions/SemanticMediaWiki/i18n/fr.json | 1165 ++ .../SemanticMediaWiki/i18n/frp.json | 112 + .../SemanticMediaWiki/i18n/frr.json | 15 + .../SemanticMediaWiki/i18n/fur.json | 12 + .../extensions/SemanticMediaWiki/i18n/fy.json | 76 + .../extensions/SemanticMediaWiki/i18n/ga.json | 31 + .../SemanticMediaWiki/i18n/gan-hans.json | 9 + .../SemanticMediaWiki/i18n/gan-hant.json | 9 + .../extensions/SemanticMediaWiki/i18n/gd.json | 12 + .../extensions/SemanticMediaWiki/i18n/gl.json | 776 + .../SemanticMediaWiki/i18n/glk.json | 11 + .../SemanticMediaWiki/i18n/gom-deva.json | 11 + .../SemanticMediaWiki/i18n/gom-latn.json | 11 + .../SemanticMediaWiki/i18n/grc.json | 33 + .../SemanticMediaWiki/i18n/gsw.json | 190 + .../extensions/SemanticMediaWiki/i18n/gu.json | 12 + .../SemanticMediaWiki/i18n/hak.json | 11 + .../SemanticMediaWiki/i18n/haw.json | 10 + .../extensions/SemanticMediaWiki/i18n/he.json | 1123 ++ .../extensions/SemanticMediaWiki/i18n/hi.json | 280 + .../SemanticMediaWiki/i18n/hif-latn.json | 13 + .../SemanticMediaWiki/i18n/hil.json | 14 + .../extensions/SemanticMediaWiki/i18n/hr.json | 235 + .../SemanticMediaWiki/i18n/hrx.json | 13 + .../SemanticMediaWiki/i18n/hsb.json | 291 + .../extensions/SemanticMediaWiki/i18n/ht.json | 32 + .../SemanticMediaWiki/i18n/hu-formal.json | 12 + .../extensions/SemanticMediaWiki/i18n/hu.json | 249 + .../extensions/SemanticMediaWiki/i18n/hy.json | 52 + .../extensions/SemanticMediaWiki/i18n/ia.json | 1108 ++ .../extensions/SemanticMediaWiki/i18n/id.json | 271 + .../extensions/SemanticMediaWiki/i18n/ig.json | 24 + .../SemanticMediaWiki/i18n/ilo.json | 93 + .../extensions/SemanticMediaWiki/i18n/io.json | 59 + .../extensions/SemanticMediaWiki/i18n/is.json | 30 + .../extensions/SemanticMediaWiki/i18n/it.json | 510 + .../extensions/SemanticMediaWiki/i18n/ja.json | 609 + .../SemanticMediaWiki/i18n/jam.json | 10 + .../SemanticMediaWiki/i18n/jbo.json | 11 + .../SemanticMediaWiki/i18n/jut.json | 10 + .../extensions/SemanticMediaWiki/i18n/jv.json | 105 + .../extensions/SemanticMediaWiki/i18n/ka.json | 95 + .../SemanticMediaWiki/i18n/kab.json | 69 + .../SemanticMediaWiki/i18n/khw.json | 10 + .../SemanticMediaWiki/i18n/kiu.json | 13 + .../SemanticMediaWiki/i18n/kk-arab.json | 9 + .../SemanticMediaWiki/i18n/kk-cyrl.json | 15 + .../SemanticMediaWiki/i18n/kk-latn.json | 9 + .../extensions/SemanticMediaWiki/i18n/km.json | 88 + .../extensions/SemanticMediaWiki/i18n/kn.json | 20 + .../extensions/SemanticMediaWiki/i18n/ko.json | 709 + .../SemanticMediaWiki/i18n/krc.json | 17 + .../SemanticMediaWiki/i18n/kri.json | 13 + .../SemanticMediaWiki/i18n/krj.json | 10 + .../SemanticMediaWiki/i18n/ksh.json | 237 + .../SemanticMediaWiki/i18n/ku-latn.json | 48 + .../extensions/SemanticMediaWiki/i18n/kw.json | 11 + .../extensions/SemanticMediaWiki/i18n/ky.json | 57 + .../extensions/SemanticMediaWiki/i18n/la.json | 12 + .../SemanticMediaWiki/i18n/lad.json | 12 + .../extensions/SemanticMediaWiki/i18n/lb.json | 405 + .../SemanticMediaWiki/i18n/lez.json | 12 + .../extensions/SemanticMediaWiki/i18n/li.json | 50 + .../SemanticMediaWiki/i18n/lij.json | 14 + .../SemanticMediaWiki/i18n/lki.json | 18 + .../i18n/local/maintenance.i18n.json | 32 + .../i18n/local/setupcheck.i18n.json | 123 + .../SemanticMediaWiki/i18n/lrc.json | 13 + .../extensions/SemanticMediaWiki/i18n/lt.json | 208 + .../SemanticMediaWiki/i18n/luz.json | 10 + .../extensions/SemanticMediaWiki/i18n/lv.json | 61 + .../SemanticMediaWiki/i18n/lzh.json | 12 + .../SemanticMediaWiki/i18n/mai.json | 118 + .../SemanticMediaWiki/i18n/mdf.json | 13 + .../extensions/SemanticMediaWiki/i18n/mg.json | 53 + .../SemanticMediaWiki/i18n/min.json | 18 + .../extensions/SemanticMediaWiki/i18n/mk.json | 547 + .../extensions/SemanticMediaWiki/i18n/ml.json | 42 + .../extensions/SemanticMediaWiki/i18n/mn.json | 21 + .../extensions/SemanticMediaWiki/i18n/mr.json | 134 + .../extensions/SemanticMediaWiki/i18n/ms.json | 108 + .../extensions/SemanticMediaWiki/i18n/mt.json | 24 + .../SemanticMediaWiki/i18n/mwl.json | 15 + .../extensions/SemanticMediaWiki/i18n/my.json | 127 + .../SemanticMediaWiki/i18n/myv.json | 34 + .../SemanticMediaWiki/i18n/mzn.json | 10 + .../SemanticMediaWiki/i18n/nah.json | 22 + .../SemanticMediaWiki/i18n/nap.json | 13 + .../extensions/SemanticMediaWiki/i18n/nb.json | 1103 ++ .../SemanticMediaWiki/i18n/nds-nl.json | 17 + .../SemanticMediaWiki/i18n/nds.json | 32 + .../extensions/SemanticMediaWiki/i18n/ne.json | 67 + .../SemanticMediaWiki/i18n/niu.json | 8 + .../SemanticMediaWiki/i18n/nl-informal.json | 8 + .../extensions/SemanticMediaWiki/i18n/nl.json | 1137 ++ .../extensions/SemanticMediaWiki/i18n/nn.json | 180 + .../extensions/SemanticMediaWiki/i18n/oc.json | 229 + .../SemanticMediaWiki/i18n/olo.json | 11 + .../extensions/SemanticMediaWiki/i18n/om.json | 12 + .../extensions/SemanticMediaWiki/i18n/or.json | 69 + .../extensions/SemanticMediaWiki/i18n/os.json | 11 + .../extensions/SemanticMediaWiki/i18n/pa.json | 83 + .../SemanticMediaWiki/i18n/pag.json | 10 + .../SemanticMediaWiki/i18n/pam.json | 11 + .../SemanticMediaWiki/i18n/pdc.json | 22 + .../SemanticMediaWiki/i18n/pfl.json | 13 + .../extensions/SemanticMediaWiki/i18n/pl.json | 622 + .../SemanticMediaWiki/i18n/pms.json | 241 + .../SemanticMediaWiki/i18n/pnb.json | 29 + .../SemanticMediaWiki/i18n/prg.json | 13 + .../extensions/SemanticMediaWiki/i18n/ps.json | 53 + .../SemanticMediaWiki/i18n/pt-br.json | 1143 ++ .../extensions/SemanticMediaWiki/i18n/pt.json | 1110 ++ .../SemanticMediaWiki/i18n/qqq.json | 1069 ++ .../extensions/SemanticMediaWiki/i18n/qu.json | 14 + .../SemanticMediaWiki/i18n/rif.json | 11 + .../extensions/SemanticMediaWiki/i18n/rm.json | 12 + .../extensions/SemanticMediaWiki/i18n/ro.json | 153 + .../SemanticMediaWiki/i18n/roa-tara.json | 252 + .../extensions/SemanticMediaWiki/i18n/ru.json | 925 ++ .../SemanticMediaWiki/i18n/rue.json | 19 + .../extensions/SemanticMediaWiki/i18n/sa.json | 16 + .../SemanticMediaWiki/i18n/sah.json | 16 + .../extensions/SemanticMediaWiki/i18n/sc.json | 13 + .../SemanticMediaWiki/i18n/scn.json | 82 + .../SemanticMediaWiki/i18n/sco.json | 19 + .../extensions/SemanticMediaWiki/i18n/sd.json | 71 + .../SemanticMediaWiki/i18n/sdc.json | 13 + .../SemanticMediaWiki/i18n/sgs.json | 14 + .../SemanticMediaWiki/i18n/shn.json | 16 + .../extensions/SemanticMediaWiki/i18n/si.json | 154 + .../extensions/SemanticMediaWiki/i18n/sk.json | 184 + .../extensions/SemanticMediaWiki/i18n/sl.json | 1131 ++ .../SemanticMediaWiki/i18n/sli.json | 12 + .../extensions/SemanticMediaWiki/i18n/sq.json | 27 + .../SemanticMediaWiki/i18n/sr-ec.json | 375 + .../SemanticMediaWiki/i18n/sr-el.json | 366 + .../SemanticMediaWiki/i18n/stq.json | 11 + .../extensions/SemanticMediaWiki/i18n/su.json | 41 + .../extensions/SemanticMediaWiki/i18n/sv.json | 673 + .../extensions/SemanticMediaWiki/i18n/sw.json | 19 + .../SemanticMediaWiki/i18n/szl.json | 14 + .../extensions/SemanticMediaWiki/i18n/ta.json | 72 + .../SemanticMediaWiki/i18n/tcy.json | 53 + .../extensions/SemanticMediaWiki/i18n/te.json | 162 + .../SemanticMediaWiki/i18n/tet.json | 13 + .../SemanticMediaWiki/i18n/tg-cyrl.json | 63 + .../SemanticMediaWiki/i18n/tg-latn.json | 11 + .../extensions/SemanticMediaWiki/i18n/th.json | 83 + .../extensions/SemanticMediaWiki/i18n/tk.json | 16 + .../extensions/SemanticMediaWiki/i18n/tl.json | 245 + .../SemanticMediaWiki/i18n/tly.json | 24 + .../extensions/SemanticMediaWiki/i18n/tr.json | 1105 ++ .../SemanticMediaWiki/i18n/tt-cyrl.json | 41 + .../SemanticMediaWiki/i18n/tt-latn.json | 13 + .../SemanticMediaWiki/i18n/tyv.json | 13 + .../SemanticMediaWiki/i18n/ug-arab.json | 25 + .../SemanticMediaWiki/i18n/ug-latn.json | 10 + .../extensions/SemanticMediaWiki/i18n/uk.json | 1112 ++ .../extensions/SemanticMediaWiki/i18n/ur.json | 53 + .../extensions/SemanticMediaWiki/i18n/uz.json | 24 + .../SemanticMediaWiki/i18n/vec.json | 15 + .../SemanticMediaWiki/i18n/vep.json | 33 + .../extensions/SemanticMediaWiki/i18n/vi.json | 235 + .../extensions/SemanticMediaWiki/i18n/vo.json | 84 + .../SemanticMediaWiki/i18n/vro.json | 12 + .../extensions/SemanticMediaWiki/i18n/wa.json | 15 + .../SemanticMediaWiki/i18n/war.json | 12 + .../extensions/SemanticMediaWiki/i18n/wo.json | 11 + .../SemanticMediaWiki/i18n/xal.json | 12 + .../SemanticMediaWiki/i18n/xmf.json | 16 + .../extensions/SemanticMediaWiki/i18n/yi.json | 43 + .../extensions/SemanticMediaWiki/i18n/yo.json | 12 + .../SemanticMediaWiki/i18n/zh-hans.json | 1173 ++ .../SemanticMediaWiki/i18n/zh-hant.json | 1148 ++ .../includes/ContentParser.php | 219 + .../includes/DefaultSettings.php | 2547 +++ .../includes/GlobalFunctions.php | 239 + .../includes/Highlighter.php | 393 + .../includes/QueryPrinterFactory.php | 193 + .../includes/RecurringEvents.php | 375 + .../includes/SMW_Infolink.php | 662 + .../includes/SMW_Outputs.php | 225 + .../includes/SMW_PageLister.php | 359 + .../includes/SMW_PageSchemas.php | 378 + .../includes/SemanticData.php | 964 ++ .../includes/SemanticMediaWiki.php | 552 + .../SemanticMediaWiki/includes/Subobject.php | 184 + .../includes/dataitems/DIConcept.php | 235 + .../includes/dataitems/SMW_DI_Blob.php | 77 + .../includes/dataitems/SMW_DI_Bool.php | 69 + .../includes/dataitems/SMW_DI_Container.php | 140 + .../includes/dataitems/SMW_DI_Error.php | 114 + .../includes/dataitems/SMW_DI_GeoCoord.php | 189 + .../includes/dataitems/SMW_DI_Number.php | 74 + .../includes/dataitems/SMW_DI_Property.php | 584 + .../includes/dataitems/SMW_DI_Time.php | 634 + .../includes/dataitems/SMW_DI_URI.php | 177 + .../includes/dataitems/SMW_DI_WikiPage.php | 375 + .../includes/dataitems/SMW_DataItem.php | 283 + .../includes/datavalues/SMW_DV_Concept.php | 95 + .../includes/datavalues/SMW_DV_Error.php | 79 + .../includes/datavalues/SMW_DV_Number.php | 589 + .../datavalues/SMW_DV_PropertyList.php | 161 + .../includes/datavalues/SMW_DV_Quantity.php | 206 + .../includes/datavalues/SMW_DV_Record.php | 331 + .../includes/datavalues/SMW_DV_Time.php | 683 + .../includes/datavalues/SMW_DV_URI.php | 373 + .../includes/datavalues/SMW_DV_WikiPage.php | 791 + .../includes/datavalues/SMW_DataValue.php | 988 ++ .../includes/export/SMW_Exp_Data.php | 329 + .../includes/export/SMW_ExportController.php | 693 + .../includes/export/SMW_Exporter.php | 699 + .../includes/formatters/MessageFormatter.php | 296 + .../includes/query/SMW_Query.php | 561 + .../includes/query/SMW_QueryProcessor.php | 489 + .../querypages/PropertiesQueryPage.php | 281 + .../includes/querypages/QueryPage.php | 257 + .../querypages/UnusedPropertiesQueryPage.php | 197 + .../querypages/WantedPropertiesQueryPage.php | 189 + .../specials/SMW_SpecialOWLExport.php | 217 + .../includes/specials/SMW_SpecialTypes.php | 456 + .../includes/specials/SpecialConcepts.php | 182 + .../includes/specials/SpecialPage.php | 95 + .../includes/specials/SpecialProperties.php | 66 + .../specials/SpecialUnusedProperties.php | 68 + .../specials/SpecialWantedProperties.php | 74 + .../SemanticMediaWiki/maintenance/README.md | 173 + .../maintenance/disposeOutdatedEntities.php | 154 + .../SemanticMediaWiki/maintenance/dumpRDF.php | 225 + .../maintenance/populateHashField.php | 291 + .../maintenance/purgeEntityCache.php | 243 + .../maintenance/rebuildConceptCache.php | 224 + .../maintenance/rebuildData.php | 295 + .../maintenance/rebuildElasticIndex.php | 548 + .../rebuildElasticMissingDocuments.php | 418 + .../rebuildFulltextSearchTable.php | 254 + .../maintenance/rebuildPropertyStatistics.php | 103 + .../maintenance/removeDuplicateEntities.php | 154 + .../maintenance/runImport.php | 133 + .../maintenance/runLocalMessageCopy.php | 180 + .../maintenance/setupStore.php | 278 + .../maintenance/updateEntityCollation.php | 298 + .../maintenance/updateEntityCountMap.php | 280 + .../maintenance/updateQueryDependencies.php | 187 + .../extensions/SemanticMediaWiki/phpmd.xml | 29 + .../SemanticMediaWiki/phpunit.xml.dist | 157 + .../SemanticMediaWiki/res/Resources.php | 750 + .../res/docs/jsduck.external.js | 37 + .../res/jquery/jquery.async.js | 69 + .../res/jquery/jquery.atwho.css | 74 + .../res/jquery/jquery.atwho.js | 1212 ++ .../res/jquery/jquery.autocomplete.js | 998 ++ .../res/jquery/jquery.caret.js | 436 + .../res/jquery/jquery.jsonview.css | 88 + .../res/jquery/jquery.jsonview.js | 295 + .../res/jquery/jquery.mark.js | 1064 ++ .../res/jquery/jquery.selectmenu.css | 854 + .../res/jquery/jquery.selectmenu.js | 1597 ++ .../res/libs/tippy/light-border.css | 1 + .../res/libs/tippy/popper.min.js | 6 + .../res/libs/tippy/scale.css | 1 + .../res/libs/tippy/tippy.min.js | 2 + .../SemanticMediaWiki/res/onoi/README.md | 4 + .../res/onoi/clipboard/clipboard.js | 778 + .../jquery.dataTables/dataTables.search.js | 77 + .../dataTables.searchHighlight.css | 11 + .../dataTables.searchHighlight.js | 87 + .../res/onoi/jquery.dataTables/datatables.css | 795 + .../res/onoi/jquery.dataTables/datatables.js | 13678 ++++++++++++++++ .../onoi/jquery.dataTables/datatables.min.css | 15 + .../onoi/jquery.dataTables/datatables.min.js | 22 + .../onoi/jquery.highlight/jquery.highlight.js | 151 + .../jquery.rangeSlider/ion.rangeSlider.css | 146 + .../jquery.rangeSlider/ion.rangeSlider.js | 2307 +++ .../ion.rangeSlider.skinFlat.css | 106 + .../ion.rangeSlider.skinModern.css | 116 + .../res/onoi/localForage/localforage.js | 0 .../res/onoi/localForage/localforage.min.js | 0 .../res/onoi/onoi.blobstore.js | 173 + .../res/onoi/onoi.clipboard.js | 29 + .../res/smw/api/ext.smw.api.js | 186 + .../res/smw/assets/logo_footer.svg | 1 + .../res/smw/assets/logo_footer_legacy.svg | 1 + .../res/smw/assets/logo_small.svg | 1 + .../res/smw/assets/smw-icon-alert.svg | 1 + .../res/smw/assets/smw-icon-arrow-down.svg | 1 + .../assets/smw-icon-autocomplete-loading.gif | Bin 0 -> 3232 bytes .../res/smw/assets/smw-icon-bookmark.svg | 1 + .../res/smw/assets/smw-icon-browse-subtle.svg | 1 + .../res/smw/assets/smw-icon-browse.svg | 1 + .../res/smw/assets/smw-icon-clipboard.svg | 1 + .../res/smw/assets/smw-icon-compact.svg | 1 + .../assets/smw-icon-constraint-violation.svg | 1 + .../smw/assets/smw-icon-edit-protection.svg | 1 + .../assets/smw-icon-elasticsearch-engine.svg | 1 + .../smw-icon-entity-examiner-panel-error.svg | 1 + .../smw-icon-entity-examiner-panel-large.svg | 1 + .../assets/smw-icon-entity-examiner-panel.svg | 1 + .../smw/assets/smw-icon-error-constraint.svg | 1 + .../smw/assets/smw-icon-error-replication.svg | 1 + .../assets/smw-icon-facetedsearch-clear.svg | 1 + .../assets/smw-icon-facetedsearch-reset.svg | 1 + .../assets/smw-icon-facetedsearch-search.svg | 1 + .../assets/smw-icon-factbox-rdf-subtle.svg | 1 + .../res/smw/assets/smw-icon-factbox-rdf.svg | 1 + .../res/smw/assets/smw-icon-info.svg | 1 + .../res/smw/assets/smw-icon-loading-dots.gif | Bin 0 -> 1603 bytes .../res/smw/assets/smw-icon-no-image.png | Bin 0 -> 2803 bytes .../res/smw/assets/smw-icon-pen.svg | 1 + .../res/smw/assets/smw-icon-rdf.svg | 1 + .../res/smw/assets/smw-icon-search-subtle.svg | 1 + .../res/smw/assets/smw-icon-search.svg | 1 + .../res/smw/assets/smw-icon-tooltip-error.png | Bin 0 -> 435 bytes .../res/smw/assets/smw-icon-tooltip-info.png | Bin 0 -> 493 bytes .../smw/assets/smw-icon-tooltip-question.png | Bin 0 -> 575 bytes .../smw/assets/smw-icon-tooltip-warning.png | Bin 0 -> 424 bytes .../res/smw/content/smw.schema.less | 206 + .../res/smw/content/smw.schemaview.js | 30 + .../res/smw/data/ext.smw.data.js | 183 + .../res/smw/data/ext.smw.dataItem.geo.js | 88 + .../res/smw/data/ext.smw.dataItem.number.js | 100 + .../res/smw/data/ext.smw.dataItem.property.js | 117 + .../res/smw/data/ext.smw.dataItem.text.js | 104 + .../res/smw/data/ext.smw.dataItem.time.js | 246 + .../res/smw/data/ext.smw.dataItem.unknown.js | 91 + .../res/smw/data/ext.smw.dataItem.uri.js | 106 + .../res/smw/data/ext.smw.dataItem.wikiPage.js | 211 + .../smw/data/ext.smw.dataValue.quantity.js | 116 + .../res/smw/deferred/ext.smw.deferred.css | 61 + .../res/smw/deferred/ext.smw.deferred.js | 242 + .../SemanticMediaWiki/res/smw/ext.smw.css | 1079 ++ .../res/smw/ext.smw.dropdown.css | 154 + .../res/smw/ext.smw.factbox.js | 17 + .../SemanticMediaWiki/res/smw/ext.smw.js | 385 + .../res/smw/ext.smw.page.css | 449 + .../res/smw/ext.smw.skin-chameleon.css | 81 + .../res/smw/ext.smw.skin-foreground.css | 43 + .../res/smw/ext.smw.skin-vector.css | 36 + .../res/smw/ext.smw.table.css | 110 + .../res/smw/ext.smw.tabs.less | 261 + .../res/smw/factbox-vector-2022.less | 20 + .../SemanticMediaWiki/res/smw/factbox.less | 255 + .../res/smw/printer/ext.smw.tableprinter.css | 295 + .../res/smw/printer/ext.smw.tableprinter.js | 363 + .../ext.smw.tableprinter.skin-chameleon.css | 35 + .../res/smw/query/ext.smw.query.js | 198 + .../res/smw/smw.indicators.css | 317 + .../res/smw/smw.jsonview.css | 163 + .../SemanticMediaWiki/res/smw/smw.jsonview.js | 135 + .../res/smw/smw.selectmenu.css | 119 + .../res/smw/smw.summarytable.css | 163 + .../SemanticMediaWiki/res/smw/smw.ui.js | 59 + .../res/smw/special.search/search.css | 347 + .../res/smw/special.search/search.form.js | 261 + .../res/smw/special.search/search.input.js | 46 + .../smw/special.search/search.namespace.js | 71 + .../res/smw/special/ext.smw.special.admin.js | 375 + .../res/smw/special/ext.smw.special.ask.js | 393 + .../res/smw/special/ext.smw.special.ask.less | 674 + .../res/smw/special/ext.smw.special.browse.js | 210 + .../smw/special/ext.smw.special.browse.less | 46 + .../res/smw/special/ext.smw.special.less | 237 + .../special/ext.smw.special.preferences.css | 116 + .../smw/special/smw.special.facetedsearch.css | 949 ++ .../smw/special/smw.special.facetedsearch.js | 212 + .../res/smw/suggester/README.md | 66 + .../res/smw/suggester/ext.smw.suggester.js | 272 + .../suggester/ext.smw.suggester.textInput.js | 260 + .../SemanticMediaWiki/res/smw/tokens.less | 340 + .../res/smw/util/ext.smw.modal.css | 138 + .../res/smw/util/ext.smw.modal.js | 63 + .../res/smw/util/ext.smw.personal.js | 52 + .../res/smw/util/ext.smw.tooltip.less | 79 + .../res/smw/util/ext.smw.tooltip.tippy.js | 334 + .../res/smw/util/ext.smw.tooltip.tippy.less | 215 + .../res/smw/util/ext.smw.util.autocomplete.js | 157 + .../util/ext.smw.util.autocomplete.page.js | 107 + .../ext.smw.util.autocomplete.property.js | 127 + ...t.smw.util.autocomplete.propertysubject.js | 128 + ...ext.smw.util.autocomplete.propertyvalue.js | 134 + .../res/smw/util/ext.smw.util.postproc.js | 93 + .../res/smw/util/ext.smw.util.purge.js | 64 + .../res/smw/util/ext.smw.vertical.tabs.css | 160 + .../res/smw/util/ext.smw.vertical.tabs.js | 100 + .../res/smw/util/smw.entityexaminer.css | 45 + .../res/smw/util/smw.entityexaminer.js | 246 + .../res/smw/util/smw.property.page.js | 63 + .../SemanticMediaWiki/src/Aliases.php | 10 + .../SemanticMediaWiki/src/CacheFactory.php | 169 + .../src/ConfigLegacyTrait.php | 361 + .../SemanticMediaWiki/src/ConfigPreloader.php | 87 + .../Connection/CallbackConnectionProvider.php | 52 + .../src/Connection/ConnRef.php | 76 + .../src/Connection/ConnectionManager.php | 103 + .../src/Connection/ConnectionProvider.php | 30 + .../src/Constraint/Constraint.php | 60 + .../src/Constraint/ConstraintCheckRunner.php | 153 + .../src/Constraint/ConstraintError.php | 75 + .../src/Constraint/ConstraintRegistry.php | 128 + .../Constraint/ConstraintSchemaCompiler.php | 179 + .../Constraints/DeferrableConstraint.php | 42 + .../MandatoryPropertiesConstraint.php | 100 + .../Constraints/MustExistsConstraint.php | 92 + .../Constraints/NamespaceConstraint.php | 103 + .../NonNegativeIntegerConstraint.php | 92 + .../Constraint/Constraints/NullConstraint.php | 41 + .../Constraints/ShapeConstraint.php | 212 + .../Constraints/SingleValueConstraint.php | 99 + .../Constraints/UniqueValueConstraint.php | 204 + .../src/ConstraintFactory.php | 205 + .../SemanticMediaWiki/src/DataItemFactory.php | 168 + .../src/DataModel/ContainerSemanticData.php | 156 + .../src/DataModel/SequenceMap.php | 63 + .../src/DataModel/SubSemanticData.php | 305 + .../src/DataTypeRegistry.php | 581 + .../SemanticMediaWiki/src/DataUpdater.php | 478 + .../src/DataValueFactory.php | 479 + .../src/DataValues/AbstractMultiValue.php | 168 + .../src/DataValues/AllowsListValue.php | 113 + .../src/DataValues/AllowsPatternValue.php | 119 + .../src/DataValues/AllowsValue.php | 27 + .../src/DataValues/BooleanValue.php | 253 + .../src/DataValues/ConstraintSchemaValue.php | 90 + .../src/DataValues/ErrorMsgTextValue.php | 108 + .../DataValues/ExternalFormatterUriValue.php | 110 + .../DataValues/ExternalIdentifierValue.php | 230 + .../src/DataValues/ImportValue.php | 264 + .../src/DataValues/InfoLinksProvider.php | 298 + .../src/DataValues/KeywordValue.php | 276 + .../src/DataValues/LanguageCodeValue.php | 72 + .../src/DataValues/MonolingualTextValue.php | 388 + .../DataValues/Number/IntlNumberFormatter.php | 374 + .../src/DataValues/Number/UnitConverter.php | 255 + .../src/DataValues/PropertyChainValue.php | 214 + .../src/DataValues/PropertyValue.php | 485 + .../src/DataValues/ReferenceValue.php | 308 + .../src/DataValues/StringValue.php | 178 + .../src/DataValues/TelephoneUriValue.php | 24 + .../src/DataValues/TemperatureValue.php | 209 + .../src/DataValues/Time/CalendarModel.php | 29 + .../src/DataValues/Time/Components.php | 76 + .../src/DataValues/Time/IntlTimeFormatter.php | 213 + .../src/DataValues/Time/JulianDay.php | 201 + .../src/DataValues/Time/Timezone.php | 378 + .../src/DataValues/TypesValue.php | 242 + .../DataValues/UniquenessConstraintValue.php | 40 + .../CodeStringValueFormatter.php | 87 + .../ValueFormatters/DataValueFormatter.php | 131 + .../DispatchingDataValueFormatter.php | 77 + .../MonolingualTextValueFormatter.php | 139 + .../ValueFormatters/NoValueFormatter.php | 38 + .../ValueFormatters/NumberValueFormatter.php | 158 + .../PropertyValueFormatter.php | 333 + .../ReferenceValueFormatter.php | 177 + .../ValueFormatters/StringValueFormatter.php | 135 + .../ValueFormatters/TimeValueFormatter.php | 451 + .../ValueFormatters/ValueFormatter.php | 24 + .../ValueParsers/AllowsListValueParser.php | 124 + .../ValueParsers/AllowsPatternValueParser.php | 93 + .../ValueParsers/ImportValueParser.php | 180 + .../MonolingualTextValueParser.php | 65 + .../ValueParsers/PropertyValueParser.php | 205 + .../ValueParsers/TimeValueParser.php | 383 + .../DataValues/ValueParsers/ValueParser.php | 29 + .../AllowsListConstraintValueValidator.php | 272 + .../CompoundConstraintValueValidator.php | 97 + .../ConstraintSchemaValueValidator.php | 152 + .../ConstraintValueValidator.php | 29 + .../PatternConstraintValueValidator.php | 114 + ...ySpecificationConstraintValueValidator.php | 102 + .../UniquenessConstraintValueValidator.php | 100 + .../SemanticMediaWiki/src/Defines.php | 10 + .../src/DependencyValidator.php | 176 + .../src/Deserializers/ExpDataDeserializer.php | 75 + .../SemanticDataDeserializer.php | 192 + .../src/DisplayTitleFinder.php | 244 + .../Admin/ElasticClientTaskHandler.php | 318 + .../src/Elastic/Admin/IndicesInfoProvider.php | 127 + .../src/Elastic/Admin/InfoProviderHandler.php | 76 + .../Elastic/Admin/MappingsInfoProvider.php | 191 + .../src/Elastic/Admin/NodesInfoProvider.php | 82 + .../Elastic/Admin/ReplicationInfoProvider.php | 252 + .../Elastic/Admin/SettingsInfoProvider.php | 93 + .../SemanticMediaWiki/src/Elastic/Config.php | 136 + .../src/Elastic/Connection/Client.php | 843 + .../Elastic/Connection/ConnectionProvider.php | 185 + .../src/Elastic/Connection/DummyClient.php | 320 + .../src/Elastic/Connection/LockManager.php | 128 + .../src/Elastic/Connection/TestClient.php | 92 + .../src/Elastic/ElasticFactory.php | 649 + .../src/Elastic/ElasticStore.php | 476 + .../ClientBuilderNotFoundException.php | 24 + .../Exception/InvalidJSONException.php | 23 + .../MissingEndpointConfigException.php | 22 + .../Exception/NoConnectionException.php | 24 + .../Exception/ReplicationException.php | 15 + .../SemanticMediaWiki/src/Elastic/Hooks.php | 102 + .../Hooks/UpdateEntityCollationComplete.php | 171 + .../Attachment/AttachmentAnnotator.php | 133 + .../Indexer/Attachment/FileAttachment.php | 308 + .../Indexer/Attachment/FileHandler.php | 135 + .../Indexer/Attachment/ScopeMemoryLimiter.php | 89 + .../src/Elastic/Indexer/Bulk.php | 161 + .../src/Elastic/Indexer/Document.php | 204 + .../src/Elastic/Indexer/DocumentCreator.php | 334 + .../src/Elastic/Indexer/FileIndexer.php | 305 + .../src/Elastic/Indexer/Indexer.php | 378 + .../Elastic/Indexer/Rebuilder/Rebuilder.php | 487 + .../Elastic/Indexer/Rebuilder/Rollover.php | 163 + .../DocumentReplicationExaminer.php | 219 + .../Indexer/Replication/ReplicationCheck.php | 508 + ...ityExaminerDeferrableIndicatorProvider.php | 248 + .../Indexer/Replication/ReplicationError.php | 114 + .../Indexer/Replication/ReplicationStatus.php | 250 + .../src/Elastic/Indexer/TextSanitizer.php | 47 + .../src/Elastic/Installer.php | 83 + .../src/Elastic/Jobs/FileIngestJob.php | 142 + .../src/Elastic/Jobs/IndexerRecoveryJob.php | 211 + .../Lookup/ProximityPropertyValueLookup.php | 306 + .../src/Elastic/QueryEngine/Aggregations.php | 112 + .../src/Elastic/QueryEngine/Condition.php | 124 + .../Elastic/QueryEngine/ConditionBuilder.php | 466 + .../ClassDescriptionInterpreter.php | 97 + .../ConceptDescriptionInterpreter.php | 133 + .../ConjunctionInterpreter.php | 58 + .../DisjunctionInterpreter.php | 101 + .../NamespaceDescriptionInterpreter.php | 56 + .../SomePropertyInterpreter.php | 461 + .../SomeValueInterpreter.php | 542 + .../ValueDescriptionInterpreter.php | 240 + .../src/Elastic/QueryEngine/Excerpts.php | 83 + .../src/Elastic/QueryEngine/FieldMapper.php | 672 + .../src/Elastic/QueryEngine/QueryEngine.php | 383 + .../src/Elastic/QueryEngine/SearchResult.php | 215 + .../src/Elastic/QueryEngine/SortBuilder.php | 182 + .../src/Elastic/QueryEngine/TermsLookup.php | 37 + .../TermsLookup/CachingTermsLookup.php | 388 + .../QueryEngine/TermsLookup/Parameters.php | 78 + .../QueryEngine/TermsLookup/TermsLookup.php | 403 + .../SemanticMediaWiki/src/Elastic/README.md | 68 + .../src/Elastic/docs/config.md | 176 + .../SemanticMediaWiki/src/Elastic/docs/faq.md | 104 + .../src/Elastic/docs/replication.md | 194 + .../src/Elastic/docs/search.md | 140 + .../src/Elastic/docs/technical.md | 185 + .../src/Elastic/docs/usage.md | 26 + .../SemanticMediaWiki/src/Encoder.php | 101 + .../SemanticMediaWiki/src/EntityCache.php | 288 + .../SemanticMediaWiki/src/EntityLookup.php | 111 + .../extensions/SemanticMediaWiki/src/Enum.php | 32 + .../src/Exception/ClassNotFoundException.php | 24 + .../ConfigPreloadFileNotReadableException.php | 29 + .../DataItemDeserializationException.php | 13 + .../src/Exception/DataItemException.php | 15 + .../src/Exception/DataTypeLookupException.php | 15 + .../src/Exception/FileNotFoundException.php | 15 + .../Exception/FileNotReadableException.php | 24 + .../Exception/FileNotWritableException.php | 24 + .../src/Exception/JSONFileParseException.php | 37 + .../src/Exception/JSONParseException.php | 58 + .../NamespaceIndexChangeException.php | 30 + .../Exception/ParameterNotFoundException.php | 38 + ...edefinedPropertyLabelMismatchException.php | 13 + .../PropertyLabelNotResolvedException.php | 13 + .../Exception/PropertyNotFoundException.php | 15 + .../RedirectTargetUnresolvableException.php | 15 + .../Exception/SemanticDataImportException.php | 15 + .../Exception/SettingNotFoundException.php | 15 + .../SettingsAlreadyLoadedException.php | 15 + .../Exception/SiteLanguageChangeException.php | 30 + .../src/Exception/StoreNotFoundException.php | 15 + .../Exception/SubSemanticDataException.php | 15 + .../src/Exporter/ConceptMapper.php | 303 + .../src/Exporter/Controller/Queue.php | 163 + .../src/Exporter/DataItemMapper.php | 35 + .../src/Exporter/DataItemMatchFinder.php | 190 + .../src/Exporter/Element.php | 46 + .../src/Exporter/Element/ExpElement.php | 135 + .../src/Exporter/Element/ExpLiteral.php | 144 + .../src/Exporter/Element/ExpNsResource.php | 160 + .../src/Exporter/Element/ExpResource.php | 114 + .../src/Exporter/ElementFactory.php | 205 + .../src/Exporter/Escaper.php | 97 + .../src/Exporter/ExpDataFactory.php | 145 + .../src/Exporter/ExpResourceMapper.php | 287 + .../src/Exporter/ExporterFactory.php | 97 + .../src/Exporter/ResourceBuilder.php | 37 + .../AuxiliaryPropertyValueResourceBuilder.php | 69 + .../ConceptPropertyValueResourceBuilder.php | 57 + .../DispatchingResourceBuilder.php | 128 + ...IdentifierPropertyValueResourceBuilder.php | 61 + ...ImportFromPropertyValueResourceBuilder.php | 73 + .../KeywordPropertyValueResourceBuilder.php | 65 + ...ingualTextPropertyValueResourceBuilder.php | 81 + ...PredefinedPropertyValueResourceBuilder.php | 65 + .../PreferredPropertyLabelResourceBuilder.php | 67 + ...ropertyDescriptionValueResourceBuilder.php | 72 + .../PropertyValueResourceBuilder.php | 135 + .../RedirectPropertyValueResourceBuilder.php | 50 + .../SortPropertyValueResourceBuilder.php | 74 + ...ConstraintPropertyValueResourceBuilder.php | 47 + .../Exporter/Serializer/RDFXMLSerializer.php | 335 + .../src/Exporter/Serializer/Serializer.php | 367 + .../Exporter/Serializer/TurtleSerializer.php | 351 + .../src/Exporter/XsdValueMapper.php | 103 + .../src/Factbox/AttachmentFormatter.php | 163 + .../src/Factbox/CachedFactbox.php | 407 + .../src/Factbox/CheckMagicWords.php | 61 + .../SemanticMediaWiki/src/Factbox/Factbox.php | 480 + .../src/Factbox/FactboxFactory.php | 92 + .../src/Factbox/FactboxText.php | 29 + .../src/FileSystemSmwJsonRepo.php | 47 + .../SemanticMediaWiki/src/Globals.php | 16 + .../src/GroupPermissions.php | 86 + .../SemanticMediaWiki/src/HashBuilder.php | 163 + .../SemanticMediaWiki/src/HierarchyLookup.php | 406 + .../src/Importer/ContentCreator.php | 31 + .../DispatchingContentCreator.php | 80 + .../ContentCreators/TextContentCreator.php | 215 + .../ContentCreators/XmlContentCreator.php | 155 + .../src/Importer/ContentIterator.php | 36 + .../src/Importer/ContentModeller.php | 110 + .../src/Importer/ImportContents.php | 272 + .../src/Importer/Importer.php | 160 + .../src/Importer/JsonContentIterator.php | 82 + .../JsonImportContentsFileDirReader.php | 148 + .../SemanticMediaWiki/src/Importer/README.md | 134 + .../src/InMemoryPoolCache.php | 166 + ...ismatchEntityExaminerIndicatorProvider.php | 258 + ...ityExaminerDeferrableIndicatorProvider.php | 137 + .../CompositeIndicatorHtmlBuilder.php | 208 + ...ityExaminerDeferrableIndicatorProvider.php | 49 + ...ntErrorEntityExaminerIndicatorProvider.php | 301 + ...tityExaminerCompositeIndicatorProvider.php | 168 + ...erDeferrableCompositeIndicatorProvider.php | 261 + .../EntityExaminerIndicatorsFactory.php | 157 + .../src/Indicator/IndicatorProvider.php | 53 + .../CompositeIndicatorProvider.php | 16 + .../DeferrableIndicatorProvider.php | 36 + .../TypableSeverityIndicatorProvider.php | 44 + .../SemanticMediaWiki/src/IteratorFactory.php | 77 + .../src/Iterators/AppendIterator.php | 65 + .../src/Iterators/ChunkedIterator.php | 100 + .../src/Iterators/CsvFileIterator.php | 186 + .../Iterators/DotSeekableIteratorTrait.php | 93 + .../src/Iterators/MappingIterator.php | 76 + .../src/Iterators/ResultIterator.php | 145 + .../src/Iterators/SeekableIteratorTrait.php | 114 + .../CallableChangeListenerTrait.php | 85 + .../ChangeListener/ChangeListener.php | 36 + .../ChangeListenerAwareTrait.php | 43 + .../CallableChangeListener.php | 43 + .../PropertyChangeListener.php | 157 + .../Listener/ChangeListener/ChangeRecord.php | 65 + .../Listener/EventListener/EventHandler.php | 100 + .../EventListener/EventListenerRegistry.php | 116 + .../InvalidateEntityCacheEventListener.php | 68 + ...ySpecificationLookupCacheEventListener.php | 64 + .../InvalidateResultCacheEventListener.php | 83 + .../src/Localizer/CopyLocalMessages.php | 164 + .../LocalLanguage/FallbackFinder.php | 99 + .../LocalLanguage/JsonContentsFileReader.php | 180 + .../LocalLanguage/LanguageContents.php | 169 + .../Localizer/LocalLanguage/LocalLanguage.php | 586 + .../src/Localizer/LocalLanguage/README.md | 103 + .../src/Localizer/LocalMessageProvider.php | 133 + .../src/Localizer/Localizer.php | 456 + .../src/Localizer/Message.php | 253 + .../src/Localizer/MessageLocalizer.php | 22 + .../src/Localizer/MessageLocalizerTrait.php | 44 + .../src/Maintenance/AutoRecovery.php | 194 + .../src/Maintenance/ConceptCacheRebuilder.php | 321 + .../src/Maintenance/DataRebuilder.php | 639 + .../DataRebuilder/OutdatedDisposer.php | 170 + .../DistinctEntityDataRebuilder.php | 308 + .../Maintenance/DuplicateEntitiesDisposer.php | 277 + .../src/Maintenance/ExceptionFileLogger.php | 132 + .../src/Maintenance/MaintenanceCheck.php | 68 + .../src/Maintenance/MaintenanceFactory.php | 169 + .../src/Maintenance/MaintenanceHelper.php | 116 + .../src/Maintenance/MaintenanceLogger.php | 93 + .../PropertyStatisticsRebuilder.php | 220 + .../MediaWiki/Api/ApiQueryResultFormatter.php | 218 + .../Api/ApiRequestParameterFormatter.php | 149 + .../src/MediaWiki/Api/Ask.php | 118 + .../src/MediaWiki/Api/AskArgs.php | 125 + .../src/MediaWiki/Api/Browse.php | 380 + .../MediaWiki/Api/Browse/ArticleAugmentor.php | 66 + .../MediaWiki/Api/Browse/ArticleLookup.php | 190 + .../MediaWiki/Api/Browse/CachingLookup.php | 95 + .../MediaWiki/Api/Browse/ListAugmentor.php | 143 + .../src/MediaWiki/Api/Browse/ListLookup.php | 258 + .../src/MediaWiki/Api/Browse/Lookup.php | 30 + .../MediaWiki/Api/Browse/PSubjectLookup.php | 214 + .../src/MediaWiki/Api/Browse/PValueLookup.php | 138 + .../MediaWiki/Api/Browse/SubjectLookup.php | 140 + .../src/MediaWiki/Api/BrowseByProperty.php | 197 + .../src/MediaWiki/Api/BrowseBySubject.php | 228 + .../src/MediaWiki/Api/Info.php | 180 + .../Api/PropertyListByApiRequest.php | 292 + .../src/MediaWiki/Api/Query.php | 91 + .../src/MediaWiki/Api/Task.php | 187 + .../src/MediaWiki/Api/TaskFactory.php | 173 + .../MediaWiki/Api/Tasks/CheckQueryTask.php | 118 + .../Api/Tasks/DuplicateLookupTask.php | 88 + .../Api/Tasks/EntityExaminerTask.php | 135 + .../src/MediaWiki/Api/Tasks/InsertJobTask.php | 70 + .../src/MediaWiki/Api/Tasks/JobListTask.php | 62 + .../Api/Tasks/TableStatisticsTask.php | 83 + .../src/MediaWiki/Api/Tasks/Task.php | 33 + .../src/MediaWiki/Api/Tasks/UpdateTask.php | 87 + .../src/MediaWiki/Collator.php | 135 + .../MediaWiki/Connection/CleanUpTables.php | 65 + .../Connection/ConnectionProvider.php | 159 + .../src/MediaWiki/Connection/Database.php | 820 + .../LoadBalancerConnectionProvider.php | 126 + .../MediaWiki/Connection/OptionsBuilder.php | 153 + .../src/MediaWiki/Connection/Query.php | 450 + .../src/MediaWiki/Connection/Sequence.php | 90 + .../Connection/TransactionHandler.php | 180 + .../src/MediaWiki/Content/HtmlBuilder.php | 361 + .../src/MediaWiki/Content/SchemaContent.php | 272 + .../Content/SchemaContentFormatter.php | 369 + .../Content/SchemaContentHandler.php | 284 + .../MediaWiki/DeepRedirectTargetResolver.php | 92 + .../src/MediaWiki/Deferred/CallableUpdate.php | 356 + .../MediaWiki/Deferred/ChangeTitleUpdate.php | 85 + .../MediaWiki/Deferred/HashFieldUpdate.php | 104 + .../Deferred/TransactionalCallableUpdate.php | 257 + .../src/MediaWiki/EditInfo.php | 102 + .../src/MediaWiki/FileRepoFinder.php | 69 + .../src/MediaWiki/HookDispatcher.php | 324 + .../MediaWiki/HookDispatcherAwareTrait.php | 27 + .../src/MediaWiki/HookListener.php | 13 + .../SemanticMediaWiki/src/MediaWiki/Hooks.php | 1445 ++ .../src/MediaWiki/Hooks/AdminLinks.php | 68 + .../src/MediaWiki/Hooks/ApiModuleManager.php | 42 + .../src/MediaWiki/Hooks/ArticleDelete.php | 132 + .../src/MediaWiki/Hooks/ArticleFromTitle.php | 64 + .../Hooks/ArticleProtectComplete.php | 137 + .../src/MediaWiki/Hooks/ArticlePurge.php | 83 + .../src/MediaWiki/Hooks/ArticleViewHeader.php | 148 + .../Hooks/BeforeDisplayNoArticleText.php | 49 + .../src/MediaWiki/Hooks/BeforePageDisplay.php | 132 + .../src/MediaWiki/Hooks/DeleteAccount.php | 64 + .../src/MediaWiki/Hooks/EditPageForm.php | 119 + .../Hooks/ExtensionSchemaUpdates.php | 135 + .../src/MediaWiki/Hooks/ExtensionTypes.php | 39 + .../src/MediaWiki/Hooks/FileUpload.php | 130 + .../src/MediaWiki/Hooks/GetPreferences.php | 207 + .../Hooks/InternalParseBeforeLinks.php | 153 + .../MediaWiki/Hooks/LinksUpdateComplete.php | 166 + .../Hooks/OutputPageParserOutput.php | 177 + .../src/MediaWiki/Hooks/PageMoveComplete.php | 75 + .../src/MediaWiki/Hooks/ParserAfterTidy.php | 327 + .../src/MediaWiki/Hooks/PersonalUrls.php | 137 + .../src/MediaWiki/Hooks/README.md | 39 + .../Hooks/RejectParserCacheValue.php | 75 + .../Hooks/ResourceLoaderGetConfigVars.php | 82 + .../Hooks/RevisionFromEditComplete.php | 157 + .../MediaWiki/Hooks/SidebarBeforeOutput.php | 85 + .../src/MediaWiki/Hooks/SkinAfterContent.php | 76 + .../Hooks/SkinTemplateNavigationUniversal.php | 59 + .../Hooks/SpecialSearchResultsPrepend.php | 152 + .../MediaWiki/Hooks/SpecialStatsAddExtra.php | 190 + .../MediaWiki/Hooks/TitleIsAlwaysKnown.php | 70 + .../src/MediaWiki/Hooks/TitleIsMovable.php | 60 + .../MediaWiki/Hooks/TitleQuickPermissions.php | 67 + .../src/MediaWiki/Hooks/UserChange.php | 88 + .../src/MediaWiki/IndicatorRegistry.php | 103 + .../SemanticMediaWiki/src/MediaWiki/Job.php | 244 + .../src/MediaWiki/JobFactory.php | 223 + .../src/MediaWiki/JobQueue.php | 204 + .../Jobs/ChangePropagationClassUpdateJob.php | 38 + .../Jobs/ChangePropagationDispatchJob.php | 434 + .../Jobs/ChangePropagationUpdateJob.php | 65 + .../Jobs/DeferredConstraintCheckUpdateJob.php | 68 + .../MediaWiki/Jobs/EntityIdDisposerJob.php | 213 + .../Jobs/FulltextSearchTableRebuildJob.php | 71 + .../Jobs/FulltextSearchTableUpdateJob.php | 53 + .../src/MediaWiki/Jobs/NullJob.php | 42 + .../MediaWiki/Jobs/ParserCachePurgeJob.php | 86 + .../Jobs/PropertyStatisticsRebuildJob.php | 64 + .../src/MediaWiki/Jobs/RefreshJob.php | 131 + .../MediaWiki/Jobs/UpdateDispatcherJob.php | 364 + .../src/MediaWiki/Jobs/UpdateJob.php | 320 + .../src/MediaWiki/LinkBatch.php | 154 + .../src/MediaWiki/LocalTime.php | 103 + .../src/MediaWiki/MagicWordsFinder.php | 93 + .../src/MediaWiki/ManualEntryLogger.php | 83 + .../MediaWiki/MediaWikiNsContentReader.php | 70 + .../src/MediaWiki/MessageBuilder.php | 153 + .../src/MediaWiki/MwCollaboratorFactory.php | 282 + .../src/MediaWiki/NamespaceInfo.php | 72 + .../src/MediaWiki/Page/ConceptPage.php | 199 + .../src/MediaWiki/Page/ListBuilder.php | 221 + .../Page/ListBuilder/ItemListBuilder.php | 211 + .../Page/ListBuilder/ValueListBuilder.php | 456 + .../src/MediaWiki/Page/Page.php | 225 + .../src/MediaWiki/Page/PropertyPage.php | 489 + .../src/MediaWiki/PageCreator.php | 40 + .../src/MediaWiki/PageFactory.php | 117 + .../src/MediaWiki/PageInfoProvider.php | 180 + .../src/MediaWiki/PageUpdater.php | 337 + .../MediaWiki/Permission/PermissionAware.php | 25 + .../Permission/PermissionExaminer.php | 61 + .../Permission/PermissionExaminerAware.php | 20 + .../MediaWiki/Permission/TitlePermissions.php | 208 + .../src/MediaWiki/PermissionManager.php | 67 + .../src/MediaWiki/Pipetrick.php | 59 + .../MediaWiki/Preference/PreferenceAware.php | 24 + .../Preference/PreferenceExaminer.php | 64 + .../src/MediaWiki/RedirectTargetFinder.php | 71 + .../Renderer/HtmlColumnListRenderer.php | 292 + .../MediaWiki/Renderer/HtmlFormRenderer.php | 503 + .../MediaWiki/Renderer/HtmlTableRenderer.php | 304 + .../Renderer/HtmlTemplateRenderer.php | 70 + .../Renderer/WikitextTemplateRenderer.php | 61 + .../src/MediaWiki/RevisionGuard.php | 161 + .../src/MediaWiki/RevisionGuardAwareTrait.php | 27 + .../SearchDatabaseInvalidTypeException.php | 24 + .../SearchEngineInvalidTypeException.php | 15 + .../src/MediaWiki/Search/ExtendedSearch.php | 414 + .../MediaWiki/Search/ExtendedSearchEngine.php | 346 + .../Search/ProfileForm/Forms/CustomForm.php | 184 + .../Search/ProfileForm/Forms/Field.php | 237 + .../ProfileForm/Forms/NamespaceForm.php | 227 + .../Search/ProfileForm/Forms/OpenForm.php | 170 + .../Search/ProfileForm/Forms/SortForm.php | 125 + .../Search/ProfileForm/FormsBuilder.php | 352 + .../Search/ProfileForm/FormsFactory.php | 68 + .../Search/ProfileForm/ProfileForm.php | 457 + .../src/MediaWiki/Search/QueryBuilder.php | 281 + .../src/MediaWiki/Search/README.md | 39 + .../MediaWiki/Search/SearchEngineFactory.php | 106 + .../src/MediaWiki/Search/SearchResult.php | 119 + .../src/MediaWiki/Search/SearchResultSet.php | 202 + .../Specials/Admin/ActionableTask.php | 38 + ...lidEntitiesMaintenanceAlertTaskHandler.php | 105 + .../Alerts/DeprecationNoticeTaskHandler.php | 271 + ...mizationRunMaintenanceAlertTaskHandler.php | 93 + .../Alerts/MaintenanceAlertsTaskHandler.php | 67 + ...ntThresholdMaintenanceAlertTaskHandler.php | 97 + .../Specials/Admin/AlertsTaskHandler.php | 132 + .../Maintenance/DataRefreshJobTaskHandler.php | 194 + .../Maintenance/DisposeJobTaskHandler.php | 175 + ...lltextSearchTableRebuildJobTaskHandler.php | 163 + .../PropertyStatsRebuildJobTaskHandler.php | 163 + .../Maintenance/TableSchemaTaskHandler.php | 187 + .../Specials/Admin/MaintenanceTaskHandler.php | 236 + .../Specials/Admin/OutputFormatter.php | 201 + .../CacheStatisticsListTaskHandler.php | 151 + .../ConfigurationListTaskHandler.php | 181 + .../Supplement/DuplicateLookupTaskHandler.php | 169 + .../Supplement/EntityLookupTaskHandler.php | 336 + .../OperationalStatisticsListTaskHandler.php | 216 + .../Supplement/TableStatisticsTaskHandler.php | 216 + .../Specials/Admin/SupplementTaskHandler.php | 127 + .../Specials/Admin/SupportListTaskHandler.php | 110 + .../MediaWiki/Specials/Admin/TaskHandler.php | 138 + .../Specials/Admin/TaskHandlerFactory.php | 323 + .../Specials/Admin/TaskHandlerRegistry.php | 144 + .../Specials/Ask/DownloadLinksWidget.php | 100 + .../MediaWiki/Specials/Ask/ErrorWidget.php | 116 + .../Specials/Ask/FormatListWidget.php | 151 + .../src/MediaWiki/Specials/Ask/HelpWidget.php | 101 + .../src/MediaWiki/Specials/Ask/HtmlForm.php | 376 + .../MediaWiki/Specials/Ask/LinksWidget.php | 383 + .../Specials/Ask/NavigationLinksWidget.php | 213 + .../MediaWiki/Specials/Ask/ParameterInput.php | 318 + .../Specials/Ask/ParametersProcessor.php | 279 + .../Specials/Ask/ParametersWidget.php | 353 + .../Specials/Ask/QueryInputWidget.php | 51 + .../src/MediaWiki/Specials/Ask/SortWidget.php | 183 + .../Specials/Browse/FieldBuilder.php | 64 + .../Specials/Browse/GroupFormatter.php | 309 + .../MediaWiki/Specials/Browse/HtmlBuilder.php | 810 + .../Specials/Browse/ValueFormatter.php | 208 + .../DefaultProfileNotFoundException.php | 26 + .../DefaultValueFilterNotFoundException.php | 24 + ...ofileSourceDefinitionConflictException.php | 28 + .../FacetedSearch/ExploreListBuilder.php | 96 + .../FacetedSearch/ExtraFieldBuilder.php | 109 + .../Specials/FacetedSearch/FacetBuilder.php | 256 + .../Specials/FacetedSearch/FilterFactory.php | 92 + .../FacetedSearch/Filters/CategoryFilter.php | 173 + .../FacetedSearch/Filters/PropertyFilter.php | 186 + .../FacetedSearch/Filters/ValueFilter.php | 185 + .../Filters/ValueFilterFactory.php | 80 + .../CheckboxRangeGroupValueFilter.php | 295 + .../ValueFilters/CheckboxValueFilter.php | 221 + .../Filters/ValueFilters/ListValueFilter.php | 264 + .../Filters/ValueFilters/RangeValueFilter.php | 172 + .../Specials/FacetedSearch/HtmlBuilder.php | 245 + .../Specials/FacetedSearch/OptionsBuilder.php | 206 + .../FacetedSearch/ParametersProcessor.php | 495 + .../Specials/FacetedSearch/Profile.php | 163 + .../Specials/FacetedSearch/README.md | 125 + .../Specials/FacetedSearch/ResultFetcher.php | 386 + .../Specials/FacetedSearch/TreeBuilder.php | 284 + .../Specials/PageProperty/PageBuilder.php | 177 + .../PendingTasks/IncompleteSetupTasks.php | 100 + .../ContentsBuilder.php | 141 + .../Specials/SearchByProperty/PageBuilder.php | 389 + .../SearchByProperty/PageRequestOptions.php | 169 + .../SearchByProperty/QueryResultLookup.php | 260 + .../src/MediaWiki/Specials/SpecialAdmin.php | 204 + .../src/MediaWiki/Specials/SpecialAsk.php | 736 + .../src/MediaWiki/Specials/SpecialBrowse.php | 223 + .../Specials/SpecialConstraintErrorList.php | 69 + .../Specials/SpecialFacetedSearch.php | 215 + .../SpecialMissingRedirectAnnotations.php | 151 + .../Specials/SpecialPageProperty.php | 172 + .../Specials/SpecialPendingTaskList.php | 92 + .../Specials/SpecialProcessingErrorList.php | 68 + .../SpecialPropertyLabelSimilarity.php | 113 + .../Specials/SpecialSearchByProperty.php | 96 + .../MediaWiki/Specials/SpecialURIResolver.php | 80 + .../src/MediaWiki/StripMarkerDecoder.php | 116 + .../src/MediaWiki/Template/Template.php | 59 + .../MediaWiki/Template/TemplateExpander.php | 107 + .../src/MediaWiki/Template/TemplateSet.php | 56 + .../src/MediaWiki/TitleFactory.php | 117 + .../src/MediaWiki/TitleLookup.php | 197 + .../src/NamespaceExaminer.php | 95 + .../src/NamespaceManager.php | 300 + .../src/NamespaceUriFinder.php | 44 + .../SemanticMediaWiki/src/Options.php | 190 + .../src/OptionsAwareTrait.php | 69 + .../SemanticMediaWiki/src/PageInfo.php | 80 + .../src/ParameterListDocBuilder.php | 118 + .../src/ParameterProcessorFactory.php | 40 + .../SemanticMediaWiki/src/Parameters.php | 78 + .../src/Parser/AnnotationProcessor.php | 110 + .../src/Parser/InTextAnnotationParser.php | 502 + .../src/Parser/LinksEncoder.php | 234 + .../src/Parser/LinksProcessor.php | 202 + .../src/Parser/RecursiveTextProcessor.php | 313 + .../src/Parser/SemanticLinksParser.php | 62 + .../SemanticMediaWiki/src/ParserData.php | 480 + .../src/ParserFunctionFactory.php | 514 + .../src/ParserFunctions/AskParserFunction.php | 470 + .../ParserFunctions/ConceptParserFunction.php | 196 + .../ParserFunctions/DeclareParserFunction.php | 118 + .../DocumentationParserFunction.php | 133 + .../ExpensiveFuncExecutionWatcher.php | 111 + .../ParserFunctions/InfoParserFunction.php | 133 + .../RecurringEventsParserFunction.php | 95 + .../src/ParserFunctions/SectionTag.php | 95 + .../src/ParserFunctions/SetParserFunction.php | 161 + .../ParserFunctions/ShowParserFunction.php | 61 + .../SubobjectParserFunction.php | 348 + .../src/ParserParameterProcessor.php | 332 + .../SemanticMediaWiki/src/PostProcHandler.php | 330 + .../SemanticMediaWiki/src/ProcessingError.php | 44 + .../src/ProcessingErrorMsgHandler.php | 286 + .../src/Property/Annotator.php | 35 + .../src/Property/AnnotatorFactory.php | 251 + .../AttachmentLinkPropertyAnnotator.php | 60 + .../Annotators/CategoryPropertyAnnotator.php | 210 + .../DisplayTitlePropertyAnnotator.php | 79 + .../EditProtectedPropertyAnnotator.php | 153 + .../MandatoryTypePropertyAnnotator.php | 153 + .../Annotators/NullPropertyAnnotator.php | 53 + .../PredefinedPropertyAnnotator.php | 112 + .../Annotators/PropertyAnnotatorDecorator.php | 71 + .../Annotators/RedirectPropertyAnnotator.php | 50 + .../Annotators/SchemaPropertyAnnotator.php | 65 + .../Annotators/SortKeyPropertyAnnotator.php | 47 + .../TranslationPropertyAnnotator.php | 114 + .../Property/ChangePropagationNotifier.php | 258 + .../src/Property/DeclarationExaminer.php | 44 + .../ChangePropagationExaminer.php | 128 + .../DeclarationExaminer/CommonExaminer.php | 181 + .../DeclarationExaminer.php | 87 + .../PredefinedPropertyExaminer.php | 134 + .../ProtectionExaminer.php | 92 + .../UserdefinedPropertyExaminer.php | 223 + .../Property/DeclarationExaminerFactory.php | 83 + .../DeclarationExaminerMsgBuilder.php | 108 + .../Property/LanguageFalldownAndInverse.php | 430 + .../src/Property/RestrictionExaminer.php | 197 + .../src/Property/SpecificationLookup.php | 460 + .../src/PropertyAliasFinder.php | 212 + .../src/PropertyLabelFinder.php | 240 + .../src/PropertyRegistry.php | 508 + .../src/Protection/EditProtectionUpdater.php | 207 + .../src/Protection/ProtectionValidator.php | 351 + .../src/Query/Cache/CacheStats.php | 69 + .../src/Query/Cache/ResultCache.php | 515 + .../src/Query/DebugFormatter.php | 320 + .../SemanticMediaWiki/src/Query/Deferred.php | 89 + .../src/Query/DescriptionBuilderRegistry.php | 83 + .../DescriptionBuilder.php | 179 + ...MonolingualTextValueDescriptionBuilder.php | 131 + .../NumberValueDescriptionBuilder.php | 100 + .../RecordValueDescriptionBuilder.php | 139 + .../SomeValueDescriptionBuilder.php | 119 + .../TimeValueDescriptionBuilder.php | 129 + .../src/Query/DescriptionFactory.php | 143 + .../FingerprintNotFoundException.php | 15 + .../ResultFormatNotFoundException.php | 15 + .../SemanticMediaWiki/src/Query/Excerpts.php | 100 + .../src/Query/ExportPrinter.php | 56 + .../src/Query/Language/ClassDescription.php | 203 + .../src/Query/Language/ConceptDescription.php | 73 + .../src/Query/Language/Conjunction.php | 180 + .../src/Query/Language/Description.php | 207 + .../src/Query/Language/Disjunction.php | 234 + .../Query/Language/NamespaceDescription.php | 71 + .../src/Query/Language/SomeProperty.php | 212 + .../src/Query/Language/ThingDescription.php | 47 + .../src/Query/Language/ValueDescription.php | 144 + .../SemanticMediaWiki/src/Query/Parser.php | 52 + .../src/Query/Parser/DescriptionProcessor.php | 301 + .../src/Query/Parser/LegacyParser.php | 857 + .../src/Query/Parser/TermParser.php | 250 + .../src/Query/Parser/Tokenizer.php | 90 + .../src/Query/PrintRequest.php | 364 + .../src/Query/PrintRequest/Deserializer.php | 192 + .../src/Query/PrintRequest/Formatter.php | 91 + .../src/Query/PrintRequest/Serializer.php | 158 + .../src/Query/PrintRequestFactory.php | 64 + .../Processor/DefaultParamDefinition.php | 163 + .../Query/Processor/ParamListProcessor.php | 266 + .../src/Query/Processor/QueryCreator.php | 250 + .../src/Query/ProfileAnnotator.php | 37 + .../src/Query/ProfileAnnotatorFactory.php | 161 + .../DescriptionProfileAnnotator.php | 65 + .../DurationProfileAnnotator.php | 49 + .../FormatProfileAnnotator.php | 47 + .../NullProfileAnnotator.php | 81 + .../ParametersProfileAnnotator.php | 70 + .../ProfileAnnotatorDecorator.php | 96 + .../SchemaLinkProfileAnnotator.php | 56 + .../SourceProfileAnnotator.php | 49 + .../StatusCodeProfileAnnotator.php | 51 + .../src/Query/QueryComparator.php | 190 + .../src/Query/QueryContext.php | 62 + .../src/Query/QueryLinker.php | 119 + .../src/Query/QueryResult.php | 514 + .../src/Query/QuerySourceFactory.php | 118 + .../src/Query/QueryStringifier.php | 142 + .../src/Query/QueryToken.php | 162 + .../src/Query/RemoteRequest.php | 358 + .../src/Query/Result/FieldItemFinder.php | 376 + .../src/Query/Result/FilterMap.php | 71 + .../src/Query/Result/ItemFetcher.php | 239 + .../src/Query/Result/ItemJournal.php | 74 + .../src/Query/Result/Restrictions.php | 89 + .../src/Query/Result/ResultArray.php | 333 + .../src/Query/Result/StringResult.php | 129 + .../src/Query/ResultFormat.php | 174 + .../src/Query/ResultPrinter.php | 113 + .../src/Query/ResultPrinterDependency.php | 42 + .../ResultPrinters/AggregatablePrinter.php | 269 + .../ResultPrinters/CategoryResultPrinter.php | 329 + .../ResultPrinters/CsvFileExportPrinter.php | 177 + .../Query/ResultPrinters/DsvResultPrinter.php | 180 + .../ResultPrinters/EmbeddedResultPrinter.php | 175 + .../ResultPrinters/FeedExportPrinter.php | 437 + .../ResultPrinters/FileExportPrinter.php | 112 + .../ResultPrinters/JsonResultPrinter.php | 180 + .../ResultPrinters/ListResultPrinter.php | 206 + .../ListResultPrinter/ListResultBuilder.php | 256 + .../ListResultPrinter/ParameterDictionary.php | 51 + .../ParameterDictionaryUser.php | 35 + .../ListResultPrinter/RowBuilder.php | 42 + .../ListResultPrinter/SimpleRowBuilder.php | 112 + .../TemplateRendererFactory.php | 115 + .../ListResultPrinter/TemplateRowBuilder.php | 77 + .../ListResultPrinter/ValueTextsBuilder.php | 133 + .../ResultPrinters/NullResultPrinter.php | 33 + .../PrefixParameterProcessor.php | 42 + .../Query/ResultPrinters/RdfResultPrinter.php | 162 + .../Query/ResultPrinters/ResultPrinter.php | 721 + .../ResultPrinters/TableResultPrinter.php | 404 + .../TemplateFileExportPrinter.php | 228 + .../SemanticMediaWiki/src/Query/ScoreSet.php | 148 + .../SemanticMediaWiki/src/QueryEngine.php | 35 + .../SemanticMediaWiki/src/QueryFactory.php | 139 + .../SemanticMediaWiki/src/RequestOptions.php | 312 + .../BadHttpEndpointResponseException.php | 87 + .../HttpEndpointConnectionException.php | 31 + .../Exception/XmlParserException.php | 28 + .../SPARQLStore/HttpResponseErrorMapper.php | 85 + .../src/SPARQLStore/HttpResponseParser.php | 25 + .../QueryEngine/Condition/Condition.php | 97 + .../QueryEngine/Condition/FalseCondition.php | 25 + .../QueryEngine/Condition/FilterCondition.php | 39 + .../Condition/SingletonCondition.php | 58 + .../QueryEngine/Condition/TrueCondition.php | 26 + .../QueryEngine/Condition/WhereCondition.php | 45 + .../QueryEngine/ConditionBuilder.php | 624 + .../QueryEngine/DescriptionInterpreter.php | 33 + .../DescriptionInterpreterFactory.php | 68 + .../ClassDescriptionInterpreter.php | 137 + .../ConceptDescriptionInterpreter.php | 136 + .../ConjunctionInterpreter.php | 242 + .../DisjunctionInterpreter.php | 252 + .../DispatchingDescriptionInterpreter.php | 78 + .../NamespaceDescriptionInterpreter.php | 80 + .../SomePropertyInterpreter.php | 261 + .../ThingDescriptionInterpreter.php | 61 + .../ValueDescriptionInterpreter.php | 284 + .../SPARQLStore/QueryEngine/EngineOptions.php | 28 + .../SPARQLStore/QueryEngine/QueryEngine.php | 271 + .../QueryEngine/QueryResultFactory.php | 137 + .../QueryEngine/RepositoryResult.php | 213 + .../QueryEngine/XmlResponseParser.php | 238 + .../src/SPARQLStore/README.md | 101 + .../SPARQLStore/ReplicationDataTruncator.php | 51 + .../src/SPARQLStore/RepositoryClient.php | 147 + .../src/SPARQLStore/RepositoryConnection.php | 134 + .../RepositoryConnectionProvider.php | 227 + .../FourstoreRepositoryConnector.php | 168 + .../FusekiRepositoryConnector.php | 82 + .../GenericRepositoryConnector.php | 634 + .../VirtuosoRepositoryConnector.php | 174 + .../SPARQLStore/RepositoryRedirectLookup.php | 142 + .../src/SPARQLStore/SPARQLStore.php | 523 + .../src/SPARQLStore/SPARQLStoreFactory.php | 159 + .../src/SPARQLStore/TurtleTriplesBuilder.php | 326 + .../src/SQLStore/ChangeOp/ChangeDiff.php | 275 + .../src/SQLStore/ChangeOp/ChangeOp.php | 366 + .../src/SQLStore/ChangeOp/FieldChangeOp.php | 89 + .../src/SQLStore/ChangeOp/TableChangeOp.php | 157 + .../src/SQLStore/ConceptCache.php | 270 + .../SQLStore/EntityStore/AuxiliaryFields.php | 148 + .../src/SQLStore/EntityStore/CacheWarmer.php | 244 + .../EntityStore/CachingSemanticDataLookup.php | 318 + .../SQLStore/EntityStore/DataItemHandler.php | 233 + .../EntityStore/DataItemHandlerFactory.php | 118 + .../DataItemHandlers/DIBlobHandler.php | 252 + .../DataItemHandlers/DIBooleanHandler.php | 118 + .../DataItemHandlers/DIConceptHandler.php | 125 + .../DIGeoCoordinateHandler.php | 127 + .../DataItemHandlers/DINumberHandler.php | 147 + .../DataItemHandlers/DITimeHandler.php | 134 + .../DataItemHandlers/DIUriHandler.php | 180 + .../DataItemHandlers/DIWikiPageHandler.php | 227 + .../SQLStore/EntityStore/DuplicateFinder.php | 233 + .../SQLStore/EntityStore/EntityIdFinder.php | 298 + .../SQLStore/EntityStore/EntityIdManager.php | 1158 ++ .../src/SQLStore/EntityStore/EntityLookup.php | 445 + .../Exception/DataItemHandlerException.php | 15 + .../src/SQLStore/EntityStore/FieldList.php | 127 + .../SQLStore/EntityStore/IdCacheManager.php | 235 + .../src/SQLStore/EntityStore/IdChanger.php | 283 + .../SQLStore/EntityStore/IdEntityFinder.php | 183 + .../SQLStore/EntityStore/PrefetchCache.php | 163 + .../EntityStore/PrefetchItemLookup.php | 361 + .../SQLStore/EntityStore/PropertiesLookup.php | 117 + .../EntityStore/PropertySubjectsLookup.php | 448 + .../SQLStore/EntityStore/ResultLimiter.php | 78 + .../EntityStore/SemanticDataLookup.php | 789 + .../EntityStore/SequenceMapFinder.php | 181 + .../SQLStore/EntityStore/StubSemanticData.php | 437 + .../EntityStore/SubobjectListFinder.php | 145 + .../EntityStore/TraversalPropertyLookup.php | 141 + ...ertyStatisticsInvalidArgumentException.php | 15 + .../TableMissingIdFieldException.php | 22 + .../src/SQLStore/Installer.php | 469 + .../src/SQLStore/Installer/TableOptimizer.php | 104 + .../SQLStore/Installer/VersionExaminer.php | 138 + .../Lookup/ByGroupPropertyValuesLookup.php | 241 + .../src/SQLStore/Lookup/CachedListLookup.php | 203 + .../Lookup/ChangePropagationEntityLookup.php | 185 + .../SQLStore/Lookup/DisplayTitleLookup.php | 140 + .../Lookup/EntityUniquenessLookup.php | 215 + .../src/SQLStore/Lookup/ErrorLookup.php | 208 + .../src/SQLStore/Lookup/ListLookup.php | 47 + .../SQLStore/Lookup/MissingRedirectLookup.php | 101 + .../SQLStore/Lookup/MonolingualTextLookup.php | 360 + .../Lookup/PropertyLabelSimilarityLookup.php | 311 + .../Lookup/PropertyUsageListLookup.php | 148 + .../Lookup/ProximityPropertyValueLookup.php | 263 + .../SQLStore/Lookup/RedirectTargetLookup.php | 119 + .../Lookup/SingleEntityQueryLookup.php | 94 + .../SQLStore/Lookup/TableStatisticsLookup.php | 431 + .../Lookup/UndeclaredPropertyListLookup.php | 172 + .../Lookup/UnusedPropertyListLookup.php | 149 + .../Lookup/UsageStatisticsListLookup.php | 367 + .../src/SQLStore/PropertyStatisticsStore.php | 331 + .../PropertyTable/PropertyTableHashes.php | 170 + .../src/SQLStore/PropertyTableDefinition.php | 209 + .../PropertyTableDefinitionBuilder.php | 253 + .../PropertyTableIdReferenceDisposer.php | 357 + .../PropertyTableIdReferenceFinder.php | 260 + .../src/SQLStore/PropertyTableInfoFetcher.php | 232 + .../src/SQLStore/PropertyTableRowDiffer.php | 371 + .../src/SQLStore/PropertyTableRowMapper.php | 310 + .../src/SQLStore/PropertyTableUpdater.php | 294 + .../src/SQLStore/PropertyTypeFinder.php | 134 + .../DependencyLinksTableUpdater.php | 246 + .../DependencyLinksValidator.php | 196 + .../QueryDependencyLinksStore.php | 513 + .../QueryLinksTableDisposer.php | 150 + .../QueryReferenceBacklinks.php | 113 + .../QueryResultDependencyListResolver.php | 278 + .../src/SQLStore/QueryDependency/README.md | 33 + .../QueryDependencyLinksStoreFactory.php | 135 + .../ConceptQuerySegmentBuilder.php | 111 + .../SQLStore/QueryEngine/ConditionBuilder.php | 328 + .../QueryEngine/DescriptionInterpreter.php | 33 + .../DescriptionInterpreterFactory.php | 105 + .../ClassDescriptionInterpreter.php | 98 + .../ComparatorMapper.php | 63 + .../ConceptDescriptionInterpreter.php | 212 + .../DisjunctionConjunctionInterpreter.php | 79 + .../DispatchingDescriptionInterpreter.php | 79 + .../NamespaceDescriptionInterpreter.php | 73 + .../SomePropertyInterpreter.php | 337 + .../ThingDescriptionInterpreter.php | 56 + .../ValueDescriptionInterpreter.php | 176 + .../SQLStore/QueryEngine/EngineOptions.php | 26 + .../MySQLValueMatchConditionBuilder.php | 144 + .../SQLiteValueMatchConditionBuilder.php | 98 + .../QueryEngine/Fulltext/SearchTable.php | 278 + .../Fulltext/SearchTableRebuilder.php | 386 + .../Fulltext/SearchTableUpdater.php | 217 + .../Fulltext/TextChangeUpdater.php | 306 + .../QueryEngine/Fulltext/TextSanitizer.php | 167 + .../Fulltext/ValueMatchConditionBuilder.php | 128 + .../FulltextSearchTableFactory.php | 170 + .../QueryEngine/HierarchyTempTableBuilder.php | 202 + .../SQLStore/QueryEngine/OrderCondition.php | 243 + .../src/SQLStore/QueryEngine/QueryEngine.php | 587 + .../src/SQLStore/QueryEngine/QuerySegment.php | 202 + .../QueryEngine/QuerySegmentListProcessor.php | 380 + .../src/SQLStore/QueryEngine/README.md | 61 + .../src/SQLStore/QueryEngineFactory.php | 169 + .../SemanticMediaWiki/src/SQLStore/README.md | 12 + .../SQLStore/Rebuilder/EntityValidator.php | 316 + .../src/SQLStore/Rebuilder/Rebuilder.php | 512 + .../src/SQLStore/RedirectStore.php | 343 + .../src/SQLStore/RedirectUpdater.php | 609 + .../src/SQLStore/RequestOptionsProcessor.php | 303 + .../src/SQLStore/SQLStore.php | 692 + .../src/SQLStore/SQLStoreFactory.php | 1216 ++ .../src/SQLStore/SQLStoreUpdater.php | 466 + .../src/SQLStore/TableBuilder.php | 134 + .../TableBuilder/Examiner/CountMapField.php | 83 + .../TableBuilder/Examiner/EntityCollation.php | 92 + .../TableBuilder/Examiner/FixedProperties.php | 152 + .../TableBuilder/Examiner/HashField.php | 92 + .../TableBuilder/Examiner/IdBorder.php | 166 + .../Examiner/PredefinedProperties.php | 187 + .../TableBuilder/Examiner/TouchedField.php | 84 + .../src/SQLStore/TableBuilder/FieldType.php | 156 + .../TableBuilder/MySQLTableBuilder.php | 433 + .../TableBuilder/PostgresTableBuilder.php | 489 + .../TableBuilder/SQLiteTableBuilder.php | 376 + .../src/SQLStore/TableBuilder/Table.php | 163 + .../TableBuilder/TableBuildExaminer.php | 207 + .../TableBuildExaminerFactory.php | 124 + .../SQLStore/TableBuilder/TableBuilder.php | 274 + .../TableBuilder/TableSchemaManager.php | 414 + .../TableBuilder/TemporaryTableBuilder.php | 116 + .../src/SQLStore/TableFieldUpdater.php | 131 + .../src/Schema/ChainableFilter.php | 33 + .../src/Schema/Compartment.php | 125 + .../src/Schema/CompartmentIterator.php | 134 + .../SchemaConstructionFailedException.php | 24 + .../SchemaParameterTypeMismatchException.php | 25 + .../SchemaTypeAlreadyExistsException.php | 24 + .../Exception/SchemaTypeNotFoundException.php | 39 + .../src/Schema/Filters/CategoryFilter.php | 235 + .../src/Schema/Filters/CompositeFilter.php | 116 + .../src/Schema/Filters/FilterTrait.php | 130 + .../src/Schema/Filters/NamespaceFilter.php | 88 + .../src/Schema/Filters/PropertyFilter.php | 244 + .../SemanticMediaWiki/src/Schema/README.md | 76 + .../SemanticMediaWiki/src/Schema/Rule.php | 69 + .../SemanticMediaWiki/src/Schema/Schema.php | 45 + .../src/Schema/SchemaDefinition.php | 69 + .../src/Schema/SchemaFactory.php | 203 + .../src/Schema/SchemaFilter.php | 66 + .../src/Schema/SchemaFilterFactory.php | 62 + .../src/Schema/SchemaFinder.php | 189 + .../src/Schema/SchemaList.php | 169 + .../src/Schema/SchemaTypes.php | 207 + .../src/Schema/SchemaValidator.php | 57 + .../src/Schema/docs/class.constraint.md | 52 + .../src/Schema/docs/facetedsearch.profile.md | 231 + .../src/Schema/docs/filter.md | 126 + .../src/Schema/docs/property.constraint.md | 50 + .../src/Schema/docs/property.group.md | 52 + .../src/Schema/docs/property.profile.md | 30 + .../src/Schema/docs/search.form.md | 150 + .../src/SerializerFactory.php | 125 + .../src/Serializers/ExpDataSerializer.php | 62 + .../FlatSemanticDataSerializer.php | 31 + .../src/Serializers/QueryResultSerializer.php | 290 + .../Serializers/SemanticDataSerializer.php | 157 + .../src/Services/DataValueServiceFactory.php | 228 + .../Exception/ServiceNotFoundException.php | 24 + .../src/Services/ImporterServiceFactory.php | 86 + .../SemanticMediaWiki/src/Services/README.md | 38 + .../src/Services/ServicesContainer.php | 73 + .../src/Services/ServicesFactory.php | 656 + .../src/Services/SharedServicesContainer.php | 900 + .../SemanticMediaWiki/src/Services/cache.php | 29 + .../src/Services/datavalues.php | 361 + .../SemanticMediaWiki/src/Services/events.php | 61 + .../src/Services/importer.php | 112 + .../src/Services/mediawiki.php | 227 + .../SemanticMediaWiki/src/Settings.php | 319 + .../SemanticMediaWiki/src/Setup.php | 380 + .../SemanticMediaWiki/src/SetupCheck.php | 552 + .../SemanticMediaWiki/src/SetupFile.php | 443 + .../extensions/SemanticMediaWiki/src/Site.php | 184 + .../SemanticMediaWiki/src/SmwJsonRepo.php | 22 + .../SemanticMediaWiki/src/SortLetter.php | 60 + .../SemanticMediaWiki/src/Status.php | 66 + .../SemanticMediaWiki/src/Store.php | 575 + .../SemanticMediaWiki/src/StoreAware.php | 22 + .../SemanticMediaWiki/src/StoreFactory.php | 71 + .../SemanticMediaWiki/src/StringCondition.php | 88 + .../SemanticMediaWiki/src/TypesRegistry.php | 426 + .../src/UncaughtExceptionHandler.php | 122 + .../SemanticMediaWiki/src/Utils/CharArmor.php | 43 + .../src/Utils/CharExaminer.php | 88 + .../src/Utils/CircularReferenceGuard.php | 107 + .../src/Utils/CliMsgFormatter.php | 451 + .../SemanticMediaWiki/src/Utils/Csv.php | 133 + .../SemanticMediaWiki/src/Utils/DotArray.php | 81 + .../src/Utils/ErrorCodeFormatter.php | 75 + .../SemanticMediaWiki/src/Utils/File.php | 98 + .../src/Utils/FileFetcher.php | 131 + .../SemanticMediaWiki/src/Utils/Flag.php | 49 + .../src/Utils/HmacSerializer.php | 168 + .../src/Utils/Html/SummaryTable.php | 217 + .../src/Utils/HtmlColumns.php | 360 + .../src/Utils/HtmlDivTable.php | 149 + .../SemanticMediaWiki/src/Utils/HtmlModal.php | 164 + .../SemanticMediaWiki/src/Utils/HtmlTable.php | 172 + .../SemanticMediaWiki/src/Utils/HtmlTabs.php | 238 + .../SemanticMediaWiki/src/Utils/HtmlVTabs.php | 191 + .../SemanticMediaWiki/src/Utils/Image.php | 61 + .../src/Utils/JsonSchemaValidator.php | 108 + .../SemanticMediaWiki/src/Utils/JsonView.php | 77 + .../SemanticMediaWiki/src/Utils/Logger.php | 84 + .../SemanticMediaWiki/src/Utils/Logo.php | 49 + .../SemanticMediaWiki/src/Utils/Lru.php | 99 + .../src/Utils/Normalizer.php | 51 + .../SemanticMediaWiki/src/Utils/Pager.php | 212 + .../SemanticMediaWiki/src/Utils/Stats.php | 249 + .../src/Utils/StatsFormatter.php | 122 + .../SemanticMediaWiki/src/Utils/TempFile.php | 67 + .../src/Utils/TemplateEngine.php | 160 + .../SemanticMediaWiki/src/Utils/Timer.php | 106 + .../SemanticMediaWiki/src/Utils/Tokenizer.php | 53 + .../SemanticMediaWiki/src/Utils/Url.php | 110 + .../SemanticMediaWiki/src/Utils/UrlArgs.php | 176 + .../templates/Factbox.mustache | 30 + .../templates/FactboxProperty.mustache | 11 + .../templates/FactboxSection.mustache | 18 + .../templates/SpecialBrowse.mustache | 40 + .../SemanticMediaWiki/tests/README.md | 164 + .../SemanticMediaWiki/tests/autoloader.php | 90 + .../SemanticMediaWiki/tests/bootstrap.php | 63 + .../tests/phpUnitEnvironment.php | 226 + .../BenchmarkJsonScriptRunnerTest.php | 211 + .../phpunit/Benchmark/BenchmarkReporter.php | 22 + .../tests/phpunit/Benchmark/Benchmarker.php | 154 + .../phpunit/Benchmark/CliOutputFormatter.php | 73 + .../phpunit/Benchmark/Fixtures/import-001.xml | 342 + .../phpunit/Benchmark/Fixtures/import-002.xml | 214 + .../Benchmark/JobQueueBenchmarkRunner.php | 124 + .../Benchmark/MaintenanceBenchmarkRunner.php | 112 + .../PageContentCopyBenchmarkRunner.php | 164 + .../Benchmark/PageEditCopyBenchmarkRunner.php | 169 + .../Benchmark/PageImportBenchmarkRunner.php | 117 + .../Benchmark/QueryBenchmarkRunner.php | 165 + .../tests/phpunit/Benchmark/README.md | 56 + .../phpunit/Benchmark/TestCases/b-001.json | 53 + .../phpunit/Benchmark/TestCases/b-002.json | 186 + .../phpunit/Benchmark/phpunit.quick.xml.dist | 38 + .../tests/phpunit/CacheFactoryTest.php | 169 + .../CallbackConnectionProviderTest.php | 66 + .../tests/phpunit/Connection/ConnRefTest.php | 72 + .../Connection/ConnectionManagerTest.php | 91 + .../Constraint/ConstraintCheckRunnerTest.php | 121 + .../Constraint/ConstraintErrorTest.php | 57 + .../Constraint/ConstraintRegistryTest.php | 219 + .../ConstraintSchemaCompilerTest.php | 200 + .../Constraints/DeferrableConstraintTest.php | 53 + .../MandatoryPropertiesConstraintTest.php | 111 + .../Constraints/MustExistsConstraintTest.php | 126 + .../Constraints/NamespaceConstraintTest.php | 99 + .../NonNegativeIntegerConstraintTest.php | 106 + .../Constraints/NullConstraintTest.php | 42 + .../Constraints/ShapeConstraintTest.php | 256 + .../Constraints/SingleValueConstraintTest.php | 115 + .../Constraints/UniqueValueConstraintTest.php | 182 + .../tests/phpunit/ConstraintFactoryTest.php | 141 + .../tests/phpunit/DataItemFactoryTest.php | 152 + .../DataModel/ContainerSemanticDataTest.php | 81 + .../phpunit/DataModel/SequenceMapTest.php | 76 + .../phpunit/DataModel/SubSemanticDataTest.php | 133 + .../tests/phpunit/DataTypeRegistryTest.php | 529 + .../tests/phpunit/DataValueFactoryTest.php | 402 + .../DataValues/AllowsListValueTest.php | 105 + .../DataValues/AllowsPatternValueTest.php | 216 + .../phpunit/DataValues/BooleanValueTest.php | 197 + .../DataValues/ConstraintSchemaValueTest.php | 137 + .../DataValues/ErrorMsgTextValueTest.php | 119 + .../ExternalFormatterUriValueTest.php | 216 + .../ExternalIdentifierValueTest.php | 211 + .../phpunit/DataValues/ImportValueTest.php | 60 + .../DataValues/InfoLinksProviderTest.php | 248 + .../phpunit/DataValues/KeywordValueTest.php | 208 + .../LanguageCodeMappingValueTest.php | 92 + .../DataValues/LanguageCodeValueTest.php | 91 + .../MonolingualTextValueMappingTest.php | 243 + .../DataValues/MonolingualTextValueTest.php | 242 + .../Number/IntlNumberFormatterTest.php | 372 + .../DataValues/Number/UnitConverterTest.php | 260 + .../DataValues/PropertyChainValueTest.php | 145 + .../phpunit/DataValues/PropertyValueTest.php | 62 + .../phpunit/DataValues/ReferenceValueTest.php | 182 + .../phpunit/DataValues/StringValueTest.php | 66 + .../DataValues/TelephoneUriValueTest.php | 29 + .../DataValues/TemperatureValueTest.php | 205 + .../DataValues/Time/ComponentsTest.php | 46 + .../DataValues/Time/IntlTimeFormatterTest.php | 245 + .../phpunit/DataValues/Time/JulianDayTest.php | 119 + .../phpunit/DataValues/Time/TimezoneTest.php | 165 + .../phpunit/DataValues/TypesValueTest.php | 116 + .../UniquenessConstraintValueTest.php | 68 + .../CodeStringValueFormatterTest.php | 150 + .../DispatchingDataValueFormatterTest.php | 122 + .../MonolingualTextValueFormatterTest.php | 152 + .../ValueFormatters/NoValueFormatterTest.php | 78 + .../NumberValueFormatterTest.php | 206 + .../PropertyValueFormatterTest.php | 511 + .../ReferenceValueFormatterTest.php | 218 + .../StringValueFormatterTest.php | 218 + .../TimeValueFormatterTest.php | 514 + .../AllowsListValueParserTest.php | 73 + .../AllowsPatternValueParserTest.php | 48 + .../ValueParsers/ImportValueParserTest.php | 214 + .../MonolingualTextValueMappingParserTest.php | 88 + .../MonolingualTextValueParserTest.php | 87 + .../ValueParsers/PropertyValueParserTest.php | 204 + .../ValueParsers/TimeValueParserTest.php | 122 + ...AllowsListConstraintValueValidatorTest.php | 404 + .../CompoundConstraintValueValidatorTest.php | 73 + .../ConstraintSchemaValueValidatorTest.php | 209 + .../PatternConstraintValueValidatorTest.php | 149 + ...cificationConstraintValueValidatorTest.php | 68 + ...UniquenessConstraintValueValidatorTest.php | 137 + .../tests/phpunit/DefinesTest.php | 37 + .../tests/phpunit/DependencyValidatorTest.php | 258 + .../Deserializers/ExpDataDeserializerTest.php | 157 + .../SemanticDataDeserializerTest.php | 64 + .../tests/phpunit/DisplayTitleFinderTest.php | 314 + .../Admin/ElasticClientTaskHandlerTest.php | 119 + .../Elastic/Admin/IndicesInfoProviderTest.php | 96 + .../Admin/MappingsInfoProviderTest.php | 96 + .../Elastic/Admin/NodesInfoProviderTest.php | 96 + .../Admin/ReplicationInfoProviderTest.php | 130 + .../Admin/SettingsInfoProviderTest.php | 96 + .../tests/phpunit/Elastic/ConfigTest.php | 130 + .../phpunit/Elastic/Connection/ClientTest.php | 99 + .../Connection/ConnectionProviderTest.php | 128 + .../Elastic/Connection/LockManagerTest.php | 119 + .../phpunit/Elastic/ElasticFactoryTest.php | 424 + .../phpunit/Elastic/ElasticStoreTest.php | 344 + .../ClientBuilderNotFoundExceptionTest.php | 26 + .../MissingEndpointConfigExceptionTest.php | 26 + .../UpdateEntityCollationCompleteTest.php | 134 + .../tests/phpunit/Elastic/HooksTest.php | 171 + .../Attachment/AttachmentAnnotatorTest.php | 122 + .../Indexer/Attachment/FileAttachmentTest.php | 310 + .../Indexer/Attachment/FileHandlerTest.php | 91 + .../Attachment/ScopeMemoryLimiterTest.php | 136 + .../phpunit/Elastic/Indexer/BulkTest.php | 317 + .../Elastic/Indexer/DocumentCreatorTest.php | 242 + .../phpunit/Elastic/Indexer/DocumentTest.php | 151 + .../Elastic/Indexer/FileIndexerTest.php | 132 + .../phpunit/Elastic/Indexer/IndexerTest.php | 241 + .../Indexer/Rebuilder/RebuilderTest.php | 270 + .../Indexer/Rebuilder/RolloverTest.php | 110 + .../DocumentReplicationExaminerTest.php | 547 + .../Replication/ReplicationCheckTest.php | 551 + ...xaminerDeferrableIndicatorProviderTest.php | 339 + .../Replication/ReplicationErrorTest.php | 87 + .../Replication/ReplicationStatusTest.php | 354 + .../Elastic/Indexer/TextSanitizerTest.php | 90 + .../tests/phpunit/Elastic/InstallerTest.php | 76 + .../Elastic/Jobs/FileIngestJobTest.php | 195 + .../Elastic/Jobs/IndexerRecoveryJobTest.php | 233 + .../ProximityPropertyValueLookupTest.php | 91 + .../Elastic/QueryEngine/AggregationsTest.php | 112 + .../QueryEngine/ConditionBuilderTest.php | 94 + .../Elastic/QueryEngine/ConditionTest.php | 138 + .../ClassDescriptionInterpreterTest.php | 141 + .../ConceptDescriptionInterpreterTest.php | 124 + .../ConjunctionInterpreterTest.php | 80 + .../NamespaceDescriptionInterpreterTest.php | 70 + .../SomeValueInterpreterTest.php | 362 + .../ValueDescriptionInterpreterTest.php | 162 + .../Elastic/QueryEngine/ExcerptsTest.php | 49 + .../Elastic/QueryEngine/FieldMapperTest.php | 89 + .../Elastic/QueryEngine/QueryEngineTest.php | 172 + .../tests/phpunit/EncoderTest.php | 110 + .../tests/phpunit/EntityCacheTest.php | 271 + .../tests/phpunit/EnumTest.php | 38 + .../Exception/ClassNotFoundExceptionTest.php | 32 + ...figPreloadFileNotReadableExceptionTest.php | 32 + .../DataItemDeserializationExceptionTest.php | 32 + .../Exception/DataItemExceptionTest.php | 32 + .../Exception/DataTypeLookupExceptionTest.php | 32 + .../FileNotReadableExceptionTest.php | 32 + .../FileNotWritableExceptionTest.php | 32 + .../Exception/JSONFileParseExceptionTest.php | 43 + .../Exception/JSONParseExceptionTest.php | 47 + .../NamespaceIndexChangeExceptionTest.php | 32 + .../ParameterNotFoundExceptionTest.php | 41 + ...inedPropertyLabelMismatchExceptionTest.php | 32 + .../PropertyLabelNotResolvedExceptionTest.php | 32 + .../PropertyNotFoundExceptionTest.php | 32 + ...edirectTargetUnresolvableExceptionTest.php | 32 + .../SemanticDataImportExceptionTest.php | 32 + .../SettingNotFoundExceptionTest.php | 32 + .../SettingsAlreadyLoadedExceptionTest.php | 32 + .../SiteLanguageChangeExceptionTest.php | 32 + .../Exception/StoreNotFoundExceptionTest.php | 32 + .../SubSemanticDataExceptionTest.php | 32 + .../phpunit/ExecutionTimeTestListener.php | 113 + .../phpunit/Exporter/ConceptMapperTest.php | 137 + .../phpunit/Exporter/Controller/QueueTest.php | 93 + .../Exporter/DataItemMatchFinderTest.php | 147 + .../Exporter/Element/ExpElementTest.php | 88 + .../Exporter/Element/ExpLiteralTest.php | 258 + .../Exporter/Element/ExpNsResourceTest.php | 245 + .../Exporter/Element/ExpResourceTest.php | 179 + .../phpunit/Exporter/ElementFactoryTest.php | 132 + .../tests/phpunit/Exporter/EscaperTest.php | 152 + .../phpunit/Exporter/ExpDataFactoryTest.php | 100 + .../Exporter/ExpResourceMapperTest.php | 259 + .../phpunit/Exporter/ExporterFactoryTest.php | 139 + ...iliaryPropertyValueResourceBuilderTest.php | 76 + ...onceptPropertyValueResourceBuilderTest.php | 76 + .../DispatchingResourceBuilderTest.php | 120 + ...tifierPropertyValueResourceBuilderTest.php | 78 + ...rtFromPropertyValueResourceBuilderTest.php | 76 + ...eywordPropertyValueResourceBuilderTest.php | 78 + ...alTextPropertyValueResourceBuilderTest.php | 84 + ...efinedPropertyValueResourceBuilderTest.php | 76 + ...ferredPropertyLabelResourceBuilderTest.php | 83 + ...rtyDescriptionValueResourceBuilderTest.php | 83 + .../PropertyValueResourceBuilderTest.php | 66 + ...directPropertyValueResourceBuilderTest.php | 76 + .../SortPropertyValueResourceBuilderTest.php | 155 + ...traintPropertyValueResourceBuilderTest.php | 78 + .../Serializer/RDFXMLSerializerTest.php | 77 + .../Serializer/TurtleSerializerTest.php | 58 + .../phpunit/Exporter/XsdValueMapperTest.php | 160 + .../Factbox/AttachmentFormatterTest.php | 62 + .../phpunit/Factbox/CachedFactboxTest.php | 553 + .../phpunit/Factbox/CheckMagicWordsTest.php | 95 + .../phpunit/Factbox/FactboxFactoryTest.php | 64 + .../phpunit/Factbox/FactboxMagicWordsTest.php | 199 + .../tests/phpunit/Factbox/FactboxTest.php | 496 + .../tests/phpunit/Factbox/FactboxTextTest.php | 89 + .../Exception/invalid.trailing.comma.json | 3 + .../Others/InvalidJsonContent/invalid.json | 26 + .../Others/MissingSections/error.json | 16 + .../Importer/Others/NoImportFormat/error.json | 6 + .../Others/ValidTextContent/content.json | 26 + .../Importer/Others/ValidTextContent/foaf.txt | 13 + .../Importer/ValidTextContent/content.json | 26 + .../Importer/ValidTextContent/foaf.txt | 13 + .../Importer/ValidXmlContent/content.json | 14 + .../Importer/ValidXmlContent/test.xml | 68 + .../Fixtures/Localizer/LocalLanguage/en.json | 24 + .../Localizer/LocalLanguage/foo-fallback.json | 14 + .../Localizer/LocalLanguage/foo-partial.json | 11 + .../tests/phpunit/Fixtures/Localizer/dk.json | 4 + .../tests/phpunit/Fixtures/Localizer/en.json | 3 + .../phpunit/Fixtures/Localizer/test.json | 12 + .../Fixtures/Maintenance/test-import-19.7.xml | 270 + .../MediaWiki/Search/DummySearchDatabase.php | 33 + .../MediaWiki/Search/DummySearchEngine.php | 15 + .../tests/phpunit/Fixtures/PlainClass.php | 15 + .../phpunit/Fixtures/Schema/empty_schema.json | 0 .../Fixtures/Schema/fake_iterator_schema.json | 91 + ...mespace_category_action_rule_schema_4.json | 42 + ...ategory_property_action_rule_schema_6.json | 45 + ...fake_namespace_category_rule_schema_1.json | 30 + ...fake_namespace_category_rule_schema_2.json | 39 + ...pace_category_rule_schema_best_sort_5.json | 39 + ...espace_category_unnamed_rule_schema_3.json | 49 + .../tests/phpunit/Fixtures/Utils/aaa.json | 0 .../phpunit/Fixtures/Utils/subDir/bbb.json | 0 .../tests/phpunit/Fixtures/Utils/zzz.json | 0 .../tests/phpunit/Fixtures/invalid.json | 3 + .../tests/phpunit/Fixtures/readable.file | 1 + .../tests/phpunit/GlobalFunctionsTest.php | 137 + .../tests/phpunit/GroupPermissionsTest.php | 87 + .../tests/phpunit/HashBuilderTest.php | 141 + .../tests/phpunit/HierarchyLookupTest.php | 501 + .../DispatchingContentCreatorTest.php | 129 + .../TextContentCreatorTest.php | 379 + .../ContentCreators/XmlContentCreatorTest.php | 90 + .../phpunit/Importer/ContentModellerTest.php | 58 + .../phpunit/Importer/ImportContentsTest.php | 128 + .../tests/phpunit/Importer/ImporterTest.php | 174 + .../Importer/JsonContentIteratorTest.php | 73 + .../JsonImportContentsFileDirReaderTest.php | 118 + .../tests/phpunit/InMemoryPoolCacheTest.php | 86 + .../EntityExaminerIndicatorsFactoryTest.php | 136 + ...tchEntityExaminerIndicatorProviderTest.php | 270 + ...xaminerDeferrableIndicatorProviderTest.php | 109 + .../CompositeIndicatorHtmlBuilderTest.php | 271 + ...xaminerDeferrableIndicatorProviderTest.php | 172 + ...rorEntityExaminerIndicatorProviderTest.php | 236 + ...ExaminerCompositeIndicatorProviderTest.php | 287 + ...ferrableCompositeIndicatorProviderTest.php | 271 + .../Integration/ConfigPreloaderTest.php | 78 + .../ConstraintRegistryFactoryTest.php | 58 + .../Integration/Elastic/DefaultConfigTest.php | 64 + .../Integration/EncodingIntegrationTest.php | 113 + .../Integration/HookDispatcherTest.php | 510 + .../Importer/ImporterIntegrationTest.php | 73 + .../Importer/JsonFileDirReaderTest.php | 125 + .../InterwikiDBIntegrationTest.php | 172 + .../Integration/JSONScript/Fixtures/P106.txt | 24 + .../Fixtures/api-smwbrowse-0001.0.txt | 1 + .../Fixtures/api-smwbrowse-0001.1.txt | 1 + .../Fixtures/api-smwbrowse-0001.2.txt | 1 + .../Fixtures/api-smwbrowse-0001.3.txt | 1 + .../Fixtures/api-smwbrowse-0001.4.txt | 1 + .../Fixtures/api-smwbrowse-0001.5.txt | 1 + .../Fixtures/api-smwbrowse-0001.6.txt | 1 + .../JSONScript/Fixtures/file-upload.txt | 1 + .../JSONScript/Fixtures/image-upload-480.png | Bin 0 -> 97253 bytes .../JSONScript/Fixtures/image-upload-88.png | Bin 0 -> 4024 bytes .../JSONScript/Fixtures/numeric-sorting.txt | 20 + .../JSONScript/Fixtures/p-0211.1.txt | 20 + .../JSONScript/Fixtures/p-0211.2.txt | 27 + .../JSONScript/Fixtures/p-0211.3.txt | 11 + .../JSONScript/Fixtures/p-0303.txt | 7 + .../JSONScript/Fixtures/p-0439.de.txt | 11 + .../JSONScript/Fixtures/p-0439.fr.txt | 13 + .../JSONScript/Fixtures/p-0444.txt | 1 + .../p-0459-keyword-formatter-schema.json | 15 + .../JSONScript/Fixtures/p-0502-error.txt | 2 + .../Fixtures/p-0502-other-license.json | 4 + .../JSONScript/Fixtures/p-0502.txt | 49 + .../Fixtures/p-1100-constraint-user.json | 12 + .../p-1101-constraint-non-negative.json | 11 + .../p-1102-constraint-must-exists.json | 11 + .../p-1103-constraint-single-value.json | 11 + ...-1110-constraint-mandatory-properties.json | 10 + ...aint-shape-constraint-max-cardinality.json | 16 + ...traint-shape-constraint-property-type.json | 16 + .../p-1120-annotation-sequence-map.json | 9 + .../JSONScript/Fixtures/q-0618.friends.txt | 109 + .../JSONScript/Fixtures/q-0618.persons.txt | 46 + .../JSONScript/Fixtures/q-0618.visits.txt | 27 + .../JSONScript/Fixtures/q-0907-1.txt | 3 + .../JSONScript/Fixtures/q-0907-2.txt | 3 + .../Fixtures/res.api-ask-0002.0.json | 1 + .../Fixtures/res.api-ask-0002.1.json | 1 + .../Fixtures/res.api-ask-0002.2.json | 1 + .../Fixtures/res.api-askargs-0002.3.json | 1 + .../Fixtures/res.api-askargs-0002.4.json | 1 + .../Fixtures/res.api-smwbrowse-0001.10.txt | 1 + .../Fixtures/res.api-smwbrowse-0001.11.txt | 1 + .../Fixtures/res.api-smwbrowse-0001.12.txt | 1 + .../Fixtures/res.api-smwbrowse-0001.13.txt | 1 + .../Fixtures/res.api-smwbrowse-0001.7.txt | 1 + .../Fixtures/res.api-smwbrowse-0001.8.txt | 1 + .../Fixtures/res.api-smwbrowse-0001.9.txt | 1 + .../Fixtures/res.api-smwbrowse-0004.1.json | 1 + .../Fixtures/res.api-smwbrowse-0004.2.json | 1 + .../Fixtures/res.api-smwbrowse-0004.3.json | 1 + .../Fixtures/res.special-ask-0009.0.csv | 5 + .../Fixtures/res.special-ask-0009.1.csv | 4 + .../Fixtures/res.special-ask-0009.2.csv | 5 + .../Fixtures/res.special-ask-0009.3.csv | 4 + .../Fixtures/res.special-ask-0009.4.csv | 4 + .../Fixtures/res.special-ask-0009.5.csv | 5 + .../Fixtures/res.special-ask-0009.6.csv | 4 + .../Fixtures/res.special-ask-0009.7.csv | 4 + .../Fixtures/res.special-ask-0011.0.txt | 12 + .../Fixtures/res.special-ask-0011.1.txt | 13 + .../Fixtures/res.special-ask-0011.2.txt | 13 + .../Fixtures/res.special-ask-0017.0.csv | 3 + .../Fixtures/res.special-ask-0017.1.csv | 3 + .../Fixtures/res.special-ask-0017.2.csv | 3 + .../Fixtures/res.special-ask-0017.3.csv | 3 + .../Fixtures/res.special-ask-0018-0.json | 1 + .../JSONScript/Fixtures/skos-import.txt | 33 + .../Fixtures/special-ask-0007.0.txt | 1 + .../Fixtures/special-ask-0007.1.txt | 1 + .../Fixtures/special-ask-0007.2.txt | 1 + .../special-ask-0011-beacon-intro.txt | 11 + ...al-ask-0011-beacon-named-template-args.txt | 2 + ...-ask-0011-beacon-numeric-template-args.txt | 2 + .../JSONScriptTestCaseRunnerTest.php | 98 + .../phpunit/Integration/JSONScript/README.md | 383 + .../JSONScript/ReadmeContentsBuilder.php | 112 + .../JSONScript/TestCases/api-ask-0001.json | 88 + .../TestCases/api-askargs-0001.json | 72 + .../TestCases/api-smwbrowse-0001.json | 368 + .../TestCases/api-smwbrowse-0002.json | 71 + .../TestCases/api-smwbrowse-0003.json | 106 + .../TestCases/format-category-0001.json | 252 + .../TestCases/format-category-0002.json | 111 + .../TestCases/format-category-0003.json | 150 + .../TestCases/format-category-0004.json | 198 + .../TestCases/format-category-0005.json | 190 + .../TestCases/format-category-0006.json | 234 + .../TestCases/format-category-0007.json | 236 + .../TestCases/format-debug-0001.json | 108 + .../TestCases/format-embedded-0001.json | 244 + .../TestCases/format-embedded-0002.json | 83 + .../TestCases/format-list-0001.json | 68 + .../TestCases/format-list-0002.json | 531 + .../TestCases/format-list-0003.json | 42 + .../TestCases/format-list-ul-ol-0001.json | 159 + .../TestCases/format-list-ul-ol-0002.json | 125 + .../TestCases/format-plainlist-0001.json | 93 + .../TestCases/format-plainlist-0002.json | 92 + .../TestCases/format-plainlist-0003.json | 233 + .../TestCases/format-plainlist-0004.json | 43 + .../TestCases/format-table-0001.json | 138 + .../TestCases/format-table-0002.json | 134 + .../TestCases/format-table-0003.json | 78 + .../TestCases/format-table-0004.json | 52 + .../TestCases/format-table-0005.json | 93 + .../TestCases/format-table-0006.json | 67 + .../TestCases/format-table-0007.json | 138 + .../TestCases/format-table-0008.json | 183 + .../TestCases/format-table-0009.json | 50 + .../TestCases/format-table-0010.json | 76 + .../TestCases/format-table-0011.json | 150 + .../TestCases/format-table-0012.json | 93 + .../TestCases/format-template-0001.json | 85 + .../TestCases/format-template-0002.json | 81 + .../TestCases/format-template-0003.json | 124 + .../TestCases/format-template-0004.json | 78 + .../TestCases/format-template-0005.json | 169 + .../TestCases/format-template-0006.json | 63 + .../TestCases/format-template-0007.json | 70 + .../JSONScript/TestCases/p-0101.json | 174 + .../JSONScript/TestCases/p-0102.json | 258 + .../JSONScript/TestCases/p-0106.json | 101 + .../JSONScript/TestCases/p-0107.json | 92 + .../JSONScript/TestCases/p-0108.json | 114 + .../JSONScript/TestCases/p-0109.json | 48 + .../JSONScript/TestCases/p-0110.json | 43 + .../JSONScript/TestCases/p-0111.json | 35 + .../JSONScript/TestCases/p-0112.json | 58 + .../JSONScript/TestCases/p-0113.json | 126 + .../JSONScript/TestCases/p-0114.json | 85 + .../JSONScript/TestCases/p-0115.json | 130 + .../JSONScript/TestCases/p-0202.json | 87 + .../JSONScript/TestCases/p-0203.json | 104 + .../JSONScript/TestCases/p-0204.json | 54 + .../JSONScript/TestCases/p-0205.json | 87 + .../JSONScript/TestCases/p-0206.json | 105 + .../JSONScript/TestCases/p-0207.json | 89 + .../JSONScript/TestCases/p-0208.json | 236 + .../JSONScript/TestCases/p-0209.json | 250 + .../JSONScript/TestCases/p-0210.json | 90 + .../JSONScript/TestCases/p-0211.json | 97 + .../JSONScript/TestCases/p-0212.json | 103 + .../JSONScript/TestCases/p-0213.json | 94 + .../JSONScript/TestCases/p-0301.json | 62 + .../JSONScript/TestCases/p-0302.json | 106 + .../JSONScript/TestCases/p-0303.json | 70 + .../JSONScript/TestCases/p-0401.json | 153 + .../JSONScript/TestCases/p-0402.json | 239 + .../JSONScript/TestCases/p-0403.json | 118 + .../JSONScript/TestCases/p-0404.json | 78 + .../JSONScript/TestCases/p-0405.json | 212 + .../JSONScript/TestCases/p-0406.json | 60 + .../JSONScript/TestCases/p-0407.json | 61 + .../JSONScript/TestCases/p-0408.json | 45 + .../JSONScript/TestCases/p-0409.json | 217 + .../JSONScript/TestCases/p-0410.json | 458 + .../JSONScript/TestCases/p-0411.json | 186 + .../JSONScript/TestCases/p-0412.json | 76 + .../JSONScript/TestCases/p-0413.json | 882 + .../JSONScript/TestCases/p-0414.json | 377 + .../JSONScript/TestCases/p-0415.json | 65 + .../JSONScript/TestCases/p-0416.json | 284 + .../JSONScript/TestCases/p-0417.json | 88 + .../JSONScript/TestCases/p-0418.json | 85 + .../JSONScript/TestCases/p-0419.json | 285 + .../JSONScript/TestCases/p-0420.json | 108 + .../JSONScript/TestCases/p-0421.json | 55 + .../JSONScript/TestCases/p-0422.json | 124 + .../JSONScript/TestCases/p-0423.json | 173 + .../JSONScript/TestCases/p-0424.json | 115 + .../JSONScript/TestCases/p-0425.json | 71 + .../JSONScript/TestCases/p-0426.json | 150 + .../JSONScript/TestCases/p-0427.json | 149 + .../JSONScript/TestCases/p-0428.json | 47 + .../JSONScript/TestCases/p-0429.json | 189 + .../JSONScript/TestCases/p-0430.json | 133 + .../JSONScript/TestCases/p-0431.json | 104 + .../JSONScript/TestCases/p-0432.json | 186 + .../JSONScript/TestCases/p-0433.json | 93 + .../JSONScript/TestCases/p-0434.json | 199 + .../JSONScript/TestCases/p-0435.json | 66 + .../JSONScript/TestCases/p-0436.json | 117 + .../JSONScript/TestCases/p-0437.json | 45 + .../JSONScript/TestCases/p-0438.json | 65 + .../JSONScript/TestCases/p-0439.json | 122 + .../JSONScript/TestCases/p-0440.json | 190 + .../JSONScript/TestCases/p-0441.json | 47 + .../JSONScript/TestCases/p-0442.json | 53 + .../JSONScript/TestCases/p-0443.json | 198 + .../JSONScript/TestCases/p-0444.json | 207 + .../JSONScript/TestCases/p-0445.json | 63 + .../JSONScript/TestCases/p-0446.json | 257 + .../JSONScript/TestCases/p-0447.json | 78 + .../JSONScript/TestCases/p-0448.json | 74 + .../JSONScript/TestCases/p-0449.json | 335 + .../JSONScript/TestCases/p-0450.json | 94 + .../JSONScript/TestCases/p-0451.json | 161 + .../JSONScript/TestCases/p-0452.json | 55 + .../JSONScript/TestCases/p-0453.json | 41 + .../JSONScript/TestCases/p-0454.json | 52 + .../JSONScript/TestCases/p-0455.json | 244 + .../JSONScript/TestCases/p-0456.json | 108 + .../JSONScript/TestCases/p-0457.json | 70 + .../JSONScript/TestCases/p-0458.json | 72 + .../JSONScript/TestCases/p-0459.json | 122 + .../JSONScript/TestCases/p-0460.json | 170 + .../JSONScript/TestCases/p-0461.json | 92 + .../JSONScript/TestCases/p-0462.json | 122 + .../JSONScript/TestCases/p-0463.json | 73 + .../JSONScript/TestCases/p-0464.json | 151 + .../JSONScript/TestCases/p-0465.json | 85 + .../JSONScript/TestCases/p-0467.json | 77 + .../JSONScript/TestCases/p-0501.json | 35 + .../JSONScript/TestCases/p-0502.json | 194 + .../JSONScript/TestCases/p-0503.json | 106 + .../JSONScript/TestCases/p-0504.json | 49 + .../JSONScript/TestCases/p-0701.json | 76 + .../JSONScript/TestCases/p-0702.json | 102 + .../JSONScript/TestCases/p-0703.json | 67 + .../JSONScript/TestCases/p-0704.json | 56 + .../JSONScript/TestCases/p-0705.json | 132 + .../JSONScript/TestCases/p-0706.json | 183 + .../JSONScript/TestCases/p-0707.json | 45 + .../JSONScript/TestCases/p-0708.json | 64 + .../JSONScript/TestCases/p-0709.json | 104 + .../JSONScript/TestCases/p-0710.json | 66 + .../JSONScript/TestCases/p-0711.json | 149 + .../JSONScript/TestCases/p-0712.json | 64 + .../JSONScript/TestCases/p-0713.json | 85 + .../JSONScript/TestCases/p-0901.json | 112 + .../JSONScript/TestCases/p-0902.json | 65 + .../JSONScript/TestCases/p-0903.json | 70 + .../JSONScript/TestCases/p-0904.json | 136 + .../JSONScript/TestCases/p-0905.json | 103 + .../JSONScript/TestCases/p-0906.json | 69 + .../JSONScript/TestCases/p-0907.json | 81 + .../JSONScript/TestCases/p-0908.json | 48 + .../JSONScript/TestCases/p-0909.json | 265 + .../JSONScript/TestCases/p-0910.json | 134 + .../JSONScript/TestCases/p-0911.json | 64 + .../JSONScript/TestCases/p-0912.json | 112 + .../JSONScript/TestCases/p-0913.json | 137 + .../JSONScript/TestCases/p-0914.json | 88 + .../JSONScript/TestCases/p-0915.json | 112 + .../JSONScript/TestCases/p-0916.json | 176 + .../JSONScript/TestCases/p-0917.json | 78 + .../JSONScript/TestCases/p-0918.json | 111 + .../JSONScript/TestCases/p-0919.json | 89 + .../JSONScript/TestCases/p-0920.json | 59 + .../JSONScript/TestCases/p-0921.json | 70 + .../JSONScript/TestCases/p-0922.json | 213 + .../JSONScript/TestCases/p-1000.json | 127 + .../JSONScript/TestCases/p-1001.json | 97 + .../JSONScript/TestCases/p-1002.json | 47 + .../JSONScript/TestCases/p-1003.json | 72 + .../JSONScript/TestCases/p-1004.json | 59 + .../JSONScript/TestCases/p-1005.json | 53 + .../JSONScript/TestCases/p-1006.json | 81 + .../JSONScript/TestCases/p-1007.json | 57 + .../JSONScript/TestCases/p-1008.json | 77 + .../JSONScript/TestCases/p-1009.json | 79 + .../JSONScript/TestCases/p-1010.json | 55 + .../JSONScript/TestCases/p-1011.json | 52 + .../JSONScript/TestCases/p-1012.json | 53 + .../JSONScript/TestCases/p-1100.json | 100 + .../JSONScript/TestCases/p-1101.json | 123 + .../JSONScript/TestCases/p-1102.json | 100 + .../JSONScript/TestCases/p-1103.json | 124 + .../JSONScript/TestCases/p-1110.json | 140 + .../JSONScript/TestCases/p-1111.json | 218 + .../JSONScript/TestCases/p-1120.json | 91 + .../JSONScript/TestCases/p-1121.json | 77 + .../JSONScript/TestCases/p-1200.json | 123 + .../JSONScript/TestCases/q-0101.json | 127 + .../JSONScript/TestCases/q-0102.json | 263 + .../JSONScript/TestCases/q-0103.json | 223 + .../JSONScript/TestCases/q-0104.json | 279 + .../JSONScript/TestCases/q-0105.json | 343 + .../JSONScript/TestCases/q-0106.json | 94 + .../JSONScript/TestCases/q-0201.json | 136 + .../JSONScript/TestCases/q-0202.json | 128 + .../JSONScript/TestCases/q-0203.json | 76 + .../JSONScript/TestCases/q-0204.json | 116 + .../JSONScript/TestCases/q-0301.json | 134 + .../JSONScript/TestCases/q-0401.json | 163 + .../JSONScript/TestCases/q-0402.json | 248 + .../JSONScript/TestCases/q-0501.json | 130 + .../JSONScript/TestCases/q-0502.json | 84 + .../JSONScript/TestCases/q-0503.json | 87 + .../JSONScript/TestCases/q-0601.json | 77 + .../JSONScript/TestCases/q-0602.json | 48 + .../JSONScript/TestCases/q-0603.json | 230 + .../JSONScript/TestCases/q-0604.json | 192 + .../JSONScript/TestCases/q-0605.json | 141 + .../JSONScript/TestCases/q-0606.json | 249 + .../JSONScript/TestCases/q-0607.json | 116 + .../JSONScript/TestCases/q-0608.json | 123 + .../JSONScript/TestCases/q-0609.json | 78 + .../JSONScript/TestCases/q-0610.json | 94 + .../JSONScript/TestCases/q-0611.json | 62 + .../JSONScript/TestCases/q-0612.json | 100 + .../JSONScript/TestCases/q-0613.json | 182 + .../JSONScript/TestCases/q-0614.json | 109 + .../JSONScript/TestCases/q-0615.json | 148 + .../JSONScript/TestCases/q-0616.json | 128 + .../JSONScript/TestCases/q-0617.json | 127 + .../JSONScript/TestCases/q-0618.json | 133 + .../JSONScript/TestCases/q-0619.json | 80 + .../JSONScript/TestCases/q-0620.json | 134 + .../JSONScript/TestCases/q-0621.json | 105 + .../JSONScript/TestCases/q-0622.json | 71 + .../JSONScript/TestCases/q-0623.json | 85 + .../JSONScript/TestCases/q-0624.json | 366 + .../JSONScript/TestCases/q-0625.json | 442 + .../JSONScript/TestCases/q-0626.json | 183 + .../JSONScript/TestCases/q-0701.json | 186 + .../JSONScript/TestCases/q-0702.json | 177 + .../JSONScript/TestCases/q-0703.json | 77 + .../JSONScript/TestCases/q-0704.json | 52 + .../JSONScript/TestCases/q-0801.json | 52 + .../JSONScript/TestCases/q-0802.json | 160 + .../JSONScript/TestCases/q-0803.json | 140 + .../JSONScript/TestCases/q-0804.json | 34 + .../JSONScript/TestCases/q-0901.json | 379 + .../JSONScript/TestCases/q-0902.json | 65 + .../JSONScript/TestCases/q-0903.json | 347 + .../JSONScript/TestCases/q-0904.json | 142 + .../JSONScript/TestCases/q-0905.json | 209 + .../JSONScript/TestCases/q-0906.json | 163 + .../JSONScript/TestCases/q-0907.json | 111 + .../JSONScript/TestCases/q-0908.json | 219 + .../JSONScript/TestCases/q-0909.json | 180 + .../JSONScript/TestCases/q-0910.json | 113 + .../JSONScript/TestCases/q-0911.json | 54 + .../JSONScript/TestCases/q-1002.json | 167 + .../JSONScript/TestCases/q-1003.json | 165 + .../JSONScript/TestCases/q-1004.json | 175 + .../JSONScript/TestCases/q-1101.json | 189 + .../JSONScript/TestCases/q-1102.json | 95 + .../JSONScript/TestCases/q-1103.json | 100 + .../JSONScript/TestCases/q-1104.json | 86 + .../JSONScript/TestCases/q-1105.json | 94 + .../JSONScript/TestCases/q-1106.json | 116 + .../JSONScript/TestCases/q-1107.json | 84 + .../JSONScript/TestCases/q-1108.json | 106 + .../JSONScript/TestCases/q-1109.json | 98 + .../JSONScript/TestCases/q-1200.json | 210 + .../JSONScript/TestCases/q-1201.json | 114 + .../JSONScript/TestCases/q-1202.json | 226 + .../JSONScript/TestCases/q-1203.json | 271 + .../JSONScript/TestCases/q-1204.json | 204 + .../JSONScript/TestCases/q-1205.json | 102 + .../JSONScript/TestCases/q-1206.json | 142 + .../JSONScript/TestCases/q-1300.json | 99 + .../JSONScript/TestCases/q-1301.json | 42 + .../JSONScript/TestCases/r-0001.json | 205 + .../JSONScript/TestCases/r-0002.json | 86 + .../JSONScript/TestCases/r-0003.json | 208 + .../JSONScript/TestCases/r-0004.json | 92 + .../JSONScript/TestCases/r-0005.json | 47 + .../JSONScript/TestCases/r-0006.json | 127 + .../JSONScript/TestCases/r-0007.json | 125 + .../JSONScript/TestCases/r-0008.json | 89 + .../JSONScript/TestCases/r-0009.json | 88 + .../JSONScript/TestCases/r-0010.json | 107 + .../JSONScript/TestCases/r-0011.json | 112 + .../JSONScript/TestCases/r-0012.json | 100 + .../JSONScript/TestCases/r-0013.json | 105 + .../JSONScript/TestCases/r-0014.json | 76 + .../JSONScript/TestCases/r-0015.json | 77 + .../JSONScript/TestCases/r-0016.json | 105 + .../JSONScript/TestCases/r-0017.json | 104 + .../JSONScript/TestCases/r-0018.json | 46 + .../JSONScript/TestCases/r-0019.json | 52 + .../JSONScript/TestCases/r-0020.json | 45 + .../JSONScript/TestCases/r-0021.json | 68 + .../TestCases/special-ask-0001.json | 130 + .../TestCases/special-ask-0002.json | 136 + .../TestCases/special-ask-0003.json | 67 + .../TestCases/special-ask-0004.json | 71 + .../TestCases/special-ask-0005.json | 128 + .../TestCases/special-ask-0006.json | 93 + .../TestCases/special-ask-0007.json | 121 + .../TestCases/special-ask-0008.json | 81 + .../TestCases/special-ask-0009.json | 248 + .../TestCases/special-ask-0010.json | 179 + .../TestCases/special-ask-0011.json | 167 + .../TestCases/special-ask-0012.json | 185 + .../TestCases/special-ask-0013.json | 95 + .../TestCases/special-ask-0014.json | 65 + .../TestCases/special-ask-0015-mw142.json | 70 + .../TestCases/special-ask-0015.json | 70 + .../TestCases/special-ask-0016.json | 67 + .../TestCases/special-ask-0017.json | 117 + .../TestCases/special-ask-0018.json | 71 + .../TestCases/special-ask-0019.json | 78 + .../TestCases/special-browse-0001.json | 52 + .../TestCases/special-browse-0002.json | 86 + .../TestCases/special-browse-0003.json | 161 + .../TestCases/special-browse-0004.json | 49 + .../TestCases/special-browse-0005.json | 188 + .../TestCases/special-browse-0006.json | 47 + .../TestCases/special-browse-0007.json | 52 + .../TestCases/special-browse-0008.json | 94 + .../TestCases/special-concepts-0001.json | 50 + .../TestCases/special-page-property-0001.json | 47 + .../TestCases/special-properties-0001.json | 71 + .../TestCases/special-search-0001.json | 70 + .../special-search-by-property-0001.json | 586 + .../special-search-by-property-0002.json | 56 + .../special-search-by-property-0003.json | 59 + .../TestCases/special-types-0001.json | 82 + .../special-unused-properties-0001.json | 46 + .../special-wanted-properties-0001.json | 53 + .../special-wanted-properties-0002.json | 43 + .../Integration/JSONScript/bootstrap.json | 53 + .../Integration/JSONScript/docs/design.md | 305 + .../Integration/JSONScript/docs/extension.md | 147 + .../Integration/JSONScript/docs/notes.md | 26 + .../Localizer/CopyLocalMessagesTest.php | 88 + .../LocalLanguage/LanguageContent.php | 97 + .../LocalLanguage/PartialLanguageFallback.php | 72 + .../DisposeOutdatedEntitiesTest.php | 63 + .../Integration/Maintenance/DumpRDFTest.php | 58 + .../Maintenance/PopulateHashFieldTest.php | 44 + .../Maintenance/PurgeEntityCacheTest.php | 44 + .../Maintenance/RebuildConceptCacheTest.php | 48 + .../Maintenance/RebuildElasticIndexTest.php | 57 + .../RebuildElasticMissingDocumentsTest.php | 64 + .../RebuildFulltextSearchTableTest.php | 55 + .../RemoveDuplicateEntitiesTest.php | 44 + .../Integration/Maintenance/RunImportTest.php | 58 + .../Maintenance/SetupStoreMaintenanceTest.php | 108 + .../Maintenance/UpdateEntityCollationTest.php | 62 + .../Maintenance/UpdateEntityCountMapTest.php | 54 + .../UpdateQueryDependenciesTest.php | 44 + .../ApiBrowseBySubjectDBIntegrationTest.php | 142 + .../Hooks/FileUploadIntegrationTest.php | 134 + ...nternalParseBeforeLinksIntegrationTest.php | 60 + .../Hooks/PageMoveCompleteIntegrationTest.php | 197 + .../Hooks/ParserAfterTidyIntegrationTest.php | 57 + .../ParserFirstCallInitIntegrationTest.php | 205 + ...tegoryInstanceAndCategoryHierarchyTest.php | 98 + ...anceAndCategoryHierarchyTest-Mw-1-19-7.xml | 175 + .../GenericLoremIpsumTest-Mw-1-19-7.xml | 270 + ...ageWithTemplateInclusionTest-Mw-1-19-7.xml | 112 + .../Fixtures/RecordDataTypeTest-Mw-1-19-7.xml | 279 + .../Fixtures/RedirectPageTest-Mw-1-19-7.xml | 113 + .../Fixtures/TimeDataTypeTest-Mw-1-19-7.xml | 159 + .../Import/Fixtures/cicero-de-finibus.xml | 69 + .../Import/Fixtures/dwc-import-example.xml | 307 + .../Maintenance/DumpRdfMaintenanceTest.php | 134 + .../RebuildConceptCacheMaintenanceTest.php | 128 + .../RebuildDataMaintenanceTest.php | 173 + .../RebuildFulltextSearchTableTest.php | 58 + ...buildPropertyStatisticsMaintenanceTest.php | 74 + .../Maintenance/UpdateEntityCollationTest.php | 83 + .../Import/PageWithTemplateInclusionTest.php | 91 + .../MediaWiki/Import/RecordDataTypeTest.php | 224 + .../MediaWiki/Import/RedirectPageTest.php | 205 + .../MediaWiki/Import/TimeDataTypeTest.php | 280 + .../Jobs/ChangePropagationDispatchJob.php | 177 + .../MediaWiki/Jobs/UpdateJobRoundtripTest.php | 191 + ...dateEmptyParserOutputDBIntegrationTest.php | 47 + .../LinksUpdateSQLStoreDBIntegrationTest.php | 252 + .../Integration/MediaWiki/LinksUpdateTest.php | 216 + ...iaWikiIntegrationForRegisteredHookTest.php | 164 + .../NamespaceInfoCanonicalNameMatchTest.php | 89 + ...nedPropertyAnnotationDBIntegrationTest.php | 104 + .../RedirectTargetFinderIntegrationTest.php | 263 + .../SearchInPageDBIntegrationTest.php | 128 + .../MediaWiki/TitleFactoryIntegrationTest.php | 42 + ...notationParserTemplateTransclusionTest.php | 145 + .../PropertyLabelCanonicalMatchTest.php | 158 + .../CategoryClassQueryDBIntegrationTest.php | 129 + ...rFilterConditionQueryDBIntegrationTest.php | 330 + .../ConjunctionQueryDBIntegrationTest.php | 251 + ...atePropertyValueQueryDBIntegrationTest.php | 175 + .../DisjunctionQueryDBIntegrationTest.php | 240 + .../Query/GeneralQueryDBIntegrationTest.php | 136 + ...ePropertyRelationshipDBIntegrationTest.php | 130 + .../Query/NamespaceQueryDBIntegrationTest.php | 112 + .../Integration/Query/NullQueryResultTest.php | 58 + ...tatorWithQueryProcessorIntegrationTest.php | 139 + .../Query/QuerySourceIntegrationTest.php | 186 + .../RandomQueryResultOrderIntegrationTest.php | 86 + .../ResultPrinterIntegrationTest.php | 119 + .../Query/SemanticDataLookupTest.php | 195 + .../Query/SortableQueryDBIntegrationTest.php | 173 + ...pecialCharactersQueryDBIntegrationTest.php | 162 + ...eryResultQueryProcessorIntegrationTest.php | 209 + .../Integration/RdfFileResourceTest.php | 109 + ...tLookupWithoutBaseStoreIntegrationTest.php | 214 + ...toryRedirectLookupActiveConnectionTest.php | 109 + ...oupPropertyValuesLookupIntegrationTest.php | 319 + .../RefreshSQLStoreDBIntegrationTest.php | 104 + .../SubSemanticDataDBIntegrationTest.php | 169 + .../TableBuilderIntegrationTest.php | 312 + .../CompartmentIteratorSchemaListTest.php | 84 + .../Schema/FilteredSchemaListTest.php | 324 + .../SemanticDataCountMapIntegrationTest.php | 111 + ...nticDataSerializationDBIntegrationTest.php | 52 + ...ataSerializerDeserializerRoundtripTest.php | 190 + ...nticDataSortKeyUpdateDBIntegrationTest.php | 104 + .../SemanticDataStorageDBIntegrationTest.php | 327 + ...kiProvidedHookInterfaceIntegrationTest.php | 577 + .../phpunit/Integration/SpecialAskTest.php | 130 + .../phpunit/Integration/SpecialsTest.php | 170 + .../Utils/FileFetcherRoundTripTest.php | 95 + .../Utils/TempFileRoundTripTest.php | 48 + .../Utils/TemplateEngineRoundTripTest.php | 72 + .../tests/phpunit/IteratorFactoryTest.php | 78 + .../phpunit/Iterators/AppendIteratorTest.php | 76 + .../phpunit/Iterators/ChunkedIteratorTest.php | 65 + .../phpunit/Iterators/CsvFileIteratorTest.php | 128 + .../DotSeekableIteratorTraitTest.php | 77 + .../phpunit/Iterators/MappingIteratorTest.php | 75 + .../phpunit/Iterators/ResultIteratorTest.php | 100 + .../Iterators/SeekableIteratorTraitTest.php | 177 + .../JSONScriptServicesTestCaseRunner.php | 563 + .../phpunit/JSONScriptTestCaseRunner.php | 339 + .../CallableChangeListenerTraitTest.php | 78 + .../ChangeListenerAwareTraitTest.php | 50 + .../ChangeListeners/ChangeRecordTest.php | 81 + .../PropertyChangeListenerTest.php | 164 + .../ChangeListener/ChangeRecordTest.php | 103 + .../EventListener/EventHandlerTest.php | 87 + .../EventListenerRegistryTest.php | 98 + ...InvalidateEntityCacheEventListenerTest.php | 93 + ...cificationLookupCacheEventListenerTest.php | 67 + ...InvalidateResultCacheEventListenerTest.php | 67 + .../LocalLanguage/FallbackFinderTest.php | 87 + .../JsonContentsFileReaderTest.php | 163 + .../LocalLanguage/LanguageContentsTest.php | 196 + .../LocalLanguage/LocalLanguageTest.php | 347 + .../Localizer/LocalMessageProviderTest.php | 75 + .../tests/phpunit/Localizer/LocalizerTest.php | 372 + .../Localizer/MessageLocalizerTraitTest.php | 47 + .../tests/phpunit/Localizer/MessageTest.php | 202 + .../phpunit/Maintenance/AutoRecoveryTest.php | 168 + .../Maintenance/ConceptCacheRebuilderTest.php | 215 + .../DataRebuilder/OutdatedDisposerTest.php | 246 + .../phpunit/Maintenance/DataRebuilderTest.php | 416 + .../DisposeOutdatedEntitiesTest.php | 60 + .../DistinctEntityDataRebuilderTest.php | 285 + .../DuplicateEntitiesDisposerTest.php | 166 + .../Jobs/ExceptionFileLoggerTest.php | 76 + .../Jobs/MaintenanceFactoryTest.php | 116 + .../Maintenance/MaintenanceCheckTest.php | 46 + .../Maintenance/MaintenanceHelperTest.php | 102 + .../Maintenance/MaintenanceLoggerTest.php | 64 + .../PropertyStatisticsRebuilderTest.php | 128 + .../Maintenance/PurgeEntityCacheTest.php | 97 + .../phpunit/Maintenance/RunImportTest.php | 60 + .../UpdateQueryDependenciesTest.php | 121 + .../Api/ApiQueryResultFormatterTest.php | 337 + .../Api/ApiRequestParameterFormatterTest.php | 99 + .../phpunit/MediaWiki/Api/AskArgsTest.php | 267 + .../tests/phpunit/MediaWiki/Api/AskTest.php | 104 + .../Api/Browse/ArticleAugmentorTest.php | 151 + .../Api/Browse/ArticleLookupTest.php | 116 + .../Api/Browse/CachingLookupTest.php | 134 + .../Api/Browse/ListAugmentorTest.php | 190 + .../MediaWiki/Api/Browse/ListLookupTest.php | 124 + .../Api/Browse/PSubjectLookupTest.php | 79 + .../MediaWiki/Api/Browse/PValueLookupTest.php | 278 + .../Api/Browse/SubjectLookupTest.php | 109 + .../MediaWiki/Api/BrowseByPropertyTest.php | 111 + .../MediaWiki/Api/BrowseBySubjectTest.php | 236 + .../phpunit/MediaWiki/Api/BrowseTest.php | 226 + .../tests/phpunit/MediaWiki/Api/InfoTest.php | 178 + .../Api/PropertyListByApiRequestTest.php | 144 + .../tests/phpunit/MediaWiki/Api/QueryTest.php | 136 + .../phpunit/MediaWiki/Api/TaskFactoryTest.php | 80 + .../tests/phpunit/MediaWiki/Api/TaskTest.php | 246 + .../Api/Tasks/CheckQueryTaskTest.php | 73 + .../Api/Tasks/DuplicateLookupTaskTest.php | 87 + .../Api/Tasks/EntityExaminerTaskTest.php | 131 + .../MediaWiki/Api/Tasks/InsertJobTaskTest.php | 69 + .../MediaWiki/Api/Tasks/JobListTaskTest.php | 59 + .../Api/Tasks/TableStatisticsTaskTest.php | 81 + .../MediaWiki/Api/Tasks/UpdateTaskTest.php | 65 + .../tests/phpunit/MediaWiki/CollatorTest.php | 181 + .../Connection/CleanUpTablesTest.php | 95 + .../Connection/ConnectionProviderTest.php | 139 + .../MediaWiki/Connection/DatabaseTest.php | 629 + .../LoadBalancerConnectionProviderTest.php | 87 + .../Connection/OptionsBuilderTest.php | 78 + .../MediaWiki/Connection/QueryTest.php | 317 + .../MediaWiki/Connection/SequenceTest.php | 90 + .../Connection/TransactionHandlerTest.php | 149 + .../MediaWiki/Content/HtmlBuilderTest.php | 109 + .../Content/SchemaContentFormatterTest.php | 199 + .../Content/SchemaContentHandlerTest.php | 170 + .../MediaWiki/Content/SchemaContentTest.php | 69 + .../DeepRedirectTargetResolverTest.php | 138 + .../MediaWiki/Deferred/CallableUpdateTest.php | 252 + .../Deferred/ChangeTitleUpdateTest.php | 77 + .../Deferred/HashFieldUpdateTest.php | 79 + .../TransactionalCallableUpdateTest.php | 391 + .../tests/phpunit/MediaWiki/EditInfoTest.php | 225 + .../phpunit/MediaWiki/FileRepoFinderTest.php | 99 + .../HookDispatcherAwareTraitTest.php | 50 + .../MediaWiki/Hooks/AdminLinksTest.php | 25 + .../MediaWiki/Hooks/ApiModuleManagerTest.php | 77 + .../MediaWiki/Hooks/ArticleDeleteTest.php | 118 + .../MediaWiki/Hooks/ArticleFromTitleTest.php | 76 + .../Hooks/ArticleProtectCompleteTest.php | 222 + .../MediaWiki/Hooks/ArticlePurgeTest.php | 240 + .../MediaWiki/Hooks/ArticleViewHeaderTest.php | 227 + .../Hooks/BeforeDisplayNoArticleTextTest.php | 68 + .../MediaWiki/Hooks/BeforePageDisplayTest.php | 274 + .../MediaWiki/Hooks/DeleteAccountTest.php | 86 + .../MediaWiki/Hooks/EditPageFormTest.php | 202 + .../Hooks/ExtensionSchemaUpdatesTest.php | 64 + .../MediaWiki/Hooks/ExtensionTypesTest.php | 37 + .../MediaWiki/Hooks/FileUploadTest.php | 176 + .../MediaWiki/Hooks/GetPreferencesTest.php | 112 + .../Hooks/InternalParseBeforeLinksTest.php | 457 + .../Hooks/LinksUpdateCompleteTest.php | 266 + .../Hooks/OutputPageParserOutputTest.php | 394 + .../MediaWiki/Hooks/PageMoveCompleteTest.php | 134 + .../MediaWiki/Hooks/ParserAfterTidyTest.php | 535 + .../MediaWiki/Hooks/PersonalUrlsTest.php | 89 + .../Hooks/RejectParserCacheValueTest.php | 172 + .../Hooks/ResourceLoaderGetConfigVarsTest.php | 66 + .../Hooks/RevisionFromEditCompleteTest.php | 275 + .../Hooks/SidebarBeforeOutputTest.php | 185 + .../MediaWiki/Hooks/SkinAfterContentTest.php | 370 + .../SkinTemplateNavigationUniversalTest.php | 80 + .../Hooks/SpecialSearchResultsPrependTest.php | 132 + .../Hooks/SpecialStatsAddExtraTest.php | 180 + .../Hooks/TitleIsAlwaysKnownTest.php | 65 + .../MediaWiki/Hooks/TitleIsMovableTest.php | 90 + .../Hooks/TitleQuickPermissionsTest.php | 98 + .../MediaWiki/Hooks/UserChangeTest.php | 127 + .../tests/phpunit/MediaWiki/HooksTest.php | 1848 +++ .../MediaWiki/IndicatorRegistryTest.php | 173 + .../phpunit/MediaWiki/JobFactoryTest.php | 169 + .../tests/phpunit/MediaWiki/JobQueueTest.php | 228 + .../ChangePropagationClassUpdateJobTest.php | 73 + .../Jobs/ChangePropagationDispatchJobTest.php | 256 + .../Jobs/ChangePropagationUpdateJobTest.php | 73 + .../DeferredConstraintCheckUpdateJobTest.php | 90 + .../Jobs/EntityIdDisposerJobTest.php | 163 + .../FulltextSearchTableRebuildJobTest.php | 105 + .../Jobs/FulltextSearchTableUpdateJobTest.php | 90 + .../phpunit/MediaWiki/Jobs/NullJobTest.php | 47 + .../Jobs/ParserCachePurgeJobTest.php | 71 + .../Jobs/PropertyStatisticsRebuildJobTest.php | 94 + .../phpunit/MediaWiki/Jobs/RefreshJobTest.php | 164 + .../Jobs/UpdateDispatcherJobTest.php | 412 + .../phpunit/MediaWiki/Jobs/UpdateJobTest.php | 331 + .../tests/phpunit/MediaWiki/LinkBatchTest.php | 85 + .../tests/phpunit/MediaWiki/LocalTimeTest.php | 92 + .../MediaWiki/MagicWordsFinderTest.php | 165 + .../MediaWiki/ManualEntryLoggerTest.php | 110 + .../MediaWikiNsContentReaderTest.php | 61 + .../phpunit/MediaWiki/MessageBuilderTest.php | 119 + .../MediaWiki/MwCollaboratorFactoryTest.php | 275 + .../phpunit/MediaWiki/NamespaceInfoTest.php | 61 + .../MediaWiki/Page/ConceptPageTest.php | 35 + .../Page/ListBuilder/ItemListBuilderTest.php | 94 + .../Page/ListBuilder/ValueListBuilderTest.php | 147 + .../MediaWiki/Page/ListBuilderTest.php | 133 + .../MediaWiki/Page/PropertyPageTest.php | 56 + .../phpunit/MediaWiki/PageCreatorTest.php | 44 + .../phpunit/MediaWiki/PageFactoryTest.php | 91 + .../MediaWiki/PageInfoProviderTest.php | 388 + .../phpunit/MediaWiki/PageUpdaterTest.php | 297 + .../Permission/PermissionExaminerTest.php | 63 + .../Permission/TitlePermissionsTest.php | 528 + .../MediaWiki/PermissionManagerTest.php | 78 + .../tests/phpunit/MediaWiki/PipetrickTest.php | 52 + .../Preference/PreferenceExaminerTest.php | 63 + .../MediaWiki/RedirectTargetFinderTest.php | 76 + .../Renderer/HtmlColumnListRendererTest.php | 252 + .../Renderer/HtmlFormRendererTest.php | 220 + .../Renderer/HtmlTableRendererTest.php | 171 + .../Renderer/HtmlTemplateRendererTest.php | 70 + .../Renderer/WikitextTemplateRendererTest.php | 52 + .../MediaWiki/RevisionGuardAwareTraitTest.php | 50 + .../phpunit/MediaWiki/RevisionGuardTest.php | 175 + ...SearchDatabaseInvalidTypeExceptionTest.php | 32 + .../SearchEngineInvalidTypeExceptionTest.php | 32 + .../Search/ExtendedSearchEngineTest.php | 500 + .../MediaWiki/Search/ExtendedSearchTest.php | 353 + .../ProfileForm/Forms/CustomFormTest.php | 71 + .../Search/ProfileForm/Forms/FieldTest.php | 101 + .../ProfileForm/Forms/NamespaceFormTest.php | 96 + .../Search/ProfileForm/Forms/OpenFormTest.php | 73 + .../Search/ProfileForm/Forms/SortFormTest.php | 57 + .../Search/ProfileForm/FormsBuilderTest.php | 114 + .../Search/ProfileForm/FormsFactoryTest.php | 69 + .../Search/ProfileForm/ProfileFormTest.php | 166 + .../MediaWiki/Search/QueryBuilderTest.php | 214 + .../Search/SearchEngineFactoryTest.php | 173 + .../MediaWiki/Search/SearchResultSetTest.php | 292 + .../MediaWiki/Search/SearchResultTest.php | 127 + ...ntitiesMaintenanceAlertTaskHandlerTest.php | 61 + .../DeprecationNoticeTaskHandlerTest.php | 155 + ...tionRunMaintenanceAlertTaskHandlerTest.php | 56 + .../MaintenanceAlertsTaskHandlerTest.php | 50 + ...resholdMaintenanceAlertTaskHandlerTest.php | 61 + .../Specials/Admin/AlertsTaskHandlerTest.php | 74 + .../DataRefreshJobTaskHandlerTest.php | 147 + .../Maintenance/DisposeJobTaskHandlerTest.php | 148 + ...xtSearchTableRebuildJobTaskHandlerTest.php | 148 + ...PropertyStatsRebuildJobTaskHandlerTest.php | 148 + .../TableSchemaTaskHandlerTest.php | 107 + .../Admin/MaintenanceTaskHandlerTest.php | 141 + .../Specials/Admin/OutputFormatterTest.php | 97 + .../CacheStatisticsListTaskHandlerTest.php | 94 + .../ConfigurationListTaskHandlerTest.php | 84 + .../DuplicateLookupTaskHandlerTest.php | 73 + .../EntityLookupTaskHandlerTest.php | 221 + ...erationalStatisticsListTaskHandlerTest.php | 141 + .../TableStatisticsTaskHandlerTest.php | 80 + .../Admin/SupplementTaskHandlerTest.php | 127 + .../Admin/SupportListTaskHandlerTest.php | 81 + .../Specials/Admin/TaskHandlerFactoryTest.php | 172 + .../Admin/TaskHandlerRegistryTest.php | 162 + .../Specials/Ask/DownloadLinksWidgetTest.php | 41 + .../Specials/Ask/ErrorWidgetTest.php | 103 + .../Specials/Ask/FormatListWidgetTest.php | 57 + .../MediaWiki/Specials/Ask/HelpWidgetTest.php | 28 + .../MediaWiki/Specials/Ask/HtmlFormTest.php | 72 + .../Specials/Ask/LinksWidgetTest.php | 126 + .../Ask/NavigationLinksWidgetTest.php | 143 + .../Specials/Ask/ParameterInputTest.php | 103 + .../Specials/Ask/ParametersProcessorTest.php | 236 + .../Specials/Ask/ParametersWidgetTest.php | 84 + .../Specials/Ask/QueryInputWidgetTest.php | 32 + .../MediaWiki/Specials/Ask/SortWidgetTest.php | 77 + .../Specials/Browse/FieldBuilderTest.php | 37 + .../Specials/Browse/GroupFormatterTest.php | 214 + .../Specials/Browse/HtmlBuilderTest.php | 290 + .../Specials/Browse/ValueFormatterTest.php | 102 + .../DefaultProfileNotFoundExceptionTest.php | 32 + ...efaultValueFilterNotFoundExceptionTest.php | 32 + ...eSourceDefinitionConflictExceptionTest.php | 32 + .../FacetedSearch/ExploreListBuilderTest.php | 38 + .../FacetedSearch/ExtraFieldBuilderTest.php | 43 + .../FacetedSearch/FacetBuilderTest.php | 53 + .../FacetedSearch/FilterFactoryTest.php | 48 + .../Filters/CategoryFilterTest.php | 110 + .../Filters/PropertyFilterTest.php | 110 + .../Filters/ValueFilterFactoryTest.php | 111 + .../FacetedSearch/Filters/ValueFilterTest.php | 164 + .../CheckboxRangeGroupValueFilterTest.php | 81 + .../ValueFilters/CheckboxValueFilterTest.php | 75 + .../ValueFilters/ListValueFilterTest.php | 75 + .../ValueFilters/RangeValueFilterTest.php | 81 + .../FacetedSearch/HtmlBuilderTest.php | 68 + .../FacetedSearch/OptionsBuilderTest.php | 38 + .../FacetedSearch/ParametersProcessorTest.php | 38 + .../Specials/FacetedSearch/ProfileTest.php | 97 + .../FacetedSearch/ResultFetcherTest.php | 38 + .../FacetedSearch/TreeBuilderTest.php | 38 + .../PageProperty/PagePropertyTest.php | 115 + .../PendingTasks/IncompleteSetupTasksTest.php | 56 + .../ContentsBuilderTest.php | 96 + .../SearchByProperty/PageBuilderTest.php | 175 + .../PageRequestOptionsTest.php | 283 + .../QueryResultLookupTest.php | 139 + .../MediaWiki/Specials/SpecialAdminTest.php | 99 + .../MediaWiki/Specials/SpecialAskTest.php | 73 + .../MediaWiki/Specials/SpecialBrowseTest.php | 105 + .../SpecialConstraintErrorListTest.php | 76 + .../SpecialMissingRedirectAnnotationsTest.php | 77 + .../Specials/SpecialPagePropertyTest.php | 110 + .../Specials/SpecialPendingTaskListTest.php | 75 + .../SpecialProcessingErrorListTest.php | 76 + .../SpecialPropertyLabelSimilarityTest.php | 53 + .../Specials/SpecialSearchByPropertyTest.php | 121 + .../Specials/SpecialURIResolverTest.php | 52 + .../MediaWiki/StripMarkerDecoderTest.php | 102 + .../Template/TemplateExpanderTest.php | 62 + .../MediaWiki/Template/TemplateSetTest.php | 36 + .../MediaWiki/Template/TemplateTest.php | 36 + .../phpunit/MediaWiki/TitleFactoryTest.php | 78 + .../phpunit/MediaWiki/TitleLookupTest.php | 245 + .../tests/phpunit/NamespaceExaminerTest.php | 107 + .../tests/phpunit/NamespaceManagerTest.php | 355 + .../tests/phpunit/NamespaceUriFinderTest.php | 51 + .../tests/phpunit/OptionsAwareTraitTest.php | 61 + .../tests/phpunit/OptionsTest.php | 223 + .../tests/phpunit/PHPUnitCompat.php | 104 + .../tests/phpunit/PHPUnitResultPrinter.php | 46 + .../phpunit/ParameterListDocBuilderTest.php | 158 + .../phpunit/ParameterProcessorFactoryTest.php | 60 + .../tests/phpunit/ParametersTest.php | 49 + .../Parser/AnnotationProcessorTest.php | 99 + .../Parser/InTextAnnotationParserTest.php | 737 + .../tests/phpunit/Parser/LinksEncoderTest.php | 151 + .../phpunit/Parser/LinksProcessorTest.php | 134 + .../Parser/RecursiveTextProcessorTest.php | 349 + .../Parser/SemanticLinksParserTest.php | 94 + .../tests/phpunit/ParserDataTest.php | 478 + .../phpunit/ParserFunctionFactoryTest.php | 212 + .../ParserFunctions/AskParserFunctionTest.php | 575 + .../ConceptParserFunctionTest.php | 240 + .../DeclareParserFunctionTest.php | 101 + .../DocumentationParserFunctionTest.php | 60 + .../ExpensiveFuncExecutionWatcherTest.php | 145 + .../InfoParserFunctionTest.php | 57 + .../RecurringEventsParserFunctionTest.php | 427 + .../ParserFunctions/SectionTagTest.php | 115 + .../ParserFunctions/SetParserFunctionTest.php | 237 + .../ShowParserFunctionTest.php | 284 + .../SubobjectParserFunctionTest.php | 723 + .../phpunit/ParserParameterProcessorTest.php | 399 + .../tests/phpunit/PostProcHandlerTest.php | 427 + .../phpunit/ProcessingErrorMsgHandlerTest.php | 325 + .../phpunit/Property/AnnotatorFactoryTest.php | 150 + .../AttachmentLinkPropertyAnnotatorTest.php | 105 + .../CategoryPropertyAnnotatorTest.php | 380 + .../ChainablePropertyAnnotatorTest.php | 115 + .../DisplayTitlePropertyAnnotatorTest.php | 230 + .../EditProtectedPropertyAnnotatorTest.php | 197 + .../MandatoryTypePropertyAnnotatorTest.php | 254 + .../Annotators/NullPropertyAnnotatorTest.php | 47 + .../PredefinedPropertyAnnotatorTest.php | 364 + .../RedirectPropertyAnnotatorTest.php | 112 + .../SchemaPropertyAnnotatorTest.php | 79 + .../SortKeyPropertyAnnotatorTest.php | 127 + .../TranslationPropertyAnnotatorTest.php | 156 + .../ChangePropagationNotifierTest.php | 199 + .../ChangePropagationExaminerTest.php | 142 + .../CommonExaminerTest.php | 183 + .../PredefinedPropertyExaminerTest.php | 141 + .../ProtectionExaminerTest.php | 147 + .../UserdefinedPropertyExaminerTest.php | 373 + .../DeclarationExaminerFactoryTest.php | 47 + .../DeclarationExaminerMsgBuilderTest.php | 108 + .../Property/RestrictionExaminerTest.php | 139 + .../Property/SpecificationLookupTest.php | 574 + .../tests/phpunit/PropertyAliasFinderTest.php | 146 + .../tests/phpunit/PropertyLabelFinderTest.php | 198 + .../tests/phpunit/PropertyRegistryTest.php | 594 + .../Protection/EditProtectionUpdaterTest.php | 225 + .../Protection/ProtectionValidatorTest.php | 510 + .../phpunit/Query/Cache/CacheStatsTest.php | 75 + .../phpunit/Query/Cache/ResultCacheTest.php | 319 + .../phpunit/Query/DebugFormatterTest.php | 145 + .../tests/phpunit/Query/DeferredTest.php | 46 + .../Query/DescriptionBuilderRegistryTest.php | 104 + ...lingualTextValueDescriptionBuilderTest.php | 152 + .../NumberValueDescriptionBuilderTest.php | 106 + .../RecordValueDescriptionBuilderTest.php | 128 + .../SomeValueDescriptionBuilderTest.php | 186 + .../TimeValueDescriptionBuilderTest.php | 115 + .../phpunit/Query/DescriptionFactoryTest.php | 377 + .../ResultFormatNotFoundExceptionTest.php | 32 + .../tests/phpunit/Query/ExcerptsTest.php | 68 + .../Query/Language/ClassDescriptionTest.php | 261 + .../Query/Language/ConceptDescriptionTest.php | 90 + .../Query/Language/ConjunctionTest.php | 241 + .../Query/Language/DisjunctionTest.php | 284 + .../Language/NamespaceDescriptionTest.php | 86 + .../Query/Language/SomePropertyTest.php | 490 + .../Query/Language/ThingDescriptionTest.php | 50 + .../Query/Language/ValueDescriptionTest.php | 212 + .../Query/Parser/DescriptionProcessorTest.php | 242 + .../phpunit/Query/Parser/LegacyParserTest.php | 359 + .../phpunit/Query/Parser/TermParserTest.php | 214 + .../phpunit/Query/Parser/TokenizerTest.php | 96 + .../Query/PrintRequest/DeserializerTest.php | 251 + .../Query/PrintRequest/FormatterTest.php | 95 + .../Query/PrintRequest/SerializerTest.php | 110 + .../phpunit/Query/PrintRequestFactoryTest.php | 83 + .../tests/phpunit/Query/PrintRequestTest.php | 183 + .../Processor/DefaultParamDefinitionTest.php | 50 + .../Processor/ParamListProcessorTest.php | 401 + .../Query/Processor/QueryCreatorTest.php | 90 + .../Query/Processor/QueryProcessorTest.php | 58 + .../Query/ProfileAnnotatorFactoryTest.php | 221 + .../DescriptionProfileTest.php | 88 + .../DurationProfileAnnotatorTest.php | 81 + .../FormatProfileAnnotatorTest.php | 68 + .../NullProfileAnnotatorTest.php | 65 + .../ParametersProfileAnnotatorTest.php | 88 + .../SchemaLinkProfileAnnotatorTest.php | 97 + .../SourceProfileAnnotatorTest.php | 82 + .../StatusCodeProfileAnnotatorTest.php | 85 + .../phpunit/Query/QueryComparatorTest.php | 182 + .../tests/phpunit/Query/QueryLinkerTest.php | 99 + .../tests/phpunit/Query/QueryResultTest.php | 152 + .../phpunit/Query/QuerySourceFactoryTest.php | 140 + .../phpunit/Query/QueryStringifierTest.php | 297 + .../tests/phpunit/Query/QueryTokenTest.php | 213 + .../tests/phpunit/Query/RemoteRequestTest.php | 103 + .../Query/Result/FieldItemFinderTest.php | 323 + .../phpunit/Query/Result/FilterMapTest.php | 61 + .../phpunit/Query/Result/ItemFetcherTest.php | 162 + .../phpunit/Query/Result/ItemJournalTest.php | 60 + .../phpunit/Query/Result/RestrictionsTest.php | 95 + .../phpunit/Query/Result/StringResultTest.php | 73 + .../tests/phpunit/Query/ResultFormatTest.php | 35 + .../AggregatablePrinterTest.php | 333 + .../CategoryResultPrinterTest.php | 45 + .../CsvFileExportPrinterTest.php | 70 + .../ResultPrinters/DsvResultPrinterTest.php | 81 + .../EmbeddedResultPrinterTest.php | 44 + .../ResultPrinters/FeedExportPrinterTest.php | 67 + .../ResultPrinters/FileExportPrinterTest.php | 46 + .../ResultPrinters/JsonResultPrinterTest.php | 119 + .../ParameterDictionaryTest.php | 62 + .../ResultPrinters/ListResultPrinterTest.php | 66 + .../ResultPrinters/NullResultPrinterTest.php | 41 + .../ResultPrinters/RdfResultPrinterTest.php | 53 + .../ResultPrinters/ResultPrintersTest.php | 76 + .../ResultPrinters/TableResultPrinterTest.php | 45 + .../TemplateFileExportPrinterTest.php | 70 + .../tests/phpunit/Query/ScoreSetTest.php | 91 + .../tests/phpunit/QueryFactoryTest.php | 118 + .../phpunit/QueryPrinterRegistryTestCase.php | 87 + .../tests/phpunit/QueryPrinterTestCase.php | 66 + .../tests/phpunit/QueryTest.php | 192 + .../tests/phpunit/RequestOptionsTest.php | 120 + .../tests/phpunit/SMWIntegrationTestCase.php | 282 + .../BadHttpEndpointResponseExceptionTest.php | 46 + .../HttpEndpointConnectionExceptionTest.php | 25 + .../HttpResponseErrorMapperTest.php | 124 + .../Condition/FalseConditionTest.php | 37 + .../Condition/FilterConditionTest.php | 52 + .../Condition/SingletonConditionTest.php | 55 + .../Condition/TrueConditionTest.php | 37 + .../Condition/WhereConditionTest.php | 52 + .../QueryEngine/ConditionBuilderTest.php | 897 + .../DescriptionInterpreterFactoryTest.php | 38 + .../ClassDescriptionInterpreterTest.php | 237 + .../ConceptDescriptionInterpreterTest.php | 193 + .../ConjunctionInterpreterTest.php | 367 + .../DisjunctionInterpreterTest.php | 479 + .../NamespaceDescriptionInterpreterTest.php | 106 + .../SomePropertyInterpreterTest.php | 549 + .../ThingDescriptionInterpreterTest.php | 124 + .../ValueDescriptionInterpreterTest.php | 584 + .../QueryEngine/EngineOptionsTest.php | 90 + .../QueryEngine/QueryEngineTest.php | 515 + .../QueryEngine/QueryResultFactoryTest.php | 196 + .../QueryEngine/RepositoryResultTest.php | 123 + .../QueryEngine/XmlResponseParserTest.php | 165 + .../ReplicationDataTruncatorTest.php | 70 + .../SPARQLStore/RepositoryClientTest.php | 62 + .../RepositoryConnectionProviderTest.php | 196 + .../ElementaryRepositoryConnectorTest.php | 179 + .../FourstoreRepositoryConnectorTest.php | 24 + .../FusekiRepositoryConnectorTest.php | 58 + .../GenericRepositoryConnectorTest.php | 119 + .../RepositoryConnectorsExceptionTest.php | 136 + .../VirtuosoRepositoryConnectorTest.php | 24 + .../RepositoryRedirectLookupTest.php | 280 + .../SPARQLStore/SPARQLStoreFactoryTest.php | 88 + .../phpunit/SPARQLStore/SPARQLStoreTest.php | 381 + .../SPARQLStore/TurtleTriplesBuilderTest.php | 106 + .../SQLStore/ChangeOp/ChangeDiffTest.php | 172 + .../SQLStore/ChangeOp/ChangeOpTest.php | 406 + .../SQLStore/ChangeOp/FieldChangeOpTest.php | 63 + .../SQLStore/ChangeOp/TableChangeOpTest.php | 223 + .../phpunit/SQLStore/ConceptCacheTest.php | 90 + .../phpunit/SQLStore/EntityIdManagerTest.php | 628 + .../EntityStore/AuxiliaryFieldsTest.php | 128 + .../SQLStore/EntityStore/CacheWarmerTest.php | 196 + .../CachingSemanticDataLookupTest.php | 254 + .../DataItemHandlerFactoryTest.php | 127 + .../DataItemHandlers/DIBlobHandlerTest.php | 236 + .../DataItemHandlers/DIUriHandlerTest.php | 206 + .../DIWikiPageHandlerTest.php | 182 + .../EntityStore/DuplicateFinderTest.php | 197 + .../EntityStore/EntityIdFinderTest.php | 183 + .../SQLStore/EntityStore/EntityLookupTest.php | 343 + .../SQLStore/EntityStore/FieldListTest.php | 84 + .../EntityStore/IdCacheManagerTest.php | 170 + .../SQLStore/EntityStore/IdChangerTest.php | 370 + .../EntityStore/IdEntityFinderTest.php | 228 + .../EntityStore/PrefetchCacheTest.php | 86 + .../EntityStore/PrefetchItemLookupTest.php | 236 + .../EntityStore/PropertiesLookupTest.php | 133 + .../PropertySubjectsLookupTest.php | 151 + .../EntityStore/ResultLimiterTest.php | 75 + .../EntityStore/SemanticDataLookupTest.php | 592 + .../EntityStore/SequenceMapFinderTest.php | 137 + .../EntityStore/StubSemanticDataTest.php | 155 + .../EntityStore/SubobjectListFinderTest.php | 136 + .../TraversalPropertyLookupTest.php | 136 + ...StatisticsInvalidArgumentExceptionTest.php | 32 + .../TableMissingIdFieldExceptionTest.php | 32 + .../SQLStore/Installer/TableOptimizerTest.php | 68 + .../Installer/VersionExaminerTest.php | 164 + .../tests/phpunit/SQLStore/InstallerTest.php | 284 + .../ByGroupPropertyValuesLookupTest.php | 280 + .../SQLStore/Lookup/CachedListLookupTest.php | 164 + .../ChangePropagationEntityLookupTest.php | 183 + .../Lookup/DisplayTitleLookupTest.php | 121 + .../Lookup/EntityUniquenessLookupTest.php | 174 + .../SQLStore/Lookup/ErrorLookupTest.php | 217 + .../Lookup/MissingRedirectLookupTest.php | 85 + .../Lookup/MonolingualTextLookupTest.php | 202 + .../PropertyLabelSimilarityLookupTest.php | 145 + .../Lookup/PropertyUsageListLookupTest.php | 209 + .../ProximityPropertyValueLookupTest.php | 202 + .../Lookup/RedirectTargetLookupTest.php | 145 + .../Lookup/SingleEntityQueryLookupTest.php | 242 + .../Lookup/TableStatisticsLookupTest.php | 121 + .../UndeclaredPropertyListLookupTest.php | 275 + .../Lookup/UnusedPropertyListLookupTest.php | 209 + .../Lookup/UsageStatisticsListLookupTest.php | 180 + .../SQLStore/PropertyStatisticsStoreTest.php | 325 + .../PropertyTable/PropertyTableHashesTest.php | 172 + .../PropertyTableDefinitionBuilderTest.php | 188 + .../SQLStore/PropertyTableDefinitionTest.php | 77 + .../PropertyTableIdReferenceDisposerTest.php | 411 + .../PropertyTableIdReferenceFinderTest.php | 205 + .../SQLStore/PropertyTableInfoFetcherTest.php | 204 + .../SQLStore/PropertyTableRowDifferTest.php | 256 + .../SQLStore/PropertyTableRowMapperTest.php | 204 + .../SQLStore/PropertyTableUpdaterTest.php | 220 + .../SQLStore/PropertyTypeFinderTest.php | 57 + .../DependencyLinksTableUpdaterTest.php | 210 + .../DependencyLinksValidatorTest.php | 120 + .../QueryDependencyLinksStoreTest.php | 927 ++ .../QueryReferenceBacklinksTest.php | 130 + .../QueryResultDependencyListResolverTest.php | 592 + .../QueryDependencyLinksStoreFactoryTest.php | 86 + .../ConceptQuerySegmentBuilderTest.php | 68 + .../QueryEngine/ConditionBuilderTest.php | 312 + .../DescriptionInterpreterFactoryTest.php | 64 + .../ClassDescriptionInterpreterTest.php | 135 + .../ComparatorMapperTest.php | 82 + .../ConceptDescriptionInterpreterTest.php | 230 + .../DisjunctionConjunctionInterpreterTest.php | 140 + .../NamespaceDescriptionInterpreterTest.php | 87 + .../SomePropertyInterpreterTest.php | 507 + .../ThingDescriptionInterpreterTest.php | 81 + .../ValueDescriptionInterpreterTest.php | 163 + .../QueryEngine/EngineOptionsTest.php | 64 + .../MySQLValueMatchConditionBuilderTest.php | 205 + .../SQLiteValueMatchConditionBuilderTest.php | 227 + .../Fulltext/SearchTableRebuilderTest.php | 214 + .../QueryEngine/Fulltext/SearchTableTest.php | 130 + .../Fulltext/SearchTableUpdaterTest.php | 204 + .../Fulltext/TextChangeUpdaterTest.php | 231 + .../Fulltext/TextSanitizerTest.php | 132 + .../ValueMatchConditionBuilderTest.php | 135 + .../FulltextSearchTableFactoryTest.php | 133 + .../HierarchyTempTableBuilderTest.php | 106 + .../QueryEngine/OrderConditionTest.php | 118 + .../SQLStore/QueryEngine/QueryEngineTest.php | 118 + .../QuerySegmentListProcessorTest.php | 63 + .../SQLStore/QueryEngine/QuerySegmentTest.php | 80 + .../SQLStore/QueryEngineFactoryTest.php | 77 + .../Rebuilder/EntityValidatorTest.php | 205 + .../SQLStore/Rebuilder/RebuilderTest.php | 245 + .../phpunit/SQLStore/RedirectStoreTest.php | 329 + .../phpunit/SQLStore/RedirectUpdaterTest.php | 274 + .../SQLStore/RequestOptionsProcessorTest.php | 336 + .../phpunit/SQLStore/SQLStoreFactoryTest.php | 779 + .../tests/phpunit/SQLStore/SQLStoreTest.php | 154 + .../phpunit/SQLStore/SQLStoreUpdaterTest.php | 485 + .../TableBuildExaminerFactoryTest.php | 109 + .../Examiner/CountMapFieldTest.php | 90 + .../Examiner/EntityCollationTest.php | 91 + .../Examiner/FixedPropertiesTest.php | 93 + .../TableBuilder/Examiner/HashFieldTest.php | 106 + .../TableBuilder/Examiner/IdBorderTest.php | 210 + .../Examiner/PredefinedPropertiesTest.php | 195 + .../Examiner/TouchedFieldTest.php | 74 + .../SQLStore/TableBuilder/FieldTypeTest.php | 72 + .../TableBuilder/MySQLTableBuilderTest.php | 188 + .../TableBuilder/PostgresTableBuilderTest.php | 184 + .../TableBuilder/SQLiteTableBuilderTest.php | 166 + .../TableBuilder/TableBuildExaminerTest.php | 220 + .../TableBuilder/TableBuilderTest.php | 84 + .../TableBuilder/TableSchemaManagerTest.php | 267 + .../SQLStore/TableBuilder/TableTest.php | 174 + .../TemporaryTableBuilderTest.php | 128 + .../SQLStore/TableFieldUpdaterTest.php | 158 + .../Schema/CompartmentIteratorTest.php | 260 + .../tests/phpunit/Schema/CompartmentTest.php | 156 + .../SchemaConstructionFailedExceptionTest.php | 32 + ...hemaParameterTypeMismatchExceptionTest.php | 32 + .../SchemaTypeAlreadyExistsExceptionTest.php | 32 + .../SchemaTypeNotFoundExceptionTest.php | 41 + .../Schema/Filters/CategoryFilterTest.php | 500 + .../Schema/Filters/CompositeFilterTest.php | 121 + .../Schema/Filters/FilterTraitTest.php | 83 + .../Schema/Filters/NamespaceFilterTest.php | 183 + .../Schema/Filters/PropertyFilterTest.php | 489 + .../tests/phpunit/Schema/RuleTest.php | 91 + .../phpunit/Schema/SchemaDefinitionTest.php | 166 + .../phpunit/Schema/SchemaFactoryTest.php | 169 + .../Schema/SchemaFilterFactoryTest.php | 54 + .../tests/phpunit/Schema/SchemaFinderTest.php | 265 + .../tests/phpunit/Schema/SchemaListTest.php | 212 + .../tests/phpunit/Schema/SchemaTypesTest.php | 181 + .../phpunit/Schema/SchemaValidatorTest.php | 119 + .../phpunit/SemanticMediaWikiTestCase.php | 259 + .../tests/phpunit/SerializerFactoryTest.php | 157 + .../Serializers/ExpDataSerializerTest.php | 169 + .../Serializers/QueryResultSerializerTest.php | 278 + .../SemanticDataSerializerTest.php | 109 + .../Services/DataValueServiceFactoryTest.php | 190 + .../DataValueServicesContainerBuildTest.php | 204 + .../EventsServicesContainerBuildTest.php | 83 + .../ServiceNotFoundExceptionTest.php | 32 + .../Services/ImporterServiceFactoryTest.php | 128 + .../ImporterServicesContainerBuildTest.php | 108 + .../MediaWikiServicesContainerBuildTest.php | 95 + .../Services/ServicesContainerTest.php | 141 + .../phpunit/Services/ServicesFactoryTest.php | 295 + .../Services/SharedServicesContainerTest.php | 42 + .../tests/phpunit/SettingsTest.php | 195 + .../tests/phpunit/SetupCheckTest.php | 172 + .../tests/phpunit/SetupFileTest.php | 397 + .../tests/phpunit/SetupTest.php | 317 + .../tests/phpunit/SiteTest.php | 106 + .../tests/phpunit/SortLetterTest.php | 64 + .../tests/phpunit/SpecialPageTestCase.php | 138 + .../tests/phpunit/StatusTest.php | 59 + .../tests/phpunit/StoreFactoryTest.php | 77 + .../tests/phpunit/StringConditionTest.php | 50 + ...reloadTableListPrimaryKeysCompleteTest.php | 59 + .../Structure/I18nJsonFileIntegrityTest.php | 139 + ...8nMsgDescriptionPredefinedPropertyTest.php | 47 + .../Structure/I18nMsgKeyIntegrityTest.php | 83 + ...stallationGlobalsProviderIntegrityTest.php | 100 + ...lLanguageAccessibilityAndIntegrityTest.php | 102 + .../LocalLanguageFileIntegrityTest.php | 95 + .../Structure/PHPUnitCheckRunnerTest.php | 129 + .../Structure/ResourcesAccessibilityTest.php | 87 + .../tests/phpunit/TestConfig.php | 71 + .../tests/phpunit/TestEnvironment.php | 294 + .../tests/phpunit/TypesRegistryTest.php | 125 + .../phpunit/UncaughtExceptionHandlerTest.php | 113 + .../tests/phpunit/Updater/DataUpdaterTest.php | 542 + .../Utils/ByPageSemanticDataFinder.php | 141 + .../tests/phpunit/Utils/CharArmorTest.php | 100 + .../tests/phpunit/Utils/CharExaminerTest.php | 72 + .../Utils/CircularReferenceGuardTest.php | 79 + .../phpunit/Utils/CliMsgFormatterTest.php | 175 + .../TestDatabaseConnectionProvider.php | 46 + .../Connection/TestDatabaseTableBuilder.php | 286 + .../tests/phpunit/Utils/CsvTest.php | 222 + .../tests/phpunit/Utils/DotArrayTest.php | 147 + .../phpunit/Utils/ErrorCodeFormatterTest.php | 49 + .../phpunit/Utils/File/BulkFileProvider.php | 64 + .../phpunit/Utils/File/ContentsReader.php | 51 + .../phpunit/Utils/File/DummyFileCreator.php | 99 + .../phpunit/Utils/File/JsonFileReader.php | 103 + .../phpunit/Utils/File/LocalFileUpload.php | 177 + .../tests/phpunit/Utils/FileFetcherTest.php | 37 + .../tests/phpunit/Utils/FileTest.php | 44 + .../Utils/Fixtures/Facts/BerlinFactsheet.php | 264 + .../Utils/Fixtures/Facts/FranceFactsheet.php | 114 + .../Utils/Fixtures/Facts/ParisFactsheet.php | 246 + .../Utils/Fixtures/File/LoremIpsum.json | 13 + .../Utils/Fixtures/File/LoremIpsum.txt | 3 + .../Utils/Fixtures/FixturesCleaner.php | 54 + .../Utils/Fixtures/FixturesFactory.php | 40 + .../Utils/Fixtures/FixturesFileProvider.php | 60 + .../Utils/Fixtures/FixturesProvider.php | 161 + .../InvalidCustomRespositoryConnector.php | 12 + .../Fixtures/Properties/AreaProperty.php | 58 + .../Properties/BookRecordProperty.php | 49 + .../Fixtures/Properties/CapitalOfProperty.php | 42 + .../Fixtures/Properties/CityCategory.php | 45 + .../Properties/CoordinatesProperty.php | 23 + .../Fixtures/Properties/CountryCategory.php | 59 + .../Properties/DescriptionProperty.php | 23 + .../Fixtures/Properties/EmailProperty.php | 23 + .../Fixtures/Properties/FixtureProperty.php | 49 + .../Fixtures/Properties/FoundedProperty.php | 23 + .../Fixtures/Properties/LocatedInProperty.php | 23 + .../Properties/PopulationDensityProperty.php | 47 + .../Properties/PopulationProperty.php | 23 + .../Fixtures/Properties/StatusProperty.php | 46 + .../Properties/TelephoneNumberProperty.php | 23 + .../Properties/TemperatureProperty.php | 23 + .../Fixtures/Properties/TitleProperty.php | 23 + .../Utils/Fixtures/Properties/UrlProperty.php | 23 + .../Fixtures/Properties/YearProperty.php | 23 + .../Results/FakeRawResultProvider.php | 80 + .../Results/XML/boolean-sparql-result.xml | 6 + .../Results/XML/empty-sparql-result.xml | 9 + .../integer-type-literal-sparql-result.xml | 11 + .../Results/XML/invalid-sparql-result.xml | 8 + .../XML/mixed-rows-sparql-result-utf8.xml | 17 + .../Results/XML/mixed-rows-sparql-result.xml | 17 + .../XML/nontype-literal-sparql-result.xml | 12 + .../XML/string-type-literal-sparql-result.xml | 11 + .../XML/uri-resource-sparql-result.xml | 11 + .../tests/phpunit/Utils/FlagTest.php | 58 + .../tests/phpunit/Utils/GlobalsProvider.php | 69 + .../phpunit/Utils/HmacSerializerTest.php | 123 + .../phpunit/Utils/Html/SummaryTableTest.php | 104 + .../tests/phpunit/Utils/HtmlColumnsTest.php | 317 + .../tests/phpunit/Utils/HtmlDivTableTest.php | 65 + .../tests/phpunit/Utils/HtmlModalTest.php | 54 + .../tests/phpunit/Utils/HtmlTableTest.php | 113 + .../tests/phpunit/Utils/HtmlTabsTest.php | 138 + .../tests/phpunit/Utils/HtmlVTabsTest.php | 103 + .../tests/phpunit/Utils/ImageTest.php | 37 + .../phpunit/Utils/InSemanticDataFetcher.php | 60 + .../Utils/JSONScript/ApiTestCaseProcessor.php | 122 + .../JSONScript/JsonTestCaseContentHandler.php | 192 + .../JSONScript/JsonTestCaseFileHandler.php | 499 + .../ParserHtmlTestCaseProcessor.php | 147 + .../JSONScript/ParserTestCaseProcessor.php | 282 + .../JSONScript/QueryTestCaseInterpreter.php | 322 + .../JSONScript/QueryTestCaseProcessor.php | 280 + .../Utils/JSONScript/RdfTestCaseProcessor.php | 139 + .../SpecialPageTestCaseProcessor.php | 196 + .../phpunit/Utils/JsonSchemaValidatorTest.php | 145 + .../tests/phpunit/Utils/JsonViewTest.php | 45 + .../tests/phpunit/Utils/LoggerTest.php | 58 + .../tests/phpunit/Utils/LogoTest.php | 45 + .../tests/phpunit/Utils/LruTest.php | 78 + .../Utils/Mock/CoreMockObjectRepository.php | 641 + .../phpunit/Utils/Mock/FakeQueryStore.php | 43 + .../Utils/Mock/IteratorMockBuilder.php | 123 + .../Mock/MediaWikiMockObjectRepository.php | 489 + .../phpunit/Utils/Mock/MockObjectBuilder.php | 191 + .../Utils/Mock/MockObjectRepository.php | 23 + .../phpunit/Utils/Mock/MockSuperUser.php | 47 + .../tests/phpunit/Utils/Mock/MockTitle.php | 64 + .../tests/phpunit/Utils/MwApiFactory.php | 84 + .../tests/phpunit/Utils/MwHooksHandler.php | 166 + .../tests/phpunit/Utils/NormalizerTest.php | 57 + .../tests/phpunit/Utils/Page/PageEditor.php | 91 + .../tests/phpunit/Utils/PageCreator.php | 157 + .../tests/phpunit/Utils/PageDeleter.php | 75 + .../tests/phpunit/Utils/PageReader.php | 75 + .../tests/phpunit/Utils/PageRefresher.php | 94 + .../tests/phpunit/Utils/PagerTest.php | 34 + .../tests/phpunit/Utils/ParserFactory.php | 48 + .../phpunit/Utils/ResultPrinterReflector.php | 53 + .../phpunit/Utils/Runners/JobQueueRunner.php | 145 + .../Utils/Runners/MaintenanceRunner.php | 127 + .../phpunit/Utils/Runners/RunnerFactory.php | 79 + .../phpunit/Utils/Runners/XmlImportRunner.php | 177 + .../phpunit/Utils/SemanticDataFactory.php | 78 + .../tests/phpunit/Utils/SpyLogger.php | 59 + .../phpunit/Utils/StatsFormatterTest.php | 97 + .../tests/phpunit/Utils/StatsTest.php | 176 + .../tests/phpunit/Utils/StringBuilder.php | 42 + .../tests/phpunit/Utils/TempFileTest.php | 35 + .../phpunit/Utils/TemplateEngineTest.php | 103 + .../tests/phpunit/Utils/TimerTest.php | 49 + .../tests/phpunit/Utils/TokenizerTest.php | 42 + .../tests/phpunit/Utils/UrlArgsTest.php | 123 + .../tests/phpunit/Utils/UrlTest.php | 82 + .../tests/phpunit/Utils/UtilityFactory.php | 264 + .../Utils/Validators/ExportDataValidator.php | 89 + .../Utils/Validators/HtmlValidator.php | 135 + .../IncomingSemanticDataValidator.php | 100 + .../Utils/Validators/NumberValidator.php | 62 + .../Utils/Validators/QueryResultValidator.php | 217 + .../Validators/QuerySegmentValidator.php | 77 + .../Validators/SemanticDataValidator.php | 436 + .../Utils/Validators/StringValidator.php | 112 + .../Utils/Validators/TitleValidator.php | 46 + .../Utils/Validators/ValidatorFactory.php | 98 + .../phpunit/includes/ContentParserTest.php | 148 + .../includes/DataValues/RecordValueTest.php | 271 + .../includes/DataValues/UriValueTest.php | 386 + .../includes/DataValues/WikiPageValueTest.php | 62 + .../phpunit/includes/HighlighterTest.php | 115 + .../tests/phpunit/includes/InfolinkTest.php | 238 + .../includes/QueryPrinterFactoryTest.php | 195 + .../phpunit/includes/QueryProcessorTest.php | 151 + .../phpunit/includes/RecurringEventsTest.php | 444 + .../phpunit/includes/SemanticDataTest.php | 733 + .../tests/phpunit/includes/SubobjectTest.php | 432 + .../includes/dataitems/CommonDataItemTest.php | 40 + .../includes/dataitems/DIConceptTest.php | 81 + .../includes/dataitems/DIPropertyTest.php | 179 + .../phpunit/includes/dataitems/DITimeTest.php | 153 + .../includes/dataitems/DIWikiPageTest.php | 186 + .../includes/dataitems/DI_BlobTest.php | 48 + .../includes/dataitems/DI_BoolTest.php | 48 + .../includes/dataitems/DI_GeoCoordTest.php | 75 + .../includes/dataitems/DI_NumberTest.php | 45 + .../includes/dataitems/DataItemTest.php | 110 + .../phpunit/includes/export/ExpDataTest.php | 140 + .../export/ExportSemanticDataTest.php | 347 + .../includes/export/SMWExporterTest.php | 98 + .../formatters/MessageFormatterTest.php | 277 + .../querypages/PropertiesQueryPageTest.php | 180 + .../includes/querypages/QueryPageTest.php | 140 + .../UnusedPropertiesQueryPageTest.php | 129 + .../WantedPropertiesQueryPageTest.php | 110 + .../includes/specials/SpecialConceptsTest.php | 88 + .../phpunit/includes/storage/StoreTest.php | 219 + .../tests/qunit/smw/api/ext.smw.api.test.js | 190 + .../tests/qunit/smw/data/ext.smw.data.test.js | 333 + .../smw/data/ext.smw.dataItem.number.test.js | 73 + .../data/ext.smw.dataItem.property.test.js | 60 + .../smw/data/ext.smw.dataItem.text.test.js | 80 + .../smw/data/ext.smw.dataItem.time.test.js | 131 + .../smw/data/ext.smw.dataItem.unknown.test.js | 68 + .../smw/data/ext.smw.dataItem.uri.test.js | 90 + .../data/ext.smw.dataItem.wikiPage.test.js | 240 + .../data/ext.smw.dataValue.quantity.test.js | 90 + .../tests/qunit/smw/ext.smw.test.js | 216 + .../qunit/smw/query/ext.smw.query.test.js | 213 + .../SemanticMediaWiki/tests/travis/README.md | 57 + .../tests/travis/blazegraph-store.properties | 53 + .../tests/travis/install-mediawiki.sh | 52 + .../travis/install-semantic-mediawiki.sh | 85 + .../tests/travis/install-services.sh | 227 + .../openrdf-sesame-memory-repository.txt | 9 + .../tests/travis/run-tests.sh | 20 + .../travis/update-configuration-settings.sh | 95 + .../tests/travis/upload-coverage-report.sh | 14 + .../travis/virtuoso-sparql-permission.sql | 6 + 3384 files changed, 525393 insertions(+) create mode 100644 mediawiki/extensions/SemanticMediaWiki/.github/FUNDING.yml create mode 100644 mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/add-tester.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/bug_report.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/feature_request.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/make-a-release.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/question.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/.github/dependabot.yml create mode 100644 mediawiki/extensions/SemanticMediaWiki/.github/workflows/main.yml create mode 100644 mediawiki/extensions/SemanticMediaWiki/.github/workflows/tesa.yml create mode 100644 mediawiki/extensions/SemanticMediaWiki/.gitignore create mode 100644 mediawiki/extensions/SemanticMediaWiki/.gitmodules create mode 100644 mediawiki/extensions/SemanticMediaWiki/.jshintignore create mode 100644 mediawiki/extensions/SemanticMediaWiki/.jshintrc create mode 100644 mediawiki/extensions/SemanticMediaWiki/.phpcs.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/COPYING create mode 100644 mediawiki/extensions/SemanticMediaWiki/DefaultSettings.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Makefile create mode 100644 mediawiki/extensions/SemanticMediaWiki/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/LICENSE create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/phpunit.xml.dist create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/CharacterExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/LanguageDetector/LanguageDetector.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/LanguageDetector/NullLanguageDetector.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/LanguageDetector/TextCatLanguageDetector.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Normalizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Sanitizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/SanitizerFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/ArrayStopwordAnalyzer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/CdbStopwordAnalyzer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/NullStopwordAnalyzer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/StopwordAnalyzer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/de.cdb create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/en.cdb create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/es.cdb create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/fr.cdb create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/ja.cdb create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/pt-br.cdb create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/pt.cdb create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/zh.cdb create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/de.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/en.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/es.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/fr.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/ja.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/pt-br.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/pt.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/zh.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Synonymizer/NullSynonymizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Synonymizer/Synonymizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/CJKSimpleCharacterRegExTokenizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/GenericRegExTokenizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/IcuWordBoundaryTokenizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/JaCompoundGroupTokenizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/JaTinySegmenterTokenizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/NGramTokenizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/PunctuationRegExTokenizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/Tokenizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/model/rwcp.model.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/src/Transliterator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/bootstrap.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Fixtures/StopwordAnalyzer/invalid.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Fixtures/StopwordAnalyzer/missingindex.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Integration/CombinedNGramTokenizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Integration/CombinedSanitizerTextStopwordTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Integration/JaTokenizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/CharacterExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/LanguageDetector/NullLanguageDetectorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/LanguageDetector/TextCatLanguageDetectorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/NormalizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/SanitizerFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/SanitizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/StopwordAnalyzer/ArrayStopwordAnalyzerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/StopwordAnalyzer/CdbStopwordAnalyzerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/StopwordAnalyzer/NullStopwordAnalyzerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Synonymizer/NullSynonymizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/CJKSimpleCharacterRegExTokenizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/GenericRegExTokenizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/IcuWordBoundaryTokenizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/JaCompoundGroupTokenizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/JaTinySegmenterTokenizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/NGramTokenizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/PunctuationRegExTokenizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/TransliteratorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/codecov.yml create mode 100644 mediawiki/extensions/SemanticMediaWiki/composer.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/config/db-primary-keys.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/config/developer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/config/elastic-fileingest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/config/media.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/elastic/default-profile.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/elastic/smw-data-icu.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/elastic/smw-data-standard.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/elastic/smw-lookup.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/groups/predefined.properties.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/groups/schema.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/properties/foaf.homepage.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/properties/foaf.knows.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/properties/foaf.name.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/properties/owl.differentFrom.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/search/facetedsearch.defaultprofile.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/smw.groups.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/smw.search.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/smw.vocab.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/dcam.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/dcmitype.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/dct.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/foaf.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/owl.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/rdfs.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/schema.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/skos.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/schema/class-constraint-schema.v1.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/schema/facetedsearch-profile-schema.v1.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/schema/link-format-schema.v1.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/schema/property-constraint-schema.v1.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/schema/property-group-schema.v1.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/schema/property-profile-schema.v1.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/schema/search-form-schema.v1.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/constraint/ConstraintErrorComment.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/constraint/ConstraintErrorHighlighter.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/constraint/ConstraintErrorLine.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/constraint/constraint.error.top.line.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/constraint/constraint.sticky.top.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/CheckReplicationTaskComment.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/CheckReplicationTaskHighlighter.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/compare.list.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/line.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/text.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/container.empty.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/container.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/content.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/cards.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/facet.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.checkbox.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.linked.button.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.linked.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.unlink.button.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.unlink.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.clear.button.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.clear.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.condition.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.input.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.option.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/intro.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/options.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/search.extrafield.input.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/search.extrafields.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/search.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/sidebar.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/bottom.comment.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/bottom.marker.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/bottom.sticky.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/comment.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/compare.list.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/composite.highlighter.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/composite.line.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/composite.placeholder.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/dot.label.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/line.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/tabpanel.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/tabpanel.tab.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/tabpanel.tabset.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/indicator/text.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.db.requirement.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.errorbox.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.paragraph.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.progress.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.section.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.version.ms create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/COMPATIBILITY.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/CONTRIBUTING.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/INSTALL.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/RELEASE-POLICY.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/changing.tableschema.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/coding.conventions.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/database.schema.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.dataitem.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.datatype.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.datavalue.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.semanticdata.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/developing.extension.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/extending.constraint.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/extending.declarationexaminer.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/extending.propertyannotator.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/managing.hooks.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/querying.data.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/storing.annotations.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/architecture/writing.resultprinter.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/approve.update.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/boilerplate.fileexportprinter.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/boilerplate.resultprinter.example.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/boilerplate.resultprinter.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/constraint.schema.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.fileupload.beforeupdate.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.pagecontentsavecomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.parser.afterlinksprocessingcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.property.initproperties.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.sqlstore.installer.beforecreatetablescomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.store.afterqueryresultlookupcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/match.property.values.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/phpunit.test.property.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/query.description.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/query.someproperty.of.type.number.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/register.core.datatype.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/register.custom.constraint.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/register.custom.datatype.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/semanticdata.access.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/examples/store.subobject.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.6.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.6.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.7.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.7.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.8.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.0.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.0.2.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.1.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.2.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.2.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.3.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.2.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.3.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.3.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.3.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.2.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.3.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.4.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.5.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.6.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.2.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.3.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.4.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.5.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.6.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.7.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.8.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.0.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.0.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.0.2.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.2.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.3.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.4.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.5.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.6.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.2.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.3.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.0.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.0.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.0.2.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.2.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.3.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.2.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.0.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.0.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.0.2.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.1.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-6.0.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-6.0.1.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-old.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/api.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/doc.serializers.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/doxygen.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/glossary.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.admin.registertaskhandlers.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.browse.afterdatalookupcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.browse.afterincomingpropertieslookupcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.browse.beforeincomingpropertyvaluesfurtherlinkcreate.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.constraint.initconstraints.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.datatype.inittypes.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.event.registereventlisteners.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.exporter.controller.addexpdata.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.fileupload.beforeupdate.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.getpreferences.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.grouppermissions.beforeinitializationcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.job.afterupdatedispatcherjobcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.listener.registerpropertychangelisteners.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.maintenance.afterupdateentitycollationcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.parser.afterlinksprocessingcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.parser.beforemagicwordsfinder.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.parser.parseraftertidypropertyannotationcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.property.initproperties.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.resultformat.overridedefaultformat.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.changefile.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.changerevision.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.changerevisionid.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.isapprovedrevision.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.schema.registerschematypes.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.settings.beforeinitializationcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.setup.afterinitializationcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.addcustomfixedpropertytables.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.afterdataupdatecomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.afterdeletesubjectcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforechangetitlecomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforedatarebuildjobinserts.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforedataupdatecomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforedeletesubjectcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.entityreferencecleanupcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.installer.aftercreatetablescomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.installer.afterdroptablescomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.installer.beforecreatetablescomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.afterdataupdatecomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.afterqueryresultlookupcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.beforedataupdatecomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.beforequeryresultlookupcomplete.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/jobs/job.smw.elasticFileIngest.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/jobs/job.smw.entityIdDisposer.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/jsduck.categories.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/jsduck.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/docs/technical/migration-guide-3.0.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/extension.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ace.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ady-cyrl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/aeb-latn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/af.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/aln.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/am.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/an.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ang.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/anp.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ar.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/arc.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/arq.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ary.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/arz.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/as.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ast.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/avk.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/awa.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/az.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/azb.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ba.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/bar.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/bcc.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/bcl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/be-tarask.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/be.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/bg.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/bgn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/bho.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/bjn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/bn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/br.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/bs.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/bug.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ca.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ce.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ch.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ckb.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/crh-cyrl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/crh-latn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/cs.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/cu.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/cv.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/cy.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/da.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/de-ch.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/de-formal.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/de.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/din.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/diq.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/dsb.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/dty.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ee.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/el.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/en-gb.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/en.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/eo.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/es-formal.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/es.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/et.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/eu.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ext.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/SemanticMediaWiki.alias.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/SemanticMediaWiki.magic.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/ar.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/arz.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/ca.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/de-at.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/de-ch.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/de-formal.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/de.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/en.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/es.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/fi.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/fr.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/he.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/hu.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/id.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/it.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/ja.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/ko.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/nb.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/nl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/pl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/pt-br.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/pt.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/ru.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/sk.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/uk.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-cn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-hans.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-hant.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-tw.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/fa.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/fi.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/fo.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/fr.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/frp.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/frr.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/fur.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/fy.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ga.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/gan-hans.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/gan-hant.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/gd.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/gl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/glk.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/gom-deva.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/gom-latn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/grc.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/gsw.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/gu.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/hak.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/haw.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/he.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/hi.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/hif-latn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/hil.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/hr.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/hrx.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/hsb.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ht.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/hu-formal.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/hu.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/hy.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ia.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/id.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ig.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ilo.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/io.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/is.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/it.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ja.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/jam.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/jbo.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/jut.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/jv.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ka.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/kab.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/khw.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/kiu.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/kk-arab.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/kk-cyrl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/kk-latn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/km.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/kn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ko.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/krc.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/kri.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/krj.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ksh.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ku-latn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/kw.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ky.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/la.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/lad.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/lb.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/lez.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/li.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/lij.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/lki.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/local/maintenance.i18n.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/local/setupcheck.i18n.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/lrc.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/lt.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/luz.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/lv.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/lzh.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/mai.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/mdf.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/mg.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/min.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/mk.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ml.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/mn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/mr.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ms.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/mt.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/mwl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/my.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/myv.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/mzn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/nah.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/nap.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/nb.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/nds-nl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/nds.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ne.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/niu.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/nl-informal.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/nl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/nn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/oc.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/olo.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/om.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/or.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/os.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/pa.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/pag.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/pam.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/pdc.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/pfl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/pl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/pms.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/pnb.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/prg.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ps.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/pt-br.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/pt.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/qqq.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/qu.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/rif.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/rm.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ro.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/roa-tara.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ru.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/rue.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sa.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sah.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sc.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/scn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sco.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sd.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sdc.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sgs.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/shn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/si.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sk.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sli.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sq.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sr-ec.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sr-el.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/stq.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/su.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sv.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/sw.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/szl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ta.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/tcy.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/te.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/tet.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/tg-cyrl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/tg-latn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/th.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/tk.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/tl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/tly.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/tr.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/tt-cyrl.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/tt-latn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/tyv.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ug-arab.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ug-latn.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/uk.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/ur.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/uz.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/vec.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/vep.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/vi.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/vo.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/vro.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/wa.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/war.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/wo.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/xal.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/xmf.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/yi.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/yo.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/zh-hans.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/i18n/zh-hant.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/ContentParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/DefaultSettings.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/GlobalFunctions.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/Highlighter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/QueryPrinterFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/RecurringEvents.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/SMW_Infolink.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/SMW_Outputs.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/SMW_PageLister.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/SMW_PageSchemas.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/SemanticData.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/SemanticMediaWiki.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/Subobject.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/dataitems/DIConcept.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Blob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Bool.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Container.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Error.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_GeoCoord.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Number.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Property.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_Time.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_URI.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/dataitems/SMW_DI_WikiPage.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/dataitems/SMW_DataItem.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/datavalues/SMW_DV_Concept.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/datavalues/SMW_DV_Error.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/datavalues/SMW_DV_Number.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/datavalues/SMW_DV_PropertyList.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/datavalues/SMW_DV_Quantity.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/datavalues/SMW_DV_Record.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/datavalues/SMW_DV_Time.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/datavalues/SMW_DV_URI.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/datavalues/SMW_DV_WikiPage.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/datavalues/SMW_DataValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/export/SMW_Exp_Data.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/export/SMW_ExportController.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/export/SMW_Exporter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/formatters/MessageFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/query/SMW_Query.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/query/SMW_QueryProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/querypages/PropertiesQueryPage.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/querypages/QueryPage.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/querypages/UnusedPropertiesQueryPage.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/querypages/WantedPropertiesQueryPage.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/specials/SMW_SpecialOWLExport.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/specials/SMW_SpecialTypes.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/specials/SpecialConcepts.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/specials/SpecialPage.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/specials/SpecialProperties.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/specials/SpecialUnusedProperties.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/includes/specials/SpecialWantedProperties.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/disposeOutdatedEntities.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/dumpRDF.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/populateHashField.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/purgeEntityCache.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/rebuildConceptCache.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/rebuildData.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/rebuildElasticIndex.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/rebuildElasticMissingDocuments.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/rebuildFulltextSearchTable.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/rebuildPropertyStatistics.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/removeDuplicateEntities.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/runImport.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/runLocalMessageCopy.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/setupStore.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/updateEntityCollation.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/updateEntityCountMap.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/maintenance/updateQueryDependencies.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/phpmd.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/phpunit.xml.dist create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/Resources.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/docs/jsduck.external.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/jquery/jquery.async.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/jquery/jquery.atwho.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/jquery/jquery.atwho.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/jquery/jquery.autocomplete.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/jquery/jquery.caret.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/jquery/jquery.jsonview.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/jquery/jquery.jsonview.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/jquery/jquery.mark.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/jquery/jquery.selectmenu.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/jquery/jquery.selectmenu.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/libs/tippy/light-border.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/libs/tippy/popper.min.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/libs/tippy/scale.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/libs/tippy/tippy.min.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/clipboard/clipboard.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/jquery.dataTables/dataTables.search.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/jquery.dataTables/dataTables.searchHighlight.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/jquery.dataTables/dataTables.searchHighlight.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/jquery.dataTables/datatables.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/jquery.dataTables/datatables.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/jquery.dataTables/datatables.min.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/jquery.dataTables/datatables.min.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/jquery.highlight/jquery.highlight.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/jquery.rangeSlider/ion.rangeSlider.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/jquery.rangeSlider/ion.rangeSlider.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/jquery.rangeSlider/ion.rangeSlider.skinFlat.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/jquery.rangeSlider/ion.rangeSlider.skinModern.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/localForage/localforage.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/localForage/localforage.min.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/onoi.blobstore.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/onoi/onoi.clipboard.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/api/ext.smw.api.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/logo_footer.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/logo_footer_legacy.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/logo_small.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-alert.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-arrow-down.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-autocomplete-loading.gif create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-bookmark.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-browse-subtle.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-browse.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-clipboard.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-compact.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-constraint-violation.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-edit-protection.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-elasticsearch-engine.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-entity-examiner-panel-error.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-entity-examiner-panel-large.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-entity-examiner-panel.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-error-constraint.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-error-replication.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-facetedsearch-clear.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-facetedsearch-reset.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-facetedsearch-search.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-factbox-rdf-subtle.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-factbox-rdf.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-info.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-loading-dots.gif create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-no-image.png create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-pen.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-rdf.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-search-subtle.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-search.svg create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-tooltip-error.png create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-tooltip-info.png create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-tooltip-question.png create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/assets/smw-icon-tooltip-warning.png create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/content/smw.schema.less create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/content/smw.schemaview.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/data/ext.smw.data.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/data/ext.smw.dataItem.geo.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/data/ext.smw.dataItem.number.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/data/ext.smw.dataItem.property.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/data/ext.smw.dataItem.text.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/data/ext.smw.dataItem.time.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/data/ext.smw.dataItem.unknown.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/data/ext.smw.dataItem.uri.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/data/ext.smw.dataItem.wikiPage.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/data/ext.smw.dataValue.quantity.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/deferred/ext.smw.deferred.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/deferred/ext.smw.deferred.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/ext.smw.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/ext.smw.dropdown.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/ext.smw.factbox.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/ext.smw.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/ext.smw.page.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/ext.smw.skin-chameleon.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/ext.smw.skin-foreground.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/ext.smw.skin-vector.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/ext.smw.table.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/ext.smw.tabs.less create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/factbox-vector-2022.less create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/factbox.less create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/printer/ext.smw.tableprinter.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/printer/ext.smw.tableprinter.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/printer/ext.smw.tableprinter.skin-chameleon.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/query/ext.smw.query.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/smw.indicators.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/smw.jsonview.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/smw.jsonview.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/smw.selectmenu.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/smw.summarytable.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/smw.ui.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/special.search/search.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/special.search/search.form.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/special.search/search.input.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/special.search/search.namespace.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/special/ext.smw.special.admin.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/special/ext.smw.special.ask.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/special/ext.smw.special.ask.less create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/special/ext.smw.special.browse.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/special/ext.smw.special.browse.less create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/special/ext.smw.special.less create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/special/ext.smw.special.preferences.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/special/smw.special.facetedsearch.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/special/smw.special.facetedsearch.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/suggester/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/suggester/ext.smw.suggester.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/suggester/ext.smw.suggester.textInput.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/tokens.less create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.modal.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.modal.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.personal.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.tooltip.less create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.tooltip.tippy.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.tooltip.tippy.less create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.util.autocomplete.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.util.autocomplete.page.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.util.autocomplete.property.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.util.autocomplete.propertysubject.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.util.autocomplete.propertyvalue.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.util.postproc.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.util.purge.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.vertical.tabs.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/ext.smw.vertical.tabs.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/smw.entityexaminer.css create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/smw.entityexaminer.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/res/smw/util/smw.property.page.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Aliases.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/CacheFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ConfigLegacyTrait.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ConfigPreloader.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Connection/CallbackConnectionProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Connection/ConnRef.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Connection/ConnectionManager.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Connection/ConnectionProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/Constraint.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/ConstraintCheckRunner.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/ConstraintError.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/ConstraintRegistry.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/ConstraintSchemaCompiler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/Constraints/DeferrableConstraint.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/Constraints/MandatoryPropertiesConstraint.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/Constraints/MustExistsConstraint.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/Constraints/NamespaceConstraint.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/Constraints/NonNegativeIntegerConstraint.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/Constraints/NullConstraint.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/Constraints/ShapeConstraint.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/Constraints/SingleValueConstraint.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Constraint/Constraints/UniqueValueConstraint.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ConstraintFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataItemFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataModel/ContainerSemanticData.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataModel/SequenceMap.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataModel/SubSemanticData.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataTypeRegistry.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataUpdater.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValueFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/AbstractMultiValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/AllowsListValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/AllowsPatternValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/AllowsValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/BooleanValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ConstraintSchemaValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ErrorMsgTextValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ExternalFormatterUriValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ExternalIdentifierValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ImportValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/InfoLinksProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/KeywordValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/LanguageCodeValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/MonolingualTextValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/Number/IntlNumberFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/Number/UnitConverter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/PropertyChainValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/PropertyValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ReferenceValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/StringValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/TelephoneUriValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/TemperatureValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/Time/CalendarModel.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/Time/Components.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/Time/IntlTimeFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/Time/JulianDay.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/Time/Timezone.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/TypesValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/UniquenessConstraintValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueFormatters/CodeStringValueFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueFormatters/DataValueFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueFormatters/DispatchingDataValueFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueFormatters/MonolingualTextValueFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueFormatters/NoValueFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueFormatters/NumberValueFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueFormatters/PropertyValueFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueFormatters/ReferenceValueFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueFormatters/StringValueFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueFormatters/TimeValueFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueFormatters/ValueFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueParsers/AllowsListValueParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueParsers/AllowsPatternValueParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueParsers/ImportValueParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueParsers/MonolingualTextValueParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueParsers/PropertyValueParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueParsers/TimeValueParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueParsers/ValueParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueValidators/AllowsListConstraintValueValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueValidators/CompoundConstraintValueValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueValidators/ConstraintSchemaValueValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueValidators/ConstraintValueValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueValidators/PatternConstraintValueValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueValidators/PropertySpecificationConstraintValueValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DataValues/ValueValidators/UniquenessConstraintValueValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Defines.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DependencyValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Deserializers/ExpDataDeserializer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Deserializers/SemanticDataDeserializer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/DisplayTitleFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Admin/ElasticClientTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Admin/IndicesInfoProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Admin/InfoProviderHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Admin/MappingsInfoProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Admin/NodesInfoProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Admin/ReplicationInfoProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Admin/SettingsInfoProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Config.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Connection/Client.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Connection/ConnectionProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Connection/DummyClient.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Connection/LockManager.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Connection/TestClient.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/ElasticFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/ElasticStore.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Exception/ClientBuilderNotFoundException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Exception/InvalidJSONException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Exception/MissingEndpointConfigException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Exception/NoConnectionException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Exception/ReplicationException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Hooks.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Hooks/UpdateEntityCollationComplete.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Attachment/AttachmentAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Attachment/FileAttachment.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Attachment/FileHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Attachment/ScopeMemoryLimiter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Bulk.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Document.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/DocumentCreator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/FileIndexer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Indexer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Rebuilder/Rebuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Rebuilder/Rollover.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Replication/DocumentReplicationExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Replication/ReplicationCheck.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Replication/ReplicationEntityExaminerDeferrableIndicatorProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Replication/ReplicationError.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/Replication/ReplicationStatus.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Indexer/TextSanitizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Installer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Jobs/FileIngestJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Jobs/IndexerRecoveryJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/Lookup/ProximityPropertyValueLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/Aggregations.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/Condition.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/ConditionBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/DescriptionInterpreters/ClassDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/DescriptionInterpreters/ConceptDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/DescriptionInterpreters/ConjunctionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/DescriptionInterpreters/DisjunctionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/DescriptionInterpreters/NamespaceDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/DescriptionInterpreters/SomePropertyInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/DescriptionInterpreters/SomeValueInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/DescriptionInterpreters/ValueDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/Excerpts.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/FieldMapper.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/QueryEngine.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/SearchResult.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/SortBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/TermsLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/TermsLookup/CachingTermsLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/TermsLookup/Parameters.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/QueryEngine/TermsLookup/TermsLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/docs/config.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/docs/faq.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/docs/replication.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/docs/search.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/docs/technical.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Elastic/docs/usage.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Encoder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/EntityCache.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/EntityLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Enum.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/ClassNotFoundException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/ConfigPreloadFileNotReadableException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/DataItemDeserializationException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/DataItemException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/DataTypeLookupException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/FileNotFoundException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/FileNotReadableException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/FileNotWritableException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/JSONFileParseException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/JSONParseException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/NamespaceIndexChangeException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/ParameterNotFoundException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/PredefinedPropertyLabelMismatchException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/PropertyLabelNotResolvedException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/PropertyNotFoundException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/RedirectTargetUnresolvableException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/SemanticDataImportException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/SettingNotFoundException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/SettingsAlreadyLoadedException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/SiteLanguageChangeException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/StoreNotFoundException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exception/SubSemanticDataException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ConceptMapper.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/Controller/Queue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/DataItemMapper.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/DataItemMatchFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/Element.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/Element/ExpElement.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/Element/ExpLiteral.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/Element/ExpNsResource.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/Element/ExpResource.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ElementFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/Escaper.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ExpDataFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ExpResourceMapper.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ExporterFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/AuxiliaryPropertyValueResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/ConceptPropertyValueResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/DispatchingResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/ExternalIdentifierPropertyValueResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/ImportFromPropertyValueResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/KeywordPropertyValueResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/MonolingualTextPropertyValueResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/PredefinedPropertyValueResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/PreferredPropertyLabelResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/PropertyDescriptionValueResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/PropertyValueResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/RedirectPropertyValueResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/SortPropertyValueResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/ResourceBuilders/UniquenessConstraintPropertyValueResourceBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/Serializer/RDFXMLSerializer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/Serializer/Serializer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/Serializer/TurtleSerializer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Exporter/XsdValueMapper.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Factbox/AttachmentFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Factbox/CachedFactbox.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Factbox/CheckMagicWords.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Factbox/Factbox.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Factbox/FactboxFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Factbox/FactboxText.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/FileSystemSmwJsonRepo.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Globals.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/GroupPermissions.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/HashBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/HierarchyLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Importer/ContentCreator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Importer/ContentCreators/DispatchingContentCreator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Importer/ContentCreators/TextContentCreator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Importer/ContentCreators/XmlContentCreator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Importer/ContentIterator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Importer/ContentModeller.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Importer/ImportContents.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Importer/Importer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Importer/JsonContentIterator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Importer/JsonImportContentsFileDirReader.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Importer/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/InMemoryPoolCache.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Indicator/EntityExaminerIndicators/AssociatedRevisionMismatchEntityExaminerIndicatorProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Indicator/EntityExaminerIndicators/BlankEntityExaminerDeferrableIndicatorProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Indicator/EntityExaminerIndicators/CompositeIndicatorHtmlBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Indicator/EntityExaminerIndicators/ConstraintErrorEntityExaminerDeferrableIndicatorProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Indicator/EntityExaminerIndicators/ConstraintErrorEntityExaminerIndicatorProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Indicator/EntityExaminerIndicators/EntityExaminerCompositeIndicatorProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Indicator/EntityExaminerIndicators/EntityExaminerDeferrableCompositeIndicatorProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Indicator/EntityExaminerIndicatorsFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Indicator/IndicatorProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Indicator/IndicatorProviders/CompositeIndicatorProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Indicator/IndicatorProviders/DeferrableIndicatorProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Indicator/IndicatorProviders/TypableSeverityIndicatorProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/IteratorFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Iterators/AppendIterator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Iterators/ChunkedIterator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Iterators/CsvFileIterator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Iterators/DotSeekableIteratorTrait.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Iterators/MappingIterator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Iterators/ResultIterator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Iterators/SeekableIteratorTrait.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Listener/ChangeListener/CallableChangeListenerTrait.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Listener/ChangeListener/ChangeListener.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Listener/ChangeListener/ChangeListenerAwareTrait.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Listener/ChangeListener/ChangeListeners/CallableChangeListener.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Listener/ChangeListener/ChangeListeners/PropertyChangeListener.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Listener/ChangeListener/ChangeRecord.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Listener/EventListener/EventHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Listener/EventListener/EventListenerRegistry.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Listener/EventListener/EventListeners/InvalidateEntityCacheEventListener.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Listener/EventListener/EventListeners/InvalidatePropertySpecificationLookupCacheEventListener.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Listener/EventListener/EventListeners/InvalidateResultCacheEventListener.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Localizer/CopyLocalMessages.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Localizer/LocalLanguage/FallbackFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Localizer/LocalLanguage/JsonContentsFileReader.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Localizer/LocalLanguage/LanguageContents.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Localizer/LocalLanguage/LocalLanguage.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Localizer/LocalLanguage/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Localizer/LocalMessageProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Localizer/Localizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Localizer/Message.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Localizer/MessageLocalizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Localizer/MessageLocalizerTrait.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Maintenance/AutoRecovery.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Maintenance/ConceptCacheRebuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Maintenance/DataRebuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Maintenance/DataRebuilder/OutdatedDisposer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Maintenance/DistinctEntityDataRebuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Maintenance/DuplicateEntitiesDisposer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Maintenance/ExceptionFileLogger.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Maintenance/MaintenanceCheck.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Maintenance/MaintenanceFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Maintenance/MaintenanceHelper.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Maintenance/MaintenanceLogger.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Maintenance/PropertyStatisticsRebuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/ApiQueryResultFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/ApiRequestParameterFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Ask.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/AskArgs.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Browse.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Browse/ArticleAugmentor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Browse/ArticleLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Browse/CachingLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Browse/ListAugmentor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Browse/ListLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Browse/Lookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Browse/PSubjectLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Browse/PValueLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Browse/SubjectLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/BrowseByProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/BrowseBySubject.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Info.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/PropertyListByApiRequest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Query.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Task.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/TaskFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Tasks/CheckQueryTask.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Tasks/DuplicateLookupTask.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Tasks/EntityExaminerTask.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Tasks/InsertJobTask.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Tasks/JobListTask.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Tasks/TableStatisticsTask.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Tasks/Task.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Api/Tasks/UpdateTask.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Collator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Connection/CleanUpTables.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Connection/ConnectionProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Connection/Database.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Connection/LoadBalancerConnectionProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Connection/OptionsBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Connection/Query.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Connection/Sequence.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Connection/TransactionHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Content/HtmlBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Content/SchemaContent.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Content/SchemaContentFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Content/SchemaContentHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/DeepRedirectTargetResolver.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Deferred/CallableUpdate.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Deferred/ChangeTitleUpdate.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Deferred/HashFieldUpdate.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Deferred/TransactionalCallableUpdate.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/EditInfo.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/FileRepoFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/HookDispatcher.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/HookDispatcherAwareTrait.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/HookListener.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/AdminLinks.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/ApiModuleManager.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/ArticleDelete.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/ArticleFromTitle.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/ArticleProtectComplete.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/ArticlePurge.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/ArticleViewHeader.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/BeforeDisplayNoArticleText.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/BeforePageDisplay.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/DeleteAccount.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/EditPageForm.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/ExtensionSchemaUpdates.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/ExtensionTypes.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/FileUpload.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/GetPreferences.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/InternalParseBeforeLinks.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/LinksUpdateComplete.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/OutputPageParserOutput.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/PageMoveComplete.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/ParserAfterTidy.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/PersonalUrls.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/RejectParserCacheValue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/ResourceLoaderGetConfigVars.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/RevisionFromEditComplete.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/SidebarBeforeOutput.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/SkinAfterContent.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/SkinTemplateNavigationUniversal.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/SpecialSearchResultsPrepend.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/SpecialStatsAddExtra.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/TitleIsAlwaysKnown.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/TitleIsMovable.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/TitleQuickPermissions.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Hooks/UserChange.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/IndicatorRegistry.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Job.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/JobFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/JobQueue.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/ChangePropagationClassUpdateJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/ChangePropagationDispatchJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/ChangePropagationUpdateJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/DeferredConstraintCheckUpdateJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/EntityIdDisposerJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/FulltextSearchTableRebuildJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/FulltextSearchTableUpdateJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/NullJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/ParserCachePurgeJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/PropertyStatisticsRebuildJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/RefreshJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/UpdateDispatcherJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Jobs/UpdateJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/LinkBatch.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/LocalTime.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/MagicWordsFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/ManualEntryLogger.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/MediaWikiNsContentReader.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/MessageBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/MwCollaboratorFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/NamespaceInfo.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Page/ConceptPage.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Page/ListBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Page/ListBuilder/ItemListBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Page/ListBuilder/ValueListBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Page/Page.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Page/PropertyPage.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/PageCreator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/PageFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/PageInfoProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/PageUpdater.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Permission/PermissionAware.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Permission/PermissionExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Permission/PermissionExaminerAware.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Permission/TitlePermissions.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/PermissionManager.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Pipetrick.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Preference/PreferenceAware.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Preference/PreferenceExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/RedirectTargetFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Renderer/HtmlColumnListRenderer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Renderer/HtmlFormRenderer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Renderer/HtmlTableRenderer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Renderer/HtmlTemplateRenderer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Renderer/WikitextTemplateRenderer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/RevisionGuard.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/RevisionGuardAwareTrait.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/Exception/SearchDatabaseInvalidTypeException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/Exception/SearchEngineInvalidTypeException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/ExtendedSearch.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/ExtendedSearchEngine.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/ProfileForm/Forms/CustomForm.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/ProfileForm/Forms/Field.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/ProfileForm/Forms/NamespaceForm.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/ProfileForm/Forms/OpenForm.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/ProfileForm/Forms/SortForm.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/ProfileForm/FormsBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/ProfileForm/FormsFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/ProfileForm/ProfileForm.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/QueryBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/SearchEngineFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/SearchResult.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Search/SearchResultSet.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/ActionableTask.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Alerts/ByNamespaceInvalidEntitiesMaintenanceAlertTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Alerts/DeprecationNoticeTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Alerts/LastOptimizationRunMaintenanceAlertTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Alerts/MaintenanceAlertsTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Alerts/OutdatedEntitiesMaxCountThresholdMaintenanceAlertTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/AlertsTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Maintenance/DataRefreshJobTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Maintenance/DisposeJobTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Maintenance/FulltextSearchTableRebuildJobTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Maintenance/PropertyStatsRebuildJobTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Maintenance/TableSchemaTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/MaintenanceTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/OutputFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Supplement/CacheStatisticsListTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Supplement/ConfigurationListTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Supplement/DuplicateLookupTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Supplement/EntityLookupTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Supplement/OperationalStatisticsListTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/Supplement/TableStatisticsTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/SupplementTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/SupportListTaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/TaskHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/TaskHandlerFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Admin/TaskHandlerRegistry.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Ask/DownloadLinksWidget.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Ask/ErrorWidget.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Ask/FormatListWidget.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Ask/HelpWidget.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Ask/HtmlForm.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Ask/LinksWidget.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Ask/NavigationLinksWidget.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Ask/ParameterInput.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Ask/ParametersProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Ask/ParametersWidget.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Ask/QueryInputWidget.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Ask/SortWidget.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Browse/FieldBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Browse/GroupFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Browse/HtmlBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/Browse/ValueFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/Exception/DefaultProfileNotFoundException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/Exception/DefaultValueFilterNotFoundException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/Exception/ProfileSourceDefinitionConflictException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/ExploreListBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/ExtraFieldBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/FacetBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/FilterFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/Filters/CategoryFilter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/Filters/PropertyFilter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/Filters/ValueFilter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/Filters/ValueFilterFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/Filters/ValueFilters/CheckboxRangeGroupValueFilter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/Filters/ValueFilters/CheckboxValueFilter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/Filters/ValueFilters/ListValueFilter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/Filters/ValueFilters/RangeValueFilter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/HtmlBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/OptionsBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/ParametersProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/Profile.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/ResultFetcher.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/FacetedSearch/TreeBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/PageProperty/PageBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/PendingTasks/IncompleteSetupTasks.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/PropertyLabelSimilarity/ContentsBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SearchByProperty/PageBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SearchByProperty/PageRequestOptions.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SearchByProperty/QueryResultLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SpecialAdmin.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SpecialAsk.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SpecialBrowse.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SpecialConstraintErrorList.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SpecialFacetedSearch.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SpecialMissingRedirectAnnotations.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SpecialPageProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SpecialPendingTaskList.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SpecialProcessingErrorList.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SpecialPropertyLabelSimilarity.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SpecialSearchByProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Specials/SpecialURIResolver.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/StripMarkerDecoder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Template/Template.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Template/TemplateExpander.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/Template/TemplateSet.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/TitleFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/MediaWiki/TitleLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/NamespaceExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/NamespaceManager.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/NamespaceUriFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Options.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/OptionsAwareTrait.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/PageInfo.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParameterListDocBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParameterProcessorFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Parameters.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Parser/AnnotationProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Parser/InTextAnnotationParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Parser/LinksEncoder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Parser/LinksProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Parser/RecursiveTextProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Parser/SemanticLinksParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserData.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserFunctionFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserFunctions/AskParserFunction.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserFunctions/ConceptParserFunction.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserFunctions/DeclareParserFunction.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserFunctions/DocumentationParserFunction.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserFunctions/ExpensiveFuncExecutionWatcher.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserFunctions/InfoParserFunction.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserFunctions/RecurringEventsParserFunction.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserFunctions/SectionTag.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserFunctions/SetParserFunction.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserFunctions/ShowParserFunction.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserFunctions/SubobjectParserFunction.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ParserParameterProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/PostProcHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ProcessingError.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/ProcessingErrorMsgHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/Annotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/AnnotatorFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/Annotators/AttachmentLinkPropertyAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/Annotators/CategoryPropertyAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/Annotators/DisplayTitlePropertyAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/Annotators/EditProtectedPropertyAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/Annotators/MandatoryTypePropertyAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/Annotators/NullPropertyAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/Annotators/PredefinedPropertyAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/Annotators/PropertyAnnotatorDecorator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/Annotators/RedirectPropertyAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/Annotators/SchemaPropertyAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/Annotators/SortKeyPropertyAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/Annotators/TranslationPropertyAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/ChangePropagationNotifier.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/DeclarationExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/DeclarationExaminer/ChangePropagationExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/DeclarationExaminer/CommonExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/DeclarationExaminer/DeclarationExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/DeclarationExaminer/PredefinedPropertyExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/DeclarationExaminer/ProtectionExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/DeclarationExaminer/UserdefinedPropertyExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/DeclarationExaminerFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/DeclarationExaminerMsgBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/LanguageFalldownAndInverse.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/RestrictionExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Property/SpecificationLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/PropertyAliasFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/PropertyLabelFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/PropertyRegistry.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Protection/EditProtectionUpdater.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Protection/ProtectionValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Cache/CacheStats.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Cache/ResultCache.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/DebugFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Deferred.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/DescriptionBuilderRegistry.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/DescriptionBuilders/DescriptionBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/DescriptionBuilders/MonolingualTextValueDescriptionBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/DescriptionBuilders/NumberValueDescriptionBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/DescriptionBuilders/RecordValueDescriptionBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/DescriptionBuilders/SomeValueDescriptionBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/DescriptionBuilders/TimeValueDescriptionBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/DescriptionFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Exception/FingerprintNotFoundException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Exception/ResultFormatNotFoundException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Excerpts.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ExportPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Language/ClassDescription.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Language/ConceptDescription.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Language/Conjunction.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Language/Description.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Language/Disjunction.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Language/NamespaceDescription.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Language/SomeProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Language/ThingDescription.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Language/ValueDescription.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Parser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Parser/DescriptionProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Parser/LegacyParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Parser/TermParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Parser/Tokenizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/PrintRequest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/PrintRequest/Deserializer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/PrintRequest/Formatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/PrintRequest/Serializer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/PrintRequestFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Processor/DefaultParamDefinition.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Processor/ParamListProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Processor/QueryCreator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotatorFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/DescriptionProfileAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/DurationProfileAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/FormatProfileAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/NullProfileAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/ParametersProfileAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/ProfileAnnotatorDecorator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/SchemaLinkProfileAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/SourceProfileAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ProfileAnnotators/StatusCodeProfileAnnotator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/QueryComparator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/QueryContext.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/QueryLinker.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/QueryResult.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/QuerySourceFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/QueryStringifier.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/QueryToken.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/RemoteRequest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Result/FieldItemFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Result/FilterMap.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Result/ItemFetcher.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Result/ItemJournal.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Result/Restrictions.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Result/ResultArray.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/Result/StringResult.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultFormat.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinterDependency.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/AggregatablePrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/CategoryResultPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/CsvFileExportPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/DsvResultPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/EmbeddedResultPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/FeedExportPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/FileExportPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/JsonResultPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/ListResultPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/ListResultPrinter/ListResultBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/ListResultPrinter/ParameterDictionary.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/ListResultPrinter/ParameterDictionaryUser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/ListResultPrinter/RowBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/ListResultPrinter/SimpleRowBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/ListResultPrinter/TemplateRendererFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/ListResultPrinter/TemplateRowBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/ListResultPrinter/ValueTextsBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/NullResultPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/PrefixParameterProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/RdfResultPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/ResultPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/TableResultPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ResultPrinters/TemplateFileExportPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Query/ScoreSet.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/QueryEngine.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/QueryFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/RequestOptions.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/Exception/BadHttpEndpointResponseException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/Exception/HttpEndpointConnectionException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/Exception/XmlParserException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/HttpResponseErrorMapper.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/HttpResponseParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/Condition/Condition.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/Condition/FalseCondition.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/Condition/FilterCondition.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/Condition/SingletonCondition.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/Condition/TrueCondition.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/Condition/WhereCondition.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/ConditionBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreterFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/ClassDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/ConceptDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/ConjunctionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/DisjunctionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/DispatchingDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/NamespaceDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/SomePropertyInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/ThingDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/DescriptionInterpreters/ValueDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/EngineOptions.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/QueryEngine.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/QueryResultFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/RepositoryResult.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/QueryEngine/XmlResponseParser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/ReplicationDataTruncator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/RepositoryClient.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/RepositoryConnection.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/RepositoryConnectionProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/RepositoryConnectors/FourstoreRepositoryConnector.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/RepositoryConnectors/FusekiRepositoryConnector.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/RepositoryConnectors/GenericRepositoryConnector.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/RepositoryConnectors/VirtuosoRepositoryConnector.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/RepositoryRedirectLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/SPARQLStore.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/SPARQLStoreFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SPARQLStore/TurtleTriplesBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/ChangeOp/ChangeDiff.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/ChangeOp/ChangeOp.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/ChangeOp/FieldChangeOp.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/ChangeOp/TableChangeOp.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/ConceptCache.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/AuxiliaryFields.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/CacheWarmer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/CachingSemanticDataLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/DataItemHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/DataItemHandlerFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/DataItemHandlers/DIBlobHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/DataItemHandlers/DIBooleanHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/DataItemHandlers/DIConceptHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/DataItemHandlers/DIGeoCoordinateHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/DataItemHandlers/DINumberHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/DataItemHandlers/DITimeHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/DataItemHandlers/DIUriHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/DataItemHandlers/DIWikiPageHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/DuplicateFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/EntityIdFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/EntityIdManager.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/EntityLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/Exception/DataItemHandlerException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/FieldList.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/IdCacheManager.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/IdChanger.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/IdEntityFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/PrefetchCache.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/PrefetchItemLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/PropertiesLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/PropertySubjectsLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/ResultLimiter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/SemanticDataLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/SequenceMapFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/StubSemanticData.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/SubobjectListFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/EntityStore/TraversalPropertyLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Exception/PropertyStatisticsInvalidArgumentException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Exception/TableMissingIdFieldException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Installer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Installer/TableOptimizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Installer/VersionExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/ByGroupPropertyValuesLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/CachedListLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/ChangePropagationEntityLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/DisplayTitleLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/EntityUniquenessLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/ErrorLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/ListLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/MissingRedirectLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/MonolingualTextLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/PropertyLabelSimilarityLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/PropertyUsageListLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/ProximityPropertyValueLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/RedirectTargetLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/SingleEntityQueryLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/TableStatisticsLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/UndeclaredPropertyListLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/UnusedPropertyListLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Lookup/UsageStatisticsListLookup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/PropertyStatisticsStore.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/PropertyTable/PropertyTableHashes.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/PropertyTableDefinition.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/PropertyTableDefinitionBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/PropertyTableIdReferenceDisposer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/PropertyTableIdReferenceFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/PropertyTableInfoFetcher.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/PropertyTableRowDiffer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/PropertyTableRowMapper.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/PropertyTableUpdater.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/PropertyTypeFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryDependency/DependencyLinksTableUpdater.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryDependency/DependencyLinksValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryDependency/QueryDependencyLinksStore.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryDependency/QueryLinksTableDisposer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryDependency/QueryReferenceBacklinks.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryDependency/QueryResultDependencyListResolver.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryDependency/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryDependencyLinksStoreFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/ConceptQuerySegmentBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/ConditionBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/DescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/DescriptionInterpreterFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/DescriptionInterpreters/ClassDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/DescriptionInterpreters/ComparatorMapper.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/DescriptionInterpreters/ConceptDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/DescriptionInterpreters/DisjunctionConjunctionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/DescriptionInterpreters/DispatchingDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/DescriptionInterpreters/NamespaceDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/DescriptionInterpreters/SomePropertyInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/DescriptionInterpreters/ThingDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/DescriptionInterpreters/ValueDescriptionInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/EngineOptions.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/Fulltext/MySQLValueMatchConditionBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/Fulltext/SQLiteValueMatchConditionBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/Fulltext/SearchTable.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/Fulltext/SearchTableRebuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/Fulltext/SearchTableUpdater.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/Fulltext/TextChangeUpdater.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/Fulltext/TextSanitizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/Fulltext/ValueMatchConditionBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/FulltextSearchTableFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/HierarchyTempTableBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/OrderCondition.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/QueryEngine.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/QuerySegment.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/QuerySegmentListProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngine/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/QueryEngineFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Rebuilder/EntityValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/Rebuilder/Rebuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/RedirectStore.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/RedirectUpdater.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/RequestOptionsProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/SQLStore.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/SQLStoreFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/SQLStoreUpdater.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/Examiner/CountMapField.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/Examiner/EntityCollation.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/Examiner/FixedProperties.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/Examiner/HashField.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/Examiner/IdBorder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/Examiner/PredefinedProperties.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/Examiner/TouchedField.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/FieldType.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/MySQLTableBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/PostgresTableBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/SQLiteTableBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/Table.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/TableBuildExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/TableBuildExaminerFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/TableBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/TableSchemaManager.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableBuilder/TemporaryTableBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SQLStore/TableFieldUpdater.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/ChainableFilter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/Compartment.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/CompartmentIterator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/Exception/SchemaConstructionFailedException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/Exception/SchemaParameterTypeMismatchException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/Exception/SchemaTypeAlreadyExistsException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/Exception/SchemaTypeNotFoundException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/Filters/CategoryFilter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/Filters/CompositeFilter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/Filters/FilterTrait.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/Filters/NamespaceFilter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/Filters/PropertyFilter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/Rule.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/Schema.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/SchemaDefinition.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/SchemaFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/SchemaFilter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/SchemaFilterFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/SchemaFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/SchemaList.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/SchemaTypes.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/SchemaValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/docs/class.constraint.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/docs/facetedsearch.profile.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/docs/filter.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/docs/property.constraint.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/docs/property.group.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/docs/property.profile.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Schema/docs/search.form.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SerializerFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Serializers/ExpDataSerializer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Serializers/FlatSemanticDataSerializer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Serializers/QueryResultSerializer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Serializers/SemanticDataSerializer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Services/DataValueServiceFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Services/Exception/ServiceNotFoundException.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Services/ImporterServiceFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Services/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Services/ServicesContainer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Services/ServicesFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Services/SharedServicesContainer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Services/cache.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Services/datavalues.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Services/events.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Services/importer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Services/mediawiki.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Settings.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Setup.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SetupCheck.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SetupFile.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Site.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SmwJsonRepo.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/SortLetter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Status.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Store.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/StoreAware.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/StoreFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/StringCondition.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/TypesRegistry.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/UncaughtExceptionHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/CharArmor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/CharExaminer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/CircularReferenceGuard.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/CliMsgFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/Csv.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/DotArray.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/ErrorCodeFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/File.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/FileFetcher.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/Flag.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/HmacSerializer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/Html/SummaryTable.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/HtmlColumns.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/HtmlDivTable.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/HtmlModal.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/HtmlTable.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/HtmlTabs.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/HtmlVTabs.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/Image.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/JsonSchemaValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/JsonView.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/Logger.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/Logo.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/Lru.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/Normalizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/Pager.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/Stats.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/StatsFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/TempFile.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/TemplateEngine.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/Timer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/Tokenizer.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/Url.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/src/Utils/UrlArgs.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/templates/Factbox.mustache create mode 100644 mediawiki/extensions/SemanticMediaWiki/templates/FactboxProperty.mustache create mode 100644 mediawiki/extensions/SemanticMediaWiki/templates/FactboxSection.mustache create mode 100644 mediawiki/extensions/SemanticMediaWiki/templates/SpecialBrowse.mustache create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/autoloader.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/bootstrap.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpUnitEnvironment.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/BenchmarkJsonScriptRunnerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/BenchmarkReporter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/Benchmarker.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/CliOutputFormatter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/Fixtures/import-001.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/Fixtures/import-002.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/JobQueueBenchmarkRunner.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/MaintenanceBenchmarkRunner.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/PageContentCopyBenchmarkRunner.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/PageEditCopyBenchmarkRunner.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/PageImportBenchmarkRunner.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/QueryBenchmarkRunner.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/TestCases/b-001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/TestCases/b-002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Benchmark/phpunit.quick.xml.dist create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/CacheFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Connection/CallbackConnectionProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Connection/ConnRefTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Connection/ConnectionManagerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Constraint/ConstraintCheckRunnerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Constraint/ConstraintErrorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Constraint/ConstraintRegistryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Constraint/ConstraintSchemaCompilerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Constraint/Constraints/DeferrableConstraintTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Constraint/Constraints/MandatoryPropertiesConstraintTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Constraint/Constraints/MustExistsConstraintTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Constraint/Constraints/NamespaceConstraintTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Constraint/Constraints/NonNegativeIntegerConstraintTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Constraint/Constraints/NullConstraintTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Constraint/Constraints/ShapeConstraintTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Constraint/Constraints/SingleValueConstraintTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Constraint/Constraints/UniqueValueConstraintTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ConstraintFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataItemFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataModel/ContainerSemanticDataTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataModel/SequenceMapTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataModel/SubSemanticDataTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataTypeRegistryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValueFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/AllowsListValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/AllowsPatternValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/BooleanValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ConstraintSchemaValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ErrorMsgTextValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ExternalFormatterUriValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ExternalIdentifierValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ImportValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/InfoLinksProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/KeywordValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/LanguageCodeMappingValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/LanguageCodeValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/MonolingualTextValueMappingTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/MonolingualTextValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/Number/IntlNumberFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/Number/UnitConverterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/PropertyChainValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/PropertyValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ReferenceValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/StringValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/TelephoneUriValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/TemperatureValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/Time/ComponentsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/Time/IntlTimeFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/Time/JulianDayTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/Time/TimezoneTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/TypesValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/UniquenessConstraintValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueFormatters/CodeStringValueFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueFormatters/DispatchingDataValueFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueFormatters/MonolingualTextValueFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueFormatters/NoValueFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueFormatters/NumberValueFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueFormatters/PropertyValueFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueFormatters/ReferenceValueFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueFormatters/StringValueFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueFormatters/TimeValueFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueParsers/AllowsListValueParserTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueParsers/AllowsPatternValueParserTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueParsers/ImportValueParserTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueParsers/MonolingualTextValueMappingParserTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueParsers/MonolingualTextValueParserTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueParsers/PropertyValueParserTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueParsers/TimeValueParserTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueValidators/AllowsListConstraintValueValidatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueValidators/CompoundConstraintValueValidatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueValidators/ConstraintSchemaValueValidatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueValidators/PatternConstraintValueValidatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueValidators/PropertySpecificationConstraintValueValidatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DataValues/ValueValidators/UniquenessConstraintValueValidatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DefinesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DependencyValidatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Deserializers/ExpDataDeserializerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Deserializers/SemanticDataDeserializerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/DisplayTitleFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Admin/ElasticClientTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Admin/IndicesInfoProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Admin/MappingsInfoProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Admin/NodesInfoProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Admin/ReplicationInfoProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Admin/SettingsInfoProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/ConfigTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Connection/ClientTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Connection/ConnectionProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Connection/LockManagerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/ElasticFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/ElasticStoreTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Exception/ClientBuilderNotFoundExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Exception/MissingEndpointConfigExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Hooks/UpdateEntityCollationCompleteTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/HooksTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/Attachment/AttachmentAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/Attachment/FileAttachmentTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/Attachment/FileHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/Attachment/ScopeMemoryLimiterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/BulkTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/DocumentCreatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/DocumentTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/FileIndexerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/IndexerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/Rebuilder/RebuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/Rebuilder/RolloverTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/Replication/DocumentReplicationExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/Replication/ReplicationCheckTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/Replication/ReplicationEntityExaminerDeferrableIndicatorProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/Replication/ReplicationErrorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/Replication/ReplicationStatusTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Indexer/TextSanitizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/InstallerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Jobs/FileIngestJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Jobs/IndexerRecoveryJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/Lookup/ProximityPropertyValueLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/QueryEngine/AggregationsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/QueryEngine/ConditionBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/QueryEngine/ConditionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/QueryEngine/DescriptionInterpreters/ClassDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/QueryEngine/DescriptionInterpreters/ConceptDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/QueryEngine/DescriptionInterpreters/ConjunctionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/QueryEngine/DescriptionInterpreters/NamespaceDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/QueryEngine/DescriptionInterpreters/SomeValueInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/QueryEngine/DescriptionInterpreters/ValueDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/QueryEngine/ExcerptsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/QueryEngine/FieldMapperTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Elastic/QueryEngine/QueryEngineTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/EncoderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/EntityCacheTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/EnumTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/ClassNotFoundExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/ConfigPreloadFileNotReadableExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/DataItemDeserializationExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/DataItemExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/DataTypeLookupExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/FileNotReadableExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/FileNotWritableExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/JSONFileParseExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/JSONParseExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/NamespaceIndexChangeExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/ParameterNotFoundExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/PredefinedPropertyLabelMismatchExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/PropertyLabelNotResolvedExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/PropertyNotFoundExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/RedirectTargetUnresolvableExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/SemanticDataImportExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/SettingNotFoundExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/SettingsAlreadyLoadedExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/SiteLanguageChangeExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/StoreNotFoundExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/SubSemanticDataExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ExecutionTimeTestListener.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ConceptMapperTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/Controller/QueueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/DataItemMatchFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/Element/ExpElementTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/Element/ExpLiteralTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/Element/ExpNsResourceTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/Element/ExpResourceTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ElementFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/EscaperTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ExpDataFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ExpResourceMapperTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ExporterFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/AuxiliaryPropertyValueResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/ConceptPropertyValueResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/DispatchingResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/ExternalIdentifierPropertyValueResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/ImportFromPropertyValueResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/KeywordPropertyValueResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/MonolingualTextPropertyValueResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/PredefinedPropertyValueResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/PreferredPropertyLabelResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/PropertyDescriptionValueResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/PropertyValueResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/RedirectPropertyValueResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/SortPropertyValueResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/ResourceBuilders/UniquenessConstraintPropertyValueResourceBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/Serializer/RDFXMLSerializerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/Serializer/TurtleSerializerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exporter/XsdValueMapperTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Factbox/AttachmentFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Factbox/CachedFactboxTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Factbox/CheckMagicWordsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Factbox/FactboxFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Factbox/FactboxMagicWordsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Factbox/FactboxTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Factbox/FactboxTextTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Exception/invalid.trailing.comma.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Importer/Others/InvalidJsonContent/invalid.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Importer/Others/MissingSections/error.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Importer/Others/NoImportFormat/error.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Importer/Others/ValidTextContent/content.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Importer/Others/ValidTextContent/foaf.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Importer/ValidTextContent/content.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Importer/ValidTextContent/foaf.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Importer/ValidXmlContent/content.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Importer/ValidXmlContent/test.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Localizer/LocalLanguage/en.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Localizer/LocalLanguage/foo-fallback.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Localizer/LocalLanguage/foo-partial.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Localizer/dk.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Localizer/en.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Localizer/test.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Maintenance/test-import-19.7.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/MediaWiki/Search/DummySearchDatabase.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/MediaWiki/Search/DummySearchEngine.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/PlainClass.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Schema/empty_schema.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Schema/fake_iterator_schema.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Schema/fake_namespace_category_action_rule_schema_4.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Schema/fake_namespace_category_property_action_rule_schema_6.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Schema/fake_namespace_category_rule_schema_1.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Schema/fake_namespace_category_rule_schema_2.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Schema/fake_namespace_category_rule_schema_best_sort_5.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Schema/fake_namespace_category_unnamed_rule_schema_3.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Utils/aaa.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Utils/subDir/bbb.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/Utils/zzz.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/invalid.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Fixtures/readable.file create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/GlobalFunctionsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/GroupPermissionsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/HashBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/HierarchyLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Importer/ContentCreators/DispatchingContentCreatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Importer/ContentCreators/TextContentCreatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Importer/ContentCreators/XmlContentCreatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Importer/ContentModellerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Importer/ImportContentsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Importer/ImporterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Importer/JsonContentIteratorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Importer/JsonImportContentsFileDirReaderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/InMemoryPoolCacheTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Indicator/EntityExaminerIndicatorsFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/IndicatorEntityExaminerIndicators/AssociatedRevisionMismatchEntityExaminerIndicatorProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/IndicatorEntityExaminerIndicators/BlankEntityExaminerDeferrableIndicatorProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/IndicatorEntityExaminerIndicators/CompositeIndicatorHtmlBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/IndicatorEntityExaminerIndicators/ConstraintErrorEntityExaminerDeferrableIndicatorProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/IndicatorEntityExaminerIndicators/ConstraintErrorEntityExaminerIndicatorProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/IndicatorEntityExaminerIndicators/EntityExaminerCompositeIndicatorProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/IndicatorEntityExaminerIndicators/EntityExaminerDeferrableCompositeIndicatorProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/ConfigPreloaderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Constraint/ConstraintRegistryFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Elastic/DefaultConfigTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/EncodingIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/HookDispatcherTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Importer/ImporterIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Importer/JsonFileDirReaderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/InterwikiDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/P106.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/api-smwbrowse-0001.0.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/api-smwbrowse-0001.1.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/api-smwbrowse-0001.2.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/api-smwbrowse-0001.3.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/api-smwbrowse-0001.4.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/api-smwbrowse-0001.5.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/api-smwbrowse-0001.6.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/file-upload.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/image-upload-480.png create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/image-upload-88.png create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/numeric-sorting.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-0211.1.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-0211.2.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-0211.3.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-0303.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-0439.de.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-0439.fr.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-0444.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-0459-keyword-formatter-schema.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-0502-error.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-0502-other-license.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-0502.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-1100-constraint-user.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-1101-constraint-non-negative.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-1102-constraint-must-exists.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-1103-constraint-single-value.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-1110-constraint-mandatory-properties.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-1110-constraint-shape-constraint-max-cardinality.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-1110-constraint-shape-constraint-property-type.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/p-1120-annotation-sequence-map.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/q-0618.friends.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/q-0618.persons.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/q-0618.visits.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/q-0907-1.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/q-0907-2.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-ask-0002.0.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-ask-0002.1.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-ask-0002.2.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-askargs-0002.3.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-askargs-0002.4.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-smwbrowse-0001.10.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-smwbrowse-0001.11.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-smwbrowse-0001.12.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-smwbrowse-0001.13.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-smwbrowse-0001.7.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-smwbrowse-0001.8.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-smwbrowse-0001.9.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-smwbrowse-0004.1.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-smwbrowse-0004.2.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.api-smwbrowse-0004.3.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0009.0.csv create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0009.1.csv create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0009.2.csv create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0009.3.csv create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0009.4.csv create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0009.5.csv create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0009.6.csv create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0009.7.csv create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0011.0.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0011.1.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0011.2.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0017.0.csv create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0017.1.csv create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0017.2.csv create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0017.3.csv create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/res.special-ask-0018-0.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/skos-import.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/special-ask-0007.0.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/special-ask-0007.1.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/special-ask-0007.2.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/special-ask-0011-beacon-intro.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/special-ask-0011-beacon-named-template-args.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/Fixtures/special-ask-0011-beacon-numeric-template-args.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/JSONScriptTestCaseRunnerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/ReadmeContentsBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/api-ask-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/api-askargs-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/api-smwbrowse-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/api-smwbrowse-0002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/api-smwbrowse-0003.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-category-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-category-0002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-category-0003.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-category-0004.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-category-0005.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-category-0006.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-category-0007.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-debug-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-embedded-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-embedded-0002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-list-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-list-0002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-list-0003.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-list-ul-ol-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-list-ul-ol-0002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-plainlist-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-plainlist-0002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-plainlist-0003.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-plainlist-0004.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-table-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-table-0002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-table-0003.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-table-0004.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-table-0005.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-table-0006.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-table-0007.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-table-0008.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-table-0009.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-table-0010.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-table-0011.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-table-0012.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-template-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-template-0002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-template-0003.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-template-0004.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-template-0005.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-template-0006.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/format-template-0007.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0101.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0102.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0106.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0107.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0108.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0109.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0110.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0111.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0112.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0113.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0114.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0115.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0202.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0203.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0204.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0205.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0206.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0207.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0208.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0209.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0210.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0211.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0212.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0213.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0301.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0302.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0303.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0401.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0402.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0403.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0404.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0405.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0406.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0407.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0408.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0409.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0410.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0411.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0412.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0413.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0414.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0415.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0416.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0417.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0418.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0419.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0420.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0421.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0422.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0423.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0424.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0425.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0426.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0427.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0428.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0429.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0430.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0431.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0432.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0433.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0434.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0435.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0436.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0437.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0438.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0439.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0440.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0441.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0442.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0443.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0444.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0445.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0446.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0447.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0448.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0449.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0450.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0451.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0452.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0453.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0454.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0455.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0456.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0457.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0458.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0459.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0460.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0461.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0462.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0463.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0464.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0465.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0467.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0501.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0502.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0503.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0504.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0701.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0702.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0703.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0704.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0705.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0706.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0707.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0708.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0709.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0710.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0711.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0712.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0713.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0901.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0902.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0903.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0904.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0905.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0906.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0907.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0908.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0909.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0910.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0911.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0912.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0913.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0914.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0915.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0916.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0917.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0918.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0919.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0920.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0921.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-0922.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1000.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1003.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1004.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1005.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1006.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1007.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1008.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1009.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1010.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1011.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1012.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1100.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1101.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1102.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1103.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1110.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1111.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1120.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1121.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/p-1200.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0101.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0102.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0103.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0104.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0105.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0106.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0201.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0202.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0203.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0204.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0301.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0401.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0402.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0501.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0502.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0503.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0601.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0602.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0603.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0604.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0605.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0606.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0607.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0608.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0609.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0610.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0611.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0612.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0613.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0614.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0615.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0616.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0617.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0618.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0619.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0620.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0621.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0622.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0623.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0624.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0625.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0626.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0701.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0702.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0703.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0704.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0801.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0802.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0803.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0804.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0901.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0902.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0903.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0904.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0905.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0906.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0907.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0908.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0909.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0910.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-0911.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1003.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1004.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1101.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1102.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1103.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1104.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1105.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1106.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1107.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1108.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1109.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1200.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1201.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1202.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1203.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1204.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1205.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1206.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1300.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/q-1301.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0003.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0004.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0005.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0006.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0007.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0008.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0009.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0010.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0011.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0012.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0013.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0014.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0015.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0016.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0017.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0018.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0019.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0020.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/r-0021.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0003.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0004.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0005.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0006.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0007.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0008.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0009.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0010.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0011.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0012.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0013.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0014.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0015-mw142.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0015.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0016.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0017.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0018.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-ask-0019.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-browse-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-browse-0002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-browse-0003.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-browse-0004.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-browse-0005.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-browse-0006.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-browse-0007.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-browse-0008.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-concepts-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-page-property-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-properties-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-search-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-search-by-property-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-search-by-property-0002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-search-by-property-0003.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-types-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-unused-properties-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-wanted-properties-0001.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/TestCases/special-wanted-properties-0002.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/bootstrap.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/docs/design.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/docs/extension.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/JSONScript/docs/notes.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Localizer/CopyLocalMessagesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Localizer/LocalLanguage/LanguageContent.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Localizer/LocalLanguage/PartialLanguageFallback.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/DisposeOutdatedEntitiesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/DumpRDFTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/PopulateHashFieldTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/PurgeEntityCacheTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/RebuildConceptCacheTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/RebuildElasticIndexTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/RebuildElasticMissingDocumentsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/RebuildFulltextSearchTableTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/RemoveDuplicateEntitiesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/RunImportTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/SetupStoreMaintenanceTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/UpdateEntityCollationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/UpdateEntityCountMapTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Maintenance/UpdateQueryDependenciesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/ApiBrowseBySubjectDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Hooks/FileUploadIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Hooks/InternalParseBeforeLinksIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Hooks/PageMoveCompleteIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Hooks/ParserAfterTidyIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Hooks/ParserFirstCallInitIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/CategoryInstanceAndCategoryHierarchyTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Fixtures/CategoryInstanceAndCategoryHierarchyTest-Mw-1-19-7.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Fixtures/GenericLoremIpsumTest-Mw-1-19-7.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Fixtures/PageWithTemplateInclusionTest-Mw-1-19-7.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Fixtures/RecordDataTypeTest-Mw-1-19-7.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Fixtures/RedirectPageTest-Mw-1-19-7.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Fixtures/TimeDataTypeTest-Mw-1-19-7.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Fixtures/cicero-de-finibus.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Fixtures/dwc-import-example.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Maintenance/DumpRdfMaintenanceTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Maintenance/RebuildConceptCacheMaintenanceTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Maintenance/RebuildDataMaintenanceTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Maintenance/RebuildFulltextSearchTableTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Maintenance/RebuildPropertyStatisticsMaintenanceTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/Maintenance/UpdateEntityCollationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/PageWithTemplateInclusionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/RecordDataTypeTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/RedirectPageTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Import/TimeDataTypeTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Jobs/ChangePropagationDispatchJob.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/Jobs/UpdateJobRoundtripTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/LinksUpdateEmptyParserOutputDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/LinksUpdateSQLStoreDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/LinksUpdateTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/MediaWikiIntegrationForRegisteredHookTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/NamespaceInfoCanonicalNameMatchTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/PredefinedPropertyAnnotationDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/RedirectTargetFinderIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/SearchInPageDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/MediaWiki/TitleFactoryIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Parser/InTextAnnotationParserTemplateTransclusionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/PropertyLabelCanonicalMatchTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/CategoryClassQueryDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/ComparatorFilterConditionQueryDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/ConjunctionQueryDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/DatePropertyValueQueryDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/DisjunctionQueryDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/GeneralQueryDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/InversePropertyRelationshipDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/NamespaceQueryDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/NullQueryResultTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/ProfileAnnotators/ProfileAnnotatorWithQueryProcessorIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/QuerySourceIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/RandomQueryResultOrderIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/ResultPrinters/ResultPrinterIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/SemanticDataLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/SortableQueryDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Query/SpecialCharactersQueryDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/QueryResultQueryProcessorIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/RdfFileResourceTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SPARQLStore/QueryResultLookupWithoutBaseStoreIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SPARQLStore/RepositoryRepositoryRedirectLookupActiveConnectionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SQLStore/Lookup/ByGroupPropertyValuesLookupIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SQLStore/RefreshSQLStoreDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SQLStore/SubSemanticDataDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SQLStore/TableBuilder/TableBuilderIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Schema/CompartmentIteratorSchemaListTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Schema/FilteredSchemaListTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SemanticDataCountMapIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SemanticDataSerializationDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SemanticDataSerializerDeserializerRoundtripTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SemanticDataSortKeyUpdateDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SemanticDataStorageDBIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SemanticMediaWikiProvidedHookInterfaceIntegrationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SpecialAskTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/SpecialsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Utils/FileFetcherRoundTripTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Utils/TempFileRoundTripTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/Utils/TemplateEngineRoundTripTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/IteratorFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Iterators/AppendIteratorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Iterators/ChunkedIteratorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Iterators/CsvFileIteratorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Iterators/DotSeekableIteratorTraitTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Iterators/MappingIteratorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Iterators/ResultIteratorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Iterators/SeekableIteratorTraitTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/JSONScriptServicesTestCaseRunner.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/JSONScriptTestCaseRunner.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Listener/ChangeListener/CallableChangeListenerTraitTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Listener/ChangeListener/ChangeListenerAwareTraitTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Listener/ChangeListener/ChangeListeners/ChangeRecordTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Listener/ChangeListener/ChangeListeners/PropertyChangeListenerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Listener/ChangeListener/ChangeRecordTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Listener/EventListener/EventHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Listener/EventListener/EventListenerRegistryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Listener/EventListener/EventListeners/InvalidateEntityCacheEventListenerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Listener/EventListener/EventListeners/InvalidatePropertySpecificationLookupCacheEventListenerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Listener/EventListener/EventListeners/InvalidateResultCacheEventListenerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Localizer/LocalLanguage/FallbackFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Localizer/LocalLanguage/JsonContentsFileReaderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Localizer/LocalLanguage/LanguageContentsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Localizer/LocalLanguage/LocalLanguageTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Localizer/LocalMessageProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Localizer/LocalizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Localizer/MessageLocalizerTraitTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Localizer/MessageTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/AutoRecoveryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/ConceptCacheRebuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/DataRebuilder/OutdatedDisposerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/DataRebuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/DisposeOutdatedEntitiesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/DistinctEntityDataRebuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/DuplicateEntitiesDisposerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/Jobs/ExceptionFileLoggerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/Jobs/MaintenanceFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/MaintenanceCheckTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/MaintenanceHelperTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/MaintenanceLoggerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/PropertyStatisticsRebuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/PurgeEntityCacheTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/RunImportTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Maintenance/UpdateQueryDependenciesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/ApiQueryResultFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/ApiRequestParameterFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/AskArgsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/AskTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Browse/ArticleAugmentorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Browse/ArticleLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Browse/CachingLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Browse/ListAugmentorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Browse/ListLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Browse/PSubjectLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Browse/PValueLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Browse/SubjectLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/BrowseByPropertyTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/BrowseBySubjectTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/BrowseTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/InfoTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/PropertyListByApiRequestTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/QueryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/TaskFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/TaskTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Tasks/CheckQueryTaskTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Tasks/DuplicateLookupTaskTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Tasks/EntityExaminerTaskTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Tasks/InsertJobTaskTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Tasks/JobListTaskTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Tasks/TableStatisticsTaskTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/Tasks/UpdateTaskTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/CollatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Connection/CleanUpTablesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Connection/ConnectionProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Connection/DatabaseTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Connection/LoadBalancerConnectionProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Connection/OptionsBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Connection/QueryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Connection/SequenceTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Connection/TransactionHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Content/HtmlBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Content/SchemaContentFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Content/SchemaContentHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Content/SchemaContentTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/DeepRedirectTargetResolverTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Deferred/CallableUpdateTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Deferred/ChangeTitleUpdateTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Deferred/HashFieldUpdateTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Deferred/TransactionalCallableUpdateTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/EditInfoTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/FileRepoFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/HookDispatcherAwareTraitTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/AdminLinksTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/ApiModuleManagerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/ArticleDeleteTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/ArticleFromTitleTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/ArticleProtectCompleteTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/ArticlePurgeTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/ArticleViewHeaderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/BeforeDisplayNoArticleTextTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/BeforePageDisplayTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/DeleteAccountTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/EditPageFormTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/ExtensionSchemaUpdatesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/ExtensionTypesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/FileUploadTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/GetPreferencesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/InternalParseBeforeLinksTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/LinksUpdateCompleteTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/OutputPageParserOutputTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/PageMoveCompleteTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/ParserAfterTidyTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/PersonalUrlsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/RejectParserCacheValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/ResourceLoaderGetConfigVarsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/RevisionFromEditCompleteTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/SidebarBeforeOutputTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/SkinAfterContentTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/SkinTemplateNavigationUniversalTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/SpecialSearchResultsPrependTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/SpecialStatsAddExtraTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/TitleIsAlwaysKnownTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/TitleIsMovableTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/TitleQuickPermissionsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Hooks/UserChangeTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/HooksTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/IndicatorRegistryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/JobFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/JobQueueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Jobs/ChangePropagationClassUpdateJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Jobs/ChangePropagationDispatchJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Jobs/ChangePropagationUpdateJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Jobs/DeferredConstraintCheckUpdateJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Jobs/EntityIdDisposerJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Jobs/FulltextSearchTableRebuildJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Jobs/FulltextSearchTableUpdateJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Jobs/NullJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Jobs/ParserCachePurgeJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Jobs/PropertyStatisticsRebuildJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Jobs/RefreshJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Jobs/UpdateDispatcherJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Jobs/UpdateJobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/LinkBatchTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/LocalTimeTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/MagicWordsFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/ManualEntryLoggerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/MediaWikiNsContentReaderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/MessageBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/MwCollaboratorFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/NamespaceInfoTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Page/ConceptPageTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Page/ListBuilder/ItemListBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Page/ListBuilder/ValueListBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Page/ListBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Page/PropertyPageTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/PageCreatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/PageFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/PageInfoProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/PageUpdaterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Permission/PermissionExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Permission/TitlePermissionsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/PermissionManagerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/PipetrickTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Preference/PreferenceExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/RedirectTargetFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Renderer/HtmlColumnListRendererTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Renderer/HtmlFormRendererTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Renderer/HtmlTableRendererTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Renderer/HtmlTemplateRendererTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Renderer/WikitextTemplateRendererTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/RevisionGuardAwareTraitTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/RevisionGuardTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/Exception/SearchDatabaseInvalidTypeExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/Exception/SearchEngineInvalidTypeExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/ExtendedSearchEngineTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/ExtendedSearchTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/ProfileForm/Forms/CustomFormTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/ProfileForm/Forms/FieldTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/ProfileForm/Forms/NamespaceFormTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/ProfileForm/Forms/OpenFormTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/ProfileForm/Forms/SortFormTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/ProfileForm/FormsBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/ProfileForm/FormsFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/ProfileForm/ProfileFormTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/QueryBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/SearchEngineFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/SearchResultSetTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Search/SearchResultTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Alerts/ByNamespaceInvalidEntitiesMaintenanceAlertTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Alerts/DeprecationNoticeTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Alerts/LastOptimizationRunMaintenanceAlertTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Alerts/MaintenanceAlertsTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Alerts/OutdatedEntitiesMaxCountThresholdMaintenanceAlertTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/AlertsTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Maintenance/DataRefreshJobTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Maintenance/DisposeJobTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Maintenance/FulltextSearchTableRebuildJobTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Maintenance/PropertyStatsRebuildJobTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Maintenance/TableSchemaTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/MaintenanceTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/OutputFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Supplement/CacheStatisticsListTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Supplement/ConfigurationListTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Supplement/DuplicateLookupTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Supplement/EntityLookupTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Supplement/OperationalStatisticsListTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/Supplement/TableStatisticsTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/SupplementTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/SupportListTaskHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/TaskHandlerFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Admin/TaskHandlerRegistryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Ask/DownloadLinksWidgetTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Ask/ErrorWidgetTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Ask/FormatListWidgetTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Ask/HelpWidgetTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Ask/HtmlFormTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Ask/LinksWidgetTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Ask/NavigationLinksWidgetTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Ask/ParameterInputTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Ask/ParametersProcessorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Ask/ParametersWidgetTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Ask/QueryInputWidgetTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Ask/SortWidgetTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Browse/FieldBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Browse/GroupFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Browse/HtmlBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/Browse/ValueFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/Exception/DefaultProfileNotFoundExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/Exception/DefaultValueFilterNotFoundExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/Exception/ProfileSourceDefinitionConflictExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/ExploreListBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/ExtraFieldBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/FacetBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/FilterFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/Filters/CategoryFilterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/Filters/PropertyFilterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/Filters/ValueFilterFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/Filters/ValueFilterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/Filters/ValueFilters/CheckboxRangeGroupValueFilterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/Filters/ValueFilters/CheckboxValueFilterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/Filters/ValueFilters/ListValueFilterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/Filters/ValueFilters/RangeValueFilterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/HtmlBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/OptionsBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/ParametersProcessorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/ProfileTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/ResultFetcherTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/FacetedSearch/TreeBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/PageProperty/PagePropertyTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/PendingTasks/IncompleteSetupTasksTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/PropertyLabelSimilarity/ContentsBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SearchByProperty/PageBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SearchByProperty/PageRequestOptionsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SearchByProperty/QueryResultLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SpecialAdminTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SpecialAskTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SpecialBrowseTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SpecialConstraintErrorListTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SpecialMissingRedirectAnnotationsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SpecialPagePropertyTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SpecialPendingTaskListTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SpecialProcessingErrorListTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SpecialPropertyLabelSimilarityTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SpecialSearchByPropertyTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Specials/SpecialURIResolverTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/StripMarkerDecoderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Template/TemplateExpanderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Template/TemplateSetTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Template/TemplateTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/TitleFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/TitleLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/NamespaceExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/NamespaceManagerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/NamespaceUriFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/OptionsAwareTraitTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/OptionsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/PHPUnitCompat.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/PHPUnitResultPrinter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParameterListDocBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParameterProcessorFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParametersTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Parser/AnnotationProcessorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Parser/InTextAnnotationParserTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Parser/LinksEncoderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Parser/LinksProcessorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Parser/RecursiveTextProcessorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Parser/SemanticLinksParserTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserDataTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserFunctionFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserFunctions/AskParserFunctionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserFunctions/ConceptParserFunctionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserFunctions/DeclareParserFunctionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserFunctions/DocumentationParserFunctionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserFunctions/ExpensiveFuncExecutionWatcherTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserFunctions/InfoParserFunctionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserFunctions/RecurringEventsParserFunctionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserFunctions/SectionTagTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserFunctions/SetParserFunctionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserFunctions/ShowParserFunctionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserFunctions/SubobjectParserFunctionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ParserParameterProcessorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/PostProcHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/ProcessingErrorMsgHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/AnnotatorFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/Annotators/AttachmentLinkPropertyAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/Annotators/CategoryPropertyAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/Annotators/ChainablePropertyAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/Annotators/DisplayTitlePropertyAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/Annotators/EditProtectedPropertyAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/Annotators/MandatoryTypePropertyAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/Annotators/NullPropertyAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/Annotators/PredefinedPropertyAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/Annotators/RedirectPropertyAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/Annotators/SchemaPropertyAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/Annotators/SortKeyPropertyAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/Annotators/TranslationPropertyAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/ChangePropagationNotifierTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/DeclarationExaminer/ChangePropagationExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/DeclarationExaminer/CommonExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/DeclarationExaminer/PredefinedPropertyExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/DeclarationExaminer/ProtectionExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/DeclarationExaminer/UserdefinedPropertyExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/DeclarationExaminerFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/DeclarationExaminerMsgBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/RestrictionExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Property/SpecificationLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/PropertyAliasFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/PropertyLabelFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/PropertyRegistryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Protection/EditProtectionUpdaterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Protection/ProtectionValidatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Cache/CacheStatsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Cache/ResultCacheTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/DebugFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/DeferredTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/DescriptionBuilderRegistryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/DescriptionBuilders/MonolingualTextValueDescriptionBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/DescriptionBuilders/NumberValueDescriptionBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/DescriptionBuilders/RecordValueDescriptionBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/DescriptionBuilders/SomeValueDescriptionBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/DescriptionBuilders/TimeValueDescriptionBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/DescriptionFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Exception/ResultFormatNotFoundExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ExcerptsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Language/ClassDescriptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Language/ConceptDescriptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Language/ConjunctionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Language/DisjunctionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Language/NamespaceDescriptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Language/SomePropertyTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Language/ThingDescriptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Language/ValueDescriptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Parser/DescriptionProcessorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Parser/LegacyParserTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Parser/TermParserTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Parser/TokenizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/PrintRequest/DeserializerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/PrintRequest/FormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/PrintRequest/SerializerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/PrintRequestFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/PrintRequestTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Processor/DefaultParamDefinitionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Processor/ParamListProcessorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Processor/QueryCreatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Processor/QueryProcessorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ProfileAnnotatorFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ProfileAnnotators/DescriptionProfileTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ProfileAnnotators/DurationProfileAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ProfileAnnotators/FormatProfileAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ProfileAnnotators/NullProfileAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ProfileAnnotators/ParametersProfileAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ProfileAnnotators/SchemaLinkProfileAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ProfileAnnotators/SourceProfileAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ProfileAnnotators/StatusCodeProfileAnnotatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/QueryComparatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/QueryLinkerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/QueryResultTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/QuerySourceFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/QueryStringifierTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/QueryTokenTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/RemoteRequestTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Result/FieldItemFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Result/FilterMapTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Result/ItemFetcherTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Result/ItemJournalTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Result/RestrictionsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/Result/StringResultTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultFormatTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/AggregatablePrinterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/CategoryResultPrinterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/CsvFileExportPrinterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/DsvResultPrinterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/EmbeddedResultPrinterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/FeedExportPrinterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/FileExportPrinterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/JsonResultPrinterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/ListResultPrinter/ParameterDictionaryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/ListResultPrinterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/NullResultPrinterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/RdfResultPrinterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/ResultPrintersTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/TableResultPrinterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ResultPrinters/TemplateFileExportPrinterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Query/ScoreSetTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/QueryFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/QueryPrinterRegistryTestCase.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/QueryPrinterTestCase.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/QueryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/RequestOptionsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SMWIntegrationTestCase.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/Exception/BadHttpEndpointResponseExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/Exception/HttpEndpointConnectionExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/HttpResponseErrorMapperTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/Condition/FalseConditionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/Condition/FilterConditionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/Condition/SingletonConditionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/Condition/TrueConditionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/Condition/WhereConditionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/ConditionBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/DescriptionInterpreterFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/DescriptionInterpreters/ClassDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/DescriptionInterpreters/ConceptDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/DescriptionInterpreters/ConjunctionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/DescriptionInterpreters/DisjunctionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/DescriptionInterpreters/NamespaceDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/DescriptionInterpreters/SomePropertyInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/DescriptionInterpreters/ThingDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/DescriptionInterpreters/ValueDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/EngineOptionsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/QueryEngineTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/QueryResultFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/RepositoryResultTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/QueryEngine/XmlResponseParserTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/ReplicationDataTruncatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/RepositoryClientTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/RepositoryConnectionProviderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/RepositoryConnectors/ElementaryRepositoryConnectorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/RepositoryConnectors/FourstoreRepositoryConnectorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/RepositoryConnectors/FusekiRepositoryConnectorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/RepositoryConnectors/GenericRepositoryConnectorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/RepositoryConnectors/RepositoryConnectorsExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/RepositoryConnectors/VirtuosoRepositoryConnectorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/RepositoryRedirectLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/SPARQLStoreFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/SPARQLStoreTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SPARQLStore/TurtleTriplesBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/ChangeOp/ChangeDiffTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/ChangeOp/ChangeOpTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/ChangeOp/FieldChangeOpTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/ChangeOp/TableChangeOpTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/ConceptCacheTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityIdManagerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/AuxiliaryFieldsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/CacheWarmerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/CachingSemanticDataLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/DataItemHandlerFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/DataItemHandlers/DIBlobHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/DataItemHandlers/DIUriHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/DataItemHandlers/DIWikiPageHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/DuplicateFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/EntityIdFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/EntityLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/FieldListTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/IdCacheManagerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/IdChangerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/IdEntityFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/PrefetchCacheTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/PrefetchItemLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/PropertiesLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/PropertySubjectsLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/ResultLimiterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/SemanticDataLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/SequenceMapFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/StubSemanticDataTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/SubobjectListFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/EntityStore/TraversalPropertyLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Exception/PropertyStatisticsInvalidArgumentExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Exception/TableMissingIdFieldExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Installer/TableOptimizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Installer/VersionExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/InstallerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/ByGroupPropertyValuesLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/CachedListLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/ChangePropagationEntityLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/DisplayTitleLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/EntityUniquenessLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/ErrorLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/MissingRedirectLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/MonolingualTextLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/PropertyLabelSimilarityLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/PropertyUsageListLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/ProximityPropertyValueLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/RedirectTargetLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/SingleEntityQueryLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/TableStatisticsLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/UndeclaredPropertyListLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/UnusedPropertyListLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Lookup/UsageStatisticsListLookupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/PropertyStatisticsStoreTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/PropertyTable/PropertyTableHashesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/PropertyTableDefinitionBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/PropertyTableDefinitionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/PropertyTableIdReferenceDisposerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/PropertyTableIdReferenceFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/PropertyTableInfoFetcherTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/PropertyTableRowDifferTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/PropertyTableRowMapperTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/PropertyTableUpdaterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/PropertyTypeFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryDependency/DependencyLinksTableUpdaterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryDependency/DependencyLinksValidatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryDependency/QueryDependencyLinksStoreTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryDependency/QueryReferenceBacklinksTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryDependency/QueryResultDependencyListResolverTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryDependencyLinksStoreFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/ConceptQuerySegmentBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/ConditionBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/DescriptionInterpreterFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/DescriptionInterpreters/ClassDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/DescriptionInterpreters/ComparatorMapperTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/DescriptionInterpreters/ConceptDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/DescriptionInterpreters/DisjunctionConjunctionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/DescriptionInterpreters/NamespaceDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/DescriptionInterpreters/SomePropertyInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/DescriptionInterpreters/ThingDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/DescriptionInterpreters/ValueDescriptionInterpreterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/EngineOptionsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/Fulltext/MySQLValueMatchConditionBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/Fulltext/SQLiteValueMatchConditionBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/Fulltext/SearchTableRebuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/Fulltext/SearchTableTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/Fulltext/SearchTableUpdaterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/Fulltext/TextChangeUpdaterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/Fulltext/TextSanitizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/Fulltext/ValueMatchConditionBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/FulltextSearchTableFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/HierarchyTempTableBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/OrderConditionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/QueryEngineTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/QuerySegmentListProcessorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngine/QuerySegmentTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/QueryEngineFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Rebuilder/EntityValidatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/Rebuilder/RebuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/RedirectStoreTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/RedirectUpdaterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/RequestOptionsProcessorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/SQLStoreFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/SQLStoreTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/SQLStoreUpdaterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuildExaminerFactory/TableBuildExaminerFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/Examiner/CountMapFieldTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/Examiner/EntityCollationTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/Examiner/FixedPropertiesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/Examiner/HashFieldTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/Examiner/IdBorderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/Examiner/PredefinedPropertiesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/Examiner/TouchedFieldTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/FieldTypeTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/MySQLTableBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/PostgresTableBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/SQLiteTableBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/TableBuildExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/TableBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/TableSchemaManagerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/TableTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableBuilder/TemporaryTableBuilderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SQLStore/TableFieldUpdaterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/CompartmentIteratorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/CompartmentTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/Exception/SchemaConstructionFailedExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/Exception/SchemaParameterTypeMismatchExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/Exception/SchemaTypeAlreadyExistsExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/Exception/SchemaTypeNotFoundExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/Filters/CategoryFilterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/Filters/CompositeFilterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/Filters/FilterTraitTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/Filters/NamespaceFilterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/Filters/PropertyFilterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/RuleTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/SchemaDefinitionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/SchemaFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/SchemaFilterFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/SchemaFinderTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/SchemaListTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/SchemaTypesTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Schema/SchemaValidatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SemanticMediaWikiTestCase.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SerializerFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Serializers/ExpDataSerializerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Serializers/QueryResultSerializerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Serializers/SemanticDataSerializerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Services/DataValueServiceFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Services/DataValueServicesContainerBuildTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Services/EventsServicesContainerBuildTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Services/Exception/ServiceNotFoundExceptionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Services/ImporterServiceFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Services/ImporterServicesContainerBuildTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Services/MediaWikiServicesContainerBuildTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Services/ServicesContainerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Services/ServicesFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Services/SharedServicesContainerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SettingsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SetupCheckTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SetupFileTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SetupTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SiteTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SortLetterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/SpecialPageTestCase.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/StatusTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/StoreFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/StringConditionTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Structure/ConfigPreloadTableListPrimaryKeysCompleteTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Structure/I18nJsonFileIntegrityTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Structure/I18nMsgDescriptionPredefinedPropertyTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Structure/I18nMsgKeyIntegrityTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Structure/InstallationGlobalsProviderIntegrityTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Structure/LocalLanguageAccessibilityAndIntegrityTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Structure/LocalLanguageFileIntegrityTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Structure/PHPUnitCheckRunnerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Structure/ResourcesAccessibilityTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/TestConfig.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/TestEnvironment.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/TypesRegistryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/UncaughtExceptionHandlerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Updater/DataUpdaterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/ByPageSemanticDataFinder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/CharArmorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/CharExaminerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/CircularReferenceGuardTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/CliMsgFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Connection/TestDatabaseConnectionProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Connection/TestDatabaseTableBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/CsvTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/DotArrayTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/ErrorCodeFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/File/BulkFileProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/File/ContentsReader.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/File/DummyFileCreator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/File/JsonFileReader.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/File/LocalFileUpload.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/FileFetcherTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/FileTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Facts/BerlinFactsheet.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Facts/FranceFactsheet.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Facts/ParisFactsheet.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/File/LoremIpsum.json create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/File/LoremIpsum.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/FixturesCleaner.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/FixturesFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/FixturesFileProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/FixturesProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/InvalidCustomRespositoryConnector.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/AreaProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/BookRecordProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/CapitalOfProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/CityCategory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/CoordinatesProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/CountryCategory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/DescriptionProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/EmailProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/FixtureProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/FoundedProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/LocatedInProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/PopulationDensityProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/PopulationProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/StatusProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/TelephoneNumberProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/TemperatureProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/TitleProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/UrlProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/YearProperty.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Results/FakeRawResultProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Results/XML/boolean-sparql-result.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Results/XML/empty-sparql-result.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Results/XML/integer-type-literal-sparql-result.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Results/XML/invalid-sparql-result.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Results/XML/mixed-rows-sparql-result-utf8.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Results/XML/mixed-rows-sparql-result.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Results/XML/nontype-literal-sparql-result.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Results/XML/string-type-literal-sparql-result.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Results/XML/uri-resource-sparql-result.xml create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/FlagTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/GlobalsProvider.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/HmacSerializerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Html/SummaryTableTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/HtmlColumnsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/HtmlDivTableTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/HtmlModalTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/HtmlTableTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/HtmlTabsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/HtmlVTabsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/ImageTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/InSemanticDataFetcher.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/JSONScript/ApiTestCaseProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/JSONScript/JsonTestCaseContentHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/JSONScript/JsonTestCaseFileHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/JSONScript/ParserHtmlTestCaseProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/JSONScript/ParserTestCaseProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/JSONScript/QueryTestCaseInterpreter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/JSONScript/QueryTestCaseProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/JSONScript/RdfTestCaseProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/JSONScript/SpecialPageTestCaseProcessor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/JsonSchemaValidatorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/JsonViewTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/LoggerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/LogoTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/LruTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Mock/CoreMockObjectRepository.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Mock/FakeQueryStore.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Mock/IteratorMockBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Mock/MediaWikiMockObjectRepository.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Mock/MockObjectBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Mock/MockObjectRepository.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Mock/MockSuperUser.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Mock/MockTitle.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/MwApiFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/MwHooksHandler.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/NormalizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Page/PageEditor.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/PageCreator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/PageDeleter.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/PageReader.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/PageRefresher.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/PagerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/ParserFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/ResultPrinterReflector.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Runners/JobQueueRunner.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Runners/MaintenanceRunner.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Runners/RunnerFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Runners/XmlImportRunner.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/SemanticDataFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/SpyLogger.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/StatsFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/StatsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/StringBuilder.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/TempFileTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/TemplateEngineTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/TimerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/TokenizerTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/UrlArgsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/UrlTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/UtilityFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Validators/ExportDataValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Validators/HtmlValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Validators/IncomingSemanticDataValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Validators/NumberValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Validators/QueryResultValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Validators/QuerySegmentValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Validators/SemanticDataValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Validators/StringValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Validators/TitleValidator.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Validators/ValidatorFactory.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/ContentParserTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/DataValues/RecordValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/DataValues/UriValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/DataValues/WikiPageValueTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/HighlighterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/InfolinkTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/QueryPrinterFactoryTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/QueryProcessorTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/RecurringEventsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/SemanticDataTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/SubobjectTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/dataitems/CommonDataItemTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/dataitems/DIConceptTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/dataitems/DIPropertyTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/dataitems/DITimeTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/dataitems/DIWikiPageTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/dataitems/DI_BlobTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/dataitems/DI_BoolTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/dataitems/DI_GeoCoordTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/dataitems/DI_NumberTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/dataitems/DataItemTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/export/ExpDataTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/export/ExportSemanticDataTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/export/SMWExporterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/formatters/MessageFormatterTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/querypages/PropertiesQueryPageTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/querypages/QueryPageTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/querypages/UnusedPropertiesQueryPageTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/querypages/WantedPropertiesQueryPageTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/specials/SpecialConceptsTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/phpunit/includes/storage/StoreTest.php create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/qunit/smw/api/ext.smw.api.test.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/qunit/smw/data/ext.smw.data.test.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/qunit/smw/data/ext.smw.dataItem.number.test.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/qunit/smw/data/ext.smw.dataItem.property.test.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/qunit/smw/data/ext.smw.dataItem.text.test.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/qunit/smw/data/ext.smw.dataItem.time.test.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/qunit/smw/data/ext.smw.dataItem.unknown.test.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/qunit/smw/data/ext.smw.dataItem.uri.test.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/qunit/smw/data/ext.smw.dataItem.wikiPage.test.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/qunit/smw/data/ext.smw.dataValue.quantity.test.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/qunit/smw/ext.smw.test.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/qunit/smw/query/ext.smw.query.test.js create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/travis/README.md create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/travis/blazegraph-store.properties create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/travis/install-mediawiki.sh create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/travis/install-semantic-mediawiki.sh create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/travis/install-services.sh create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/travis/openrdf-sesame-memory-repository.txt create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/travis/run-tests.sh create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/travis/update-configuration-settings.sh create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/travis/upload-coverage-report.sh create mode 100644 mediawiki/extensions/SemanticMediaWiki/tests/travis/virtuoso-sparql-permission.sql diff --git a/mediawiki/extensions/SemanticMediaWiki/.github/FUNDING.yml b/mediawiki/extensions/SemanticMediaWiki/.github/FUNDING.yml new file mode 100644 index 0000000..9d47033 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: +patreon: # Replace with a single Patreon username +open_collective: smw +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: ['https://www.semantic-mediawiki.org/wiki/Sponsorship'] diff --git a/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/add-tester.md b/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/add-tester.md new file mode 100644 index 0000000..aa59c64 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/add-tester.md @@ -0,0 +1,10 @@ +--- +name: Membership +about: Add a tester +title: Please add me as a tester +labels: '' +assignees: '' + +--- + + diff --git a/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/bug_report.md b/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..e14927e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,24 @@ +--- +name: Bug report +about: Report a bug +title: '' +labels: bug +assignees: '' + +--- + +### Setup + +- SMW version: +- MW version: +- PHP version: +- DB system (MySQL, Blazegraph, etc.) and version: + +### Issue + +Detailed description of the issue and a [stack trace](https://www.semantic-mediawiki.org/wiki/Help:Identifying_bugs) if applicable: + +``` +``` + +Steps to reproduce the observation (recommendation is to use the [sandbox](https://sandbox.semantic-mediawiki.org)): diff --git a/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/feature_request.md b/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..573dcb3 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,10 @@ +--- +name: Feature request +about: Request a new feature +title: '' +labels: feature +assignees: '' + +--- + + diff --git a/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/make-a-release.md b/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/make-a-release.md new file mode 100644 index 0000000..64c4113 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/make-a-release.md @@ -0,0 +1,33 @@ +--- +name: Make a release +about: Keep track of the tasks for making a release +title: Make the x.y.z realease +labels: roadmap +assignees: '' + +--- + +## Tasks + +- [ ] Update release notes + - [ ] Add missing commits tagged with [releasenotes](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pulls?q=is%3Apr+is%3Aopen+label%3Areleasenotes) + - [ ] Add RELEASE-NOTES to /docs/releasenotes/ + - [ ] Update /docs/releasenotes/README +- [ ] Update INSTALL - not just version number +- [ ] Update composer.json +- [ ] Update version number + - [ ] extension.json + - [ ] COMPATIBILITY +- [ ] Create tag +- [ ] Update `semantic-mediawiki.org` + - [ ] Run `composer update` + - [ ] Touch `LocalSettings.php` + - [ ] Update the SMW configuration + - [ ] Check [Special:Version](https://www.semantic-mediawiki.org/wiki/Special:Version) +- [ ] Update [roadmap](https://www.semantic-mediawiki.org/wiki/Roadmap) if applicable +- [ ] Update version on wikidata, en, mw, and Free Software Directory +- [ ] Announce on wiki +- [ ] Announce via mail (use series instead of branch as wording) +- [ ] Do a release tweet on Twitter (Also mention if it is a feature, maintenance or security release) +- [ ] Close milestone +- [ ] Update project diff --git a/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/question.md b/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 0000000..d149357 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,10 @@ +--- +name: Question +about: Ask a question +title: '' +labels: question +assignees: '' + +--- + + diff --git a/mediawiki/extensions/SemanticMediaWiki/.github/dependabot.yml b/mediawiki/extensions/SemanticMediaWiki/.github/dependabot.yml new file mode 100644 index 0000000..f7c8fd0 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.github/dependabot.yml @@ -0,0 +1,8 @@ +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "composer" + directory: "/" # Location of package manifests + schedule: + interval: "daily" diff --git a/mediawiki/extensions/SemanticMediaWiki/.github/workflows/main.yml b/mediawiki/extensions/SemanticMediaWiki/.github/workflows/main.yml new file mode 100644 index 0000000..9518e44 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.github/workflows/main.yml @@ -0,0 +1,83 @@ +name: build + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + workflow_dispatch: + +jobs: + build: + + runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental }} + + strategy: + matrix: + include: + - mediawiki_version: '1.43' + php_version: 8.1 + database_type: mysql + database_image: "mariadb:11.2" + coverage: true + experimental: false + - mediawiki_version: '1.43' + php_version: 8.2 + database_type: mysql + database_image: "mariadb:11.2" + coverage: false + experimental: false + - mediawiki_version: '1.43' + php_version: 8.3 + database_type: mysql + database_image: "mariadb:11.2" + coverage: false + experimental: false + - mediawiki_version: '1.44' + php_version: 8.3 + database_type: mysql + database_image: "mariadb:11.2" + coverage: false + experimental: true + - mediawiki_version: '1.44' + php_version: 8.3 + database_type: mysql + database_image: "mariadb:11.8" + coverage: false + experimental: true + + env: + MW_VERSION: ${{ matrix.mediawiki_version }} + PHP_VERSION: ${{ matrix.php_version }} + DB_TYPE: ${{ matrix.database_type }} + DB_IMAGE: ${{ matrix.database_image }} + PHP_EXTENSIONS: pcntl + + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Update submodules + run: git submodule update --init --remote + + - name: Run tests + run: make ci + if: matrix.coverage == false + + - name: Run unit tests with coverage + run: make ci-coverage COMPOSER_PARAMS="-- --testsuite=semantic-mediawiki-unit" + if: matrix.coverage == true + + - name: Run tests with coverage + run: make ci-coverage COMPOSER_PARAMS="-- --testsuite semantic-mediawiki-check,semantic-mediawiki-data-model,semantic-mediawiki-integration,semantic-mediawiki-import,semantic-mediawiki-structure" + if: matrix.coverage == true + + - name: Upload code coverage + uses: codecov/codecov-action@v5 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: coverage/php/coverage.xml + if: matrix.coverage == true diff --git a/mediawiki/extensions/SemanticMediaWiki/.github/workflows/tesa.yml b/mediawiki/extensions/SemanticMediaWiki/.github/workflows/tesa.yml new file mode 100644 index 0000000..314a997 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.github/workflows/tesa.yml @@ -0,0 +1,44 @@ +name: Tesa + +on: + push: + paths: + - .github/workflows/tesa.yml + - Tesa/** + - composer.json + +jobs: + phpunit: + name: "PHPUnit PHP ${{ matrix.php }}" + + strategy: + matrix: + php: [ 8.1, 8.2, 8.3, 8.4 ] + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: mbstring, intl + tools: composer, cs2pr + coverage: pcov + + - name: Cache Composer cache + uses: actions/cache@v4 + with: + path: ~/.composer/cache + key: composer-cache-php${{ matrix.php }} + + - name: Composer install + run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader + + - name: Add PHPUnit + run: composer require phpunit/phpunit:^9 + + - name: PHPUnit + run: vendor/bin/phpunit -c Tesa/phpunit.xml.dist diff --git a/mediawiki/extensions/SemanticMediaWiki/.gitignore b/mediawiki/extensions/SemanticMediaWiki/.gitignore new file mode 100644 index 0000000..b195c65 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.gitignore @@ -0,0 +1,38 @@ +# -*- mode: gitignore; -*- +!.* + +*~ +\#*\# +*.kate-swp +.\#* + +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +vendor/ +extensions/ +build/logs/ +build/release/build-* + +composer.phar +composer.lock + +.idea/ +.smw.json +.phpunit.result.cache +src/Tesa/.phpunit.result.cache + +composer +installer +.env +.envrc +conf +expected + +# Operating systems +## Mac OS X +.DS_Store +## Windows +Thumbs.db diff --git a/mediawiki/extensions/SemanticMediaWiki/.gitmodules b/mediawiki/extensions/SemanticMediaWiki/.gitmodules new file mode 100644 index 0000000..2d846d0 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.gitmodules @@ -0,0 +1,3 @@ +[submodule "build"] + path = build + url = https://github.com/gesinn-it-pub/docker-compose-ci.git diff --git a/mediawiki/extensions/SemanticMediaWiki/.jshintignore b/mediawiki/extensions/SemanticMediaWiki/.jshintignore new file mode 100644 index 0000000..fe0f465 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.jshintignore @@ -0,0 +1,8 @@ +# third-party libs +res/jquery/ + +# Those files need overall re-factoring and qunit tests +res/smw/special/ext.smw.special.ask.js +res/smw/special/ext.smw.special.browse.js +res/smw/special/ext.smw.special.property.js +res/smw/util/ext.smw.util.autocomplete.js \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/.jshintrc b/mediawiki/extensions/SemanticMediaWiki/.jshintrc new file mode 100644 index 0000000..c33a3da --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.jshintrc @@ -0,0 +1,32 @@ +{ + "predef": [ + "mediaWiki", + "semanticMediaWiki", + "jQuery", + "QUnit" + ], + + "bitwise": false, // prohibits the use of bitwise operators such as ^ (XOR), | (OR) + "camelcase": false, // allows you to force all variable names to use either camelCase style + "curly": true, // requires you to always put curly braces around blocks in loops and conditionals + "eqeqeq": true, // prohibits the use of == and != in favor of === and !== + "forin": false, // requires all for in loops to filter object's items + "immed": true, // prohibits the use of immediate function invocations without wrapping them + "latedef": true, // prohibits the use of a variable before it was defined + "newcap": false, // requires you to capitalize names of constructor functions + "noarg": true, // prohibits the use of arguments.caller and arguments.callee + "noempty": true, // warns when you have an empty block in your code + "nonew": false, // prohibits the use of constructor functions for side-effects + "quotmark": "single", // enforces the consistency of quotation marks used throughout your code + "regexp": false, // prohibits the use of unsafe . in regular expressions + "undef": false, // prohibits the use of explicitly undeclared variables + "unused": true, // warns when you define and never use your variables + "strict": true, // requires all functions to run in EcmaScript 5's strict mode + "trailing": true, // makes it an error to leave a trailing whitespace in your code + + "laxbreak": true, // suppresses most of the warnings about possibly unsafe line breakings + "smarttabs": true, // suppresses warnings about mixed tabs + "multistr": true, // suppresses warnings about multi-line strings + + "browser": true // defines globals exposed by modern browsers +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/.phpcs.xml b/mediawiki/extensions/SemanticMediaWiki/.phpcs.xml new file mode 100644 index 0000000..78a03b1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/.phpcs.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + + . + /(vendor|conf)/ + extensions/* + + + diff --git a/mediawiki/extensions/SemanticMediaWiki/COPYING b/mediawiki/extensions/SemanticMediaWiki/COPYING new file mode 100644 index 0000000..0c88f39 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/COPYING @@ -0,0 +1,355 @@ +Semantic MediaWiki (SMW) is a free, open-source extension to MediaWiki +that lets you store and query data within the wiki's pages. + +Copyright (C) 2005 + + +The license text below "====" applies to all files within this distribution, +other than those that are in a directory which contains files named "LICENSE" +or "COPYING", or a subdirectory thereof. For those files, the license text +contained in said file overrides any license information contained in directories +of smaller depth. Alternative licenses are typically used for software that +is provided by external parties, and merely packaged with the Semantic MediaWiki +release for convenience. + +==== + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/mediawiki/extensions/SemanticMediaWiki/DefaultSettings.php b/mediawiki/extensions/SemanticMediaWiki/DefaultSettings.php new file mode 100644 index 0000000..2e6c302 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/DefaultSettings.php @@ -0,0 +1,13 @@ + **INFO**: +> This repository contains submodules. Make sure to clone with `--recursive` option in Git. +> +> ``` +> git clone --recursive +> ``` +> +> If not done when cloning, it can be done by +> +> ``` +> git submodule init +> git submodule update +> ``` + +### Step 1: Clone the Repository + +### Step 2: Ensure test container is running +This repository supports ["docker-compose-ci" based CI and testing for MediaWiki extensions](https://github.com/gesinn-it-pub/docker-compose-ci). + +The "docker-compose-ci" repository has already been integrated into the Semantic MediaWiki repository as a Git submodule. It uses "Make" as main entry point and command line interface. + +Ensure, you have `Make` and `Docker` installed: +``` +make --version +docker --version +``` + +### Step 3: Run lint, phpcs and tests + +``` +make ci +``` + +For more information about +- docker-compose-ci, see https://github.com/gesinn-it-pub/docker-compose-ci +- tests in Semantic MediaWiki in general, see the [test documentation](/tests/README.md#running-tests). + +## License + +[GNU General Public License, version 2 or later][gpl-licence]. The COPYING file explains SMW's copyright and license. + +[contributors]: https://github.com/SemanticMediaWiki/SemanticMediaWiki/graphs/contributors +[travis]: https://travis-ci.org/SemanticMediaWiki/SemanticMediaWiki +[mw-testing]: https://www.mediawiki.org/wiki/Manual:PHP_unit_testing +[gpl-licence]: https://www.gnu.org/copyleft/gpl.html +[composer]: https://getcomposer.org/ +[smw-installation]: https://www.semantic-mediawiki.org/wiki/Help:Installation diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/LICENSE b/mediawiki/extensions/SemanticMediaWiki/Tesa/LICENSE new file mode 100644 index 0000000..d6a9326 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/LICENSE @@ -0,0 +1,340 @@ +GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {description} + Copyright (C) {year} {fullname} + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + {signature of Ty Coon}, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. + diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/README.md b/mediawiki/extensions/SemanticMediaWiki/Tesa/README.md new file mode 100644 index 0000000..b5c2eac --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/README.md @@ -0,0 +1,118 @@ +# Tesa (text sanitizer) + +[![Build Status](https://secure.travis-ci.org/onoi/tesa.svg?branch=master)](http://travis-ci.org/onoi/tesa) +[![Code Coverage](https://scrutinizer-ci.com/g/onoi/tesa/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/onoi/tesa/?branch=master) +[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/onoi/tesa/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/onoi/tesa/?branch=master) +[![Latest Stable Version](https://poser.pugx.org/onoi/tesa/version.png)](https://packagist.org/packages/onoi/tesa) +[![Packagist download count](https://poser.pugx.org/onoi/tesa/d/total.png)](https://packagist.org/packages/onoi/tesa) +[![Dependency Status](https://www.versioneye.com/php/onoi:tesa/badge.png)](https://www.versioneye.com/php/onoi:tesa) + +The library contains a small collection of helper classes to support sanitization +of text or string elements of arbitrary length with the aim to improve +search match confidence during a query execution that is required by [Semantic MediaWiki][smw] +project and is deployed independently. + +## Requirements + +- PHP 7.4 +- Recommended to enable the [ICU][icu] extension + +## Installation + +The recommended installation method for this library is by adding +the following dependency to your [composer.json][composer]. + +```json +{ + "require": { + "onoi/tesa": "~0.1" + } +} +``` + +## Usage + +```php +use Onoi\Tesa\SanitizerFactory; +use Onoi\Tesa\Transliterator; +use Onoi\Tesa\Sanitizer; + +$sanitizerFactory = new SanitizerFactory(); + +$sanitizer = $sanitizerFactory->newSanitizer( 'A string that contains ...' ); + +$sanitizer->reduceLengthTo( 200 ); +$sanitizer->toLowercase(); + +$sanitizer->replace( + array( "'", "http://", "https://", "mailto:", "tel:" ), + array( '' ) +); + +$sanitizer->setOption( Sanitizer::MIN_LENGTH, 4 ); +$sanitizer->setOption( Sanitizer::WHITELIST, array( 'that' ) ); + +$sanitizer->applyTransliteration( + Transliterator::DIACRITICS | Transliterator::GREEK +); + +$text = $sanitizer->sanitizeWith( + $sanitizerFactory->newGenericTokenizer(), + $sanitizerFactory->newNullStopwordAnalyzer(), + $sanitizerFactory->newNullSynonymizer() +); + +``` + +- `SanitizerFactory` is expected to be the sole entry point for services and instances + when used outside of this library +- `IcuWordBoundaryTokenizer` is a preferred tokenizer in case the [ICU][icu] extension is available +- `NGramTokenizer` is provided to increase CJK match confidence in case the + back-end does not provide an explicit ngram tokenizer +- `StopwordAnalyzer` together with a `LanguageDetector` is provided as a means to + reduce ambiguity of frequent "noise" words from a possible search index +- `Synonymizer` currently only provides an interface + +## Contribution and support + +If you want to contribute work to the project please subscribe to the +developers mailing list and have a look at the [contribution guidelinee](/CONTRIBUTING.md). A list +of people who have made contributions in the past can be found [here][contributors]. + +* [File an issue](https://github.com/onoi/tesa/issues) +* [Submit a pull request](https://github.com/onoi/tesa/pulls) + +## Tests + +The library provides unit tests that covers the core-functionality normally run by the +[continues integration platform][travis]. Tests can also be executed manually using the +`composer phpunit` command from the root directory. + +## Release notes + +- 0.1.0 Initial release (2016-08-07) + - Added `SanitizerFactory` with support for a + - `Tokenizer`, `LanguageDetector`, `Synonymizer`, and `StopwordAnalyzer` interface + +## Acknowledgments + +- The `Transliterator` uses the same diacritics conversion table as http://jsperf.com/latinize + (except the German diaeresis ä, ü, and ö) +- The stopwords used by the `StopwordAnalyzer` have been collected from different sources, each `json` + file identifies its origin +- `CdbStopwordAnalyzer` relies on `wikimedia/cdb` to avoid using an external database or cache + layer (with extra stopwords being available [here](https://github.com/6/stopwords-json)) +- `JaTinySegmenterTokenizer` is based on the work of Taku Kudo and his [tiny_segmenter.js](http://chasen.org/~taku/software/TinySegmenter) +- `TextCatLanguageDetector` uses the [`wikimedia/textcat`][textcat] library to make predictions about a language + +## License + +[GNU General Public License 2.0 or later][license]. + +[composer]: https://getcomposer.org/ +[contributors]: https://github.com/onoi/tesa/graphs/contributors +[license]: https://www.gnu.org/copyleft/gpl.html +[travis]: https://travis-ci.org/onoi/tesa +[smw]: https://github.com/SemanticMediaWiki/SemanticMediaWiki/ +[icu]: http://php.net/manual/en/intro.intl.php +[textcat]: https://github.com/wikimedia/wikimedia-textcat diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/phpunit.xml.dist b/mediawiki/extensions/SemanticMediaWiki/Tesa/phpunit.xml.dist new file mode 100644 index 0000000..6d71bd4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/phpunit.xml.dist @@ -0,0 +1,27 @@ + + + + tests/phpunit/Unit + + + tests/phpunit/Integration + + + + + src + + + diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/CharacterExaminer.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/CharacterExaminer.php new file mode 100644 index 0000000..adf9f30 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/CharacterExaminer.php @@ -0,0 +1,61 @@ + 0; + } + + if ( $type === self::LATIN ) { + return preg_match( '/\p{Latin}/u', $text ) > 0; + } + + if ( $type === self::HAN ) { + return preg_match( '/\p{Han}/u', $text ) > 0; + } + + if ( $type === self::HIRAGANA_KATAKANA ) { + return preg_match( '/[\x{3040}-\x{309F}]/u', $text ) > 0 || preg_match( '/[\x{30A0}-\x{30FF}]/u', $text ) > 0; // isHiragana || isKatakana + } + + if ( $type === self::HANGUL ) { + return preg_match( '/[\x{3130}-\x{318F}]/u', $text ) > 0 || preg_match( '/[\x{AC00}-\x{D7AF}]/u', $text ) > 0; + } + + // @see https://en.wikipedia.org/wiki/CJK_Unified_Ideographs + // Chinese, Japanese and Korean (CJK) scripts share common characters + // known as CJK characters + + if ( $type === self::CJK_UNIFIED ) { + return preg_match( '/[\x{4e00}-\x{9fa5}]/u', $text ) > 0; + } + + return false; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/LanguageDetector/LanguageDetector.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/LanguageDetector/LanguageDetector.php new file mode 100644 index 0000000..b81a6f5 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/LanguageDetector/LanguageDetector.php @@ -0,0 +1,22 @@ +textCat = $textCat; + + if ( $this->textCat === null ) { + $this->textCat = new TextCat(); + } + } + + /** + * @since 0.1 + * + * @param array $languageCandidates + */ + public function setLanguageCandidates( array $languageCandidates ) { + $this->languageCandidates = $languageCandidates; + } + + /** + * @since 0.1 + * + * @param string $text + * + * @return string|null + */ + public function detect( $text ) { + $languages = $this->textCat->classify( $text, $this->languageCandidates ); + reset( $languages ); + + // For now, only return the best match + return key( $languages ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Normalizer.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Normalizer.php new file mode 100644 index 0000000..cf24451 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Normalizer.php @@ -0,0 +1,97 @@ + 0 ) { + $length = $lastWholeWordPosition; + } + + return mb_substr( $text, 0, $length, $encoding ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Sanitizer.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Sanitizer.php new file mode 100644 index 0000000..d88ff5e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Sanitizer.php @@ -0,0 +1,175 @@ +setText( $string ); + } + + /** + * @since 0.1 + * + * @param string $name + * @param mixed $value + */ + public function setOption( $name, $value ) { + if ( $name === self::WHITELIST && is_array( $value ) && $value !== [] ) { + $this->whiteList = array_fill_keys( $value, true ); + } + + if ( $name === self::MIN_LENGTH ) { + $this->minLength = (int)$value; + } + } + + /** + * @since 0.1 + * + * @param string $string + */ + public function setText( $string ) { + $this->string = $string; + } + + /** + * @since 0.1 + * + * @param int $flag + */ + public function applyTransliteration( $flag = Transliterator::DIACRITICS ) { + $this->string = Normalizer::applyTransliteration( $this->string, $flag ); + } + + /** + * @see Localizer::convertDoubleWidth + * + * @since 0.1 + * + * @param int $flag + */ + public function convertDoubleWidth() { + $this->string = Normalizer::convertDoubleWidth( $this->string ); + } + + /** + * @since 0.1 + * + * @param Tokenizer $tokenizer + * @param StopwordAnalyzer $stopwordAnalyzer + * + * @return string + */ + public function sanitizeWith( Tokenizer $tokenizer, StopwordAnalyzer $stopwordAnalyzer, Synonymizer $synonymizer ) { + // Treat non-words tokenizers (Ja,Zh*) differently + $minLength = $tokenizer->isWordTokenizer() ? $this->minLength : 1; + + $words = $tokenizer->tokenize( $this->string ); + + if ( !$words || !is_array( $words ) ) { + return $this->string; + } + + $index = []; + $pos = 0; + + foreach ( $words as $key => $word ) { + + $word = $synonymizer->synonymize( $word ); + + // If it is not an exemption and less than the required minimum length + // or identified as stop word it is removed + if ( !isset( $this->whiteList[$word] ) && ( mb_strlen( $word ) < $minLength || $stopwordAnalyzer->isStopWord( $word ) ) ) { + continue; + } + + // Simple proximity, check for same words appearing next to each other + if ( isset( $index[$pos - 1] ) && $index[$pos - 1] === $word ) { + continue; + } + + $index[] = trim( $word ); + $pos++; + } + + return implode( ' ', $index ); + } + + /** + * @since 0.1 + */ + public function toLowercase() { + $this->string = Normalizer::toLowercase( $this->string ); + } + + /** + * @since 0.1 + * + * @param int $length + */ + public function reduceLengthTo( $length ) { + $this->string = Normalizer::reduceLengthTo( $this->string, $length ); + } + + /** + * @see http://www.phpwact.org/php/i18n/utf-8#str_replace + * @since 0.1 + * + * @param string $search + * @param string $replace + */ + public function replace( $search, $replace ) { + $this->string = str_replace( $search, $replace, $this->string ); + } + + /** + * @since 0.1 + * + * @return string + */ + public function __toString() { + return $this->string; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/SanitizerFactory.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/SanitizerFactory.php new file mode 100644 index 0000000..6ea2b6d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/SanitizerFactory.php @@ -0,0 +1,253 @@ +newNullStopwordAnalyzer(); + } + + $cdbStopwordAnalyzer = $this->newCdbStopwordAnalyzer( + $languageCode + ); + + return $cdbStopwordAnalyzer->isAvailable() ? $cdbStopwordAnalyzer : $this->newNullStopwordAnalyzer(); + } + + /** + * @since 0.1 + * + * @return StopwordAnalyzer + */ + public function newCdbStopwordAnalyzer( $languageCode = null ) { + return new CdbStopwordAnalyzer( CdbStopwordAnalyzer::getTargetByLanguage( $languageCode ) ); + } + + /** + * @since 0.1 + * + * @param array $stopwords + * + * @return StopwordAnalyzer + */ + public function newArrayStopwordAnalyzer( array $stopwords = [] ) { + return new ArrayStopwordAnalyzer( $stopwords ); + } + + /** + * @since 0.1 + * + * @return StopwordAnalyzer + */ + public function newNullStopwordAnalyzer() { + return new NullStopwordAnalyzer(); + } + + /** + * @since 0.1 + * + * @param string|null $languageCode + * + * @return Synonymizer + */ + public function newSynonymizerByLanguage( $languageCode = null ) { + if ( $languageCode === null ) { + return $this->newNullSynonymizer(); + } + + return $this->newNullSynonymizer(); + } + + /* Synonymizer */ + + /** + * @since 0.1 + * + * @return Synonymizer + */ + public function newNullSynonymizer() { + return new NullSynonymizer(); + } + + /* LanguageDetector */ + + /** + * @since 0.1 + * + * @return NullLanguageDetector + */ + public function newNullLanguageDetector() { + return new NullLanguageDetector(); + } + + /** + * @since 0.1 + * + * @return TextCatLanguageDetector + */ + public function newTextCatLanguageDetector() { + return new TextCatLanguageDetector(); + } + + /* Tokenizer */ + + /** + * @since 0.1 + * + * @param string $text + * @param string|null $languageCode + * + * @return Tokenizer + */ + public function newPreferredTokenizerByLanguage( $text, $languageCode = null ) { + $tokenizer = $this->newIcuWordBoundaryTokenizer(); + + if ( !$tokenizer->isAvailable() && CharacterExaminer::contains( CharacterExaminer::CJK_UNIFIED, $text ) ) { + return $this->newCJKMatchableTokenizer( $text ); + } elseif ( !$tokenizer->isAvailable() ) { + return $this->newGenericRegExTokenizer( $tokenizer ); + } + + $tokenizer->setLocale( $languageCode ); + + $tokenizer->setWordTokenizerAttribute( + !CharacterExaminer::contains( CharacterExaminer::CJK_UNIFIED, $text ) + ); + + return $this->newGenericRegExTokenizer( $tokenizer ); + } + + /** + * @since 0.1 + * + * @param string $text + * + * @return Tokenizer + */ + public function newCJKMatchableTokenizer( $text ) { + $tokenizer = null; + + if ( CharacterExaminer::contains( CharacterExaminer::HIRAGANA_KATAKANA, $text ) ) { + $tokenizer = $this->newJaTinySegmenterTokenizer(); + } else { + $tokenizer = $this->newNGramTokenizer( $tokenizer ); + } + + $tokenizer = $this->newCJKSimpleCharacterRegExTokenizer( $tokenizer ); + + return $this->newGenericRegExTokenizer( $tokenizer ); + } + + /** + * @since 0.1 + * + * @param Tokenizer|null $tokenizer + * + * @return Tokenizer + */ + public function newIcuWordBoundaryTokenizer( ?Tokenizer $tokenizer = null ) { + return new IcuWordBoundaryTokenizer( $tokenizer ); + } + + /** + * @since 0.1 + * + * @param Tokenizer|null $tokenizer + * + * @return Tokenizer + */ + public function newGenericRegExTokenizer( ?Tokenizer $tokenizer = null ) { + return new GenericRegExTokenizer( $tokenizer ); + } + + /** + * @since 0.1 + * + * @param Tokenizer|null $tokenizer + * + * @return Tokenizer + */ + public function newPunctuationRegExTokenizer( ?Tokenizer $tokenizer = null ) { + return new PunctuationRegExTokenizer( $tokenizer ); + } + + /** + * @since 0.1 + * + * @return Tokenizer + */ + public function newJaCompoundGroupTokenizer( ?Tokenizer $tokinizer = null ) { + return new JaCompoundGroupTokenizer( $tokinizer ); + } + + /** + * @since 0.1 + * + * @return Tokenizer + */ + public function newJaTinySegmenterTokenizer( ?Tokenizer $tokinizer = null ) { + return new JaTinySegmenterTokenizer( $tokinizer ); + } + + /** + * @since 0.1 + * + * @return Tokenizer + */ + public function newCJKSimpleCharacterRegExTokenizer( ?Tokenizer $tokinizer = null ) { + return new CJKSimpleCharacterRegExTokenizer( $tokinizer ); + } + + /** + * @since 0.1 + * + * @return Tokenizer + */ + public function newNGramTokenizer( ?Tokenizer $tokinizer = null, $ngram = 2 ) { + return new NGramTokenizer( $tokinizer, $ngram ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/ArrayStopwordAnalyzer.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/ArrayStopwordAnalyzer.php new file mode 100644 index 0000000..6543756 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/ArrayStopwordAnalyzer.php @@ -0,0 +1,45 @@ +stopwords = array_flip( $stopwords ); + } + + /** + * @since 0.1 + * + * @param string $word + * + * @return bool + */ + public function isStopWord( $word ) { + return isset( $this->stopwords[$word] ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/CdbStopwordAnalyzer.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/CdbStopwordAnalyzer.php new file mode 100644 index 0000000..52b35b1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/CdbStopwordAnalyzer.php @@ -0,0 +1,124 @@ +cdb = Reader::open( $target ); + } catch ( Exception $e ) { + // Do nothing + } + } + + /** + * @since 0.1 + * + * @return bool + */ + public function isAvailable() { + return $this->cdb !== null; + } + + /** + * @since 0.1 + * + * @param string $language + * + * @return string + */ + public static function getLocation() { + return str_replace( [ '\\', '/' ], DIRECTORY_SEPARATOR, __DIR__ . '/data/' ); + } + + /** + * @since 0.1 + * + * @param string $language + * + * @return string + */ + public static function getTargetByLanguage( $language ) { + return self::getLocation() . 'cdb/' . strtolower( $language ?? '' ) . '.cdb'; + } + + /** + * @since 0.1 + * + * @param string $word + * + * @return bool + */ + public function isStopWord( $word ) { + if ( $this->cdb !== null && $this->cdb->get( $word ) !== false ) { + return true; + } + + return false; + } + + /** + * @since 0.1 + * + * @param string $location + * @param string $language + * + * @return bool + */ + public static function createCdbByLanguage( $location, $language ) { + $language = strtolower( $language ?? '' ); + $source = $location . $language . '.json'; + + if ( !file_exists( $source ) ) { + throw new RuntimeException( "{$source} is not available." ); + } + + $contents = json_decode( file_get_contents( $source ), true ); + + if ( !isset( $contents['list'] ) ) { + throw new RuntimeException( "JSON is missing the `list` index." ); + } + + $writer = Writer::open( + self::getTargetByLanguage( $language ) + ); + + foreach ( $contents['list'] as $words ) { + $writer->set( trim( $words ), true ); + } + + $writer->close(); + + return true; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/NullStopwordAnalyzer.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/NullStopwordAnalyzer.php new file mode 100644 index 0000000..4c85c64 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/NullStopwordAnalyzer.php @@ -0,0 +1,24 @@ +newStopwordAnalyzerByLanguage( + 'en' +); + +$stopwordAnalyzer->isStopWord( 'foo' ); + +``` + +## CdbStopwordAnalyzer + +`CdbStopwordAnalyzer` uses [cdb][cdb] as storage backend to allow for an instant access to a list of +stopwords on a per language basis. + +Adding a new set of stopwords to a language only requires to place a JSON file into the the `/data` folder +and extend the `CdbStopwordAnalyzerTest` which ensures that listed languages and their JSON files are +converted into a corresponding cdb file. + +``` +{ + "@source": "...", + "version": "0.1", + "list":[ + "a", + "about", + "..." + ] +} +``` + +[cdb]: https://en.wikipedia.org/wiki/Cdb_(software) \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/StopwordAnalyzer.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/StopwordAnalyzer.php new file mode 100644 index 0000000..e949327 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/StopwordAnalyzer.php @@ -0,0 +1,22 @@ +V`FH-W$@fk2=f$VMcuQ2b=D2=ZwqFOhm$(a-UArME+2C$K;I zi_US^3jrxtrmzCYM(hV{1yWy|>Mw-U+ok0Ekn0>(<3#e%xq(0s7*W^($R)#Ldf`aLC*0TNWDeh!~gm~%9p8eiJVui z`Xy3t1pS=X26W;NbkVTd%&egi3gRPnO&Twb9t z4LpVO6mM79srtJVcB}rP5fDa`=;R0eT&F@|8p!oKfE@2u7#gYU268;2cp6v)-lnia z^>+f<3L)+9QgVJsy+@V4qVrWgfV8U|$nl86Rv`7YDc+&53&=)v^Z_YXbb-yxM-)#hY*qd3igy6n zh>jm>yjx+>g>HWc$hedPoj3q#XNMZ^RQ=sRHX`*MRsErh)O;ZOD}dCKR@kQc+ktFE zj&~|fB<}{&?-3W{e+sFu44hc5`u)(cTa8D6iH==B+R>?am%?r!{U|DRa8x`nV_tt%EFr#) zqN-Rb?Rg#vdtr-& zizFLGePoPvnMUCRQ>$kN zi7|l87(ixnL1xla7sa8ab4?m^ags`PdK}yCc zB`%&6Hj%f@@G8=0Kq}cF)9+G~ewUl{yWFJTgQ6nz+cLYY zomWG|jN_JsnYv=K4o!H9@$l59w1|3X!N%0~wlG0je@ix&at=Nng>BFE`g?;!D-1W7 zYbb24A)J(2b@>14MXueAgd@(IOIsTW*NQTZgd2s=e4=Z^_(T_^@QYmgE3Z^p3p~w? zjJaZPOV)-Ps=QQzbIW<6;;g}g*BnqJqQ)I6to?s{iRyBNb>643ESf>Tj&KxjIgj*u z%K5&$bV8j$Yz$rg4mU3Y=V9iJ6?%*rOPptxHn;b4NvA^oy;m3Z%;rPK+pr|&^dvJ! z1(`YI$js^a7e0Hmb9@6K4mvLSx#A7;`C`JPUMo8IdUjI>-QryMp11J~ zwt*Siw$iK~-}anSx_WhR4(sKdmx8vGgpu+Fr7i9=LWiAC1ufR=O@JFa;*Ie7_Uv-* zax+x$?$)Zmal?w^m179AcAHc(ra(KLO7ij%qPzpNE4+ZU68A3E(;Q~X$h}PUv_ki% zHb2YPu-1*US{!M-GW9y@X4GkLso8?g)uxxl)n+vMU2{e$E*Db=_^Zn~(L6ohyahc& zafl_o@Zjq6l2-T{^yVk!NuEvOFE8)RDR8Oj>F%`^82^Vqo%k#K5R%tUSs1fEEHRz^ zm+qPPC4WRvt$$^C;={8v3j{2T{}JN@YFFJj<2%4JGWMtZk*<$6uqI~>JJSrF{!G`I zn{mYs>c8XEWC#eplYG^$s``D`?LQy?&i3cpcW!*Sc!97}%bx*#D|m&gcE&&EtZ~A= zGco=+#?MU5UOeG!Ers8no0{#9;1BT#?C7h7;D0~|@v zkHOEr8s`lb@zHWa#vETb2=j)(o^IGP^xZmp(qQ2Fb-`~5f3*BC^nW%`v%Yaya(ZA8 z<`aJ;@;Yqn&nu4&LjQtw!41$eyewzERKRY%!f@y*fj;8ZLLcXkga5;!_aOA1cf8Kt zBjTp#kGv&km81SfFKM(l6o|W)AHBQL-i17kPD~HfBag)U3fMVj-}&ngo)HL)fm{>h ziK~SCSgij6;y><&tbIh}Pp{V(UJCy%fPchipzqS^to={eU&Kqre!A?XI(rM`h(AUC zbh`|3IU9cHb~$(u{Bq>+g93T{5ytoUj8A;D-d;W+5Fq~QueDb2n)TK{!>>t`R|YQ< z^CpiUa^*}b5Fj2AcIlZ{qkjsRaXouRV$U==u40&FlNKS;Xg>=*z|5hd%OI zh|@Kz!`AbN|Fz50cD<+{J)iy8qQ0i2_ZIJhJ;WKpKP{J!QxiQu*blj>8+VR<2=UkL zx_x!_M!~&)=zS6TuLDl;(LW9L#zkJIL2f_fiM5db3Gg5|vB_tC#hPY&8tRZZz^Bfx zN1QLmeBEvUzgTeHKYeZ3Iw9uIxPH^3E1-AgxSVynsB10H{-2`mXEn@TJXOq_ec{W+ z=lbMb&kHv-+A-84@t4SZIB?xZXQ94ys{+3OylQQ|-L7!8kKbBeV^!r7i!On^eYH6l zKM&(`4%XRkAWy{Eurso(CvM>!iB!y;@C#smi+(+A!u{fWsacn^PA_ne)IiTFA3a)c z4c05cc+K@W>rU(&;@PNA>iwaJb1lxj{}B5)7G4>=3i8CQ1>zAKlCws@USf++9_r9P z5#z)q7_YC)Srf1i>aWUKZ()7%3ZMO=?bk^835a9El;!h3@wxvSX6CHNg#CJ6{GrnM z_duR_Kk7a)YE5t?*6*t&->(hsN4$uosF%6W`T#>!T2A8v$dAVO zf*G?HFNVGakblxg-p2mv1RHS<6JLOzH)DTaD)Mp* z_*H`I`L|%b5Z2ReQG9w}F6xbViccOE-@?bxmzCesl&UhYHO!YT-g7L*e7?t zx_9DsHm}*9yD?ZWr-cdH>qF4Pw7&J2XCcbIy7j_7DdM zd-V7!^goI5RS(4Nf$;0!fBR<27IN)-=2+7N*YnsP6ZYwTjSq)=f`1Ra4;R(jP4Jr- z5Poa9N9J!Y-ix|=1oD$1Pu?K%v3hvUT8sI_abo`JD|1$p&pugm+2&sk#QZgDuUWrE z)URGo<64Yw5aVm{UVI$>5I6bw>&+YW^-T+Leys%taZay`bXMoY{?~Gk4H_0KK|I%| zv-Y#lOWayOub!vz@dY{SVZ?*@0rLC!y>smY$UCt^#6inHf%QgVy(flc?El6-B<}UO zM>cdG-gFh>wqfgO)^5lVUxys~zwnXQ`txx^eDUQ&Q2$TDzBhd8kNrzw|5L!Xea4@H zz2&g?DeQ-8_(g2>@k_5uJ^u=Q`EBFGob|WZ7aO7P@1SoZ^vr|4jmMhoMUW@IyMSJ; zZxia_LDa)0=(_^?h!cGF<)%lP?HJ{NBYphR`kscqWsrMzS5$vHe0y;->ioqUtF6^O`a3_av!`PGrA4P%)u=1t5}$f{8T~h6oH*ZS{FNc2 zCsm5`ZF|3Z`!?+V?UU2?MevV&;7R23)y&@FuQ5-zSMhtn{n)oVwkPekQ2)dc!hbE- z7w(uhJ#aDNO*|Fvi5<|_4t=jB=GjAm`R(=H?-joQKVF}7n)Pe=o8NXKUq2K6zX|y# zA^#@i*ZIij&);?1dh0mqidc_2+J*UVh`7B4{*K`P3B9jCFLAS2SL^*R^gn}f;s!C^ zwIXiM!oJe&xA1$U7?=H<5r^L)ueU-E@gX0%x6z-*II+!VTLcE6Op4f~O}2l;yE z-*y!Di1YT{@mqeE7I}Pca?ZLIbxhnR_J`K@ezxA8;8Q>B--LSUK7Hu1r-lAMd~ru+ zir6U>)|KyO&>iULjE!#|400Nwhwvgs~xDFYtMnb2lh>T}O&eFrW%%j!Wq58(HteTY+E?W5+AQ!TN-Ke{ew%@cL|F~*N0&xf|0_ec@? z58buiy6Gg&r$cyWcOzcJS8?wio|dyhn16WK^r}`Ldp?UKmFv&6^~;6k@0J+ zFELI$A@ZvI`fTSsyYwXL=CgD0yB++c{0`Vd{zLJuI0}FFi@N^&%Y)g0B5z+}{1C>! zIy5bFfzNrT?fDA+{sZ)Xg}k4G`Tv7=d6UTZ*N97L<^)l)u0xt!f45aoUASFWLQxwJGXn9!_lT(fIbRe}W0+PHXKwbXcMt(Z5 z8u0^CzokH`SFMkM$w0kdAk`}ZUIVn>uR^Y(Vva#Md^!$e#kF zaUKMcUdw=#2#KyX(5ROPq;^YyG_F!0B|^$iA7s=E0f}E}lr95O{lxq5uPBmSA<)Es z3XsNA0&Gb6gAKYENaZC!YF`E<`HSv1@|OTf|0O`Z97w4QNc@u14LOQ{M3(}oUbP{H zUebZY-xj5dfmD7FNc9tk8s*7ROa+qMML_De78&VAmjJ0pB6sdkHXzIrXB)SMle3wM?OQLuXNb;qRFzQVK z62DR)<)@A`uoy_=EsJ9EgHbtvl!|~lf1s}KC>{jrdKzWqrvgcy5RmFmiRLef=9fn4 zGGHC5H#+JkQA~cwXm5*R5s(t0Za*N&pJ+Aer2|Qx5Reifm6t@z%YdZM^vq~IpzfDI zoljPj50L03K|^2K2w0ye`%CXbs2OKklL3%1;hQ`2cl3K$0^#&)}C1q(n%1w?%0}s#gl6cGV(=T z<)^HiDJx_ah;~^%kNEZlvPDCitZkRQIDCO58US_f2q;aRzDN>F>k>>{Uim3ya!Hxo zR#Cy{ke{-d(qG7F4GB?0PP-5!L#cK3UD> zb}K~4DQbniHt|i8h}Mya__nr|y<0QgcG00#Hz9WqD$kx&i>;WIvAi ziCj=Odse^~3?`As7-T4Hb)#JHbcF1IByvo>n5c*~U<=9$*;bh5a;`vBFeFP|-qupn z;4DkrZrE9fK~zv7JwBC-+vimV4Jupq=nmMewgRDCt2^kE!*Pe4zHqivVH~j*NDEs% zQXWq^u0%nCc(Vfr6T|iTV6%WUl(#@BE6DUgFfl}L0eQAU(x8Omy#??+j7uqps46#I za;3iEZNgA~Yak?B`~7ySVmH4(V9#<{Lw4y5$nyCEdLH|n72YfQ57^0clJt?M3VkRJ z5OiUJ3l_l~*(R7nBNEON4El5#6gDC0u6b6MTX$}rTGn#ok2u2Qmn;Ax5Q~;+&$4># zLQ_PBgXM~S<%>Z|k4JT%hs5M=Gwqnsk~hMXT?`@9PNdTcO~@KBn@zY;rk!}Pe`MO- zE<5HV8ws@H0-1JQb+R&%a;BqL>Oa#SqKPQ$h9c$VEbu`JF$TD$>@?uAJA{EUm6(s% z&5~uchR2IaSxUgsmCNSMvdU{5w#SGH5m z8@o#n(1L+mQJ@`!5k$E=yH{T=*lZZND?r+01w(ZdM%6%Mm&=A=Fk^VwmK z2*DgKhY~d$t^mRhkHFzV6k`b;K3c8eQtT&21{sQ{sF4$t{b2LO;vj^2pbyE7NQlb{ zLOJ9RJ;UiGLHk6}M;P^#x#=)y4+U%1T#Ci+DvRKwtX_Ye&-!xZvj7}>Sa>Nbh<;30#s^V^( z*p|v7eFm~PPAe=X*Ub;MsSS4Y1RW(9Z*O+F@v+KTv+92oY4u0W*k>X%8$q z0s)5XD6~Je>N`rc0+u0_#9F|@!4Vtk*(|z6h3g#WH#U9GX#l?8HDa%|yZ2Ux^>6hIU@g#EWLkjslx6KmI{M{_w^g{khVVmNY=x85icV z=q9AwmmP3SSP5J?cDr<1BIN!mhk_zE%JIU`+%FL_7!V~}xvk2s%nfBKk&8$f=Rgt3 z$~Q>0ww+k90B$>uVG1GRwHq;vCBrwAAgZ}?|wx^xp=HN?y!%0a9Cj}@vYntU>7D@*s*_P=ktJwI9(8nrNla* zs?(#d@SnRoPFHJ^P5)m?%d7~Q@SxTeh&8e5-3>G`xNm%1vtlg4x zzH}w*Yh_&V%IWC!=^G8vUWuz-TD(NxK6NQWED~zRw@2UoNFFjA(pgybBQFdjV<62h z4jTBT$Syp=mzn4Cg@cNUaf8EM_#6%)nGb7+a-riCCV@M%DttNcM9~=gX*QcOT-yH2 zIvBcW?8W*n3B`%9$@fWCayw^S0I&<_lw9w0GUCFXlXXk`OF6aGy$x;drABC{@1{+N z7zxg8tUuh_=_f}aDEW#g1VI-qq9H;V?;Gikz?Btt!)e*IWEKX?ZTt#9d}9|Pqpja< z%~Ar5ABQoFk45pj!}4tH$JLUH?yE%qIP`=)IOWSD7H%OjV>9yfb1(~oLzz%tZkUcP zY|-32G4}#ieJ{u*0cmz+H-gOvZQWTKkU^hU@0{msz@CjA7J0F(L^=AzV+|XXs9nC$Z|Ds zL}C}$Ysk5yllqZKkwJ;iD3<|+2yC|%)&;cTE=QM_zkp6JlCukTQ7A-RsTG{E*x_*r zAJ8vWr37^G%Iq&a?@#g&63>*!U}=lBAiUV4upKT1%QR53;X1x z578D`h~uMcDJg(XDn5uCR=KeYfl|xDN*E4dmI|hUa`P_~aVeoF6p_1)u$&6GgNM9) zix~FOT}jw$oI;py*sHHrtbCBhS%8%p#;uloi~^NE zU=c(M5=s=R(TtV@1P?YVk^1d}tgOT#EEN=oWM#X4gplHv3rzaLq68+LE+3eTEO}nh zX#^^^nocXX_&TlokRn4s7g%Yc&px3-rwivag~EP8)-^6_gt_pxDr@>6yR7Ncdr?Z2 zeFxrTJ!(TZvt%g`Y7trr1xFC-ehK?|d7O+uF6mPspaa>EULWP*J)&QO3kSr04Rcw@ zS?=yXLX_&C1$Z9+=^Dqss5>(vBW3~wG>I572|KAs3A(8$J%#i?_5Fre9*KAnp zKYRA2-5}2bT$z;L3?f6HE3zXcs^CFZ30YPwbC5y^Cj*-mudZSQLG>O8C93a&luM!V zGY0*wm7c-qAG!0(v}VagkO*Z{{`jV?~!Zt;wBGrajI}Ec=iC zE-M}OV%}ES@|iAq=E}s0URWyTDV5ciC8os%Pp2%+1&^hOLp-P~9H(VCtN3+P)Th@_ z;hI^|w^3GK%p)kBhFDJdyOZ)yfb`}kHlQ}~1jxT45joh_uq(zs3v%xlKK02GTuZPz z=-p58EFx9UB3dro(I-J3g^XeP;~;CrxQgQrqL*uIQJgx2y78@SVnC_WML(VhCdT6+ zj{vKT903u~hf*fPDJ@5GN3T==mj^!{xI^^jz=ez$4-wMOLCN)p2pKcz7N6yH*xhm~ zL~nwkK>ck49+#CL{umF0tWs=5Wh3=kOaEz?V29suNJ;e{bZ|_KzTOGPi_)+SuRGBk zvJXeoXjV}8w4ABg>ibtVwm-NO6U?KuvN6Blp^!zUr$8Zc6|aQse6bIMKIv}RJ|A?* zTEo+zYzze?7VsfsV5o4=<$)oq31*% zxBh;}tw9hop6<%e)advmny80e6qLJAcjEF(*1UiaJ)s0F*(<0O{R~D(SjD@ZsHa@W z;Btm0o$wLmH-!%25iXA(M=3fw@F10ENIYs`Xb^*4ku#ui4vU;cdg9YN=Si(1N1nEn zpBmy-kwuU5vc*$=j8LHd#>Lt4?z^(rE}F?~sT}p~pvtE&?nh2tTp(x5&ACn~(NBLO zV?Vv%O^oy?3NL&DV>QsL7mJH;sX{u<3b&3PZAC@;4IjG_{Y+4CC7ndyJR12V>#^bo zY|O$#S69pe1lf~i!h@GmFXr)!{Ra1X?7belClk{^w#SOWLyz;gB}Aa#J_-?xw=BV3 z-d1?PSv2_vPh6}3`4U&bOBIViFIDh#9u<+K6&{K4kR>UaYpgNyGxb~6!dX|05w*xG zcrac&9AGC-m* zKpxY@y+mO~u?6t61a*T%q-p`8<<=W3F%Jko07l@F%Ysf*OTm~b$a|W&k6B`PI3mh# zX)gU8mR05#tm$D%@f!V|N%0z@<;;lp;KZubADkpxdVZ1;`|%qbX>6TR#;eonc=Zf< zwiORltS~>qJYCOl1dq~S$)P`*Lri(Gjb_PBJH2VSace9q=(I9i<*L$;$2<{~a)kpK zFI}uwIai_&U2H&X6V#t;8&6EEx$+NA0iSaBL4@p929k?^mEzfoS1GwUH{P9u{~4ql zHy(_{ET^X=VO1g&XCYE`aH16%?aBcuNNYQ`c0A@_RgXbJZuQsLcp0J}w6PlyS+0N3 zO8@kOXVIVjRw*g<`aejI<&r5;2ny^KdZ`)~{?U_D{3j;%TjTwR_G3b_5cZQ&-$cn- z6x82-WL5RA6@u#05)6YSJEaT(mA&`SOAhN?f1cqOg3CW49lr4bBdftR6hf|=bYUpp z&2&nC9bwUtquft}l5dE{wF}Q1ostS5Qr>jvl(aWUwPu`m3icc0uMI-N#8Fyp9q%DS z4z>J4g&393hU;nen}7UlA=rll^28bfp?Exzs>c&8=PkWPu+`;#qwyHQLK@Esyu>N5 zgctpiz;faxL58M0;RyOMnx&9ORQ!6~psOpEoe1f2m0WUT>1D0qE?VE@^V~3K zWiLsW)v^cuVw+uPY!dD|D^DN#w67bZ%43^1ooor5epCL))Iry110xkURA-^%s*a-5SuUUyHvt1kOqU zUNOVGs2#BOF>`UZn93k8J-5z0t>K0Fu{oEm$vw3L@?7>>$NhEi*m&75F4?R@-Xyf_&o61VnzV16}meQ`qkLL$;!B1ssRI5HKd=(J%yEn@E zHQqnkYZd<3k?@0?WPVj&HQpT3`ZM%H=$MynXAr`yp@blGm4y z1zlCTvQweuR>cou>t7ia7i<+2p)!^#& z-$MRXWA@Bghk073PF7M0<`bv7%kMY0p!r`#sylVrWDn*^-SJxo_ktbj9vhf(x~<7n zAN{7s84u+@sL0dc^`JH>0e>g#iD(^esG>6zU!C^qq_5G>)#*pgX)O$T6zolOLuKAK zT>I?l_Yn`ON)7ksna4wZs=o+-G~Dof!m=6(CR3xxW1Bxz_%R>Kw@^HcNsY%wwDXuR zoEn#AIFBZnOpW)3v__2#tQW_Bn{@GNoiR_FK>k0va%+iAJY!SdLcF+U*At_vV;&Nw zU>;SJt|=_gWX-`89<jB|ChzFdSC2bFEf*&+{V9&5-m={Dp7RPSQM-^JKX{n5+=9jLW~#`?+V^j$7CYB8Sy&d{o$<^C30(%>H5bDEv*xP=eNFkAN2LVN-Y{s znDka9a&bQ`UaEO`4B`}F1H_3Ih~sZV4}>3KookWk)2d^hxA13}wq6I^oM#@5@wcdx zY<>}bN%UdN=N2`;8d4K}NbPRK?xDrpA2#;}#-^4{w8lGNhn8)BGl!uEqQ6I+YMEMS z(P+O=K}xK%$2?JqKU^)b<-I+o!oG>2LdzSFk5l3k5iLoH$2V*UYJXpEGTqQOq}4&c zME??JK5_e2&Rw;Bg1uTT*?+eia<%&Tw+7WK(P!(Mw^>?Z9E9hTewiO*>)Lk9J(a|< zHh(uYo1uTgZJ38`-tlSm(f^GP68qp45oP=M* zsV`f`|GLqeVXBQdd?W1nIQ*b3a4w;L{)BVTb6b?RNBpMzD`02J-yUavGWWJ~3oUQO z*{5-NEE505&;wy-$kA?)PkRY*vfb!HOP|iMwX3Gvof-2zAwL zBW@B-jpEaU= zLd$jVccOoT9jJT><}2mzj1#|O`7xdJdfj19Ax_;gsNd{-#Xh(E)_C<_arDORZb5(d zK_0@_l{nF<$&I-#g-@q$g_h&sPuK|Yp%dcyoe9iEV)CkHr|zhW|HewE0_T`m_!Az2zGGA8S%sGIan@_fKaKS_Hg&0yqs^*gG7*kN93?CSUTo^pcG-wWu-~dE zb%7t<47myWz@G@WKyO`IpL%66^|zwQtfjDTml20Dld-es)cpbe7n|-V z3}^$OA5PsD1vPtu$wW9r@%tVa$2jPZ@KNZm$9q9--hZJF?uW6**+;{6#6RNqJN&dq zTGL($uwRcSb_d5{{!xFMpuan@|Ja3b-kCT%e@2{jw}n%ftHhosgIYhdBb*&a zFFjLMjy@J=UiF+F&~`yDJ>TgztUcCWq8BUYsGcJ+@2^2Va73JbS%O|Ght_yN@wZ+l zx}0wWIu+yk75r0i-g%`BaA<*bWim^OH^O-Z^iK3si02ihzDWgI68xd>qJ9})q8(wNlKQcH`c7~(XodBN_;gAz zneNGa&T_dDPwxGCi1Tvz)4dDEYL8d4-Z9^Mn`M}1VjUuU9P3nCi(%%Gpb7n;Ii)SA ze#8U5Y1i~N-+*{am{!R?F725i5zd>Q-QQ&OC$oD2JP%P?=iI5_pIUN7MU;zK`A+9Zb(XZyds$};FSt|f6m|AUd9 z@TUQPcF5|a_|bsm!Ioz*5B^ta;O)<5bXCU7dXv#2&Q~v(6R-7eBXzD zt*BjWsiX%#d-cFW@VmiV{xjeXGjLBxtB!utYm9V`LVQW@;n%uX(w;e`*GQh54*975 zkJx9&rXkaY+A?9MA#3_K{jGt4TjH#v7qmlMa>6b{W`2KdFYq4%dU2dMH57i^2>KkF zwsO*CSO*&U!4!j}+NMjXF=*zIxp=XN81JF@r5>zFc`MkY^4 z+6KQHx!z&<75x(KP}YC0`QTmsat_14M`67>6vr>QUM!CG=W0L0exrj&&3`5ULAQZ_ zjJ|udWhdk&+^@vL*!B^Gl=hnI3wm3$J`L+w~ zD1Rd20_FcrxaDTc^viApM1P;5zp7H! z(fyA+94CHI{sF{O+sl29FNPo5z;BAOzS`=0wVjptXI1@jxvd}OLrw4p?o;-e)ZYop z2mXn1kQ{Ho?`)T6_L&U7wr%^Y)|#7`i$wdDl%WF=@9mEa`fd^QcRbS3d=}#*KJ*_e%uWt3yaisBNBE**Pgnkj-+Qh#nOv?R z?qlG`$u)8FJ1Y>Us!C&~95tUrd?ehb_}7@fvZ_r(`<&tf2mey+l4IUet4<|$$?0>{ zycT{#I05k^XHp%@Em-FW+an&wCO7oI6#6IZtn?GF-a*)_s^r1>pcC}xdHOH&2JD}S z&OjU@I!)1!CvxW4A93Vi{=OGFO!>IB$wb%!_Vs;z)z!^mcmKbW&DS7)$0mR4_Kvlc z$e&y5nqEy2&vLsITCPNU!WPQ<7Z_h?S&n!UEKW9eQ}Vf=AkP0MVds#)&@vV4E2q%x zlRFk8uEeHre^bg>%&%~#BafIc4#I_)hvE0P9J?-#oMFtjbGIQ|jl3E`V@ z>gU1EiLf_eb49;-w~f;NQ^~z&2zx`1gx@QA$cKGv!@l`<;(ihG6E0WekL7o{T22V+QLW8UtC1|)9PMto{n`YHcePwp!HJrw-c|JVEzsI;54yAw;^L- z4^ESuM@JrlA55zLFZ11yBQ`z!Z@+c~ag^|cBGG;PpPb4HwfN#TUB_7vhn;aff}p;K&YNl#yVtoKmZdwTKa zlv%Jp;UuC{zk6Y?;y2UVEVp!rUlOi`ywi__7w)NKU73z}`;9VA*`x6_BX3Z~AlP?C zr~T&V;Lk+wMqHZF8}kG5&KR>I{Xekxj8Cq+|1{>w#ip4 zJrn2l*Rj43-WA85GdJd$x5n9@#P<8>IA`u4tiO*=K5F)0y(HYAte0H>F?Y8i{n7tp z!7ZQ8!F;bMJ=P?kt%ILEQS-~8cfwv3r6-DSf9xK}_XPZ>JH|&iB+kC1qV}`y>@{FE z=H0A*0j(kQFzcX4JFlDvW^MFqN$_JrH~jd?Pk%B85)8~##`om1D?fEt;@{l=Q}c1| zN1P{I3O{}(8TY%08_#5YRx1SgiC(1i&+RHgs^1d+^vvqk=6_o*tW`8JSL=#6P?VRF zc^3L6d^cIvd-kShOIN{Ogj+G5XWMRj)e8BZ9q1f(5bFxzYw$bDFR5hSNsjTqX4m#> zzk?s)E@j@$(NEq=`edlBt#W6(b+dV2x$V*%#J3oqZA zRixOH`Mm)7>p_0P8Hh_2rFl;;9`OMDdtTOJ)48jGpr-w~RiC(7T8`9$=~*eA!P1!-%|ucBRS zS}?6Zn~n8v!R0CDHrPiJ-qQhy{F~zFVIl7AZ&UIYPAIf=h8%?FAU~lcj=dLVMYLJi z2P{lqY1suoB|0lky;%8}UWjouCH}x{MW3P^axKOrqu8_<@36x#j>V8;VjMXZ<9y!?`XJ24dP>*{_E=nd z-jO>Le~;x`5xsbw!(zd`4B0En^LGXOtdTNaE{{dM9_&T!%yIPp zN(Zm@8uUb%1;4KiVEo9d;(%mtf#{jJKk+@|(NOX|Tge>}LXq>qOfS zzgJ!o*3MwwQodEu^UB3N2fPG-Bz!B5A96pd;P<_i`6%*Xj|o`kIIX(z^b_sl#GO^e zPv_VWuZhp{ z!y%Nv4!zfgJcPf3?;H8MYaM_eb9w{!kvG6EIlb|!&oK(|gRq?vKe&8NH?OuH{ubCdoJV-` zsdY^;-u2j5XDj~5t%&c}&{IWeLzhC!4EPUW9>%jFHK;uYKPGw@{Ia67Vbnc8d<=bU zz?8W;w>`xeg{Xf{2)8|gCON46_`|>zH-0aiFV_g4j`q2L5sBh}y z=jxmH9;*jFAMX3EOEV>YehB&YL9ZXeKYBy&gr8tPNSNJL_WI$jTY8^BydgZLj7Qcm zzBWxPv^0U9Hi7SE?9++<1?%6Yr!DneIL8n^bYpC*is=&Yq5r8($;s*F5d5j6`=oL6 zAje0E+brLrA5I_TH#ZN$Iz;$*8_t#ZG4>Y$WxmLg@?RgLzf8oTk5{J5_P|d*-ZjLT zhKPf*?xdikWomscEw-8g-E-s(Gx_#c}-Mg3Zscb`srDY7rleBYc@ePMy}KDrt8 zyD9T<^XOb{Lj%cmOYVVI2QVMDpx#Y!;`3)oL9G>M7JdRgE_w!A%6b1X)E}xg1xqG817t(b&Kdr5jTk*py+Yy##a_*E92g_Fw@)! z_T4sjNI|MHe`Dp?27WaY%vg5aT& zzVB7Cer*3wpE})?bz;Y>EzDl{^Ny*zgY(gz(+=>tD~=y=c~$sD?&XvAD|-I|@6!X} zw}jsyet!Y}Y4C$D9D7fngI*|qJm&8gt-fqmqWIgFKR;?d4SRiw`{l-I;Y}(%p)@J5m2NrG8cYl%oE8tYf7` zW3`6hOLzkNz|#31Z9nu&_*_`&uGPOca7`as|fLQm(#0_?*K&k)rdP4rLR%`CdTviV3*}VjDyo|{GK-RBF3>B z^X4w-b@#sM=6hj3YWJ-Yx4!+r-e)P|+P63_9f17_kH?W`PiDcu6Y%prUD7hvBOY?v zbJeK_7hrz=uhJfjcQVGgClmMBkdts;6l-E$5IqzAO7i4j-6DB9U_Tj~_I{sl&QRp! z^1a|+0RDSBzx>Jl(CgkvTk`>oYaiCXVOR(DC3>~1VHZyOzFQsq1oNEmNz}X8MEnNT zH27Wty?=+eJ|d2uzJomG9+E57vnuglmX!b6KlZ43F5)fWol2Z7Ukl}nyxO1GR}r?v zdbq#6%Q6@1C}9rtuzwuRt%!pM@cY0om3hZ}4p{y!dIo;+L)X>=3ZMs0Kdzf^8HadD zxDR?H`~_H5`Z2|?t$@9LJlOM0|TEH!1r4DIC!z!@mdzf)8PJ@Tn^Oyl%#-BxU~njQ6T%uON{|dz6!%dPb+m$#H%kMD!Z71=$ z`>^E{>~we_e)o!T5^ktOo+EQ=OnDymIMV9D-p#Oo<8-8CGx*Q(r#`FYK)u*> zJk_tY$9z7%KGnKhnV+%sDxy#H`^$VO{G2c&&U$iUdV;wz^hVgcl6ijOz_$apV*Dp| z6%Cu$7?^ox(lE@M6A5P@yb|L+(IBjup|=y0yP0QJBImE23oVyoUJ}-dQ}0*&z3DsP zPdFR<$zSW(E#0u5#HL?^rw^`y-B050LYFJ+b!@$pA5ZOkQ(dE8JFM5gpV(pUAE!R$ zuZJI&4gF)%T�tO-4FfDEpCEzOi&!|HsVpu>Mi|na~T-=itYjP93=0JP~o|)R9L< zEx>%?bQ*rT8-98ke<#qblJ!;8N4+rgLG3P$<8NG#@k}-R9TohF@FDo$nO%KH&4)jq z`Op5Bhhw~Fb|p@F6Y`#kY)(Id{W#_SnhflHWW!7)elWjS`~&-!HdsdqUqJmorhjgE z{vzTC^ZE1A0_{)u|DV|Zbb%aa^CH>}h)0BH6n&gskUrrSZ?&-3}yoGFl>^7~>w5&cUg>n8X6_tDPtFM;3u{bXD7eb{gOjrhI|e*5>ffOae9 U(cdF1N#n72wdH_D)!h{%YA%s@dv9))Rvj1KW8yGa&y_ipy?jRo&C zSdrz?8b>j)#hNl$UL$0X=>Y9Wn4-~`I8`!QH*b}^!?FmWW#@Nns ziKOpfeJ7CChi=24E=clHmJ`ytdCVn}yqxtGV?EmulD+{*{#sa0Nb*+3HkK3ig1nRE zh5hq(As{`3)TeUhgk;~qoRIuBGbbe8!km!o+nE!Rz5_`46%N23M&e;`(wDNlJ0$yZ zwj(57&+8jl?uTU8!gj4}_y0i3yN&(%A?e#WZU@^DlDw0-A5y-dZ{trFq;+AIOCgrqNJoX2uM zq&zLwOQiMnyuN|4ne8N!T?^}5Suc_Nw?j_Y$$CPX*YI~ZPatuNc|DNqo0+#TwgTz# zL&~F#^@POR89P|+hZLvq_I$iBkk*wl&I3|j^+0+EN#DSnka#m=3ov&MS>F!K)y?|C zL3#TSke=?4{D#?%ko?T!_2ta#SuZiyH4Fp| z%<}FqmpAOlPdVEY61N!ZSx!ju2Idk;-V8bUYh`R_J3`WTFm^H)7D0&Te?jsS;&t62 z*@fAzJ0!bO*iqi)K;jl-J+CJuc>`lJ%ezCeZ(;jZw)aD_Yhyhj@pi@zmJ^b^ldhQ#8g-9;c>)jBbqWjYBa5H>)+E8~tWc?LUTdQ%$1;R8qDAdeJFD7G3O7A3n1(p?35!17CU)v>g< zgK>Q`#LYBvRV}0oMs0Ikh(#s|To1Y1M6F50EU%pjOYC^UsjR_5&(6_1niLN4ZsFkR z?h*4mrcBJMx|&khZ*TWgRz&U=QMp^h)6zH{(`N)qP_$fK6?p-zSKF4C=<}K9x}21i z_DZ97HI#VARju8mV+qPy&3Vd+;v(^kiRqalr8dQVE^gvl=g@Yq5w=;Ooe&XYOH?+3 zxDG)~k1a7>k`0a8eOrG^Y@~s-)IQocjj9^ks=(Evw#T+aM{O%^CNL^ejgitTDM!yI zPP-S`(PBrR09+Rpu|wPSwTDw9%O)zzCawzw!DsjI&&q;>0t!>AdDS`Z}Z^F=}V< zuAA-PD%1+G3y!Vt1-zpw)i5xs$XjKL4+V5-sS$y2>#1F>)5+A4XEg_PW*mn{GdUG? zB1)aPTz^{XqUnek@eXgE(uYkQXC=`;7wU4i47#9pB`*-w*NGWKgK-zkBEGSHe`+KqW)pl)@lF5mvqGR ztg%?^(}-lPJN0JBcMkp04}e{tkyR--;M1Q`yO+6RMSg1Coqs5wwi|Kow6n%vj_ z_?J4@^r>5|Q#j^qo!bbzF^9J=o+ggDb$$fx+{S!2EEmPQ7Np7o3q|}NVm{9ZuGTADe4PfxwpVyMFjKeQ;&)p z*}t&%G}cE?op3gbxY5-`(;pD^RL{;DQPJ<3rD6v=MtMai1Y{)J|y{YuXuf~eJ(<$5CB)GD-AIKUnBhSYd?JTGg`6~V68{fX8 zQRKOzdAVCA;yy9{C*cBdKHbmG70eLxQ4jz7h2NDgEOUE*#9RH=sF5#-xGGJl=bJvyihQ!*j|;Bs6|OmbzMu~I zt-<<>@V};Zr%@&9U3+(laTtErA-^Kzx9)?xU+OLLR({r>O}UH3e*SD$#y#az&$D~7 zORgi{b7K|-KlQ2S`QcfkUF6#|e#N7g;kOBK2a32aK9s5n`1pSj{TeO&{sMeF_%G4F zEkeE#e6QfDj*V?=DkclR8_~aNk>gu743-~N~F4)>|= zIDVfTMxTx!aNLceP8Cn#i8HDD52DW}(mUtBiGIBUf5pPzN$^R6|EaO_Xv$|^-$nk% zME>tz9eLp{@Qe7Ktn}HhOLvVlmWXq7X+qX`4)H(OHo9h;kNw}*It!18xF3N(27dYb zb81V4A63_<@c#tl9mT1di^AX4=?@1_i8)jDUs#jMzYu-;_wz>zdZRDb&di=WS@ioq gE3Xv%ROF%7e}(V;*N}g`B5SM@{pv*hy+r)~0?)km#sB~S literal 0 HcmV?d00001 diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/fr.cdb b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/fr.cdb new file mode 100644 index 0000000000000000000000000000000000000000..c8457fa58b6080b9cd983528e2c49b8c93713b8e GIT binary patch literal 5435 zcmb_f32YQ)6ke^M?9U+xB)BT5m0-%@MnRMHz*6yOlq&>lQQU5acDuVX+nt%k(h(9B z##mHLh*u>TMX@as@PNRY2rfpjo*_o095Ey!RzWl>W-<8Q^8WcBWZYnMlFm2ZyWjiY zzex)N0)cY_fq)nYum2e_ZiwQZ4WfMo*ds>Bk0Z*fNncC)Qi%2mvO`4PN}S_)Aa5r* zN3`!EzZ_vVVGr3OqFpcXvq8)!2A%Q?0V0nO)&k;F3X6S_UE*J0v45~fY$I$Ze?*jb z5#|7~t{&2JM7v&+BO)&lM?@|zgx6Uj+K0%VBg!jCUJB7JLUw+L`fAW4){-4ZlqX1D z3em2W;?mUhsC`ieWV0poNCY`){-3} z*55|F6rx`{*&$-y9C1X{cN6zR)c24c5qU3hMC1kHeu#Be41pIR+DC~07sNQ#5C^fA z;vphW5cfmWx00SC%G=1lo%Dz(?;?(fJV(3~qFp!H_WETO?pJ+wS)*vk(XN;55Rn&%BO(_=PhkiU zA4HT_5cfmWM@Y{R<<;b0OPC;RC2S*X2gJt@F-{lhIifsA{@tYaL$vDweQ__yuD}rW zVi>&s0r6h-fxmO$FPbzmW*9w+%nqaS)Mw1r&9G-@n`WFbE2Alvjp|kyt0_8WwHQ+w z@l3dkRCR{#eaE61FKtZoyklB2s%$iqDeQ;5;$n@_W?NJKs+>CTw({4KNi|F) z%1P6`f;2s5u%TT&PHb=azWhq?{Af%`8j*9}`uz_7hE zMt-yRorZOncL}~><7F}Fs46V2sRM&=%PSzAw82ZQOxl29T|iSo(rg>*5;WUUz1~ZJ zH$|2T-$`!^kicQcwLV2vlgL$R&9*vxGwKC2@kYs3Oc;MZD$3OCq?XcPm*hO*_d}Lp z#$mBNFE|ZP!I#g(xyqrLMvJykF}n%Y+=~FikXfv#*PjJbfaQ=CS=eo{BAE>&s(8E* zGN8puvakxz!(jK;${1;{A}f=BLv4YjE_>F1X4T1Mu|wHZ_Ow09@;%C`J<6|%dS{*Q zu%g9yG6V|Lo&bv*>}MNzzQaqG@5HqY?3f@d0mpR4BQ}`MU;P7t!Q=B~2jJgB`3xDj zb*%vTna{B9dAD`qaOoNDj@!2%caomav3V=kusoOUT)LqK;*5IQ6?gl@8)ei4Zor#P z&y}lMoTtIA+;YW17Dwu@YD+keLH^Nil?Ugsyko%rY8HR|sHt-|GX40A^JUvue-l=3 zFZ+q{Yhtb#&bZ8XO|>glvN+)4jAU`9lqH-Q5NB$-Ch!8Q|Bm(F_S?+j%X;qm zrvGc}z<+w9E9SDeQa@{!E2e<{-Yw<9F|5D2)~A&P#_#_z(lOe{|G_y&0-r-2TE-Pm z`RM1*cEwnT-_ZBH;3TGRD0jt2tlow?R|Hu4U=+s=z%XP%dEs#v}S%U$s(+n)uOxnc~{%XrQV)47r5efS&O*#z+xPj}59QLgd;>%|laFcND0YEa$13Koj)2Vq?mg$^2xzXDf7P2+Ol-WsCC?^MASRV8dR8{Ek%a=Fy z&Flrg9mj3wD4T=qXJ<=!u!_~Qv!ZJH@8JLOwXS%M^(E~;hVz@oB`#mF={oZjWR$j;I-PhCP90C1-OWqV6%vH5u3$7JjE5iL47|wZ#a8cozlK{n&CVF@}rRNLzYkKfBC#TIEl%Bg?Q&c z-ap{?ZX&Dq`0+vFK8SOChv{75b54bKdV+T{`AP6kFn^g(;>oHl1Ght-lMrtL`27vL CXLzOn literal 0 HcmV?d00001 diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/ja.cdb b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/ja.cdb new file mode 100644 index 0000000000000000000000000000000000000000..2bb7c8403752c62d77ed5c28310073985eac3b9e GIT binary patch literal 5472 zcmcIn4QN$m7{2~smM%B{&_%K!Ei-fL5M@zah{C1R6hx7z%M=SGC#FPMxpQ@<`^l?o zPPgf+J7xqRxrn;c;X5~FW@waMTyXJYJ_A{s;?&~{&w{< zO5B$ye_`|h#h<7?Mv13roKg1QuW>=~WhlQBl)QlE2?}4R{7z8vvNb=X`GOJ;D@HZW zD0)owX4QLwlGmz!LE-Jn{|ibTUs6ZCM4${W6km$^Qq?Ee5AlFKO&M3Zi)qR6?eLxwB-JtZFs(!y>hWZ7iZa{f=D87a2W0ZKd)(NTZ zh2jgV{(qpbI*;P`Gbs2POh#c%k@GRQE#BQ&krf?pMrE45-d1zJ(fRlz2AcvaYb^M-^ilZ&lu| z=o_Z%0Ln;Io}yeZ-ly_Z4~+M%alZ$Oo`JYvKy@4C413{^Wd<#?B8_P<*G==%`gEFC zkhH=wSGs7Boh+@i%q>(TH|_4ug1J_3m1XXrI*8 zON+>t0sS~z*Aa0QZ)-T9PlINR2jdTog6Gz6#f5RNh+loZW%Bg{JxKSbfqqBn_a554 zy*M3OI4CXyzC66)2r@^6O$ zJNDUe(v`r+jX#EQ>e@r7P7k<>^iM!=9nJ21e%sdI<~Sex-&TJi&%qbSs#`9{weNjn zl>T24?6%SOr#fSQe<$4U`%>f50EZ6*{~0{t%eBc@?s4KtpHIw5k*m~Y46oQ_6d^vs zzuo9f`bh93;-kQ?(!6$=6wG%V^F4UE+VGJ+8vfJZqoJ2ke|FxOIa7u`A?xij#=&1e z{s~uhPM8e-b~^UdSec)-<~G@zTF8W2|nMebC=B- z>7h^iIGp?t&12_H@AsLJj=bqFTy6e{);Z(7-NrfW)9XV^k|%oP1xibd5s1GzX{phN z`hCk^W-Rtt|GcE>;ql~~|3GtQCF(CY@nWwHA>TOyuZP?4y zx82`X=pR7edTX08o6gzRE9S2?TBu$n{CU)0)zms8guF;*N#lN6e?8vEAgb2@K8m2hY0I zLhEQkJlSJ^>^_?g*BBGge-q}LN%MUJJ{on70&h_M(T86-`yFw+&e2^{&+bF~*u}4J zzDDb`^<$_rmh!#@H_`ubU>nVA`;X&%iV;6CZ>O=qqh1T%>u!plM4dER_m9ZmLv??F z{w(Rgg3rLZPqi#ICeyvM=eMAbhkj<-y1eT&&pGVZB#-m9^UhyhVl-i%^T_{!d>6ov z5x)pt4t@!JHc_8;olDRcLBG5&^Zp3s+4}DZ7qVv3dfMU7pg#Wqe;oYUlp$jld93d` S^aPssCirT~{~P>6@P7b=RdbvG literal 0 HcmV?d00001 diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/pt-br.cdb b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/pt-br.cdb new file mode 100644 index 0000000000000000000000000000000000000000..9eea08e1fbe0e179ff97c2f233217cda7be9954e GIT binary patch literal 5759 zcmb_fYitx%6kb7*odF91K0_8EqS3%+eJ2HrqEVoAe~4m@N!fNsSlijz?(7h%lWcvl zKTx-dM1P>GiHeD0H42D{S>LG`vjzh~1S>|3FH#jXV2t%U+jHlhHWT7&lI}O(c|Y!4 zLgl1L{iy)Q;jN!}7?QrqdWj^jvHu|J2}wT0I1D@sE$s;@lq(>sz#aSMPq;F#XB-;^^yp8!kL8_<7euNaK z%vfPLA<6rhhau^!(9?c~*iItphdEBeH0~crPwa0X`N!E#BFURr9)_e(LQmMnc7*l5 znHO1KW_~QBI2E=dq&QXfud$qv6@4n5>Eoj-eI{!(id4i7LS9D{!)n()LSN-P9-Q-UEXEcT4lGV zT*(~4vIWacP^!9{qs^Rb+DeQM6t0e)gFjt9b&qb(>ar3ij-n!<$mF^iI|$g}*g-(N zJ3+t>CtJv;f`CN5w4-gk+jP$zAi6FvT|N7Ykj%3ffF(+?=E5HbU*7?Q~|1m3LE#i9A>4?ihh=(a|kJ ztQL~?@+qu1LA#ar7DO@)dweX`?1E$A9 zM5@G$FrrajC|nJbrl&WzS}!Z(y83uz+=3=u&MHmnYg327Miw<%+e&BZBT|`cD~kbY z=Gv)XZMFqATB(mNDaA&z`p{)DER{P8|Il|a-t4G>fngAV4^pUYI>AvEc^xk(-tp*L zQr~Kw>Eem%;_FN+bM+&khA_g^p#amnC!&vA&Kfyxfhm0*s`8wZ4{E_XZjN9Hpam?! z3C?XU@8mKvFnB(r({_9G8LBj3T|q1&h^=!$ki`|E&L`1=6Q%UpAHx?UAIuf!R>@rp zSC8t&729$x3a>SuaPf5euG1bY2JiS{0vAsoXV(+wqky*5_6jMx9Z8i>!P05)u4hqj zaNDWH5gDb@6NC!$4Z?{M3RHsXx_h6Ql@8CZ*(c|x$th^$T89QBneu(|4TW1*;;-Wa?zD|E7{LVP;V)Lk|M@2Xj z{?mki?CaIWa#LwF&VH%WKY%#1?=P9}iTui9ZW(9>izf087xbC~ndxgJBvjBUz z9eppnZ0^j9guT))jFrq8qVCJlUyra`H0?a&Ig$5j?0YHtx%MO5F9^Acw`5MqTrT1* z#d+9-{+4Zj+xR48-plSN8-F5B^SJTJI|+|?{)r;Lirc(s{pJDDU(2%n(RCt^vTH&9 zMj^lM*Lh|u>Lpwy&PD6CS;pBR^|#sar4Pe@(@;9QOC#UN%k_e(U$<{C7oPs_qA1Z;1Upv@m0|i?|!!^n6d$w-NV6 zP1tXAd;ALedgQb(SA8GS-zLN>BHrV;FRp>#SD{}CE3jI$Jah_>zeEO)cd-l&MzYmDIpMQ9Z`KpMk@@+x?w&-VD%d_Ua!fyMD zl6hFi^Di!gs(ULjP`ZclX)I_uiyKMx%)H zKEBIqL>;Q$o$wz<{@Qf~f1R-3wRZQF-J*YG|M7OmKM(eMUOX6m1%2*8+~py0_ukd^ z=2>D6%76ccAMfkK96xIwh<1d;|9qe4KOyG)#e)OU$6)u>O(k=)n3Ib4HT2JkIN!81 zKK%{&w^y}v?+|f**!H&ZmGD0_|IyBULjUs%u0KKae>m3~NujU9GfUevFh2-KF+8jC}0v?Qnl4$!(-rr=a@i?o(jYFgBOXLIhm2WOks zPT!3A_MG#b-+S(5#?pnM@>dc#0-8a{qkvW8hU}G)cr|RVgyi1{JMp57He)CINhDqu z>;D@hemC+g)6@jE5WPK$hUU)qIFp^xw@^DDJ8s7mq>b>^%6`vyMfeS5A!7we}H*Kwo4>?iS-gmKgfRJk3hgDk@D3*PrQ1@ zM#d=fhePtSnKv8~uakKn1j(<9>*)rT=fiP&ST3?mNcw)xDLdx3+JNenn?_@q9>AP89U_BxE^)L>wULx6x ztp9%^#Vv8(LB{YWhU%$etO3$TNc?)12}y2bjIv%L*=@FWGIlYKknG)z1=bUizK7*X zNOLSQuf#aW{L!#|2>vm z>qaVW!q$GtnB!_Gm9^YDmEBA`sjQjNVLEbF!qn!nD6)`joohxk>a$#MN6yxvvYEbz zbwx2N8B`Z@l7UZ)8Q1w*%%q)aceK$?nt@k~^l~t=^EoXH>5LtB>cW8{)o!(rMpH5w z3!MkS;+UNpLfnd(_9`c+JPu~Y2__b|+_)9QhLo_|OvF}Q$F002$ayrXBj+tlLCbc= zva`CSxV>6?+N-UM4(ix?c5$2^&6obuEzm)!^QKc#_29P~tP_e+Gq6$}IWv{jeWK02 zAL%|VH;Yo$@{t6i5UJ;}stOld69&hm_JYhVCal&KM${qvX-q=2A*urd7h)1^o~y~2 zN!>{<2;ExFs(NoV^$_tJLsTU|vh|Ewt<}N2T5Y|Jt&SaZ&`MWKxwk{mTVki|7F%4E zvaIi|tjeut~BMHU@^7YN#VYz_Y7wm{M5BLIl5sgMcNco zhak2nZM9+M0nti0!DUKYs0Ez|Mh9utf~Fzh7{WlY0%=D-b@+|fOn9RgHSTl2mey$lq6m@W}crM*@^toUFE{dc# zO@+($ZPiYR}eM?SNoE+l4<=0WG#Ar)h&fY|2U|r42igs+LzKxwq*w$ zWU+cdWpwug!A3$Yh{rSQ&`YPDfNaK$nTd8;z>r2?x@<03uAFW!hkrCweEin;ME(nz za|Ovo64g}ROkhitf8JWIUl2Uz!A$WxZermg{35bUOA|zLTCg>+m%kCe|8C>~LrI~~ zNbB(24d`{`?Mj%H5G2W3+M1#fKWs6LH42`9^~O z=K`@VsQ%f4pHsE`jX!)mTom$zU6({+$T#uc72d5vulNe9msVfD-^oyCo8*x8#QsJ-i-Ed1w?M4x2Hs_ zi@cw`+Bd#{cypV!8eze|>Ct`Ru&8Ijh>?reiM%RaiLOK&q?hJNL~T4TJ(ulzcn&3k7n z=`oKi>h8pO9}|1zP0n}+#eBV)zOfwgSKcT^)`|J4_+NwnN%*fhmi8uNUTdzo)woa8 zsd#sR*HB4+V!BZ+>ht%w-f59%?crCZTm`?i)85-ZR-DH@FQvWfgsk!?T>tK+SB5a( z^|5GZ9Pqw33rD{w@+jW7C*N~hLG-)f>6|wmya$ftyoD9`4>s75&xv_$T$J&4L*Dqu zy!TLr{vNvG{Mo&TvuR$&`-jM*@^8jI{7vk^X3YCe@HW44JiJ!y!&dko6aL$pGTy_Y z4i#^EG8$S2zwO_cH2)FdzXSfKg#V8>bwrj6|DWD@_tjq&b?p4z3(Z9#?;4l!Zo#?i zLi`#LN9BEDZ9Ee-sl_iM4qScPCh7jPhl?>U~YTxZtWKNl>eR$)sbmJ-@9u> zXa@S~dnxDLjk)$cz2%Wp!|cH`Z)Lsji2Tny*1P6L!GCt~;f@y(=htISMaEP(zrFW| ze{dB1z58?CDDd{~aJ^SW{i;rd{eRDTKJpFpC%xxU_W<6#WAOWT-#+v+0RD5muJ@jZ zyT3W>Efe(|c+>Un60(YSVDF5`mvA00_CI>zW5QqA4~}j8Wvl4-;4d6+rkKZ}!NlYJ zBJOW;#g0>`_qT5>_kJb(RJMYsixQNomIj9r{g=8^@wO8ZdKm0@3-@eW_=8Cw=|E%d7x1*l3v$ov6O86=JJB3N}&mjN13(~Wf H1J(C07Lzye literal 0 HcmV?d00001 diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/zh.cdb b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/cdb/zh.cdb new file mode 100644 index 0000000000000000000000000000000000000000..9ec85405f261dec939df189b622d2bfa5ba62c5c GIT binary patch literal 18352 zcma)D34Bvk){jtBj6hY8E+|3BODjlH#Rbu^D!9z3bVgJJkv#85o*hK|3&{x6kc6L;3;P{JjdTn=(L0Drf+nkN!nK zrmr0s(htZUCyZBa+6_R)p9o|RLpHx%X?Frgf;LPY;I}B42xQ|H0olVa zq_@)EqhLRf>18l0dICdw0-0Vl3f-g7y+9^cXBj{Pknvd*OazAf0%T7zkgeaTwD&3) znGovMF=YISK*nbUGWj)1dk-*VUm(-pay9-@khLd*4vhmcIZmaYA{(c>WOz(0Ga$GAmg(tbdA#Q1cugi13K9QWc&so<4*!IyV#X>Cy+f18D9^O z@#&^3;}lF(a1oI8+ZEcWV2{$SyK$i30u1>1Cas5EXXSr1wr(hB=G!KyV zJAsV97swultle`~#w9A4 zq~Ib2lYva0UBRJvKL`K+A8Sg2cuytondCi-yl0d5obbE1)tbQcVKVV9XJ)9$vV`HH z*SD^%uWBP@@Rii5$f{ZuS+j?dfz0h>-Zi8vgQ>xn<893%UD@8&975)KT{aczNvEW2 zqhs^rykb>vLA{EsOQodGs$%x7S+DBNw5!ORQWe=$L`i?zZWWo;rXq8;tH{O;lngYs ztH@63k-WZ=Mq;RZ!kI7I=%o3wy)J=OlmXA?`x-XO_FP}dZZe$eyg6XCk*<33-a_7~ zZtdRobP^uzUYFI|mPu4<_j;&F+x=C<%WWh8+SUXzc8XabBpeKF#QSYIEKb4!*_PwW zvU*)4%@$%b>4R3 zM363$mDHH7T5m@u8CWaZ@>FC&HYJ${g?hChz3o&bw2(kjO-fwma;aj*<&rZR#4K*N zzdTJWndZJHotZjp4H|f!VmW=65CU>@8YNj$ggxS^^tQGWIW?rKhS^GRcFG+kg6znV zQBT4ObX1Y9D!*-u=;|c)??l!J`^#2QRq*ch2>XNdWePunq(uf~Ag4Awg=`gJET?3s zE;q5g)14^o=fEH_L3-Ny`D1K zD>sUAfnMMC4dLP@+xB=p4!P19XlfbMh!!8&lH~L}R^`HL2ZK6e3Pfd=N&4d*P7zZSWV31zUQ|II(~TDg zxgamlnZf+Rx2JH6YV8GL|B?&p5KDuOA83>}lZ+^+XB9w9TJNhAhXJ{uK2VoJd;7}l z!dwN!BL$7}+H%rGWj4|6MlNVl&)5{$B2Hzpow(JW=4};c4|I7wqLza6Z&8tf46*-W z*A{B4cW~KWNV*E?_A1*QVhMIprf@2dX(-ya5D8mk2T1{Yvyf0IHg36a4QVeX?VJs&`9cPV+yLGP`EM0M`N`yC6G#-Mfdc^H7fm^$kLkH*hw;M9H+SP$<89x zp6D!B?bJ?E2b|6HC@zOc)pp|)M}67p@smrLyaTopr+s-3DU5Ao*K5OpM;zc~w^g-0 zf!sn|>>-ub;}90}I8btvx*eJJG-6nU3h?$v#STS z(E0!#HR)peIFBoz)rF%A_HlouMkBMWniDN_)5maRM_?=NjAVF<)0g7(SG3|tAXbqo zGR0@xNWJFE6gwc^X$a9{4BqKZ4U*n=ks4w9D>urp0kgz5>dO}Q9ba}KlOJZw5w*gX zD^4AFXD9!#9r8BH1+{^uDz=2MBl0#XMhHvGYZUtA*V1_K6^r95-f33)N>b>}&R0?+ zlf(qcJ}iW%C=s7=d?g!I#wpoIZx%S;%2si9RdJR!(d(G6f*64uy>JYp`xi*rCJu)n zRYEF7rS(;cI~3kkcBm8=F<<3&RTnw%v*5%x2VQ}F)i9B$9w>3Dm4d7kJGgJX_~3(g zx+61^?8v^FHXn6a!zOwYRQU)WVaSmcU412Dv-UORFqegW)FgI8UsHjMDj~W=o$)ml z(F+|&oRbCT4slfQ?dVil!>zh&_|rt(!Yu5R$nC~Ra`ga7KQFKd4|CeK&?)>y<@AdX zNV*|1l6>~@7i|rz?Jp9g8}F?C^CSWZyJ451hi!U?!aGt-@S~VCwGEUSp=V_Zt&=L9 ztE_UNIHUU4ZxUM7iQ|EPyEuXP8;I!|vKYxd#r6@N>Hd~2K6N_#+r@VYywhtMBgr)l zB#YIsSeJ+mzpDWEDX}z{gYDgdllalKh1oxBNtgS#2LpWLVmZQx(>h6ghj+T!fu!G9 z7)j!sk$c328YC?vAW;CtjB7mN-6jr->`ufjiFf29JqEKDd;ud2xK#~epx@KL&-QU1 zw;%)U+r+%&_Nsiy3L6BUS;C`oYE=u#sqL$(7QOk~=rJi!CJq>Qr}+hvIX5h}%tQCM zz(%4Nxx?Z<>ut>wOAe7tpRf@^Eh@=qAzx@Af$@iz)+p{H^ec3rv4e&pNY%QUh(VfK z*~K<2&?!!a0cVPTy|@tsc8OpP>=NgEywki6>?RU+r_ekN?9NsxzekkrK!^BPgm?O3 zgxz<->XEDobe5`I2@+eF;1o#|=q#gq0VBz=YJgmEpU-4kOgkcni;B$7L;=~sw8YdI}AeJQ)> z=gq#!c> zm(@b=9et(Zc+*!VZh3fT1(W*)B(^7n94&xoWR-!3Q(w8L-gswG9qy_SbpS)yy@NXl zq}(BH4SiKLV$=qr_J+{!Ea6dg>tvhwnh|Ujs|dQqVI$}kUv+|R@r^y`7B`EaTkH!# zH<9TUnG$r1uK_`~xbFnrBD8{T@s%Lx7WdhpTdXeV7N?z{TYP;Dy2Tf#pj({4gKlx_ z3A)AYKIj%_*PvT`)(g7DIWy=M+hx!#+!S<+k`iF1ASRq)IVZ%x}m?O>Hi1# ze?1YKx+On;_>LISE%{if8uUc$?~%si2mJ`lb06l3h_dO&juA}5;%)kiCg8X1J6|xz z0|!6nj<4_kBub|{&w5GhpJGJsd3&!iZ6AU5YdWNZp+9^PeeCVLOKtjJ=eC&= z&tjM1=XXoFME~JwTaD*L>U6`Q_m{v6B%6MY0T^e~-=LwVm}%hc0?c2G`7bEwl}w{` zIz7fMC*v*zz4(g3qwu#I`eD*M<`3l=agI$dVf`b9*z{X3Z^w`SEmx%e zP2(q6=Os_gl{fScnPO;y3w%L{ls5mV4s=9UY8EF z>2D$a=OZtj-7C$4+_BDcP3=T}6z0>DIEz9&|4QOH8vP%GKRRwf)CJ?XG|W3r)xMf`9PaWsr9T#^ zd}jbUCK|6~b>MfN30Q9z`X}@*vK%%1mT3aw#gBNoBI+us5$nGq+NQ73(2I|pgnk$L zC&k$G<4JxR7nMl;#9o}=c+ss=J>rZ%M&xHI@>7aRG0lY>sr;3=6Obdlp&zGb_3(Ed z6UM!Qar`mCzu5*(2{iq!O_~Hh#U-DK+C}0-a16Y~!M-=ZzH!x~V=ai&_)G^5>AJ$=xtTnx);Wsn*bHH!@&{|!u5r^iI zSH|tv$WuO_<#cy~8-B6Cp8H@=3-bIj$Vr%V+7e0D!TA%+S4p3d^Ps6%i zJmK&S9!9=gf1o>|KqG#xKbcz5 zLh^R{h^wRnM8E0l&qUQ>UDGc2AoGk<=^AL7vQb?Te{HF>Xdmi@6T_!3<-HxlyAI&p`Z* zB=IC>Qor4Ve2gG*!Fz8WaoUnV{Pc&a7~?3^gFis-5DmGBr_=N~XUQ8bHxc#j7~(bY zywm0(uva4L>hc?F8JY3lWh7-Bk$Ge?m0Zqd?{J)z0mI&*z;cSttNc; z!cTwJ&{Ig#ew+PBv$P5FW+Ptyf_Rx-S87T{zRrHMS2_m!Bw@Z|8t1&E$sTDo+LNZA zkm86P`7D24HB3q)`5A6UeQ?6ge@6Xz9eHv;Sd9N2Ip=jtZ8&E>u=zUk9F6>Z0QI{W_InU|Tm%0zoQQaR5Oz)`cINtU ze5m!}=o1=x%zfvC@xL1T`CQbG8=>FaF*f}X*m zUij)(<9|q<=6r*3A=Yy_*1K@Q6LIH~I9!;XYO-QI3sEPpGvM!UVb2I+&&8l4DSfy* zp#gcjcxbou8o3t?o^LVySwZ?2V}E;(A0PaakFwfWIe9q-9g*_jH zpO>Ql6#AEzr&G#<=%F|Z{F#h#FT)?n(DyUQOMc-avlr`T z?fc05$;($8Hy|F9yL7R0Nt|+dzlSeiJVM0U$sX7s;iTG71^`SF@BEowK3@4+KpKYC&8(>Ra6 zj{N&jV;_1Q@~lLEKK}LRhf70ISKh$=_CDmv8{o^;;7h@I=4Iqv3iLgyQ3q2a+f1u9 z{F53zOS%E}=1=M{o8AjO*Wi0kJ;?{&zXtdJzrl`a$lntT!GH8D_YB)V+hgyCU2ND- zCu`I*E|+6E;;$TjOV@p6%s`$oIuGm4h_LA$8uMge|4D+LnJm6=zR83go+A4Tm&-Bh znibtg;IAyBP2YLIQ?1tmJPn`Bu}}V?1*k@Ip)otb>%M?8+fZumjnJ9!k>%# z`xNXWxsIHu3e1y>{vy)PN9JLDZ)?;+-k<;Le(6WVXFlR54)Iff^)AJ|rXaJ$JWIph z_Rn)-ZYJ?xC@qMJCULhmGu8A0^jh1T6j!Ga7Y^9*Qw=*7VLcaNT+#8jEHfro&T%QW8XC>-d#hSaPt}*~0oNrFjICoVd|3(r2RJA^9O2@dW zxs3@O8g-=_^PeJl#pmN#J@f9k9@xEl)#%s>#2)KcT-aYm{8=>Mhu>Hhoi<`!n(DrluOxA$H zx+VWzJQU}eI&(*KEbLOZ`G!gmr z=0y#$uaW$G(|=5QUgNu0{ni$96tUa3uUk#aNL+7+{@aQE+fSvLZY1A3wqt*Ji0IXT z`c{6H^)$XdOme^vjj_YW#X#?-o1QcE!yZkr|Hr`Jdz$baAOm)89(ADmq=x+FrM*%V z*0;mDCniAr%jNAv{+vO)?DSMb-$LTC1?!8%`WW8Mu=!b2F^L;Ko@2|A_Sl)kuDpF0 z^e-d&?~0yhUPkoX_3=FOe@K4p27f2wZ4c_jNbE~{K$8%=CG@9&_9Y3{6W5C~e!;Gk0*taul zkMts=A?HDjb$2effAT?%eX$GsK|J*CTDHQNPR>1i-oGC;Segx-61X>S)dPC)zm^#KDTO&_f60x4QP)}ddh$lXB-}`pyIO1;KkEh2zO7frg55|2XyQLqn?tNyP{zByS zKlVNxw*Ya?pSROLGJi+%@tv3K(YI^JeFx*&e;E31!F^Fdjd*-Fr&qd8Bj4XezCI7X zzdNd1`h?hjKkPgndA%RMpQOTn{Mo-dFXoc7tpB~k#imG%d+)o`W0z^@`5yM)VVLJV z%)3e>-VWS0`KAWkOAcT?7OaOq2On;ZO(XUF;Ab&L_8VjK7JD=W-5V z-lb&TLswk+%OrzNcgVFc{yW(H&|P(wP4M%f&*x8FhxWnGp&>TY-K5^}{zI5Aip=*u z=t-b^5dRyA-9JD*90Gkmc)V8{PTIK~j)#Y~nP!u^%iDhsKg50NbFAw_tZyB|iGjze zktZKw{zlC6A-^f{J(N9<7O@h`0Zbqzazj{DJgQZK$}c-FKTb^iE)9x0O4 z#p8S5j+Ky4$5%Wxbt%ci!TNmJ_iWr4V#hBXE#~XMFJu07WPW+?E92TV?BhE)?Bl7J z*Ejs(j22>FK97HKuk<5#F(_mKSk>XFrT z|ArmDYDtPKfgiqF{`Z!>MDEwGrukjy{~G@Lm&QK$jUn0e3F7RVNA8LGh}4~LjL#*V zL-sp9KgWOLeA#8t>Hdx189yNVU=ZyG&_4JHj&GN~C+iBvzioOqJ?Q!uRrB8us`J{&*7p`01KvX$RK#^Anc1A2jUzOT*n$pEGc2 yI^BPv|C5-XKc^dhnwkUozeZd=;SAYlf5q=BeMH`w@6$|^G42fFGMmIDm-D}mqA?@@ literal 0 HcmV?d00001 diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/de.json b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/de.json new file mode 100644 index 0000000..9822cd6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/de.json @@ -0,0 +1,366 @@ +{ + "@source": "http://www.ranks.nl/stopwords/german, https://github.com/SUL-DIG/hcrc_solr/stopwords_de.txt", + "version": "0.1", + "list":[ + "aber", + "alle", + "allem", + "allen", + "aller", + "alles", + "als", + "also", + "am", + "an", + "ander", + "andere", + "anderem", + "anderen", + "anderer", + "anderes", + "anderm", + "andern", + "anderr", + "anders", + "auch", + "auf", + "aus", + "bei", + "bin", + "bis", + "bist", + "da", + "damit", + "dann", + "das", + "dasselbe", + "dazu", + "daß", + "dein", + "deine", + "deinem", + "deinen", + "deiner", + "deines", + "dem", + "demselben", + "den", + "denn", + "denselben", + "der", + "derer", + "derselbe", + "derselben", + "des", + "desselben", + "dessen", + "dich", + "die", + "dies", + "diese", + "dieselbe", + "dieselben", + "diesem", + "diesen", + "dieser", + "dieses", + "dir", + "doch", + "dort", + "du", + "durch", + "ein", + "eine", + "einem", + "einen", + "einer", + "eines", + "einig", + "einige", + "einigem", + "einigen", + "einiger", + "einiges", + "einmal", + "er", + "es", + "etwas", + "euch", + "euer", + "eure", + "eurem", + "euren", + "eurer", + "eures", + "für", + "gegen", + "gewesen", + "hab", + "habe", + "haben", + "hat", + "hatte", + "hatten", + "hier", + "hin", + "hinter", + "ich", + "ihm", + "ihn", + "ihnen", + "ihr", + "ihre", + "ihrem", + "ihren", + "ihrer", + "ihres", + "im", + "in", + "indem", + "ins", + "ist", + "jede", + "jedem", + "jeden", + "jeder", + "jedes", + "jene", + "jenem", + "jenen", + "jener", + "jenes", + "jetzt", + "kann", + "kein", + "keine", + "keinem", + "keinen", + "keiner", + "keines", + "können", + "könnte", + "machen", + "man", + "manche", + "manchem", + "manchen", + "mancher", + "manches", + "mein", + "meine", + "meinem", + "meinen", + "meiner", + "meines", + "mich", + "mir", + "mit", + "muss", + "musste", + "nach", + "nicht", + "nichts", + "noch", + "nun", + "nur", + "ob", + "oder", + "ohne", + "sehr", + "sein", + "seine", + "seinem", + "seinen", + "seiner", + "seines", + "selbst", + "sich", + "sie", + "sind", + "so", + "solche", + "solchem", + "solchen", + "solcher", + "solches", + "soll", + "sollte", + "sondern", + "sonst", + "um", + "und", + "uns", + "unse", + "unsem", + "unsen", + "unser", + "unses", + "unter", + "viel", + "vom", + "von", + "vor", + "war", + "waren", + "warst", + "was", + "weg", + "weil", + "weiter", + "welche", + "welchem", + "welchen", + "welcher", + "welches", + "wenn", + "werde", + "werden", + "wie", + "wieder", + "will", + "wir", + "wird", + "wirst", + "wo", + "wollen", + "wollte", + "während", + "würde", + "würden", + "zu", + "zum", + "zur", + "zwar", + "zwischen", + "über", + "aber", + "als", + "am", + "an", + "auch", + "auf", + "aus", + "bei", + "bin", + "bis", + "bist", + "da", + "dadurch", + "daher", + "darum", + "das", + "dass", + "daß", + "dein", + "deine", + "dem", + "den", + "der", + "des", + "deshalb", + "dessen", + "die", + "dies", + "dieser", + "dieses", + "doch", + "dort", + "du", + "durch", + "ein", + "eine", + "einem", + "einen", + "einer", + "eines", + "er", + "es", + "euer", + "eure", + "für", + "hatte", + "hatten", + "hattest", + "hattet", + "hier", + "hinter", + "ich", + "ihr", + "ihre", + "im", + "in", + "ist", + "ja", + "jede", + "jedem", + "jeden", + "jeder", + "jedes", + "jener", + "jenes", + "jetzt", + "kann", + "kannst", + "können", + "könnt", + "machen", + "mein", + "meine", + "mit", + "musst", + "muß", + "mußt", + "müssen", + "müßt", + "nach", + "nachdem", + "nein", + "nicht", + "nun", + "oder", + "seid", + "sein", + "seine", + "sich", + "sie", + "sind", + "soll", + "sollen", + "sollst", + "sollt", + "sonst", + "soweit", + "sowie", + "und", + "unser", + "unsere", + "unter", + "vom", + "von", + "vor", + "wann", + "warum", + "was", + "weiter", + "weitere", + "wenn", + "wer", + "werde", + "werden", + "werdet", + "weshalb", + "wie", + "wieder", + "wieso", + "wir", + "wird", + "wirst", + "wo", + "woher", + "wohin", + "zu", + "zum", + "zur", + "über" + ] +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/en.json b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/en.json new file mode 100644 index 0000000..bfb1e63 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/en.json @@ -0,0 +1,1009 @@ +{ + "@source": "http://www.lextek.com/manuals/onix/stopwords1.html, http://dev.mysql.com/doc/refman/5.7/en/fulltext-stopwords.html", + "version": "0.1", + "list":[ + "a", + "about", + "an", + "are", + "as", + "at", + "be", + "by", + "com", + "org", + "de", + "en", + "for", + "from", + "how", + "i", + "in", + "is", + "it", + "la", + "of", + "on", + "or", + "that", + "the", + "this", + "to", + "was", + "what", + "when", + "where", + "who", + "will", + "with", + "und", + "the", + "www", + + "a's", + "able", + "about", + "above", + "according", + "accordingly", + "across", + "actually", + "after", + "afterwards", + "again", + "against", + "ain't", + "all", + "allow", + "allows", + "almost", + "alone", + "along", + "already", + "also", + "although", + "always", + "am", + "among", + "amongst", + "an", + "and", + "another", + "any", + "anybody", + "anyhow", + "anyone", + "anything", + "anyway", + "anyways", + "anywhere", + "apart", + "appear", + "appreciate", + "appropriate", + "are", + "aren't", + "around", + "as", + "aside", + "ask", + "asking", + "associated", + "at", + "available", + "away", + "awfully", + "be", + "became", + "because", + "become", + "becomes", + "becoming", + "been", + "before", + "beforehand", + "behind", + "being", + "believe", + "below", + "beside", + "besides", + "best", + "better", + "between", + "beyond", + "both", + "brief", + "but", + "by", + "c'mon", + "c's", + "came", + "can", + "can't", + "cannot", + "cant", + "cause", + "causes", + "certain", + "certainly", + "changes", + "clearly", + "co", + "com", + "come", + "comes", + "concerning", + "consequently", + "consider", + "considering", + "contain", + "containing", + "contains", + "corresponding", + "could", + "couldn't", + "course", + "currently", + "definitely", + "described", + "despite", + "did", + "didn't", + "different", + "do", + "does", + "doesn't", + "doing", + "don't", + "done", + "down", + "downwards", + "during", + "each", + "edu", + "eg", + "eight", + "either", + "else", + "elsewhere", + "enough", + "entirely", + "especially", + "et", + "etc", + "even", + "ever", + "every", + "everybody", + "everyone", + "everything", + "everywhere", + "ex", + "exactly", + + "except", + "far", + "few", + "fifth", + "first", + "five", + "followed", + "following", + "follows", + "for", + "former", + "formerly", + "forth", + "four", + "from", + "further", + "furthermore", + "get", + "gets", + "getting", + "given", + "gives", + "go", + "goes", + "going", + "gone", + "got", + "gotten", + "greetings", + "had", + "hadn't", + "happens", + "hardly", + "has", + "hasn't", + "have", + "haven't", + "having", + "he", + "he's", + "hello", + "help", + "hence", + "her", + "here", + "here's", + "hereafter", + "hereby", + "herein", + "hereupon", + "hers", + "herself", + "hi", + "him", + "himself", + "his", + "hither", + "hopefully", + "how", + "howbeit", + "however", + "i'd", + "i'll", + "i'm", + "i've", + "ie", + "if", + "ignored", + "immediate", + "in", + "inasmuch", + "inc", + "indeed", + "indicate", + "indicated", + "indicates", + "inner", + "insofar", + "instead", + "into", + "inward", + "is", + "isn't", + "it", + "it'd", + "it'll", + "it's", + "its", + "itself", + "just", + "keep", + "keeps", + "kept", + "know", + "known", + "knows", + "last", + "lately", + "later", + "latter", + "latterly", + "least", + "less", + "lest", + "let", + "let's", + "like", + "liked", + "likely", + "little", + "look", + "looking", + "looks", + "ltd", + "mainly", + "many", + "may", + "maybe", + "me", + "mean", + "meanwhile", + "merely", + "might", + "more", + "moreover", + "most", + "mostly", + "much", + "must", + "my", + "myself", + "name", + "namely", + "nd", + "near", + "nearly", + "necessary", + "need", + "needs", + "neither", + "never", + "nevertheless", + "new", + "next", + "nine", + "no", + "nobody", + "non", + "none", + "noone", + "nor", + "normally", + "not", + "nothing", + "novel", + "now", + "nowhere", + "obviously", + "of", + "off", + "often", + "oh", + "ok", + "okay", + "old", + "on", + "once", + "one", + "ones", + "only", + "onto", + "or", + "other", + "others", + "otherwise", + "ought", + "our", + "ours", + "ourselves", + "out", + "outside", + "over", + "overall", + "own", + "particular", + "particularly", + "per", + "perhaps", + "placed", + "please", + "plus", + "possible", + "presumably", + "probably", + "provides", + "que", + "quite", + "qv", + "rather", + "rd", + "re", + "really", + "reasonably", + "regarding", + "regardless", + "regards", + "relatively", + "respectively", + "right", + "said", + "same", + "saw", + "say", + "saying", + "says", + "second", + "secondly", + "see", + "seeing", + "seem", + "seemed", + "seeming", + "seems", + "seen", + "self", + "selves", + "sensible", + "sent", + "serious", + "seriously", + "seven", + "several", + "shall", + "she", + "should", + "shouldn't", + "since", + "six", + "so", + "some", + "somebody", + "somehow", + "someone", + "something", + "sometime", + "sometimes", + "somewhat", + "somewhere", + "soon", + "sorry", + "specified", + "specify", + "specifying", + "still", + "sub", + "such", + "sup", + "sure", + "t's", + "take", + "taken", + "tell", + "tends", + "th", + "than", + "thank", + "thanks", + "thanx", + "that", + "that's", + "thats", + "the", + "their", + "theirs", + "them", + "themselves", + "then", + "thence", + "there", + "there's", + "thereafter", + "thereby", + "therefore", + "therein", + "theres", + "thereupon", + "these", + "they", + "they'd", + "they'll", + "they're", + "they've", + "think", + "third", + "this", + "thorough", + "thoroughly", + "those", + "though", + "three", + "through", + "throughout", + "thru", + "thus", + "to", + "together", + "too", + "took", + "toward", + "towards", + "tried", + "tries", + "truly", + "try", + "trying", + "twice", + "two", + "un", + "under", + "unfortunately", + "unless", + "unlikely", + "until", + "unto", + "up", + "upon", + "us", + "use", + "used", + "useful", + "uses", + "using", + "usually", + "value", + "various", + "very", + "via", + "viz", + "vs", + "want", + "wants", + "was", + "wasn't", + "way", + "we", + "we'd", + "we'll", + "we're", + "we've", + "welcome", + "well", + "went", + "were", + "weren't", + "what", + "what's", + "whatever", + "when", + "whence", + "whenever", + "where", + "where's", + "whereafter", + "whereas", + "whereby", + "wherein", + "whereupon", + "wherever", + "whether", + "which", + "while", + "whither", + "who", + "who's", + "whoever", + "whole", + "whom", + "whose", + "why", + "will", + "willing", + "wish", + "with", + "within", + "without", + "won't", + "wonder", + "would", + "wouldn't", + "yes", + "yet", + "you", + "you'd", + "you'll", + "you're", + "you've", + "your", + "yours", + "yourself", + "yourselves", + "zero", + + "above", + "across", + "after", + "again", + "against", + "all", + "almost", + "alone", + "along", + "already", + "also", + "although", + "always", + "among", + "an", + "and", + "another", + "any", + "anybody", + "anyone", + "anything", + "anywhere", + "are", + "areas", + "around", + "as", + "ask", + "asked", + "asking", + "asks", + "at", + "away", + "b", + "back", + "backed", + "backing", + "backs", + "be", + "became", + "because", + "become", + "becomes", + "been", + "before", + "began", + "behind", + "being", + "beings", + "best", + "better", + "between", + "big", + "both", + "but", + "by", + "c", + "came", + "can", + "cannot", + "case", + "cases", + "certain", + "certainly", + "clear", + "clearly", + "come", + "could", + "d", + "did", + "differ", + "different", + "differently", + "do", + "does", + "done", + "down", + "down", + "downed", + "downing", + "downs", + "during", + "e", + "each", + "early", + "either", + "end", + "ended", + "ending", + "ends", + "enough", + "even", + "evenly", + "ever", + "every", + "everybody", + "everyone", + "everything", + "everywhere", + "f", + "face", + "faces", + "fact", + "facts", + "far", + "felt", + "few", + "find", + "finds", + "first", + "for", + "four", + "from", + "full", + "fully", + "further", + "furthered", + "furthering", + "furthers", + "g", + "gave", + "general", + "generally", + "get", + "gets", + "give", + "given", + "gives", + "go", + "going", + "good", + "goods", + "got", + "great", + "greater", + "greatest", + "group", + "grouped", + "grouping", + "groups", + "h", + "had", + "has", + "have", + "having", + "he", + "her", + "here", + "herself", + "high", + "high", + "high", + "higher", + "highest", + "him", + "himself", + "his", + "how", + "however", + "i", + "if", + "important", + "in", + "interest", + "interested", + "interesting", + "interests", + "into", + "is", + "it", + "its", + "itself", + "j", + "just", + "k", + "keep", + "keeps", + "kind", + "knew", + "know", + "known", + "knows", + "l", + "large", + "largely", + "last", + "later", + "latest", + "least", + "less", + "let", + "lets", + "like", + "likely", + "long", + "longer", + "longest", + "m", + "made", + "make", + "making", + "man", + "many", + "may", + "me", + "members", + "men", + "might", + "more", + "most", + "mostly", + "mr", + "mrs", + "much", + "must", + "my", + "myself", + "n", + "necessary", + "need", + "needed", + "needing", + "needs", + "never", + "new", + "new", + "newer", + "newest", + "next", + "no", + "nobody", + "non", + "noone", + "not", + "nothing", + "now", + "nowhere", + "numbers", + "o", + "of", + "off", + "often", + "old", + "older", + "oldest", + "on", + "once", + "one", + "only", + "opened", + "opening", + "opens", + "or", + "ordered", + "ordering", + "orders", + "other", + "others", + "our", + "out", + "over", + "p", + "parted", + "parting", + "parts", + "per", + "perhaps", + "place", + "places", + "point", + "pointed", + "pointing", + "points", + "possible", + "present", + "presented", + "presenting", + "presents", + "problem", + "problems", + "put", + "puts", + "q", + "quite", + "r", + "rather", + "really", + "right", + "right", + "room", + "rooms", + "s", + "said", + "same", + "saw", + "say", + "says", + "second", + "seconds", + "see", + "seem", + "seemed", + "seeming", + "seems", + "sees", + "several", + "shall", + "she", + "should", + "show", + "showed", + "showing", + "shows", + "side", + "sides", + "since", + "small", + "smaller", + "smallest", + "so", + "some", + "somebody", + "someone", + "something", + "somewhere", + "state", + "states", + "still", + "still", + "such", + "sure", + "t", + "take", + "taken", + "than", + "that", + "the", + "their", + "them", + "then", + "there", + "therefore", + "these", + "they", + "thing", + "things", + "think", + "thinks", + "this", + "those", + "though", + "thought", + "thoughts", + "three", + "through", + "thus", + "to", + "today", + "together", + "too", + "took", + "toward", + "turn", + "turned", + "turning", + "turns", + "two", + "u", + "under", + "until", + "up", + "upon", + "us", + "use", + "used", + "uses", + "v", + "very", + "w", + "want", + "wanted", + "wanting", + "wants", + "was", + "way", + "ways", + "we", + "well", + "wells", + "went", + "were", + "what", + "when", + "where", + "whether", + "which", + "while", + "who", + "whole", + "whose", + "why", + "will", + "with", + "within", + "without", + "work", + "worked", + "working", + "works", + "would", + "x", + "y", + "year", + "years", + "yet", + "you", + "young", + "younger", + "youngest", + "your", + "yours", + "z" + ] +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/es.json b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/es.json new file mode 100644 index 0000000..4cf1a9e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/es.json @@ -0,0 +1,185 @@ +{ + "@source": "http://www.ranks.nl/stopwords/spanish", + "version": "0.1", + "list":[ + "alguna", + "algunas", + "alguno", + "algunos", + "algún", + "ambos", + "ampleamos", + "ante", + "antes", + "aquel", + "aquellas", + "aquellos", + "aqui", + "arriba", + "atras", + "bajo", + "bastante", + "bien", + "cada", + "cierta", + "ciertas", + "cierto", + "ciertos", + "como", + "con", + "conseguimos", + "conseguir", + "consigo", + "consigue", + "consiguen", + "consigues", + "cual", + "cuando", + "dentro", + "desde", + "donde", + "dos", + "el", + "ellas", + "ellos", + "empleais", + "emplean", + "emplear", + "empleas", + "empleo", + "en", + "encima", + "entonces", + "entre", + "era", + "eramos", + "eran", + "eras", + "eres", + "es", + "esta", + "estaba", + "estado", + "estais", + "estamos", + "estan", + "estoy", + "fin", + "fue", + "fueron", + "fui", + "fuimos", + "gueno", + "ha", + "hace", + "haceis", + "hacemos", + "hacen", + "hacer", + "haces", + "hago", + "incluso", + "intenta", + "intentais", + "intentamos", + "intentan", + "intentar", + "intentas", + "intento", + "ir", + "la", + "largo", + "las", + "lo", + "los", + "mientras", + "mio", + "modo", + "muchos", + "muy", + "nos", + "nosotros", + "otro", + "para", + "pero", + "podeis", + "podemos", + "poder", + "podria", + "podriais", + "podriamos", + "podrian", + "podrias", + "por", + "por", + "porque", + "primero", + "puede", + "pueden", + "puedo", + "quien", + "qué", + "sabe", + "sabeis", + "sabemos", + "saben", + "saber", + "sabes", + "ser", + "si", + "siendo", + "sin", + "sobre", + "sois", + "solamente", + "solo", + "somos", + "soy", + "su", + "sus", + "también", + "teneis", + "tenemos", + "tener", + "tengo", + "tiempo", + "tiene", + "tienen", + "todo", + "trabaja", + "trabajais", + "trabajamos", + "trabajan", + "trabajar", + "trabajas", + "trabajo", + "tras", + "tuyo", + "ultimo", + "un", + "una", + "unas", + "uno", + "unos", + "usa", + "usais", + "usamos", + "usan", + "usar", + "usas", + "uso", + "va", + "vais", + "valor", + "vamos", + "van", + "vaya", + "verdad", + "verdadera", + "verdadero", + "vosotras", + "vosotros", + "voy", + "yo" + ] +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/fr.json b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/fr.json new file mode 100644 index 0000000..c8b7b23 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/fr.json @@ -0,0 +1,122 @@ +{ + "@source": "http://www.ranks.nl/stopwords/french", + "version": "0.1", + "list":[ + "alors", + "au", + "aucuns", + "aussi", + "autre", + "avant", + "avec", + "avoir", + "bon", + "car", + "ce", + "cela", + "ces", + "ceux", + "chaque", + "ci", + "comme", + "comment", + "dans", + "dedans", + "dehors", + "depuis", + "des", + "devrait", + "doit", + "donc", + "dos", + "du", + "début", + "elle", + "elles", + "en", + "encore", + "essai", + "est", + "et", + "eu", + "fait", + "faites", + "fois", + "font", + "hors", + "ici", + "il", + "ils", + "je", + "juste", + "la", + "le", + "les", + "leur", + "là", + "ma", + "maintenant", + "mais", + "mes", + "mine", + "moins", + "mon", + "mot", + "même", + "ni", + "nommés", + "notre", + "nous", + "ou", + "où", + "par", + "parce", + "pas", + "peu", + "peut", + "plupart", + "pour", + "pourquoi", + "quand", + "que", + "quel", + "quelle", + "quelles", + "quels", + "qui", + "sa", + "sans", + "ses", + "seulement", + "si", + "sien", + "son", + "sont", + "sous", + "soyez", + "sujet", + "sur", + "ta", + "tandis", + "tellement", + "tels", + "tes", + "ton", + "tous", + "tout", + "trop", + "très", + "tu", + "voient", + "vont", + "votre", + "vous", + "vu", + "ça", + "étaient", + "état", + "étions", + "été", + "être" + ] +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/ja.json b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/ja.json new file mode 100644 index 0000000..9e23b80 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/ja.json @@ -0,0 +1,115 @@ +{ + "@source": "https://github.com/SUL-DIG/hcrc_solr/blob/master/conf/stopwords_all_lang.txt, stopwords_ja.txt", + "version": "0.1", + "list":[ + "あっ", + "あり", + "ある", + "い", + "いう", + "いる", + "う", + "うち", + "お", + "および", + "おり", + "か", + "かつて", + "から", + "が", + "き", + "ここ", + "こと", + "この", + "これ", + "これら", + "さ", + "さらに", + "し", + "しかし", + "する", + "ず", + "せ", + "せる", + "そして", + "その", + "その他", + "その後", + "それ", + "それぞれ", + "た", + "ただし", + "たち", + "ため", + "たり", + "だ", + "だっ", + "つ", + "て", + "で", + "でき", + "できる", + "です", + "では", + "でも", + "と", + "という", + "といった", + "とき", + "ところ", + "として", + "とともに", + "とも", + "と共に", + "な", + "ない", + "なお", + "なかっ", + "ながら", + "なく", + "なっ", + "など", + "なら", + "なり", + "なる", + "に", + "において", + "における", + "について", + "にて", + "によって", + "により", + "による", + "に対して", + "に対する", + "に関する", + "の", + "ので", + "のみ", + "は", + "ば", + "へ", + "ほか", + "ほとんど", + "ほど", + "ます", + "また", + "または", + "まで", + "も", + "もの", + "ものの", + "や", + "よう", + "より", + "ら", + "られ", + "られる", + "れ", + "れる", + "を", + "ん", + "及び", + "特に" + ] +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/pt-br.json b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/pt-br.json new file mode 100644 index 0000000..5eeccd4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/pt-br.json @@ -0,0 +1,132 @@ +{ + "@source": "http://www.ranks.nl/stopwords/brazilian", + "version": "0.1", + "list": [ + "a", + "ainda", + "alem", + "ambas", + "ambos", + "antes", + "ao", + "aonde", + "aos", + "apos", + "aquele", + "aqueles", + "as", + "assim", + "com", + "como", + "contra", + "contudo", + "cuja", + "cujas", + "cujo", + "cujos", + "da", + "das", + "de", + "dela", + "dele", + "deles", + "demais", + "depois", + "desde", + "desta", + "deste", + "dispoe", + "dispoem", + "diversa", + "diversas", + "diversos", + "do", + "dos", + "durante", + "e", + "ela", + "elas", + "ele", + "eles", + "em", + "entao", + "entre", + "essa\tessas", + "esse", + "esses", + "esta", + "estas", + "este", + "estes", + "ha", + "isso", + "isto", + "logo", + "mais", + "mas", + "mediante", + "menos", + "mesma", + "mesmas", + "mesmo", + "mesmos", + "na", + "nao", + "nas", + "nas", + "nem", + "nesse", + "neste", + "nos", + "o", + "os", + "ou", + "outra", + "outras", + "outro", + "outros", + "pelas", + "pelas", + "pelo", + "pelos", + "perante", + "pois", + "por", + "porque", + "portanto", + "propios", + "proprio", + "quais", + "qual", + "qualquer", + "quando", + "quanto\tque", + "quem", + "quer", + "se", + "seja", + "sem", + "sendo", + "seu", + "seus", + "sob", + "sobre", + "sua", + "suas", + "tal", + "tambem", + "teu", + "teus", + "toda", + "todas", + "todo", + "todos", + "tua", + "tuas", + "tudo", + "um", + "uma", + "umas", + "uns" + ] +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/pt.json b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/pt.json new file mode 100644 index 0000000..496dafa --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/pt.json @@ -0,0 +1,151 @@ +{ + "@source": "http://www.ranks.nl/stopwords/portugese", + "version": "0.1", + "list": [ + "último", + "é", + "acerca", + "agora", + "algmas", + "alguns", + "ali", + "ambos", + "antes", + "apontar", + "aquela", + "aquelas", + "aquele", + "aqueles", + "aqui", + "atrás", + "bem", + "bom", + "cada", + "caminho", + "cima", + "com", + "como", + "comprido", + "conhecido", + "corrente", + "das", + "debaixo", + "dentro", + "desde", + "desligado", + "deve", + "devem", + "deverá", + "direita", + "diz", + "dizer", + "dois", + "dos", + "e", + "ela", + "ele", + "eles", + "em", + "enquanto", + "então", + "está", + "estão", + "estado", + "estar\testará", + "este", + "estes", + "esteve", + "estive", + "estivemos", + "estiveram", + "eu", + "fará", + "faz", + "fazer", + "fazia", + "fez", + "fim", + "foi", + "fora", + "horas", + "iniciar", + "inicio", + "ir", + "irá", + "ista", + "iste", + "isto", + "ligado", + "maioria", + "maiorias", + "mais", + "mas", + "mesmo", + "meu", + "muito", + "muitos", + "nós", + "não", + "nome", + "nosso", + "novo", + "o", + "onde", + "os", + "ou", + "outro", + "para", + "parte", + "pegar", + "pelo", + "pessoas", + "pode", + "poderá\tpodia", + "por", + "porque", + "povo", + "promeiro", + "quê", + "qual", + "qualquer", + "quando", + "quem", + "quieto", + "são", + "saber", + "sem", + "ser", + "seu", + "somente", + "têm", + "tal", + "também", + "tem", + "tempo", + "tenho", + "tentar", + "tentaram", + "tente", + "tentei", + "teu", + "teve", + "tipo", + "tive", + "todos", + "trabalhar", + "trabalho", + "tu", + "um", + "uma", + "umas", + "uns", + "usa", + "usar", + "valor", + "veja", + "ver", + "verdade", + "verdadeiro", + "você" + ] +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/zh.json b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/zh.json new file mode 100644 index 0000000..6179e7e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/StopwordAnalyzer/data/zh.json @@ -0,0 +1,5 @@ +{ + "@source": "https://raw.githubusercontent.com/6/stopwords-json/master/dist/zh.json", + "version": "0.1", + "list":["、","。","〈","〉","《","》","一","一切","一则","一方面","一旦","一来","一样","一般","七","万一","三","上下","不仅","不但","不光","不单","不只","不如","不怕","不惟","不成","不拘","不比","不然","不特","不独","不管","不论","不过","不问","与","与其","与否","与此同时","且","两者","个","临","为","为了","为什么","为何","为着","乃","乃至","么","之","之一","之所以","之类","乌乎","乎","乘","九","也","也好","也罢","了","二","于","于是","于是乎","云云","五","人家","什么","什么样","从","从而","他","他人","他们","以","以便","以免","以及","以至","以至于","以致","们","任","任何","任凭","似的","但","但是","何","何况","何处","何时","作为","你","你们","使得","例如","依","依照","俺","俺们","倘","倘使","倘或","倘然","倘若","借","假使","假如","假若","像","八","六","兮","关于","其","其一","其中","其二","其他","其余","其它","其次","具体地说","具体说来","再者","再说","冒","冲","况且","几","几时","凭","凭借","则","别","别的","别说","到","前后","前者","加之","即","即令","即使","即便","即或","即若","又","及","及其","及至","反之","反过来","反过来说","另","另一方面","另外","只是","只有","只要","只限","叫","叮咚","可","可以","可是","可见","各","各个","各位","各种","各自","同","同时","向","向着","吓","吗","否则","吧","吧哒","吱","呀","呃","呕","呗","呜","呜呼","呢","呵","呸","呼哧","咋","和","咚","咦","咱","咱们","咳","哇","哈","哈哈","哉","哎","哎呀","哎哟","哗","哟","哦","哩","哪","哪个","哪些","哪儿","哪天","哪年","哪怕","哪样","哪边","哪里","哼","哼唷","唉","啊","啐","啥","啦","啪达","喂","喏","喔唷","嗡嗡","嗬","嗯","嗳","嘎","嘎登","嘘","嘛","嘻","嘿","四","因","因为","因此","因而","固然","在","在下","地","多","多少","她","她们","如","如上所述","如何","如其","如果","如此","如若","宁","宁可","宁愿","宁肯","它","它们","对","对于","将","尔后","尚且","就","就是","就是说","尽","尽管","岂但","己","并","并且","开外","开始","归","当","当着","彼","彼此","往","待","得","怎","怎么","怎么办","怎么样","怎样","总之","总的来看","总的来说","总的说来","总而言之","恰恰相反","您","慢说","我","我们","或","或是","或者","所","所以","打","把","抑或","拿","按","按照","换句话说","换言之","据","接着","故","故此","旁人","无宁","无论","既","既是","既然","时候","是","是的","替","有","有些","有关","有的","望","朝","朝着","本","本着","来","来着","极了","果然","果真","某","某个","某些","根据","正如","此","此外","此间","毋宁","每","每当","比","比如","比方","沿","沿着","漫说","焉","然则","然后","然而","照","照着","甚么","甚而","甚至","用","由","由于","由此可见","的","的话","相对而言","省得","着","着呢","矣","离","第","等","等等","管","紧接着","纵","纵令","纵使","纵然","经","经过","结果","给","继而","综上所述","罢了","者","而","而且","而况","而外","而已","而是","而言","能","腾","自","自个儿","自从","自各儿","自家","自己","自身","至","至于","若","若是","若非","莫若","虽","虽则","虽然","虽说","被","要","要不","要不是","要不然","要么","要是","让","论","设使","设若","该","诸位","谁","谁知","赶","起","起见","趁","趁着","越是","跟","较","较之","边","过","还是","还有","这","这个","这么","这么些","这么样","这么点儿","这些","这会儿","这儿","这就是说","这时","这样","这边","这里","进而","连","连同","通过","遵照","那","那个","那么","那么些","那么样","那些","那会儿","那儿","那时","那样","那边","那里","鄙人","鉴于","阿","除","除了","除此之外","除非","随","随着","零","非但","非徒","靠","顺","顺着","首先","︿","!","#","$","%","&","(",")","*","+",",","0","1","2","3","4","5","6","7","8","9",":",";","<",">","?","@","[","]","{","|","}","~","¥"] +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Synonymizer/NullSynonymizer.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Synonymizer/NullSynonymizer.php new file mode 100644 index 0000000..8940acc --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Synonymizer/NullSynonymizer.php @@ -0,0 +1,24 @@ +tokenizer = $tokenizer; + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function setOption( $name, $value ) { + if ( $this->tokenizer !== null ) { + $this->tokenizer->setOption( $name, $value ); + } + + if ( $name === self::REGEX_EXEMPTION ) { + $this->patternExemption = $value; + } + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function isWordTokenizer() { + return false; + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function tokenize( $string ) { + if ( $this->tokenizer !== null ) { + $string = implode( " ", $this->tokenizer->tokenize( $string ) ); + } + + // Filter is based on https://github.com/kitech/cms-drupal/blob/master/modules/csplitter/filter.txt + $pattern = str_replace( + $this->patternExemption, + '', + '([\s\、,,。/?《》〈〉;:“”"〃'`[]{}\|~!-=_+)(()*…—─%¥…◆★◇□■【】#·啊吧把并被才从的得当对但到地而该过个给还和叫将就可来了啦里没你您哪那呢去却让使是时省随他我为现县向像象要由矣已以也又与于在之这则最乃\/\(\)\[\]{}<>\r\n"]|(?tokenizer = $tokenizer; + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function setOption( $name, $value ) { + if ( $this->tokenizer !== null ) { + $this->tokenizer->setOption( $name, $value ); + } + + if ( $name === self::REGEX_EXEMPTION ) { + $this->patternExemption = $value; + } + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function isWordTokenizer() { + return $this->tokenizer !== null ? $this->tokenizer->isWordTokenizer() : true; + } + + /** + * @since 0.1 + * + * @param string $string + * + * @return array|false + */ + public function tokenize( $string ) { + if ( $this->tokenizer !== null ) { + $string = implode( " ", $this->tokenizer->tokenize( $string ) ); + } + + // (?<=\p{L})(?=\p{N}) to split alphanumeric and numeric + + $pattern = str_replace( + $this->patternExemption, + '', + '([\s\-_,:;?!%\'\|\/\(\)\[\]{}<>\r\n"]|(?tokenizer = $tokenizer; + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function setOption( $name, $value ) { + if ( $this->tokenizer !== null ) { + $this->tokenizer->setOption( $name, $value ); + } + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function isWordTokenizer() { + return $this->isWordTokenizer; + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function setWordTokenizerAttribute( $usesWordBoundaries ) { + return $this->isWordTokenizer = $usesWordBoundaries; + } + + /** + * @since 0.1 + * + * @return bool + */ + public function isAvailable() { + return class_exists( 'IntlRuleBasedBreakIterator' ); + } + + /** + * @since 0.1 + * + * @param string $locale + */ + public function setLocale( $locale ) { + $this->locale = $locale; + } + + /** + * @since 0.1 + * + * @param string $string + * + * @return array|false + */ + public function tokenize( $string ) { + if ( $this->tokenizer !== null ) { + $string = implode( " ", $this->tokenizer->tokenize( $string ) ); + } + + if ( !$this->isAvailable() ) { + return $this->tokenizer !== null ? $this->tokenizer->tokenize( $string ) : [ $string ]; + } + + return $this->createTokens( $string ); + } + + private function createTokens( $string ) { + $tokens = []; + + if ( $tokenizer = IntlRuleBasedBreakIterator::createWordInstance( $this->locale ) ) { + $tokenizer->setText( $string ); + $prev = 0; + + foreach ( $tokenizer as $token ) { + + if ( $token == 0 ) { + continue; + } + + $res = substr( $string, $prev, $token - $prev ); + + if ( $res !== '' && $res !== ' ' ) { + $tokens[] = $res; + } + + $prev = $token; + } + } + + return $tokens; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/JaCompoundGroupTokenizer.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/JaCompoundGroupTokenizer.php new file mode 100644 index 0000000..98c544e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/JaCompoundGroupTokenizer.php @@ -0,0 +1,226 @@ +tokenizer = $tokenizer; + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function setOption( $name, $value ) { + if ( $this->tokenizer !== null ) { + $this->tokenizer->setOption( $name, $value ); + } + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function isWordTokenizer() { + return false; + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function tokenize( $string ) { + if ( $this->tokenizer !== null ) { + $string = implode( " ", $this->tokenizer->tokenize( $string ) ); + } + + $result = explode( " ", $this->splitByCharacterGroup( + str_replace( $this->compound, ' ', $string ) ) + ); + + foreach ( $result as $key => $value ) { + if ( $value === '' ) { + unset( $result[$key] ); + } + + // Single katakana/hiragana are exempted + if ( mb_strlen( $value ) === 1 && CharacterExaminer::contains( CharacterExaminer::HIRAGANA_KATAKANA, $value ) ) { + unset( $result[$key] ); + } + } + + if ( $result !== false ) { + return array_values( $result ); + } + + return []; + } + + /** + * @see MediaWiki LanguageJa::segmentByWord + * + * @since 0.1 + * + * {@inheritDoc} + */ + public function splitByCharacterGroup( $string ) { + // Space strings of like hiragana/katakana/kanji + $hiragana = '(?:\xe3(?:\x81[\x80-\xbf]|\x82[\x80-\x9f]))'; # U3040-309f + $katakana = '(?:\xe3(?:\x82[\xa0-\xbf]|\x83[\x80-\xbf]))'; # U30a0-30ff + $kanji = '(?:\xe3[\x88-\xbf][\x80-\xbf]' + . '|[\xe4-\xe8][\x80-\xbf]{2}' + . '|\xe9[\x80-\xa5][\x80-\xbf]' + . '|\xe9\xa6[\x80-\x99])'; + # U3200-9999 = \xe3\x88\x80-\xe9\xa6\x99 + + $reg = "/({$hiragana}+|{$katakana}+|{$kanji}+)/"; + + return $this->insertSpace( $string, $reg ); + } + + private function insertSpace( $string, $pattern ) { + return preg_replace( '/ +/', ' ', preg_replace( $pattern, " $1 ", $string ) ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/JaTinySegmenterTokenizer.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/JaTinySegmenterTokenizer.php new file mode 100644 index 0000000..fdb2e79 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/JaTinySegmenterTokenizer.php @@ -0,0 +1,262 @@ +. + * Pulished under the BSD license http://chasen.org/~taku/software/TinySegmenter/LICENCE.txt + * + * PHP Version was developed by xnights . + * For details, see http://programming-magic.com/?id=172 + * + * The model is based on the http://research.nii.ac.jp/src/list.html corpus + * together with an optimized L1-norm regularization. + * + * - https://github.com/shogo82148/TinySegmenterMaker + * + * @since 0.1 + */ +class JaTinySegmenterTokenizer implements Tokenizer { + + private $patterns_ = [ + "[一二三四五六七八九十百千万億兆]" => "M", // numbers (japanese) + "[一-龠々〆ヵヶ]" => "H", // kanji & misc characters + "[ぁ-ん]" => "I", // hiragana + "[ァ-ヴーア-ン゙ー]" => "K", // katakana + "[a-zA-Za-zA-Z]" => "A", // ascii / romaji letters + "[0-90-9]" => "N", // ascii / romaji numbers + ]; + + /** + * @var Tokenizer + */ + private $tokenizer; + + /** + * This is kept static on purpose. + * @var array + */ + private static $model; + + /** + * @var string + */ + private $modelFile; + + /** + * @since 0.1 + * + * @param Tokenizer|null $tokenizer + */ + public function __construct( ?Tokenizer $tokenizer = null ) { + $this->tokenizer = $tokenizer; + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function setOption( $name, $value ) { + if ( $this->tokenizer !== null ) { + $this->tokenizer->setOption( $name, $value ); + } + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function isWordTokenizer() { + return false; + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function tokenize( $string ) { + if ( $this->tokenizer !== null ) { + $string = implode( " ", $this->tokenizer->tokenize( $string ) ); + } + + return $this->loadModel()->segment( $string ); + } + + private function loadModel() { + if ( self::$model !== null ) { + return $this; + } + + $contents = null; + $file = __DIR__ . '/model/rwcp.model.json'; + + if ( ( $contents = @file_get_contents( $file ) ) !== false ) { + self::$model = json_decode( $contents, true ); + } + + if ( $contents === false || json_last_error() !== JSON_ERROR_NONE ) { + throw new RuntimeException( "Couldn't read the model from {$file}." ); + } + + return $this; + } + + protected function segment( $input, $encoding = null ) { + if ( !$input ) { + return []; + } + + if ( !$encoding ) { + $encoding = mb_detect_encoding( $input ); + } + + if ( $encoding !== 'UTF-8' ) { + $input = mb_convert_encoding( $input, 'UTF-8', $encoding ); + } + + $result = []; + $seg = [ "B3", "B2", "B1" ]; + + $ctype = [ "O", "O", "O" ]; + $o = $this->mb_string_to_array_( $input ); + + for ( $i = 0; $i < count( $o ); ++$i ) { + $seg[] = $o[$i]; + $ctype[] = $this->ctype_( $o[$i] ); + } + + $seg[] = "E1"; + $seg[] = "E2"; + $seg[] = "E3"; + $ctype[] = "O"; + $ctype[] = "O"; + $ctype[] = "O"; + $word = $seg[3]; + $p1 = "U"; + $p2 = "U"; + $p3 = "U"; + + for ( $i = 4; $i < count( $seg ) - 3; ++$i ) { + $score = self::$model["BIAS"]; + $w1 = $seg[$i - 3]; + $w2 = $seg[$i - 2]; + $w3 = $seg[$i - 1]; + $w4 = $seg[$i]; + $w5 = $seg[$i + 1]; + $w6 = $seg[$i + 2]; + $c1 = $ctype[$i - 3]; + $c2 = $ctype[$i - 2]; + $c3 = $ctype[$i - 1]; + $c4 = $ctype[$i]; + $c5 = $ctype[$i + 1]; + $c6 = $ctype[$i + 2]; + $score += $this->ts_( @self::$model["UP1"][$p1] ); + $score += $this->ts_( @self::$model["UP2"][$p2] ); + $score += $this->ts_( @self::$model["UP3"][$p3] ); + $score += $this->ts_( @self::$model["BP1"][$p1 . $p2] ); + $score += $this->ts_( @self::$model["BP2"][$p2 . $p3] ); + $score += $this->ts_( @self::$model["UW1"][$w1] ); + $score += $this->ts_( @self::$model["UW2"][$w2] ); + $score += $this->ts_( @self::$model["UW3"][$w3] ); + $score += $this->ts_( @self::$model["UW4"][$w4] ); + $score += $this->ts_( @self::$model["UW5"][$w5] ); + $score += $this->ts_( @self::$model["UW6"][$w6] ); + $score += $this->ts_( @self::$model["BW1"][$w2 . $w3] ); + $score += $this->ts_( @self::$model["BW2"][$w3 . $w4] ); + $score += $this->ts_( @self::$model["BW3"][$w4 . $w5] ); + $score += $this->ts_( @self::$model["TW1"][$w1 . $w2 . $w3] ); + $score += $this->ts_( @self::$model["TW2"][$w2 . $w3 . $w4] ); + $score += $this->ts_( @self::$model["TW3"][$w3 . $w4 . $w5] ); + $score += $this->ts_( @self::$model["TW4"][$w4 . $w5 . $w6] ); + $score += $this->ts_( @self::$model["UC1"][$c1] ); + $score += $this->ts_( @self::$model["UC2"][$c2] ); + $score += $this->ts_( @self::$model["UC3"][$c3] ); + $score += $this->ts_( @self::$model["UC4"][$c4] ); + $score += $this->ts_( @self::$model["UC5"][$c5] ); + $score += $this->ts_( @self::$model["UC6"][$c6] ); + $score += $this->ts_( @self::$model["BC1"][$c2 . $c3] ); + $score += $this->ts_( @self::$model["BC2"][$c3 . $c4] ); + $score += $this->ts_( @self::$model["BC3"][$c4 . $c5] ); + $score += $this->ts_( @self::$model["TC1"][$c1 . $c2 . $c3] ); + $score += $this->ts_( @self::$model["TC2"][$c2 . $c3 . $c4] ); + $score += $this->ts_( @self::$model["TC3"][$c3 . $c4 . $c5] ); + $score += $this->ts_( @self::$model["TC4"][$c4 . $c5 . $c6] ); + // $score += $this->ts_(@self::$model["TC5"][$c4 . $c5 . $c6]); + $score += $this->ts_( @self::$model["UQ1"][$p1 . $c1] ); + $score += $this->ts_( @self::$model["UQ2"][$p2 . $c2] ); + $score += $this->ts_( @self::$model["UQ1"][$p3 . $c3] ); + $score += $this->ts_( @self::$model["BQ1"][$p2 . $c2 . $c3] ); + $score += $this->ts_( @self::$model["BQ2"][$p2 . $c3 . $c4] ); + $score += $this->ts_( @self::$model["BQ3"][$p3 . $c2 . $c3] ); + $score += $this->ts_( @self::$model["BQ4"][$p3 . $c3 . $c4] ); + $score += $this->ts_( @self::$model["TQ1"][$p2 . $c1 . $c2 . $c3] ); + $score += $this->ts_( @self::$model["TQ2"][$p2 . $c2 . $c3 . $c4] ); + $score += $this->ts_( @self::$model["TQ3"][$p3 . $c1 . $c2 . $c3] ); + $score += $this->ts_( @self::$model["TQ4"][$p3 . $c2 . $c3 . $c4] ); + + $p = "O"; + + if ( $score > 0 ) { + + if ( $word !== '' && $word !== ' ' ) { + $result[] = $word; + } + + $word = ""; + $p = "B"; + } + + $p1 = $p2; + $p2 = $p3; + $p3 = $p; + + if ( $seg[$i] !== '' && $seg[$i] !== ' ' ) { + $word .= $seg[$i]; + } + } + + $result[] = $word; + + if ( $encoding !== 'UTF-8' ) { + foreach ( $result as &$str ) { + $str = mb_convert_encoding( $str, $encoding, 'UTF-8' ); + } + } + + return $result; + } + + private function ctype_( $str ) { + foreach ( $this->patterns_ as $pattern => $type ) { + if ( preg_match( '/' . $pattern . '/u', $str ) ) { + return $type; + } + } + + return "O"; + } + + private function ts_( $v ) { + return $v ? $v : 0; + } + + private function mb_string_to_array_( $str, $encoding = 'UTF-8' ) { + $result = []; + $length = mb_strlen( $str, $encoding ); + + for ( $i = 0; $i < $length; ++$i ) { + $result[] = mb_substr( $str, $i, 1, $encoding ); + } + + return $result; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/NGramTokenizer.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/NGramTokenizer.php new file mode 100644 index 0000000..f5a6cfb --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/NGramTokenizer.php @@ -0,0 +1,127 @@ +tokenizer = $tokenizer; + $this->ngramSize = (int)$ngramSize; + } + + /** + * @since 0.1 + * + * @param bool $withMarker + */ + public function withMarker( $withMarker ) { + $this->withMarker = (bool)$withMarker; + } + + /** + * @since 0.1 + * + * @param int $ngramSize + */ + public function setNgramSize( $ngramSize ) { + $this->ngramSize = (int)$ngramSize; + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function setOption( $name, $value ) { + if ( $this->tokenizer !== null ) { + $this->tokenizer->setOption( $name, $value ); + } + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function isWordTokenizer() { + return false; + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function tokenize( $string ) { + if ( $this->tokenizer !== null ) { + $string = implode( " ", $this->tokenizer->tokenize( $string ) ); + } + + $result = $this->createNGrams( $string, $this->ngramSize, $this->withMarker ); + + if ( $result !== false ) { + return $result; + } + + return []; + } + + private function createNGrams( $text, $ngramSize, $withMarker ) { + $ngramList = []; + + // Identify the beginning-of-word and end-of-word + if ( $withMarker ) { + $text = '_' . str_replace( ' ', '_', $text ); + } + + $text = mb_strtolower( $text ); + $textLength = mb_strlen( $text, 'UTF-8' ); + + for ( $i = 0; $i < $textLength; ++$i ) { + + // Those failing the length of the ngramSize are skipped + if ( !$withMarker && $i + $ngramSize > $textLength ) { + continue; + } + + $ngram = mb_substr( $text, $i, $ngramSize, 'UTF-8' ); + + // str_pad has issues with utf-8 length + if ( $withMarker && ( $ngl = mb_strlen( $ngram, 'UTF-8' ) ) < $ngramSize ) { + $ngram = $ngram . str_repeat( '_', ( $ngramSize - $ngl ) ); + } + + $ngramList[] = $ngram; + } + + return array_values( $ngramList ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/PunctuationRegExTokenizer.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/PunctuationRegExTokenizer.php new file mode 100644 index 0000000..6ff1bec --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/PunctuationRegExTokenizer.php @@ -0,0 +1,83 @@ +tokenizer = $tokenizer; + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function setOption( $name, $value ) { + if ( $this->tokenizer !== null ) { + $this->tokenizer->setOption( $name, $value ); + } + + if ( $name === self::REGEX_EXEMPTION ) { + $this->patternExemption = $value; + } + } + + /** + * @since 0.1 + * + * {@inheritDoc} + */ + public function isWordTokenizer() { + return $this->tokenizer !== null ? $this->tokenizer->isWordTokenizer() : true; + } + + /** + * @since 0.1 + * + * @param string $string + * + * @return array|false + */ + public function tokenize( $string ) { + if ( $this->tokenizer !== null ) { + $string = implode( " ", $this->tokenizer->tokenize( $string ) ); + } + + $pattern = str_replace( + $this->patternExemption, + '', + '_-・,、;:!?.。…◆★◇□■()【】《》〈〉;:“”"〃'`[]{}「」@*\/&#%`^+<=>|~≪≫─$"_\-・,、;:!?.。()[\]{}「」@*\/&#%`^+<=>|~«»$"\s' + ); + + $result = preg_split( '/[' . $pattern . ']+/u', $string, -1, PREG_SPLIT_NO_EMPTY ); + + if ( $result === false ) { + $result = []; + } + + return $result; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/Tokenizer.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/Tokenizer.php new file mode 100644 index 0000000..ff6c78f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/src/Tokenizer/Tokenizer.php @@ -0,0 +1,46 @@ + "A", "Ă" => "A", "Ắ" => "A", "Ặ" => "A", "Ằ" => "A", "Ẳ" => "A", "Ẵ" => "A", + "Ǎ" => "A", "Â" => "A", "Ấ" => "A", "Ậ" => "A", "Ầ" => "A", "Ẩ" => "A", "Ẫ" => "A", + "Ä" => "AE", "Ǟ" => "A", "Ȧ" => "A", "Ǡ" => "A", "Ạ" => "A", "Ȁ" => "A", "À" => "A", + "Ả" => "A", "Ȃ" => "A", "Ā" => "A", "Ą" => "A", "Å" => "A", "Ǻ" => "A", "Ḁ" => "A", + "Ⱥ" => "A", "Ã" => "A", "Ꜳ" => "AA", "Æ" => "AE", "Ǽ" => "AE", "Ǣ" => "AE", "Ꜵ" => "AO", + "Ꜷ" => "AU", "Ꜹ" => "AV", "Ꜻ" => "AV", "Ꜽ" => "AY", "Ḃ" => "B", "Ḅ" => "B", "Ɓ" => "B", + "Ḇ" => "B", "Ƀ" => "B", "Ƃ" => "B", "Ć" => "C", "Č" => "C", "Ç" => "C", "Ḉ" => "C", + "Ĉ" => "C", "Ċ" => "C", "Ƈ" => "C", "Ȼ" => "C", "Ď" => "D", "Ḑ" => "D", "Ḓ" => "D", + "Ḋ" => "D", "Ḍ" => "D", "Ɗ" => "D", "Ḏ" => "D", "Dz" => "D", "Dž" => "D", "Đ" => "D", + "Ƌ" => "D", "DZ" => "DZ", "DŽ" => "DZ", "É" => "E", "Ĕ" => "E", "Ě" => "E", "Ȩ" => "E", + "Ḝ" => "E", "Ê" => "E", "Ế" => "E", "Ệ" => "E", "Ề" => "E", "Ể" => "E", "Ễ" => "E", + "Ḙ" => "E", "Ë" => "E", "Ė" => "E", "Ẹ" => "E", "Ȅ" => "E", "È" => "E", "Ẻ" => "E", + "Ȇ" => "E", "Ē" => "E", "Ḗ" => "E", "Ḕ" => "E", "Ę" => "E", "Ɇ" => "E", "Ẽ" => "E", + "Ḛ" => "E", "Ꝫ" => "ET", "Ḟ" => "F", "Ƒ" => "F", "Ǵ" => "G", "Ğ" => "G", "Ǧ" => "G", + "Ģ" => "G", "Ĝ" => "G", "Ġ" => "G", "Ɠ" => "G", "Ḡ" => "G", "Ǥ" => "G", "Ḫ" => "H", + "Ȟ" => "H", "Ḩ" => "H", "Ĥ" => "H", "Ⱨ" => "H", "Ḧ" => "H", "Ḣ" => "H", "Ḥ" => "H", + "Ħ" => "H", "Í" => "I", "Ĭ" => "I", "Ǐ" => "I", "Î" => "I", "Ï" => "I", "Ḯ" => "I", + "İ" => "I", "Ị" => "I", "Ȉ" => "I", "Ì" => "I", "Ỉ" => "I", "Ȋ" => "I", "Ī" => "I", + "Į" => "I", "Ɨ" => "I", "Ĩ" => "I", "Ḭ" => "I", "Ꝺ" => "D", "Ꝼ" => "F", "Ᵹ" => "G", + "Ꞃ" => "R", "Ꞅ" => "S", "Ꞇ" => "T", "Ꝭ" => "IS", "Ĵ" => "J", "Ɉ" => "J", "Ḱ" => "K", + "Ǩ" => "K", "Ķ" => "K", "Ⱪ" => "K", "Ꝃ" => "K", "Ḳ" => "K", "Ƙ" => "K", "Ḵ" => "K", + "Ꝁ" => "K", "Ꝅ" => "K", "Ĺ" => "L", "Ƚ" => "L", "Ľ" => "L", "Ļ" => "L", "Ḽ" => "L", + "Ḷ" => "L", "Ḹ" => "L", "Ⱡ" => "L", "Ꝉ" => "L", "Ḻ" => "L", "Ŀ" => "L", "Ɫ" => "L", + "Lj" => "L", "Ł" => "L", "LJ" => "LJ", "Ḿ" => "M", "Ṁ" => "M", "Ṃ" => "M", "Ɱ" => "M", + "Ń" => "N", "Ň" => "N", "Ņ" => "N", "Ṋ" => "N", "Ṅ" => "N", "Ṇ" => "N", "Ǹ" => "N", + "Ɲ" => "N", "Ṉ" => "N", "Ƞ" => "N", "Nj" => "N", "Ñ" => "N", "NJ" => "NJ", "Ó" => "O", + "Ŏ" => "O", "Ǒ" => "O", "Ô" => "O", "Ố" => "O", "Ộ" => "O", "Ồ" => "O", "Ổ" => "O", + "Ỗ" => "O", "Ö" => "OE", "Ȫ" => "O", "Ȯ" => "O", "Ȱ" => "O", "Ọ" => "O", "Ő" => "O", + "Ȍ" => "O", "Ò" => "O", "Ỏ" => "O", "Ơ" => "O", "Ớ" => "O", "Ợ" => "O", "Ờ" => "O", + "Ở" => "O", "Ỡ" => "O", "Ȏ" => "O", "Ꝋ" => "O", "Ꝍ" => "O", "Ō" => "O", "Ṓ" => "O", + "Ṑ" => "O", "Ɵ" => "O", "Ǫ" => "O", "Ǭ" => "O", "Ø" => "O", "Ǿ" => "O", "Õ" => "O", + "Ṍ" => "O", "Ṏ" => "O", "Ȭ" => "O", "Ƣ" => "OI", "Ꝏ" => "OO", "Ɛ" => "E", "Ɔ" => "O", + "Ȣ" => "OU", "Ṕ" => "P", "Ṗ" => "P", "Ꝓ" => "P", "Ƥ" => "P", "Ꝕ" => "P", "Ᵽ" => "P", + "Ꝑ" => "P", "Ꝙ" => "Q", "Ꝗ" => "Q", "Ŕ" => "R", "Ř" => "R", "Ŗ" => "R", "Ṙ" => "R", + "Ṛ" => "R", "Ṝ" => "R", "Ȑ" => "R", "Ȓ" => "R", "Ṟ" => "R", "Ɍ" => "R", "Ɽ" => "R", + "Ꜿ" => "C", "Ǝ" => "E", "Ś" => "S", "Ṥ" => "S", "Š" => "S", "Ṧ" => "S", "Ş" => "S", + "Ŝ" => "S", "Ș" => "S", "Ṡ" => "S", "Ṣ" => "S", "Ṩ" => "S", "ß" => "ss", + "Ť" => "T", "Ţ" => "T", + "Ṱ" => "T", "Ț" => "T", "Ⱦ" => "T", "Ṫ" => "T", "Ṭ" => "T", "Ƭ" => "T", "Ṯ" => "T", + "Ʈ" => "T", "Ŧ" => "T", "Ɐ" => "A", "Ꞁ" => "L", "Ɯ" => "M", "Ʌ" => "V", "Ꜩ" => "TZ", + "Ú" => "U", "Ŭ" => "U", "Ǔ" => "U", "Û" => "U", "Ṷ" => "U", "Ü" => "UE", "Ǘ" => "U", + "Ǚ" => "U", "Ǜ" => "U", "Ǖ" => "U", "Ṳ" => "U", "Ụ" => "U", "Ű" => "U", "Ȕ" => "U", + "Ù" => "U", "Ủ" => "U", "Ư" => "U", "Ứ" => "U", "Ự" => "U", "Ừ" => "U", "Ử" => "U", + "Ữ" => "U", "Ȗ" => "U", "Ū" => "U", "Ṻ" => "U", "Ų" => "U", "Ů" => "U", "Ũ" => "U", + "Ṹ" => "U", "Ṵ" => "U", "Ꝟ" => "V", "Ṿ" => "V", "Ʋ" => "V", "Ṽ" => "V", "Ꝡ" => "VY", + "Ẃ" => "W", "Ŵ" => "W", "Ẅ" => "W", "Ẇ" => "W", "Ẉ" => "W", "Ẁ" => "W", "Ⱳ" => "W", + "Ẍ" => "X", "Ẋ" => "X", "Ý" => "Y", "Ŷ" => "Y", "Ÿ" => "Y", "Ẏ" => "Y", "Ỵ" => "Y", + "Ỳ" => "Y", "Ƴ" => "Y", "Ỷ" => "Y", "Ỿ" => "Y", "Ȳ" => "Y", "Ɏ" => "Y", "Ỹ" => "Y", + "Ź" => "Z", "Ž" => "Z", "Ẑ" => "Z", "Ⱬ" => "Z", "Ż" => "Z", "Ẓ" => "Z", "Ȥ" => "Z", + "Ẕ" => "Z", "Ƶ" => "Z", "IJ" => "IJ", "Œ" => "OE", "ᴀ" => "A", "ᴁ" => "AE", "ʙ" => "B", + "ᴃ" => "B", "ᴄ" => "C", "ᴅ" => "D", "ᴇ" => "E", "ꜰ" => "F", "ɢ" => "G", "ʛ" => "G", + "ʜ" => "H", "ɪ" => "I", "ʁ" => "R", "ᴊ" => "J", "ᴋ" => "K", "ʟ" => "L", "ᴌ" => "L", + "ᴍ" => "M", "ɴ" => "N", "ᴏ" => "O", "ɶ" => "OE", "ᴐ" => "O", "ᴕ" => "OU", "ᴘ" => "P", + "ʀ" => "R", "ᴎ" => "N", "ᴙ" => "R", "ꜱ" => "S", "ᴛ" => "T", "ⱻ" => "E", "ᴚ" => "R", + "ᴜ" => "U", "ᴠ" => "V", "ᴡ" => "W", "ʏ" => "Y", "ᴢ" => "Z", "á" => "a", "ă" => "a", + "ắ" => "a", "ặ" => "a", "ằ" => "a", "ẳ" => "a", "ẵ" => "a", "ǎ" => "a", "â" => "a", + "ấ" => "a", "ậ" => "a", "ầ" => "a", "ẩ" => "a", "ẫ" => "a", "ä" => "ae", "ǟ" => "a", + "ȧ" => "a", "ǡ" => "a", "ạ" => "a", "ȁ" => "a", "à" => "a", "ả" => "a", "ȃ" => "a", + "ā" => "a", "ą" => "a", "ᶏ" => "a", "ẚ" => "a", "å" => "a", "ǻ" => "a", "ḁ" => "a", + "ⱥ" => "a", "ã" => "a", "ꜳ" => "aa", "æ" => "ae", "ǽ" => "ae", "ǣ" => "ae", "ꜵ" => "ao", + "ꜷ" => "au", "ꜹ" => "av", "ꜻ" => "av", "ꜽ" => "ay", "ḃ" => "b", "ḅ" => "b", "ɓ" => "b", + "ḇ" => "b", "ᵬ" => "b", "ᶀ" => "b", "ƀ" => "b", "ƃ" => "b", "ɵ" => "o", "ć" => "c", + "č" => "c", "ç" => "c", "ḉ" => "c", "ĉ" => "c", "ɕ" => "c", "ċ" => "c", "ƈ" => "c", + "ȼ" => "c", "ď" => "d", "ḑ" => "d", "ḓ" => "d", "ȡ" => "d", "ḋ" => "d", "ḍ" => "d", + "ɗ" => "d", "ᶑ" => "d", "ḏ" => "d", "ᵭ" => "d", "ᶁ" => "d", "đ" => "d", "ɖ" => "d", + "ƌ" => "d", "ı" => "i", "ȷ" => "j", "ɟ" => "j", "ʄ" => "j", "dz" => "dz", "dž" => "dz", + "é" => "e", "ĕ" => "e", "ě" => "e", "ȩ" => "e", "ḝ" => "e", "ê" => "e", "ế" => "e", + "ệ" => "e", "ề" => "e", "ể" => "e", "ễ" => "e", "ḙ" => "e", "ë" => "e", "ė" => "e", + "ẹ" => "e", "ȅ" => "e", "è" => "e", "ẻ" => "e", "ȇ" => "e", "ē" => "e", "ḗ" => "e", + "ḕ" => "e", "ⱸ" => "e", "ę" => "e", "ᶒ" => "e", "ɇ" => "e", "ẽ" => "e", "ḛ" => "e", + "ꝫ" => "et", "ḟ" => "f", "ƒ" => "f", "ᵮ" => "f", "ᶂ" => "f", "ǵ" => "g", "ğ" => "g", + "ǧ" => "g", "ģ" => "g", "ĝ" => "g", "ġ" => "g", "ɠ" => "g", "ḡ" => "g", "ᶃ" => "g", + "ǥ" => "g", "ḫ" => "h", "ȟ" => "h", "ḩ" => "h", "ĥ" => "h", "ⱨ" => "h", "ḧ" => "h", + "ḣ" => "h", "ḥ" => "h", "ɦ" => "h", "ẖ" => "h", "ħ" => "h", "ƕ" => "hv", "í" => "i", + "ĭ" => "i", "ǐ" => "i", "î" => "i", "ï" => "i", "ḯ" => "i", "ị" => "i", "ȉ" => "i", + "ì" => "i", "ỉ" => "i", "ȋ" => "i", "ī" => "i", "į" => "i", "ᶖ" => "i", "ɨ" => "i", + "ĩ" => "i", "ḭ" => "i", "ꝺ" => "d", "ꝼ" => "f", "ᵹ" => "g", "ꞃ" => "r", "ꞅ" => "s", + "ꞇ" => "t", "ꝭ" => "is", "ǰ" => "j", "ĵ" => "j", "ʝ" => "j", "ɉ" => "j", "ḱ" => "k", + "ǩ" => "k", "ķ" => "k", "ⱪ" => "k", "ꝃ" => "k", "ḳ" => "k", "ƙ" => "k", "ḵ" => "k", + "ᶄ" => "k", "ꝁ" => "k", "ꝅ" => "k", "ĺ" => "l", "ƚ" => "l", "ɬ" => "l", "ľ" => "l", + "ļ" => "l", "ḽ" => "l", "ȴ" => "l", "ḷ" => "l", "ḹ" => "l", "ⱡ" => "l", "ꝉ" => "l", + "ḻ" => "l", "ŀ" => "l", "ɫ" => "l", "ᶅ" => "l", "ɭ" => "l", "ł" => "l", "lj" => "lj", + "ſ" => "s", "ẜ" => "s", "ẛ" => "s", "ẝ" => "s", "ḿ" => "m", "ṁ" => "m", "ṃ" => "m", + "ɱ" => "m", "ᵯ" => "m", "ᶆ" => "m", "ń" => "n", "ň" => "n", "ņ" => "n", "ṋ" => "n", + "ȵ" => "n", "ṅ" => "n", "ṇ" => "n", "ǹ" => "n", "ɲ" => "n", "ṉ" => "n", "ƞ" => "n", + "ᵰ" => "n", "ᶇ" => "n", "ɳ" => "n", "ñ" => "n", "nj" => "nj", "ó" => "o", "ŏ" => "o", + "ǒ" => "o", "ô" => "o", "ố" => "o", "ộ" => "o", "ồ" => "o", "ổ" => "o", "ỗ" => "o", + "ö" => "oe", "ȫ" => "o", "ȯ" => "o", "ȱ" => "o", "ọ" => "o", "ő" => "o", "ȍ" => "o", + "ò" => "o", "ỏ" => "o", "ơ" => "o", "ớ" => "o", "ợ" => "o", "ờ" => "o", "ở" => "o", + "ỡ" => "o", "ȏ" => "o", "ꝋ" => "o", "ꝍ" => "o", "ⱺ" => "o", "ō" => "o", "ṓ" => "o", + "ṑ" => "o", "ǫ" => "o", "ǭ" => "o", "ø" => "o", "ǿ" => "o", "õ" => "o", "ṍ" => "o", + "ṏ" => "o", "ȭ" => "o", "ƣ" => "oi", "ꝏ" => "oo", "ɛ" => "e", "ᶓ" => "e", "ɔ" => "o", + "ᶗ" => "o", "ȣ" => "ou", "ṕ" => "p", "ṗ" => "p", "ꝓ" => "p", "ƥ" => "p", "ᵱ" => "p", + "ᶈ" => "p", "ꝕ" => "p", "ᵽ" => "p", "ꝑ" => "p", "ꝙ" => "q", "ʠ" => "q", "ɋ" => "q", + "ꝗ" => "q", "ŕ" => "r", "ř" => "r", "ŗ" => "r", "ṙ" => "r", "ṛ" => "r", "ṝ" => "r", + "ȑ" => "r", "ɾ" => "r", "ᵳ" => "r", "ȓ" => "r", "ṟ" => "r", "ɼ" => "r", "ᵲ" => "r", + "ᶉ" => "r", "ɍ" => "r", "ɽ" => "r", "ↄ" => "c", "ꜿ" => "c", "ɘ" => "e", "ɿ" => "r", + "ś" => "s", "ṥ" => "s", "š" => "s", "ṧ" => "s", "ş" => "s", "ŝ" => "s", "ș" => "s", + "ṡ" => "s", "ṣ" => "s", "ṩ" => "s", "ʂ" => "s", "ᵴ" => "s", "ᶊ" => "s", "ȿ" => "s", + "ɡ" => "g", "ᴑ" => "o", "ᴓ" => "o", "ᴝ" => "u", "ť" => "t", "ţ" => "t", "ṱ" => "t", + "ț" => "t", "ȶ" => "t", "ẗ" => "t", "ⱦ" => "t", "ṫ" => "t", "ṭ" => "t", "ƭ" => "t", + "ṯ" => "t", "ᵵ" => "t", "ƫ" => "t", "ʈ" => "t", "ŧ" => "t", "ᵺ" => "th", "ɐ" => "a", + "ᴂ" => "ae", "ǝ" => "e", "ᵷ" => "g", "ɥ" => "h", "ʮ" => "h", "ʯ" => "h", "ᴉ" => "i", + "ʞ" => "k", "ꞁ" => "l", "ɯ" => "m", "ɰ" => "m", "ᴔ" => "oe", "ɹ" => "r", "ɻ" => "r", + "ɺ" => "r", "ⱹ" => "r", "ʇ" => "t", "ʌ" => "v", "ʍ" => "w", "ʎ" => "y", "ꜩ" => "tz", + "ú" => "u", "ŭ" => "u", "ǔ" => "u", "û" => "u", "ṷ" => "u", "ü" => "ue", "ǘ" => "u", + "ǚ" => "u", "ǜ" => "u", "ǖ" => "u", "ṳ" => "u", "ụ" => "u", "ű" => "u", "ȕ" => "u", + "ù" => "u", "ủ" => "u", "ư" => "u", "ứ" => "u", "ự" => "u", "ừ" => "u", "ử" => "u", + "ữ" => "u", "ȗ" => "u", "ū" => "u", "ṻ" => "u", "ų" => "u", "ᶙ" => "u", "ů" => "u", + "ũ" => "u", "ṹ" => "u", "ṵ" => "u", "ᵫ" => "ue", "ꝸ" => "um", "ⱴ" => "v", "ꝟ" => "v", + "ṿ" => "v", "ʋ" => "v", "ᶌ" => "v", "ⱱ" => "v", "ṽ" => "v", "ꝡ" => "vy", "ẃ" => "w", + "ŵ" => "w", "ẅ" => "w", "ẇ" => "w", "ẉ" => "w", "ẁ" => "w", "ⱳ" => "w", "ẘ" => "w", + "ẍ" => "x", "ẋ" => "x", "ᶍ" => "x", "ý" => "y", "ŷ" => "y", "ÿ" => "y", "ẏ" => "y", + "ỵ" => "y", "ỳ" => "y", "ƴ" => "y", "ỷ" => "y", "ỿ" => "y", "ȳ" => "y", "ẙ" => "y", + "ɏ" => "y", "ỹ" => "y", "ź" => "z", "ž" => "z", "ẑ" => "z", "ʑ" => "z", "ⱬ" => "z", + "ż" => "z", "ẓ" => "z", "ȥ" => "z", "ẕ" => "z", "ᵶ" => "z", "ᶎ" => "z", "ʐ" => "z", + "ƶ" => "z", "ɀ" => "z", "ff" => "ff", "ffi" => "ffi", "ffl" => "ffl", "fi" => "fi", + "fl" => "fl", "ij" => "ij", "œ" => "oe", "st" => "st", "ₐ" => "a", "ₑ" => "e", "ᵢ" => "i", + "ⱼ" => "j", "ₒ" => "o", "ᵣ" => "r", "ᵤ" => "u", "ᵥ" => "v", "ₓ" => "x" + ]; + + /** + * @see http://en.wikipedia.org/wiki/ISO_843 + * @see https://en.wikipedia.org/wiki/Romanization_of_Greek + * + * Resolving diacritic letters can be done using it with option ( + * Transliterator::DIACRITICS | Transliterator::GREEK ) + * + * @var array + */ + private static $greekMap = [ + + "ου" => "ou", + "Ου" => "Ou", + "Οι" => "Oi", + "οι" => "oi", + "Υι" => "Yi", + "υι" => "yi", + "Ού" => "Oú", + "ού" => "oú", + + "Α" => "A", + "Ά" => "Á", + "Β" => "V", + "Γ" => "G", + "Δ" => "D", + "Ε" => "E", + "Έ" => "É", + "Ζ" => "Z", + "Η" => "Ī", + "Ή" => "Ī́", + "Θ" => "Th", + "Ι" => "I", + "Ί" => "Í", + "Ϊ" => "Ï", + "ΐ" => "ḯ", + "Κ" => "K", + "Λ" => "L", + "Μ" => "M", + "Ν" => "N", + "Ξ" => "X", + "Ο" => "O", + "Ό" => "Ó", + "Π" => "P", + "Ρ" => "R", + "Σ" => "S", + "ς" => "s", + "Τ" => "T", + "Υ" => "Y", + "Ύ" => "Ý", + "Ϋ" => "Ÿ", + "ΰ" => "ÿ́", + "Φ" => "F", + "Χ" => "Ch", + "Ψ" => "Ps", + "Ω" => "Ō", + "Ώ" => "Ṓ", + "α" => "a", + "ά" => "á", + "β" => "v", + "γ" => "g", + "δ" => "d", + "ε" => "e", + "έ" => "é", + "ζ" => "z", + "η" => "ī", + "ή" => "ī́", + "θ" => "th", + "ι" => "i", + "ί" => "í", + "ϊ" => "ï", + "κ" => "k", + "λ" => "l", + "μ" => "m", + "ν" => "n", + "ξ" => "x", + "ο" => "o", + "ό" => "ó", + "π" => "p", + "ρ" => "r", + "σ" => "s", + "τ" => "t", + "υ" => "y", + "ύ" => "ý", + "ϋ" => "ÿ", + "φ" => "f", + "χ" => "ch", + "ψ" => "ps", + "ω" => "ō", + "ώ" => "ṓ", + ]; + + /** + * @var array + */ + private static $transliterationMap = []; + + /** + * @since 0.1 + * + * @param string $string + * @param int $flag + * + * @return string + */ + public static function transliterate( $string, $flag = self::DIACRITICS ) { + $flag = (int)$flag; + + if ( $flag === ( $flag | self::NONE ) ) { + return $string; + } + + if ( !isset( self::$transliterationMap[$flag] ) ) { + $transliterationMap = []; + + if ( $flag === ( $flag | self::GREEK ) ) { + $transliterationMap += self::$greekMap; + } + + if ( $flag === ( $flag | self::DIACRITICS ) ) { + $transliterationMap += self::$diacriticsMap; + } + + // Keep it static for the duration of a request to avoid negative + // performance impact + self::$transliterationMap[$flag]['k'] = array_keys( $transliterationMap ); + self::$transliterationMap[$flag]['v'] = array_values( $transliterationMap ); + + unset( $transliterationMap ); + } + + return str_replace( + self::$transliterationMap[$flag]['k'], + self::$transliterationMap[$flag]['v'], + $string + ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/bootstrap.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/bootstrap.php new file mode 100644 index 0000000..c3a0d78 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/bootstrap.php @@ -0,0 +1,15 @@ +newNGramTokenizer( + $sanitizerFactory->newGenericRegExTokenizer() + ); + + $tokenizer->withMarker( true ); + $tokenizer->setNgramSize( $ngramSize ); + + $tokens = $tokenizer->tokenize( $text ); + + $this->assertEquals( + $expected, + $tokens + ); + } + + public function textProvider() { + // https://en.wikipedia.org/wiki/Stop_words + $provider[] = [ + 'en', + '2', + // + 'In computing, stop words are words which are filtered ...', + // + [ + 0 => '_i', + 1 => 'in', + 2 => 'n_', + 3 => '_c', + 4 => 'co', + 5 => 'om', + 6 => 'mp', + 7 => 'pu', + 8 => 'ut', + 9 => 'ti', + 10 => 'in', + 11 => 'ng', + 12 => 'g_', + 13 => '_s', + 14 => 'st', + 15 => 'to', + 16 => 'op', + 17 => 'p_', + 18 => '_w', + 19 => 'wo', + 20 => 'or', + 21 => 'rd', + 22 => 'ds', + 23 => 's_', + 24 => '_a', + 25 => 'ar', + 26 => 're', + 27 => 'e_', + 28 => '_w', + 29 => 'wo', + 30 => 'or', + 31 => 'rd', + 32 => 'ds', + 33 => 's_', + 34 => '_w', + 35 => 'wh', + 36 => 'hi', + 37 => 'ic', + 38 => 'ch', + 39 => 'h_', + 40 => '_a', + 41 => 'ar', + 42 => 're', + 43 => 'e_', + 44 => '_f', + 45 => 'fi', + 46 => 'il', + 47 => 'lt', + 48 => 'te', + 49 => 'er', + 50 => 're', + 51 => 'ed', + 52 => 'd_', + ] + ]; + + return $provider; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Integration/CombinedSanitizerTextStopwordTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Integration/CombinedSanitizerTextStopwordTest.php new file mode 100644 index 0000000..b4d0005 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Integration/CombinedSanitizerTextStopwordTest.php @@ -0,0 +1,101 @@ +newSanitizer( $text ); + $sanitizer->toLowercase(); + + $text = $sanitizer->sanitizeWith( + $sanitizerFactory->newGenericRegExTokenizer(), + $sanitizerFactory->newCdbStopwordAnalyzer( $languageCode ), + $sanitizerFactory->newNullSynonymizer() + ); + + $this->assertEquals( + $expected, + $text + ); + } + + public function textByLanguageProvider() { + // https://en.wikipedia.org/wiki/Stop_words + $provider[] = [ + 'en', + // + 'In computing, stop words are words which are filtered out before or after processing of ' . + 'natural language data (text).[1] Though stop words usually refer to the most common words ' . + 'in a language, there is no single universal list of stop words used by all natural language ' . + 'processing tools, and indeed not all tools even use such a list. Some tools specifically avoid ' . + 'removing these stop words to support phrase search.', + // + 'computing stop words filtered processing natural language data text stop words refer common ' . + 'words language single universal list stop words natural language processing tools list tools ' . + 'specifically avoid removing stop words support phrase search' + ]; + + // https://es.wikipedia.org/wiki/Palabra_vac%C3%ADa + $provider[] = [ + 'es', + // + 'Palabras vacías es el nombre que reciben las palabras sin significado como artículos, pronombres, ' . + 'preposiciones, etc. que son filtradas antes o después del procesamiento de datos en lenguaje natural ' . + '(texto). A Hans Peter Luhn, uno de los pioneros en recuperación de información, se le atribuye la ' . + 'acuñación de la locución inglesa stop words y el uso del concepto en su diseño. Está controlada por ' . + 'introducción humana y no automática.', + // + 'palabras vacías nombre que reciben palabras significado artículos pronombres preposiciones etc que ' . + 'son filtradas después del procesamiento datos lenguaje natural texto hans peter luhn pioneros ' . + 'recuperación información atribuye acuñación locución inglesa stop words del concepto diseño está ' . + 'controlada introducción humana automática' + ]; + + // https://de.wikipedia.org/wiki/Stoppwort + $provider[] = [ + 'de', + // + 'Stoppwörter nennt man im Information Retrieval Wörter, die bei einer Volltextindexierung nicht beachtet ' . + 'werden, da sie sehr häufig auftreten und gewöhnlich keine Relevanz für die Erfassung des Dokumentinhalts ' . + 'besitzen.', + // + 'stoppwörter nennt information retrieval wörter volltextindexierung beachtet häufig auftreten gewöhnlich ' . + 'relevanz erfassung dokumentinhalts besitzen' + ]; + + // https://en.wikipedia.org/wiki/Query_expansion + $provider[] = [ + 'en', + // + "The goal of query expansion in this regard is by increasing recall, precision can potentially increase " . + "(rather than decrease as mathematically equated), by including in the result set pages which are more " . + "relevant (of higher quality), or at least equally relevant. Pages which would not be included in the " . + "result set, which have the potential to be more relevant to the user's desired query, are included, and " . + "without query expansion would not have, regardless of relevance.", + // + "goal query expansion regard increasing recall precision potentially increase decrease mathematically " . + "equated including result set pages relevant quality equally relevant pages included result set potential " . + "relevant user desired query included query expansion relevance" + ]; + + return $provider; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Integration/JaTokenizerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Integration/JaTokenizerTest.php new file mode 100644 index 0000000..61cda4f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Integration/JaTokenizerTest.php @@ -0,0 +1,115 @@ +newIcuWordBoundaryTokenizer( + $sanitizerFactory->newGenericRegExTokenizer() + ); + + if ( !$tokenier->isAvailable() ) { + $this->markTestSkipped( 'ICU extension is not available.' ); + } + + $this->assertEquals( + $expected, + $tokenier->tokenize( $text ) + ); + } + + /** + * @dataProvider tinyTextProvider + */ + public function testJaTinySegmenterTokenizer( $text, $expected ) { + $sanitizerFactory = new SanitizerFactory(); + + $tokenier = $sanitizerFactory->newJaTinySegmenterTokenizer( + $sanitizerFactory->newPunctuationRegExTokenizer() + ); + + $this->assertEquals( + $expected, + $tokenier->tokenize( $text ) + ); + } + + public function icuTextProvider() { + // https://github.com/NaturalNode/natural/blob/master/spec/tokenizer_ja_spec.js + + $provider[] = [ + "計算機科学における字句解析 (じくかいせき、英: Lexical Analysis) とは、ソースコードを構成する文字の並びを、トークン (token) の並びに変換することをいう。\n" . + "ここでいう「トークン」とは、意味を持つコードの最小単位のこと。字句解析を行うプログラムは、字句解析器 (lexical analyzer, 略称:lexer) と呼ばれる。\n" . + "字句解析器はスキャナ (scanner) とトークナイザ (tokenizer) から構成される。\n", + // + [ + '計算機', '科学', 'における', '字句', '解析', 'じ', 'く', 'かい', + 'せき', '、', '英', 'Lexical', 'Analysis', 'と', 'は', '、', 'ソース', 'コード', 'を', + '構成', 'する', '文字', 'の', '並び', 'を', '、', 'トーク', + 'ン', 'token', 'の', '並びに', '変換', 'する', 'こと', 'を', + 'いう', '。', 'ここ', 'で', 'いう', '「', 'トーク', 'ン', + '」', 'と', 'は', '、', '意味', 'を', '持つ', 'コード', + 'の', '最小', '単位', 'の', 'こと', '。', '字句', '解析', + 'を', '行う', 'プログラム', 'は', '、', '字句', '解析', '器', + 'lexical', 'analyzer', '略称', ':', + 'lexer', 'と', '呼ばれる', '。', '字句', '解析', '器', 'は', + 'スキャナ', 'scanner', 'と', 'トーク', 'ナ', 'イザ', 'tokenizer', 'から', + '構成', 'さ', 'れる', '。' + ] + ]; + + return $provider; + } + + public function tinyTextProvider() { + // https://github.com/NaturalNode/natural/blob/master/spec/tokenizer_ja_spec.js + /* + ['計算', '機科', '学', 'に', 'おける', '字句', '解析', + 'じくかい', 'せき', '英', 'Lexical', 'Analysis', 'と', 'は', 'ソースコード', + 'を', '構成', 'する', '文字', 'の', '並び', 'を', 'トークン', 'token', 'の', + '並び', 'に', '変換', 'する', 'こと', 'を', 'いう', 'ここ', 'でいう', 'トークン', + 'と', 'は', '意味', 'を', '持つ', 'コード', 'の', '最小', '単位', 'の', 'こと', + '字句', '解析', 'を', '行う', 'プログラム', 'は', '字句', '解析', '器', 'lexical', + 'analyzer', '略称', 'lexer', 'と', '呼ば', 'れる', '字句', '解析', '器', 'は', + 'スキャナ', 'scanner', 'と', 'トークナイザ', 'tokenizer', 'から', '構成', 'さ', + 'れる'] + */ + + $provider[] = [ + "計算機科学における字句解析 (じくかいせき、英: Lexical Analysis) とは、ソースコードを構成する文字の並びを、トークン (token) の並びに変換することをいう。\n" . + "ここでいう「トークン」とは、意味を持つコードの最小単位のこと。字句解析を行うプログラムは、字句解析器 (lexical analyzer, 略称:lexer) と呼ばれる。\n" . + "字句解析器はスキャナ (scanner) とトークナイザ (tokenizer) から構成される。\n", + // + [ + '計算', '機科', '学', 'に', 'おける', '字句', '解析', 'じくかい', 'せき', '英', + 'Lexical', 'Analysis', 'と', 'は', 'ソースコード', 'を', '構成', 'する', + '文字', 'の', '並び', 'を', 'トークン', 'token', 'の', '並び', 'に', '変換', + 'する', 'こと', 'をいう', 'ここ', 'でいう', 'トークン', 'と', 'は', '意味', 'を', + '持つ', 'コード', 'の', '最小', '単位', 'の', 'こと', '字句', '解析', 'を', + '行う', 'プログラム', 'は', '字句', '解析', '器', 'lexical', 'analyzer', + '略称', 'lexer', 'と', '呼ば', 'れる', '字句', '解析', '器', 'は', 'スキャナ', 'scanner', + 'と', 'トークナイザ', 'tokenizer', 'から', '構成', 'さ', 'れる', + ] + ]; + + return $provider; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/CharacterExaminerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/CharacterExaminerTest.php new file mode 100644 index 0000000..cee812a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/CharacterExaminerTest.php @@ -0,0 +1,73 @@ +assertTrue( + CharacterExaminer::contains( CharacterExaminer::HANGUL, '한국어 텍스트의 예' ) + ); + + $this->assertFalse( + CharacterExaminer::contains( CharacterExaminer::HAN, '한국어 텍스트의 예' ) + ); + } + + public function testToContainJapaneseCharacters() { + $this->assertTrue( + CharacterExaminer::contains( CharacterExaminer::LATIN, '脳のIQテスト' ) + ); + + $this->assertTrue( + CharacterExaminer::contains( CharacterExaminer::HIRAGANA_KATAKANA, '脳のIQテスト' ) + ); + + $this->assertTrue( + CharacterExaminer::contains( CharacterExaminer::HAN, '脳のIQテスト' ) + ); + } + + public function testToContainChineseCharacters() { + $this->assertFalse( + CharacterExaminer::contains( CharacterExaminer::LATIN, '才可以过关' ) + ); + + $this->assertTrue( + CharacterExaminer::contains( CharacterExaminer::CJK_UNIFIED, '才可以过关' ) + ); + + $this->assertTrue( + CharacterExaminer::contains( CharacterExaminer::HAN, '才可以过关' ) + ); + } + + public function testToContainCyrillic() { + $this->assertFalse( + CharacterExaminer::contains( CharacterExaminer::LATIN, 'Привет' ) + ); + + $this->assertTrue( + CharacterExaminer::contains( CharacterExaminer::CYRILLIC, 'Привет' ) + ); + } + + public function testToContainUnknownCharacters() { + $this->assertFalse( + CharacterExaminer::contains( 'Foo', '鿩' ) + ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/LanguageDetector/NullLanguageDetectorTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/LanguageDetector/NullLanguageDetectorTest.php new file mode 100644 index 0000000..2fc40bc --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/LanguageDetector/NullLanguageDetectorTest.php @@ -0,0 +1,34 @@ +assertInstanceOf( + '\Onoi\Tesa\LanguageDetector\NullLanguageDetector', + new NullLanguageDetector() + ); + } + + public function testIsStopWord() { + $instance = new NullLanguageDetector(); + + $this->assertNull( + $instance->detect( 'Foo' ) + ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/LanguageDetector/TextCatLanguageDetectorTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/LanguageDetector/TextCatLanguageDetectorTest.php new file mode 100644 index 0000000..4f8cb63 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/LanguageDetector/TextCatLanguageDetectorTest.php @@ -0,0 +1,48 @@ +assertInstanceOf( + '\Onoi\Tesa\LanguageDetector\TextCatLanguageDetector', + new TextCatLanguageDetector() + ); + } + + public function testDetectOnMock() { + $languageCandidates = [ 'en', 'de', 'fr', 'es', 'ja', 'zh' ]; + + $textCat = $this->getMockBuilder( '\TextCat' ) + ->disableOriginalConstructor() + ->getMock(); + + $textCat->expects( $this->once() ) + ->method( 'classify' ) + ->with( + 'Foo', + $languageCandidates ) + ->willReturn( [] ); + + $instance = new TextCatLanguageDetector( $textCat ); + $instance->setLanguageCandidates( + $languageCandidates + ); + + $instance->detect( 'Foo' ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/NormalizerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/NormalizerTest.php new file mode 100644 index 0000000..bc86006 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/NormalizerTest.php @@ -0,0 +1,72 @@ +assertEquals( + 'AAAAAEAaaaaaeaOOOOOOEOoooooeoEEEEeeeeðCcÐIIIIiiiiUUUUEuuuueNnSsYyyZz', + Normalizer::applyTransliteration( 'ÀÁÂÃÄÅàáâãäåÒÓÔÕÕÖØòóôõöøÈÉÊËèéêëðÇçÐÌÍÎÏìíîïÙÚÛÜùúûüÑñŠšŸÿýŽž' ) + ); + } + + public function testConvertDoubleWidth() { + $this->assertSame( + '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz', + Normalizer::convertDoubleWidth( '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' ) + ); + } + + public function testReduceLengthTo() { + $this->assertEquals( + 'ABC', + Normalizer::reduceLengthTo( 'ABCDEF', 3 ) + ); + + $this->assertEquals( + 'ABCDEF', + Normalizer::reduceLengthTo( 'ABCDEF' ) + ); + + $this->assertEquals( + 'ABCD', + Normalizer::reduceLengthTo( 'ABCD EF', 4 ) + ); + + $this->assertEquals( + 'ABC', + Normalizer::reduceLengthTo( 'ABC D EF', 4 ) + ); + + $this->assertEquals( + 'ABCD', + Normalizer::reduceLengthTo( 'ABCD EF', 5 ) + ); + + $this->assertEquals( + 'abc def gh', + Normalizer::reduceLengthTo( 'abc def gh in 123', 12 ) + ); + } + + public function testToLowercase() { + $this->assertEquals( + 'abcdef', + Normalizer::toLowercase( 'ABCDEF' ) + ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/SanitizerFactoryTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/SanitizerFactoryTest.php new file mode 100644 index 0000000..7a30a72 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/SanitizerFactoryTest.php @@ -0,0 +1,176 @@ +sanitizerFactory = new SanitizerFactory(); + } + + public function testCanConstructSanitizer() { + $this->assertInstanceOf( + '\Onoi\Tesa\Sanitizer', + $this->sanitizerFactory->newSanitizer() + ); + } + + /* StopwordAnalyzer */ + + public function testCanConstructStopwordAnalyzerByNullLanguage() { + $this->assertInstanceOf( + '\Onoi\Tesa\StopwordAnalyzer\StopwordAnalyzer', + $this->sanitizerFactory->newStopwordAnalyzerByLanguage( null ) + ); + } + + public function testCanConstructStopwordAnalyzerByEnLanguage() { + $this->assertInstanceOf( + '\Onoi\Tesa\StopwordAnalyzer\CdbStopwordAnalyzer', + $this->sanitizerFactory->newStopwordAnalyzerByLanguage( 'EN' ) + ); + } + + public function testCanConstructCdbStopwordAnalyzer() { + $this->assertInstanceOf( + '\Onoi\Tesa\StopwordAnalyzer\CdbStopwordAnalyzer', + $this->sanitizerFactory->newCdbStopwordAnalyzer() + ); + } + + public function testCanConstructArrayStopwordAnalyzer() { + $this->assertInstanceOf( + '\Onoi\Tesa\StopwordAnalyzer\ArrayStopwordAnalyzer', + $this->sanitizerFactory->newArrayStopwordAnalyzer() + ); + } + + public function testCanConstructNullStopwordAnalyzer() { + $this->assertInstanceOf( + '\Onoi\Tesa\StopwordAnalyzer\NullStopwordAnalyzer', + $this->sanitizerFactory->newNullStopwordAnalyzer() + ); + } + + /* Synonymizer */ + + public function testCanConstructSynonymizerByLanguage() { + $this->assertInstanceOf( + '\Onoi\Tesa\Synonymizer\Synonymizer', + $this->sanitizerFactory->newSynonymizerByLanguage() + ); + } + + public function testCanConstructNullSynonymizer() { + $this->assertInstanceOf( + '\Onoi\Tesa\Synonymizer\NullSynonymizer', + $this->sanitizerFactory->newNullSynonymizer() + ); + } + + /* LanguageDetector */ + + public function testCanConstructNullLanguageDetector() { + $this->assertInstanceOf( + '\Onoi\Tesa\LanguageDetector\NullLanguageDetector', + $this->sanitizerFactory->newNullLanguageDetector() + ); + } + + public function testCanConstructTextCatLanguageDetector() { + $this->assertInstanceOf( + '\Onoi\Tesa\LanguageDetector\TextCatLanguageDetector', + $this->sanitizerFactory->newTextCatLanguageDetector() + ); + } + + /* Tokenizer */ + + public function testCanConstructPreferredTokenizerByLanguage() { + $this->assertInstanceOf( + '\Onoi\Tesa\Tokenizer\Tokenizer', + $this->sanitizerFactory->newPreferredTokenizerByLanguage( 'テスト' ) + ); + + $this->assertInstanceOf( + '\Onoi\Tesa\Tokenizer\Tokenizer', + $this->sanitizerFactory->newPreferredTokenizerByLanguage( '在延安更名为新' ) + ); + } + + public function testCanConstructnewCJKMatchableTokenizer() { + $this->assertInstanceOf( + '\Onoi\Tesa\Tokenizer\Tokenizer', + $this->sanitizerFactory->newCJKMatchableTokenizer( 'テスト' ) + ); + + $this->assertInstanceOf( + '\Onoi\Tesa\Tokenizer\Tokenizer', + $this->sanitizerFactory->newCJKMatchableTokenizer( '在延安更名为新' ) + ); + } + + public function testCanConstructIcuWordBoundaryTokenizer() { + $this->assertInstanceOf( + '\Onoi\Tesa\Tokenizer\IcuWordBoundaryTokenizer', + $this->sanitizerFactory->newIcuWordBoundaryTokenizer() + ); + } + + public function testCanConstructGenericRegExTokenizer() { + $this->assertInstanceOf( + '\Onoi\Tesa\Tokenizer\GenericRegExTokenizer', + $this->sanitizerFactory->newGenericRegExTokenizer() + ); + } + + public function testCanConstructPunctuationRegExTokenizer() { + $this->assertInstanceOf( + '\Onoi\Tesa\Tokenizer\PunctuationRegExTokenizer', + $this->sanitizerFactory->newPunctuationRegExTokenizer() + ); + } + + public function testCanConstructJaCompoundGroupTokenizer() { + $this->assertInstanceOf( + '\Onoi\Tesa\Tokenizer\JaCompoundGroupTokenizer', + $this->sanitizerFactory->newJaCompoundGroupTokenizer() + ); + } + + public function testCanConstructJaTinySegmenterTokenizer() { + $this->assertInstanceOf( + '\Onoi\Tesa\Tokenizer\JaTinySegmenterTokenizer', + $this->sanitizerFactory->newJaTinySegmenterTokenizer() + ); + } + + public function testCanConstructCJKSimpleCharacterRegExTokenizer() { + $this->assertInstanceOf( + '\Onoi\Tesa\Tokenizer\CJKSimpleCharacterRegExTokenizer', + $this->sanitizerFactory->newCJKSimpleCharacterRegExTokenizer() + ); + } + + public function testCanConstructNGramTokenizer() { + $this->assertInstanceOf( + '\Onoi\Tesa\Tokenizer\NGramTokenizer', + $this->sanitizerFactory->newNGramTokenizer() + ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/SanitizerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/SanitizerTest.php new file mode 100644 index 0000000..a0932fb --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/SanitizerTest.php @@ -0,0 +1,208 @@ +sanitizerFactory = new SanitizerFactory(); + } + + public function testTransliteration() { + $instance = new Sanitizer( 'ÀÁÂÃÄÅàáâãäåÒÓÔÕÕÖØòóôõöøÈÉÊËèéêëðÇçÐÌÍÎÏìíîïÙÚÛÜùúûüÑñŠšŸÿýŽž' ); + $instance->applyTransliteration(); + + $this->assertEquals( + 'AAAAAEAaaaaaeaOOOOOOEOoooooeoEEEEeeeeðCcÐIIIIiiiiUUUUEuuuueNnSsYyyZz', + $instance + ); + } + + public function testToLowercase() { + $instance = new Sanitizer( 'ÀÁÂÃÄÅ ABC 텍스트의 テスト часто הוא פשוט' ); + $instance->toLowercase(); + + $this->assertEquals( + 'àáâãäå abc 텍스트의 テスト часто הוא פשוט', + $instance + ); + } + + public function testReduceLengthTo() { + $instance = new Sanitizer( 'ABCDEF' ); + $instance->reduceLengthTo( 3 ); + + $this->assertEquals( + 3, + mb_strlen( $instance ) + ); + + $instance->reduceLengthTo( 10 ); + + $this->assertEquals( + 3, + mb_strlen( $instance ) + ); + } + + public function testReduceLengthToNearestWholeWordForLatinString() { + $instance = new Sanitizer( 'abc def gh in 123' ); + $instance->reduceLengthTo( 12 ); + + $this->assertEquals( + 10, + mb_strlen( $instance ) + ); + + $this->assertEquals( + 'abc def gh', + $instance + ); + } + + public function testReduceLengthToNearestWholeWordForNonLatinString() { + $instance = new Sanitizer( '一 二 三' ); + $instance->reduceLengthTo( 3 ); + + $this->assertEquals( + 3, + mb_strlen( $instance ) + ); + + $this->assertEquals( + '一 二', + $instance + ); + } + + public function testReplace() { + $instance = new Sanitizer( 'テスト' ); + $instance->replace( [ 'テスト' ], [ 'Test' ] ); + + $this->assertEquals( + 'Test', + $instance + ); + } + + public function testSanitizeWithSimpleStopwordList() { + $text = 'Foo bar foobar'; + + $tokenizer = $this->getMockBuilder( '\Onoi\Tesa\Tokenizer\Tokenizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $tokenizer->expects( $this->once() ) + ->method( 'tokenize' ) + ->with( $text ) + ->willReturn( [ 'Foo', 'bar', 'foobar' ] ); + + $synonymizer = $this->getMockBuilder( '\Onoi\Tesa\Synonymizer\Synonymizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $synonymizer->expects( $this->any() ) + ->method( 'synonymize' ) + ->willReturnArgument( 0 ); + + $instance = new Sanitizer( $text ); + + $stopwordAnalyzer = $this->sanitizerFactory->newArrayStopwordAnalyzer( + [ 'bar' ] + ); + + $this->assertEquals( + 'Foo foobar', + $instance->sanitizeWith( $tokenizer, $stopwordAnalyzer, $synonymizer ) + ); + } + + public function testSanitizeByStopwordsToIncludeExemptionWithMinLengthRestriction() { + $text = 'Foo bar foobar'; + + $tokenizer = $this->getMockBuilder( '\Onoi\Tesa\Tokenizer\Tokenizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $tokenizer->expects( $this->once() ) + ->method( 'isWordTokenizer' ) + ->willReturn( true ); + + $tokenizer->expects( $this->once() ) + ->method( 'tokenize' ) + ->with( $text ) + ->willReturn( [ 'Foo', 'bar', 'foobar' ] ); + + $synonymizer = $this->getMockBuilder( '\Onoi\Tesa\Synonymizer\Synonymizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $synonymizer->expects( $this->any() ) + ->method( 'synonymize' ) + ->willReturnArgument( 0 ); + + $instance = new Sanitizer( $text ); + + $stopwordAnalyzer = $this->sanitizerFactory->newArrayStopwordAnalyzer( + [ 'bar' ] + ); + + $instance->setOption( Sanitizer::MIN_LENGTH, 4 ); + $instance->setOption( Sanitizer::WHITELIST, [ 'bar' ] ); + + $this->assertEquals( + 'bar foobar', + $instance->sanitizeWith( $tokenizer, $stopwordAnalyzer, $synonymizer ) + ); + } + + public function testTrySanitizeByStopwordsWithProximityCheck() { + $text = 'foo foo テスト テスト'; + + $tokenizer = $this->getMockBuilder( '\Onoi\Tesa\Tokenizer\Tokenizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $tokenizer->expects( $this->once() ) + ->method( 'isWordTokenizer' ) + ->willReturn( true ); + + $tokenizer->expects( $this->once() ) + ->method( 'tokenize' ) + ->with( $text ) + ->willReturn( [ 'foo', 'foo', 'テスト', 'テスト' ] ); + + $synonymizer = $this->getMockBuilder( '\Onoi\Tesa\Synonymizer\Synonymizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $synonymizer->expects( $this->any() ) + ->method( 'synonymize' ) + ->willReturnArgument( 0 ); + + $instance = new Sanitizer( $text ); + + $stopwordAnalyzer = $this->sanitizerFactory->newArrayStopwordAnalyzer(); + + $this->assertEquals( + 'foo テスト', + $instance->sanitizeWith( $tokenizer, $stopwordAnalyzer, $synonymizer ) + ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/StopwordAnalyzer/ArrayStopwordAnalyzerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/StopwordAnalyzer/ArrayStopwordAnalyzerTest.php new file mode 100644 index 0000000..77aead1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/StopwordAnalyzer/ArrayStopwordAnalyzerTest.php @@ -0,0 +1,62 @@ +assertInstanceOf( + '\Onoi\Tesa\StopwordAnalyzer\ArrayStopwordAnalyzer', + new ArrayStopwordAnalyzer() + ); + } + + /** + * @dataProvider stopWordsProvider + */ + public function testIsStopWord( $defaultList, $word, $expected ) { + $instance = new ArrayStopwordAnalyzer( $defaultList ); + + $this->assertEquals( + $expected, + $instance->isStopWord( $word ) + ); + } + + public function stopWordsProvider() { + $defaultList = [ 'Foo', 'かつて', 'bAR' ]; + + $provider[] = [ + $defaultList, + 'Foo', + true + ]; + + $provider[] = [ + $defaultList, + 'かつて', + true + ]; + + $provider[] = [ + $defaultList, + 'bar', + false + ]; + + return $provider; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/StopwordAnalyzer/CdbStopwordAnalyzerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/StopwordAnalyzer/CdbStopwordAnalyzerTest.php new file mode 100644 index 0000000..42d22c7 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/StopwordAnalyzer/CdbStopwordAnalyzerTest.php @@ -0,0 +1,162 @@ +expectException( 'RuntimeException' ); + + CdbStopwordAnalyzer::createCdbByLanguage( + CdbStopwordAnalyzer::getLocation(), + 'foo' + ); + } + + public function testTryToCreateCdbByLanguageOnInvalidJsonIndexThrowsException() { + $this->expectException( 'RuntimeException' ); + + CdbStopwordAnalyzer::createCdbByLanguage( + __DIR__ . '/../../Fixtures/StopwordAnalyzer/', + 'missingindex' + ); + } + + public function testTryToCreateCdbByLanguageOnInvalidJsonThrowsException() { + $this->expectException( 'RuntimeException' ); + + CdbStopwordAnalyzer::createCdbByLanguage( + __DIR__ . '/../../Fixtures/StopwordAnalyzer/', + 'invalid' + ); + } + + /** + * @dataProvider languageProvider + */ + public function testCreateCdbByLanguage( $languageCode ) { + $res = CdbStopwordAnalyzer::createCdbByLanguage( + CdbStopwordAnalyzer::getLocation(), + $languageCode + ); + + $this->assertTrue( + $res + ); + } + + /** + * @dataProvider stopWordProvider + */ + public function testIsStopWord( $languageCode, $word, $expected ) { + $instane = new CdbStopwordAnalyzer( + CdbStopwordAnalyzer::getTargetByLanguage( $languageCode ) + ); + + $this->assertEquals( + $expected, + $instane->isStopWord( $word ) + ); + } + + public function languageProvider() { + $provider[] = [ + 'en', + ]; + + $provider[] = [ + 'de' + ]; + + $provider[] = [ + 'ja' + ]; + + $provider[] = [ + 'zh' + ]; + + $provider[] = [ + 'es' + ]; + + $provider[] = [ + 'fr' + ]; + + $provider[] = [ + 'pt' + ]; + + $provider[] = [ + 'pt-br' + ]; + + return $provider; + } + + public function stopWordProvider() { + $provider[] = [ + 'en', + 'Foo', + false + ]; + + $provider[] = [ + 'en', + 'the', + true + ]; + + $provider[] = [ + 'ja', + 'それぞれ', + true + ]; + + $provider[] = [ + 'zh', + '不单', + true + ]; + + $provider[] = [ + 'es', + 'arriba', + true + ]; + + $provider[] = [ + 'fr', + 'devrait', + true + ]; + + $provider[] = [ + 'pt', + 'conhecido', + true + ]; + + $provider[] = [ + 'pt-br', + 'mediante', + true + ]; + + return $provider; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/StopwordAnalyzer/NullStopwordAnalyzerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/StopwordAnalyzer/NullStopwordAnalyzerTest.php new file mode 100644 index 0000000..ad6dee8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/StopwordAnalyzer/NullStopwordAnalyzerTest.php @@ -0,0 +1,34 @@ +assertInstanceOf( + '\Onoi\Tesa\StopwordAnalyzer\NullStopwordAnalyzer', + new NullStopwordAnalyzer() + ); + } + + public function testIsStopWord() { + $instance = new NullStopwordAnalyzer(); + + $this->assertFalse( + $instance->isStopWord( 'Foo' ) + ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Synonymizer/NullSynonymizerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Synonymizer/NullSynonymizerTest.php new file mode 100644 index 0000000..91d9dee --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Synonymizer/NullSynonymizerTest.php @@ -0,0 +1,35 @@ +assertInstanceOf( + '\Onoi\Tesa\Synonymizer\NullSynonymizer', + new NullSynonymizer() + ); + } + + public function testSynonymize() { + $instance = new NullSynonymizer(); + + $this->assertEquals( + 'Foo', + $instance->synonymize( 'Foo' ) + ); + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/CJKSimpleCharacterRegExTokenizerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/CJKSimpleCharacterRegExTokenizerTest.php new file mode 100644 index 0000000..1814657 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/CJKSimpleCharacterRegExTokenizerTest.php @@ -0,0 +1,84 @@ +assertInstanceOf( + '\Onoi\Tesa\Tokenizer\CJKSimpleCharacterRegExTokenizer', + new CJKSimpleCharacterRegExTokenizer() + ); + } + + /** + * @dataProvider stringProvider + */ + public function testTokenize( $string, $expected ) { + $instance = new CJKSimpleCharacterRegExTokenizer(); + + $this->assertEquals( + $expected, + $instance->tokenize( $string ) + ); + + $this->assertFalse( + $instance->isWordTokenizer() + ); + } + + public function testTokenizeWithEnabledExemptionList() { + $string = '《红色中华》报改名为《新中华报》的同时,在'; + + $tokenizer = $this->getMockBuilder( '\Onoi\Tesa\Tokenizer\Tokenizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $tokenizer->expects( $this->once() ) + ->method( 'setOption' ); + + $tokenizer->expects( $this->once() ) + ->method( 'tokenize' ) + ->with( $string ) + ->willReturn( [ $string ] ); + + $instance = new CJKSimpleCharacterRegExTokenizer( $tokenizer ); + + $instance->setOption( + CJKSimpleCharacterRegExTokenizer::REGEX_EXEMPTION, + [ '《', '》', ',' ] + ); + + $this->assertEquals( + [ '《红色中华》报改名', '《新中华报》', '同', ',' ], + $instance->tokenize( $string ) + ); + } + + public function stringProvider() { + $provider[] = [ + '《红色中华》报改名为《新中华报》的同时,在延安更名为新华通讯社。但是当时,新华社和《新中华报》还是同一个机构。', + [ '红色中华', '报改名', '新中华报', '同', '延安更名', '新华通讯社', '新华社', '新中华报', '同一', '机构' ] + ]; + + $provider[] = [ + '江泽民在北京人民大会堂会见参加全国法院工作会议和全国法院系统打击经济犯罪先进集体表彰大会代表时要求大家要充分认识打击经济犯罪的艰巨性和长期性', + [ '江泽民', '北京人民大会堂会见参加全国法院工作会议', '全国法院系统打击经济犯罪先进集体表彰大会代表', '求大家', '充分认识打击经济犯罪', '艰巨性', '长期性' ] + ]; + + return $provider; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/GenericRegExTokenizerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/GenericRegExTokenizerTest.php new file mode 100644 index 0000000..a625877 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/GenericRegExTokenizerTest.php @@ -0,0 +1,91 @@ +assertInstanceOf( + '\Onoi\Tesa\Tokenizer\GenericRegExTokenizer', + new GenericRegExTokenizer() + ); + } + + /** + * @dataProvider stringProvider + */ + public function testTokenize( $string, $expected ) { + $instance = new GenericRegExTokenizer(); + + $this->assertEquals( + $expected, + $instance->tokenize( $string ) + ); + } + + public function testTokenizeWithEnabledExemptionList() { + $string = "It's a test string (that has no);"; + + $tokenizer = $this->getMockBuilder( '\Onoi\Tesa\Tokenizer\Tokenizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $tokenizer->expects( $this->once() ) + ->method( 'setOption' ); + + $tokenizer->expects( $this->once() ) + ->method( 'tokenize' ) + ->with( $string ) + ->willReturn( [ $string ] ); + + $instance = new GenericRegExTokenizer( $tokenizer ); + + $instance->setOption( + GenericRegExTokenizer::REGEX_EXEMPTION, + [ '\(', '\)', "'", ';' ] + ); + + $this->assertEquals( + [ "It's", 'a', 'test', 'string', '(that', 'has', 'no);' ], + $instance->tokenize( $string ) + ); + } + + public function stringProvider() { + $provider[] = [ + "It's a test string (that has no);deep meaning except0", + [ 'It', 's', 'a', 'test', 'string', 'that', 'has', 'no', 'deep', 'meaning', 'except', '0' ] + ]; + + $provider[] = [ + "Привет, мир! Меня зовут д'Артаньян %) цуацуа123123", + [ 'Привет', 'мир', 'Меня', 'зовут', 'д', "Артаньян", 'цуацуа', '123123' ] + ]; + + $provider[] = [ + "[[Действует на возбудителей]] Brucella spp., Legionella pneumophila, Salmonella typhi,(за исключением остальных рифампицинов) не отмечено. ... + +Фармакокинетика[править | править вики-текст] +Рифампицин хорошо всасывается из желудочно-кишечного тракта.", + [ + 'Действует', 'на', 'возбудителей', 'Brucella', 'spp', 'Legionella', 'pneumophila', 'Salmonella', 'typhi', 'за', 'исключением', 'остальных', 'рифампицинов', + 'не', 'отмечено', 'Фармакокинетика', 'править', 'править', 'вики', 'текст', 'Рифампицин', 'хорошо', 'всасывается', 'из', 'желудочно', 'кишечного', 'тракта' + ] + ]; + + return $provider; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/IcuWordBoundaryTokenizerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/IcuWordBoundaryTokenizerTest.php new file mode 100644 index 0000000..df5641a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/IcuWordBoundaryTokenizerTest.php @@ -0,0 +1,169 @@ +isAvailable() ) { + $this->markTestSkipped( 'ICU extension is not available.' ); + } + } + + public function testCanConstruct() { + $this->assertInstanceOf( + '\Onoi\Tesa\Tokenizer\IcuWordBoundaryTokenizer', + new IcuWordBoundaryTokenizer() + ); + } + + /** + * @dataProvider stringProvider + */ + public function testTokenize( $string, $expected ) { + $instance = new IcuWordBoundaryTokenizer(); + + $this->assertEquals( + $expected, + $instance->tokenize( $string ) + ); + } + + public function testSetOption() { + $tokenizer = $this->getMockBuilder( '\Onoi\Tesa\Tokenizer\Tokenizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $tokenizer->expects( $this->once() ) + ->method( 'setOption' ); + + $instance = new IcuWordBoundaryTokenizer( + $tokenizer + ); + + $instance->setOption( + IcuWordBoundaryTokenizer::REGEX_EXEMPTION, + [ 'Foo' ] + ); + } + + public function testGeneralSetters() { + $tokenizer = $this->getMockBuilder( '\Onoi\Tesa\Tokenizer\Tokenizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $instance = new IcuWordBoundaryTokenizer( + $tokenizer + ); + + $instance->setLocale( 'en' ); + $instance->setWordTokenizerAttribute( false ); + + $this->assertFalse( + $instance->isWordTokenizer() + ); + } + + public function stringProvider() { + $provider[] = [ + "安全テスト", + [ '安全', 'テスト' ] + ]; + + // Would expect 'すもも', 'も', 'もも', 'も', 'もも', 'の', 'うち', '。' + $provider[] = [ + "すもももももももものうち。", + [ 'すもも', 'も', 'も', 'も', 'も', 'も', 'もの', 'うち', '。' ] + ]; + + $provider[] = [ + "李も桃も桃のうち。", + [ '李', 'も', '桃', 'も', '桃', 'の', 'うち', '。' ] + ]; + + $provider[] = [ + "إسرائيل", + [ 'إسرائيل' ] + ]; + + $provider[] = [ + "검색엔ㅇㅏ진", + [ '검색엔', 'ㅇㅏ', '진' ] + ]; + + $provider[] = [ + "검색엔ㅇㅏ진1234abcdfrA", + [ '검색엔', 'ㅇㅏ', '진', '1234abcdfrA' ] + ]; + + $provider[] = [ + "1234abcdfrA", + [ '1234abcdfrA' ] + ]; + + $provider[] = [ + "公明執ようなSNSもストーカー行為の対象に", + [ + '公明', '執よう', 'な', 'SNS', 'も', + 'ストーカー', '行為', 'の', '対象', 'に' + ] + ]; + + $provider[] = [ + "公明執", + [ '公明', '執' ] + ]; + + $provider[] = [ + "IQテスト", + [ 'IQ', 'テスト' ] + ]; + + $provider[] = [ + "foo テスト bar", + [ 'foo', 'テスト', 'bar' ] + ]; + + $provider[] = [ + "foo テスト bar 123abc ^&'", + [ 'foo', 'テスト', 'bar', '123abc', '^', '&', "'" ] + ]; + + $provider[] = [ + "was discovered in 1957 and first sold as a medication in 1971", + [ + 'was', 'discovered', 'in', '1957', 'and', + 'first', 'sold', 'as', 'a', 'medication', 'in', '1971' + ] + ]; + + // See JaTinySegmenterTokenizerTest for comparison + $provider[] = [ + '日本語の新聞記事であれば文字単位で95%程度の精度で分かち書きが行えます。 ', + [ + '日本語', 'の', '新聞', '記事', 'で', + 'あれ', 'ば', '文字', '単位', + 'で', '95', '%', '程度', + 'の', '精度', 'で', '分かち書き', + 'が', '行', 'え', 'ます', '。' + ] + ]; + + return $provider; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/JaCompoundGroupTokenizerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/JaCompoundGroupTokenizerTest.php new file mode 100644 index 0000000..26f6e9f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/JaCompoundGroupTokenizerTest.php @@ -0,0 +1,75 @@ +assertInstanceOf( + '\Onoi\Tesa\Tokenizer\JaCompoundGroupTokenizer', + new JaCompoundGroupTokenizer() + ); + } + + /** + * @dataProvider stringProvider + */ + public function testTokenize( $string, $expected ) { + $instance = new JaCompoundGroupTokenizer(); + + $this->assertEquals( + $expected, + $instance->tokenize( $string ) + ); + } + + public function testTokenizeWithOption() { + $string = 'と歓声を上げていました'; + + $tokenizer = $this->getMockBuilder( '\Onoi\Tesa\Tokenizer\Tokenizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $tokenizer->expects( $this->once() ) + ->method( 'setOption' ); + + $tokenizer->expects( $this->once() ) + ->method( 'tokenize' ) + ->with( $string ) + ->willReturn( [ $string ] ); + + $instance = new JaCompoundGroupTokenizer( $tokenizer ); + + $instance->setOption( + JaCompoundGroupTokenizer::REGEX_EXEMPTION, + [ 'Foo' ] + ); + + $this->assertEquals( + [ '歓声', '上' ], + $instance->tokenize( $string ) + ); + } + + public function stringProvider() { + $provider[] = [ + 'と歓声を上げていました。 十勝農業改良普及センターによりますと', + [ '歓声', '上', '十勝農業改良普及', 'センター' ] + ]; + + return $provider; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/JaTinySegmenterTokenizerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/JaTinySegmenterTokenizerTest.php new file mode 100644 index 0000000..af1dc06 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/JaTinySegmenterTokenizerTest.php @@ -0,0 +1,189 @@ +getMockBuilder( '\Onoi\Tesa\Tokenizer\Tokenizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $this->assertInstanceOf( + '\Onoi\Tesa\Tokenizer\JaTinySegmenterTokenizer', + new JaTinySegmenterTokenizer( $tokenizer ) + ); + } + + /** + * @dataProvider stringProvider + */ + public function testTokenize( $string, $expected ) { + $instance = new JaTinySegmenterTokenizer(); + + $this->assertEquals( + $expected, + $instance->tokenize( $string ) + ); + } + + public function stringProvider() { + $provider[] = [ + '極めてコンパクトな日本語分かち書きソフトウェアです。', + [ + '極め', // should be 極めて + 'て', + 'コンパクト', + 'な', + '日本', + '語分', + 'かち', + '書き', + 'ソフトウェア', + 'です', + '。' + ] + ]; + + $provider[] = [ + '日本語の新聞記事であれば文字単位で95%程度の精度で分かち書きが行えます。 ', + [ + '日本語', + 'の', + '新聞', + '記事', + 'で', + 'あれ', + 'ば', + '文字', + '単位', + 'で', + '9', + '5', + '%', + '程度', + 'の', + '精度', + 'で', + '分かち', + '書き', + 'が', + '行え', + 'ます', + '。' + + ] + ]; + + $provider[] = [ + '私の名前は中野です', + [ + '私', + 'の', + '名前', + 'は', + '中野', + 'です' + ] + ]; + + $provider[] = [ + 'TinySegmenterは25kBで書かれています。', + [ + 'TinySegmenter', + 'は', + '2', + '5', + 'kB', + 'で', + '書か', + 'れ', + 'て', + 'い', + 'ます', + '。' + ] + ]; + + $provider[] = [ + '隣の客はAK47振りかざしてギャアギャアわめきたてる客だ。', + [ + '隣', + 'の', + '客', + 'は', + 'AK', + '4', + '7', + '振り', + 'かざ', // should be かざし + 'し', + 'て', + 'ギャアギャア', + 'わめき', + 'た', + 'てる', + '客', + 'だ', + '。' + ] + ]; + + // See JaCompoundGroupTokenizerTest for comparison + $provider[] = [ + 'と歓声を上げていました。 十勝農業改良普及センターによりますと', + [ + 'と', + '歓声', + 'を', + '上げ', + 'て', + 'い', + 'まし', + 'た', + '。', + '十勝農業', + '改良', + '普及', + 'センター', + 'により', + 'ます', + 'と' + ] + ]; + + // See IcuWordBoundaryTokenizerTest + $provider[] = [ + "公明執ようなSNSもストーカー行為の対象に", + [ + '公明執', + 'よう', + 'な', + 'SNS', + 'も', + 'ストーカー', + '行為', + 'の', + '対象', + 'に' + ] + ]; + + // https://github.com/chezou/TinySegmenter.jl/blob/master/test/timemachineu8j.txt + + return $provider; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/NGramTokenizerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/NGramTokenizerTest.php new file mode 100644 index 0000000..bf7ba52 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/NGramTokenizerTest.php @@ -0,0 +1,214 @@ +assertInstanceOf( + '\Onoi\Tesa\Tokenizer\NGramTokenizer', + new NGramTokenizer() + ); + } + + /** + * @dataProvider stringProvider + */ + public function testTokenize( $string, $ngram, $expected ) { + $instance = new NGramTokenizer( null, $ngram ); + + $this->assertEquals( + $expected, + $instance->tokenize( $string ) + ); + + $this->assertFalse( + $instance->isWordTokenizer() + ); + } + + public function testTokenizeWithStartEndMarker() { + // http://cloudmark.github.io/Language-Detection + $string = 'TEXT'; + + $expected = [ + '_tex', + 'text', + 'ext_', + 'xt__', + 't___' + ]; + + $instance = new NGramTokenizer( null, 4 ); + $instance->withMarker( true ); + + $this->assertEquals( + $expected, + $instance->tokenize( $string ) + ); + } + + public function testTokenizeWithStartEndMarker2() { + $string = '教授は'; + + $expected = [ + '_教授', + '教授は', + '授は_', + 'は__' + ]; + + $instance = new NGramTokenizer( null, 3 ); + $instance->withMarker( true ); + + $this->assertEquals( + $expected, + $instance->tokenize( $string ) + ); + } + + public function testTokenizeWithOption() { + $string = '红色中华'; + + $tokenizer = $this->getMockBuilder( '\Onoi\Tesa\Tokenizer\Tokenizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $tokenizer->expects( $this->once() ) + ->method( 'setOption' ); + + $tokenizer->expects( $this->once() ) + ->method( 'tokenize' ) + ->with( $string ) + ->willReturn( [ $string ] ); + + $instance = new NGramTokenizer( $tokenizer ); + + $instance->setOption( + NGramTokenizer::REGEX_EXEMPTION, + [ 'Foo' ] + ); + + $this->assertEquals( + [ '红色', '色中', '中华' ], + $instance->tokenize( $string ) + ); + } + + public function stringProvider() { + $provider[] = [ + 'TEXT', + '4', + [ + 'text' + ] + ]; + + $provider[] = [ + '12345678', + '2', + [ + '12', + '23', + '34', + '45', + '56', + '67', + '78' + ] + ]; + + $provider[] = [ + '12345678', + '3', + [ + '123', + '234', + '345', + '456', + '567', + '678' + ] + ]; + + $provider[] = [ + 'hello', + '3', + [ + 'hel', + 'ell', + 'llo' + ] + ]; + + $provider[] = [ + 'Hello World!', + '3', + [ + 'hel', + 'ell', + 'llo', + 'lo ', + 'o w', + ' wo', + 'wor', + 'orl', + 'rld', + 'ld!' + ] + ]; + + $provider[] = [ + 'Новости', + '3', + [ + 'нов', + 'ово', + 'вос', + 'ост', + 'сти' + ] + ]; + + $provider[] = [ + '1時36分更新', + '3', + [ + '1時3', + '時36', + '36分', + '6分更', + '分更新' + ] + ]; + + $provider[] = [ + 'こんにちは世界!', + '2', + [ + 'こん', + 'んに', + 'にち', + 'ちは', + 'は世', + '世界', + '界!' + ] + ]; + + return $provider; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/PunctuationRegExTokenizerTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/PunctuationRegExTokenizerTest.php new file mode 100644 index 0000000..102161c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/Tokenizer/PunctuationRegExTokenizerTest.php @@ -0,0 +1,113 @@ +assertInstanceOf( + '\Onoi\Tesa\Tokenizer\PunctuationRegExTokenizer', + new PunctuationRegExTokenizer() + ); + } + + /** + * @dataProvider stringProvider + */ + public function testTokenize( $string, $patternExemption, $expected ) { + $instance = new PunctuationRegExTokenizer(); + + $instance->setOption( + PunctuationRegExTokenizer::REGEX_EXEMPTION, + $patternExemption + ); + + $this->assertEquals( + $expected, + $instance->tokenize( $string ) + ); + + $this->assertTrue( + $instance->isWordTokenizer() + ); + } + + public function testisWordTokenizerFromInheritTokenizer() { + $tokenizer = $this->getMockBuilder( '\Onoi\Tesa\Tokenizer\Tokenizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $tokenizer->expects( $this->once() ) + ->method( 'isWordTokenizer' ) + ->willReturn( false ); + + $instance = new PunctuationRegExTokenizer( $tokenizer ); + + $this->assertFalse( + $instance->isWordTokenizer() + ); + } + + public function testTokenizeWithOption() { + $string = '123, 345'; + + $tokenizer = $this->getMockBuilder( '\Onoi\Tesa\Tokenizer\Tokenizer' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + + $tokenizer->expects( $this->once() ) + ->method( 'setOption' ); + + $tokenizer->expects( $this->once() ) + ->method( 'tokenize' ) + ->with( $string ) + ->willReturn( [ $string ] ); + + $instance = new PunctuationRegExTokenizer( $tokenizer ); + + $instance->setOption( + PunctuationRegExTokenizer::REGEX_EXEMPTION, + [ ',' ] + ); + + $this->assertEquals( + [ '123,', '345' ], + $instance->tokenize( $string ) + ); + } + + public function stringProvider() { + $provider[] = [ + '123, 345^456&[foo:bar]', + '', + [ '123', '345', '456', 'foo', 'bar' ] + ]; + + $provider[] = [ + '123, 345^456&[foo:bar]', + [ ',', '&' ], + [ '123,', '345', '456&', 'foo', 'bar' ] + ]; + + $provider[] = [ + '123, 345^456&[foo:bar] 3.', + [ ',', '&' ], + [ '123,', '345', '456&', 'foo', 'bar', '3' ] + ]; + + return $provider; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/TransliteratorTest.php b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/TransliteratorTest.php new file mode 100644 index 0000000..d33fe0e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/Tesa/tests/phpunit/Unit/TransliteratorTest.php @@ -0,0 +1,160 @@ +assertEquals( + $expected, + Transliterator::transliterate( $input, $flag ) + ); + } + + public function testTransliterationWithoutOptionFlag() { + $this->assertEquals( + 'aaaaaea', + Transliterator::transliterate( 'àáâãäå' ) + ); + } + + public function characterProvider() { + $provider[] = [ + 'Foo', + 'unknownFlag', + 'Foo', + ]; + + $provider[] = [ + 'ÀÁÂÃÄÅàáâãäåÒÓÔÕÕÖØòóôõöøÈÉÊËèéêëðÇçÐÌÍÎÏìíîïÙÚÛÜùúûüÑñŠšŸÿýŽž', + Transliterator::NONE, + 'ÀÁÂÃÄÅàáâãäåÒÓÔÕÕÖØòóôõöøÈÉÊËèéêëðÇçÐÌÍÎÏìíîïÙÚÛÜùúûüÑñŠšŸÿýŽž', + ]; + + $provider[] = [ + 'ÀÁÂÃÄÅàáâãäåÒÓÔÕÕÖØòóôõöøÈÉÊËèéêëðÇçÐÌÍÎÏìíîïÙÚÛÜùúûüÑñŠšŸÿýŽž', + Transliterator::DIACRITICS, + 'AAAAAEAaaaaaeaOOOOOOEOoooooeoEEEEeeeeðCcÐIIIIiiiiUUUUEuuuueNnSsYyyZz' + ]; + + $provider[] = [ + 'ỆᶍǍᶆṔƚÉ áéíóúýčďěňřšťžů', + Transliterator::DIACRITICS, + 'ExAmPlE aeiouycdenrstzu' + ]; + + $provider[] = [ + 'àáâãäå', + Transliterator::DIACRITICS, + 'aaaaaea' + ]; + + $provider[] = [ + 'èéêë', + Transliterator::DIACRITICS, + 'eeee' + ]; + + $provider[] = [ + 'òóôõö', + Transliterator::DIACRITICS, + 'oooooe' + ]; + + $provider[] = [ + 'ùúûü', + Transliterator::DIACRITICS, + 'uuuue' + ]; + + $provider[] = [ + 'ç', + Transliterator::DIACRITICS, + 'c' + ]; + + $provider[] = [ + 'æ', + Transliterator::DIACRITICS, + 'ae' + ]; + + $provider[] = [ + 'ñ', + Transliterator::DIACRITICS, + 'n' + ]; + + $provider[] = [ + 'œ', + Transliterator::DIACRITICS, + 'oe' + ]; + + $provider[] = [ + 'ýÿ', + Transliterator::DIACRITICS, + 'yy' + ]; + + $provider[] = [ + 'ß', + Transliterator::DIACRITICS, + 'ss' + ]; + + $provider[] = [ + 'Vilʹândimaa', + Transliterator::DIACRITICS, + 'Vilʹandimaa' + ]; + + $provider[] = [ + 'Ελληνική Δημοκρατία', + Transliterator::GREEK, + 'Ellīnikī́ Dīmokratía' + ]; + + $provider[] = [ + 'Ελληνική Δημοκρατία', + Transliterator::DIACRITICS | Transliterator::GREEK, + 'Ellinikí Dimokratia' + ]; + + $provider[] = [ + 'Γκ γκ γξ Ει ει Ηυ Μπ μπ', + Transliterator::GREEK, + 'Gk gk gx Ei ei Īy Mp mp' + ]; + + $provider[] = [ + 'Μετατροπή του ελληνικού αλφαβήτου με λατινικούς χαρακτήρες', + Transliterator::GREEK, + 'Metatropī́ tou ellīnikoú alfavī́tou me latinikoús charaktī́res', + ]; + + $provider[] = [ + 'Ελληνικός Οργανισμός Τυποποίησης', + Transliterator::GREEK, + 'Ellīnikós Organismós Typopoíīsīs', + ]; + + return $provider; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/codecov.yml b/mediawiki/extensions/SemanticMediaWiki/codecov.yml new file mode 100644 index 0000000..33d81fa --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/codecov.yml @@ -0,0 +1,2 @@ +fixes: + - "/var/www/html/extensions/SemanticMediaWiki/::" diff --git a/mediawiki/extensions/SemanticMediaWiki/composer.json b/mediawiki/extensions/SemanticMediaWiki/composer.json new file mode 100644 index 0000000..fcb9581 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/composer.json @@ -0,0 +1,137 @@ +{ + "name": "mediawiki/semantic-media-wiki", + "type": "mediawiki-extension", + "description": "An extension to MediaWiki that lets you store and query structured data within wiki pages", + "keywords": [ + "SMW", + "Semantic MediaWiki", + "Wiki", + "MediaWiki" + ], + "homepage": "https://www.semantic-mediawiki.org/wiki/", + "license": "GPL-2.0-or-later", + "authors": [ + { + "name": "Markus Krötzsch", + "homepage": "https://www.korrekt.org/", + "role": "Original author" + }, + { + "name": "Jeroen De Dauw", + "email": "jeroendedauw@gmail.com", + "homepage": "https://www.entropywins.wtf/", + "role": "Core developer" + }, + { + "name": "James Hong Kong", + "homepage": "https://www.semantic-mediawiki.org/wiki/User:MWJames", + "role": "Core developer" + }, + { + "name": "Professional Wiki", + "email": "info@professional.wiki", + "homepage": "https://professional.wiki", + "role": "Developer" + } + ], + "support": { + "email": "semediawiki-user@lists.sourceforge.net", + "issues": "https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues", + "forum": "https://www.semantic-mediawiki.org/wiki/semantic-mediawiki.org_talk:Community_portal", + "wiki": "https://www.semantic-mediawiki.org/wiki/", + "source": "https://github.com/SemanticMediaWiki/SemanticMediaWiki" + }, + "require": { + "php": ">=8.1", + "ext-mbstring": "*", + "composer/installers": "^2.2.0|^1.0.1", + "psr/log": "~1.0", + "mediawiki/parser-hooks": "~1.4", + "param-processor/param-processor": "~1.2", + "serialization/serialization": "~3.2|~4.0", + "onoi/message-reporter": "~1.0", + "onoi/cache": "~1.2", + "onoi/event-dispatcher": "~1.0", + "onoi/blob-store": "~1.2", + "mediawiki/http-request": "~2.0|~1.1", + "onoi/callback-container": "~2.0", + "symfony/css-selector": "^5|^4|^3.3", + "seld/jsonlint": "^1.7", + "justinrainbow/json-schema": "~5.2", + "jeroen/file-fetcher": "^6|^5|^4.4", + "wikimedia/cdb": "^3|^2|^1", + "wikimedia/textcat": "^2|^1.1" + }, + "require-dev": { + "mediawiki/mediawiki-codesniffer": "46.0.0", + "mediawiki/mediawiki-phan-config": "0.14.0", + "mediawiki/minus-x": "1.1.3", + "phpmd/phpmd": "~2.1", + "php-parallel-lint/php-console-highlighter": "1.0.0", + "php-parallel-lint/php-parallel-lint": "1.4.0", + "squizlabs/php_codesniffer": "~3.5" + }, + "suggest": { + "mediawiki/semantic-result-formats": "Provides additional result formats for queries of structured data" + }, + "extra": { + "branch-alias": { + "dev-master": "6.x-dev" + } + }, + "autoload": { + "psr-4": { + "SMW\\": "src/", + "SMW\\Maintenance\\": "maintenance/", + "SMW\\Tests\\": "tests/phpunit/", + "Onoi\\Tesa\\": "Tesa/src/" + }, + "psr-0": { + "SemanticMediaWiki": "includes/SemanticMediaWiki.php" + }, + "files": [ + "includes/GlobalFunctions.php" + ], + "classmap" : [ + "includes/", + "tests/phpunit/includes/" + ] + }, + "config": { + "process-timeout": 0, + "allow-plugins": { + "composer/installers": true, + "dealerdirect/phpcodesniffer-composer-installer": true + } + }, + "scripts": { + "test": [ + "@lint", + "@phpcs", + "minus-x check .", + "@phpunit:unit", + "@phpunit:integration" + ], + "test-coverage": [ + "@phpunit-coverage" + ], + "analyze": [ + "@lint", + "@phpcs" + ], + "fix": [ + "@phpcs-fix" + ], + "lint": "parallel-lint . --exclude vendor --exclude node_modules", + "phpcs": "phpcs -sp --cache --parallel=$(nproc || sysctl -n hw.logicalcpu || powershell \"Get-WmiObject Win32_Processor | Select-Object -ExpandProperty NumberOfCores .trim()\" || echo 4 )", + "phpcs-fix": "phpcbf", + "phpunit": "php ${MW_INSTALL_PATH:-../..}/tests/phpunit/phpunit.php -c phpunit.xml.dist --bootstrap tests/bootstrap.php", + "phpunit:unit": "@phpunit --testsuite=semantic-mediawiki-unit", + "phpunit:integration": "@phpunit --testsuite semantic-mediawiki-check,semantic-mediawiki-data-model,semantic-mediawiki-integration,semantic-mediawiki-import,semantic-mediawiki-structure", + "phpunit-coverage": "@phpunit --testdox --coverage-text --coverage-clover coverage/php/coverage.xml", + "phpdbg": "phpdbg -qrr ${MW_INSTALL_PATH}/tests/phpunit/phpunit.php -c phpunit.xml.dist", + "minus-x": "minus-x check .", + "benchmark": "composer phpunit -- --group semantic-mediawiki-benchmark", + "quick-benchmark": "php ${MW_INSTALL_PATH}/tests/phpunit/phpunit.php -c ./tests/phpunit/Benchmark/phpunit.quick.xml.dist --group semantic-mediawiki-benchmark" + } +} diff --git a/mediawiki/extensions/SemanticMediaWiki/data/config/db-primary-keys.php b/mediawiki/extensions/SemanticMediaWiki/data/config/db-primary-keys.php new file mode 100644 index 0000000..8f9d227 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/config/db-primary-keys.php @@ -0,0 +1,151 @@ + 's_id,p_id,o_hash', + 'smw_di_bool' => 's_id,p_id,o_value', + 'smw_di_coords' => 's_id,p_id,o_serialized', + 'smw_di_number' => 's_id,p_id,o_serialized', + 'smw_di_time' => 's_id,p_id,o_serialized', + 'smw_di_uri' => 's_id,p_id,o_serialized', + 'smw_di_wikipage' => 's_id,p_id,o_id', + + // Fixed property value tables + 'smw_fpt_ask' => 's_id,o_id', + 'smw_fpt_askde' => 's_id,o_serialized', + 'smw_fpt_askfo' => 's_id,o_hash', + 'smw_fpt_askdu' => 's_id,o_serialized', + 'smw_fpt_asksi' => 's_id,o_serialized', + 'smw_fpt_askst' => 's_id,o_hash', + 'smw_fpt_askpa' => 's_id,o_hash', + 'smw_fpt_cdat' => 's_id,o_serialized', + 'smw_fpt_conc' => 's_id', + 'smw_fpt_conv' => 's_id,o_hash', + 'smw_fpt_dtitle' => 's_id,o_hash', + 'smw_fpt_impo' => 's_id,o_hash', + 'smw_fpt_inst' => 's_id,o_id', + 'smw_fpt_lcode' => 's_id,o_hash', + 'smw_fpt_ledt' => 's_id,o_id', + 'smw_fpt_list' => 's_id,o_hash', + 'smw_fpt_mdat' => 's_id,o_serialized', + 'smw_fpt_media' => 's_id,o_hash', + 'smw_fpt_mime' => 's_id,o_hash', + 'smw_fpt_newp' => 's_id,o_value', + 'smw_fpt_pplb' => 's_id,o_id', + 'smw_fpt_prec' => 's_id,o_serialized', + 'smw_fpt_pval' => 's_id,o_hash', + 'smw_fpt_redi' => 's_title,s_namespace', + 'smw_fpt_serv' => 's_id,o_hash', + 'smw_fpt_sobj' => 's_id,o_id', + 'smw_fpt_subc' => 's_id,o_id', + 'smw_fpt_subp' => 's_id,o_id', + 'smw_fpt_text' => 's_id,o_hash', + 'smw_fpt_type' => 's_id,o_serialized', + 'smw_fpt_unit' => 's_id,o_hash', + 'smw_fpt_uri' => 's_id,o_serialized', + + // Other data tables + 'smw_object_ids' => 'smw_id', + 'smw_object_aux' => 'smw_id', + 'smw_prop_stats' => 'p_id', + 'smw_query_links' => 's_id,o_id', + 'smw_ft_search' => 's_id,p_id', + 'smw_concept_cache' => 's_id,o_id' + ]; + + /** + * @param string $tableName + */ + public function hasKey( string $tableName ): bool { + return self::PRIMARY_KEYS[$tableName] ?? false; + } + + /** + * @param string $tableName + */ + public function getKey( string $tableName ): string { + return self::PRIMARY_KEYS[$tableName]; + } +} + +/** + * @see https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/hook.sqlstore.installer.beforecreatetablescomplete.md + */ +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::SQLStore::Installer::BeforeCreateTablesComplete', static function ( array $tables, MessageReporter $messageReporter ) { + $cliMsgFormatter = new CliMsgFormatter(); + $configPreloadPrimaryKeyTableMutator = new ConfigPreloadPrimaryKeyTableMutator(); + + $messageReporter->reportMessage( + $cliMsgFormatter->section( 'Primary key(s)', 3, '-', true ) + ); + + $i = 0; + + $text = [ + 'The following updates adds primary key information for the tables', + 'owned by Semantic MediaWiki.' + ]; + + $messageReporter->reportMessage( + "\n" . $cliMsgFormatter->wordwrap( $text ) . "\n" + ); + + $messageReporter->reportMessage( + "\n" . $cliMsgFormatter->oneCol( "Checking table definitions ..." ) + ); + + /** + * @var \SMW\SQLStore\TableBuilder\Table[] + */ + foreach ( $tables as $table ) { + + $tableName = $table->getName(); + + if ( !$configPreloadPrimaryKeyTableMutator->hasKey( $tableName ) ) { + continue; + } + + $i++; + + $table->setPrimaryKey( + $configPreloadPrimaryKeyTableMutator->getKey( $tableName ) + ); + } + + $messageReporter->reportMessage( + $cliMsgFormatter->twoCols( "... run table definition update ...", "$i (tables)", 3 ) + ); + + $messageReporter->reportMessage( + $cliMsgFormatter->oneCol( "... done.", 3 ) + ); +} ); + +return [ + + // Modify the upgrade key to make sure an update is forced in the event this + // profile is used (or removed). + 'smwgUpgradeKey' => $GLOBALS['smwgUpgradeKey'] . ':primary' +]; diff --git a/mediawiki/extensions/SemanticMediaWiki/data/config/developer.php b/mediawiki/extensions/SemanticMediaWiki/data/config/developer.php new file mode 100644 index 0000000..1dc93c4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/config/developer.php @@ -0,0 +1,62 @@ + true, + 'wgDevelopmentWarnings' => true, + 'wgShowSQLErrors' => true, + 'wgDebugDumpSql' => true, + 'wgShowDBErrorBacktrace' => true, + + /** + * @see https://www.mediawiki.org/wiki/Debugging_toolbar + * + * A utility for developers that displays debug information about a MediaWiki + * page at the bottom of the browser window. + */ + 'wgDebugToolbar' => true, + + /** + * Semantic MediaWiki related + */ + + /** + * @see $smwgIgnoreExtensionRegistrationCheck + */ + 'smwgIgnoreExtensionRegistrationCheck' => true, + + /** + * @see $smwgDefaultLoggerRole + * + * You never want this role to be enabled in production because it will create + * large log files while monitoring SMW related activities in detail. + */ + 'smwgDefaultLoggerRole' => 'developer', + + /** + * @see $smwgJobQueueWatchlist + */ + 'smwgJobQueueWatchlist' => [ + 'smw.update', + 'smw.fulltextSearchTableUpdate', + 'smw.changePropagationUpdate', + 'smw.changePropagationClassUpdate', + 'smw.changePropagationDispatch', + 'smw.elasticIndexerRecovery', + 'smw.elasticFileIngest' + ] + +]; diff --git a/mediawiki/extensions/SemanticMediaWiki/data/config/elastic-fileingest.php b/mediawiki/extensions/SemanticMediaWiki/data/config/elastic-fileingest.php new file mode 100644 index 0000000..cf62e32 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/config/elastic-fileingest.php @@ -0,0 +1,35 @@ + [ + 'data' => [ "index.mapping.total_fields.limit" => 12000 ] + ], + 'indexer' => [ + "raw.text" => true, + "experimental.file.ingest" => true, + "throw.exception.on.illegal.argument.error" => false + ], + "query" => [ + "highlight.fragment" => [ "type" => "unified" ] + ] +]; + +return [ + + /** + * @see $smwgDefaultStore + */ + 'smwgDefaultStore' => 'SMW\Elastic\ElasticStore', + + /** + * @see $smwgElasticsearchConfig + */ + 'smwgElasticsearchConfig' => array_replace_recursive( $GLOBALS['smwgElasticsearchConfig'], $extraSettings ), +]; diff --git a/mediawiki/extensions/SemanticMediaWiki/data/config/media.php b/mediawiki/extensions/SemanticMediaWiki/data/config/media.php new file mode 100644 index 0000000..f19d750 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/config/media.php @@ -0,0 +1,17 @@ + array_merge( $GLOBALS['smwgPageSpecialProperties'], $properties ) +]; diff --git a/mediawiki/extensions/SemanticMediaWiki/data/elastic/default-profile.json b/mediawiki/extensions/SemanticMediaWiki/data/elastic/default-profile.json new file mode 100644 index 0000000..5de9efa --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/elastic/default-profile.json @@ -0,0 +1,56 @@ +{ + "connection": { + "retries": 2, + "timeout": 30, + "connect_timeout": 30, + "quick_ping": true + }, + "settings": { + "data": { + "index.mapping.total_fields.limit": 9000, + "index.max_result_window": 50000 + } + }, + "indexer": { + "raw.text": false, + "experimental.file.ingest": false, + "throw.exception.on.illegal.argument.error": true, + "job.recovery.retries": 5, + "job.file.ingest.retries": 3, + "monitor.entity.replication": true, + "monitor.entity.replication.cache_lifetime": 3600, + "data.sqlstore_compatibility": true + }, + "query": { + "fallback.no_connection": false, + "profiling": false, + "debug.explain": true, + "debug.description.log": true, + "maximum.value.length": 500, + "must_not.property.exists": true, + "sort.property.must.exists": true, + "score.sortfield": "es.score", + "query_string.boolean.operators": true, + "compat.mode": true, + "subquery.size":10000, + "subquery.constant.score": true, + "subquery.terms.lookup.result.size.index.write.threshold": 200, + "subquery.terms.lookup.cache.lifetime": 3600, + "concept.terms.lookup": true, + "concept.terms.lookup.result.size.index.write.threshold": 10, + "concept.terms.lookup.cache.lifetime": 3600, + "cjk.best.effort.proximity.match": true, + "wide.proximity.as.match_phrase": true, + "wide.proximity.fields": [ + "subject.title^8", + "text_copy^5", + "text_raw", + "attachment.title^3", + "attachment.content" + ], + "uri.field.case.insensitive": false, + "text.field.case.insensitive.eq.match": false, + "page.field.case.insensitive.proximity.match": true, + "highlight.fragment": { "number" : 1, "size" : 250, "type" : false } + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/elastic/smw-data-icu.json b/mediawiki/extensions/SemanticMediaWiki/data/elastic/smw-data-icu.json new file mode 100644 index 0000000..0ae36a7 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/elastic/smw-data-icu.json @@ -0,0 +1,286 @@ +{ + "settings": { + "number_of_shards": 2, + "number_of_replicas": 2, + "refresh_interval" : "1s", + "index.mapping.total_fields.limit": "9000", + "index.max_result_window": "50000", + "analysis": { + "filter": { + "uri_stopwords_filter": { + "type": "stop", + "stopwords": [ "http", "https", "ftp", "www" ] + } + }, + "char_filter": { + "nfd_normalizer": { + "type": "icu_normalizer", + "name": "nfc", + "mode": "decompose" + }, + "nfkc_normalizer": { + "type": "icu_normalizer", + "name": "nfkc", + "mode": "decompose" + }, + "wiki_char_filter": { + "type": "mapping", + "mappings": [ + "[ => ", + "] => ", + "/ => " + ] + } + }, + "analyzer": { + "uri_lowercase_with_stopwords": { + "type": "custom", + "tokenizer": "lowercase", + "filter": [ "uri_stopwords_filter" ] + }, + "nfkc_cf_normalized": { + "tokenizer": "icu_tokenizer", + "char_filter": [ + "icu_normalizer" + ] + }, + "nfkc_cf_normalized_lowercase": { + "tokenizer": "icu_tokenizer", + "char_filter": [ + "icu_normalizer" + ], + "filter": [ "lowercase" ] + }, + "nfd_normalized": { + "tokenizer": "icu_tokenizer", + "char_filter": [ + "nfd_normalizer" + ] + }, + "nfkc_normalized": { + "tokenizer": "icu_tokenizer", + "char_filter": [ + "nfkc_normalizer" + ] + } + } + } + }, + "mappings": { + "data": { + "dynamic_templates": [ + { + "text_fields": { + "path_match": "P:*.txtField", + "match_mapping_type": "*", + "mapping": { + "type": "text", + "copy_to": "text_copy", + "analyzer": "nfkc_cf_normalized", + "fields": { + "sort": { + "type": "icu_collation_keyword", + "index": false, + "ignore_above": 256 + }, + "keyword": { + "type": "keyword", + "ignore_above": 2000 + } + } + } + } + }, + { + "uri_fields": { + "path_match": "P:*.uriField", + "match_mapping_type": "*", + "mapping": { + "type": "text", + "copy_to": "text_copy", + "fields": { + "sort": { + "type": "icu_collation_keyword", + "index": false, + "ignore_above": 256 + }, + "keyword": { + "type": "keyword", + "ignore_above": 2000 + }, + "lowercase": { + "type": "text", + "analyzer": "uri_lowercase_with_stopwords" + } + } + } + } + }, + { + "page_fields_text": { + "path_match": "P:*.wpgField", + "match_mapping_type": "*", + "mapping": { + "type": "text", + "copy_to": "text_copy", + "analyzer": "nfkc_cf_normalized", + "fields": { + "sort": { + "type": "icu_collation_keyword", + "index": false, + "ignore_above": 256 + }, + "keyword": { + "type": "keyword", + "ignore_above": 500 + }, + "lowercase": { + "type": "keyword", + "analyzer": "nfkc_cf_normalized_lowercase" + } + } + } + } + }, + { + "page_fields_identifier": { + "path_match": "P:*.wpgID", + "match_mapping_type": "*", + "mapping": { + "type": "long" + } + } + }, + { + "numeric_fields": { + "path_match": "P:*.numField", + "match_mapping_type": "*", + "mapping": { + "type": "double", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + } + } + }, + { + "date_fields": { + "path_match": "P:*.datField", + "match_mapping_type": "*", + "mapping": { + "type": "double", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + } + } + }, + { + "date_fields_raw": { + "path_match": "P:*.dat_raw", + "match_mapping_type": "*", + "mapping": { + "type": "keyword" + } + } + }, + { + "geo_fields": { + "path_match": "P:*.geoField", + "match_mapping_type": "string", + "mapping": { + "type": "keyword", + "fields": { + "point": { + "type": "geo_point" + } + } + } + } + }, + { + "boolean_fields": { + "path_match": "P:*.booField", + "match_mapping_type": "boolean", + "mapping": { + "type": "boolean" + } + } + } + ], + "properties": { + "noop": { + "type": "integer" + }, + "text_copy": { + "type": "text", + "analyzer": "nfkc_cf_normalized", + "doc_values": false + }, + "text_raw": { + "type": "text", + "analyzer": "nfkc_cf_normalized", + "doc_values": false + }, + "subject.title": { + "type": "text", + "fields": { + "sort": { + "type": "icu_collation_keyword", + "index": false + }, + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "subject.interwiki": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "subject.subobject": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "subject.sortkey": { + "type": "text", + "copy_to": "text_copy", + "fields": { + "sort": { + "type": "icu_collation_keyword", + "index": false + }, + "keyword": { + "type": "keyword", + "ignore_above": 256 + }, + "lowercase": { + "type": "keyword", + "analyzer": "nfkc_cf_normalized_lowercase" + } + } + }, + "subject.rev_id": { + "type": "integer" + } + } + } + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/elastic/smw-data-standard.json b/mediawiki/extensions/SemanticMediaWiki/data/elastic/smw-data-standard.json new file mode 100644 index 0000000..655d7ec --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/elastic/smw-data-standard.json @@ -0,0 +1,273 @@ +{ + "settings": { + "number_of_shards": 2, + "number_of_replicas": 2, + "refresh_interval" : "1s", + "index.mapping.total_fields.limit": "9000", + "index.max_result_window": "50000", + "analysis": { + "filter": { + "uri_stopwords_filter": { + "type": "stop", + "stopwords": [ "http", "https", "ftp", "www" ] + } + }, + "char_filter": { + "wiki_char_filter": { + "type": "mapping", + "mappings": [ + "[ => ", + "] => ", + "/ => " + ] + } + }, + "analyzer": { + "uri_lowercase_with_stopwords": { + "type": "custom", + "tokenizer": "lowercase", + "filter": [ "uri_stopwords_filter" ] + }, + "exact_text_lowercase": { + "type": "custom", + "tokenizer": "keyword", + "filter": [ "lowercase", "asciifolding" ] + } + }, + "normalizer": { + "standard_sort_normalizer": { + "type": "custom", + "char_filter": [ "wiki_char_filter" ] + }, + "char_normalizer": { + "type": "custom", + "char_filter": [ "wiki_char_filter" ] + }, + "lowercase_normalizer": { + "type": "custom", + "char_filter": [], + "filter": [ "lowercase" ] + }, + "case_insensitive_sort_normalizer": { + "type": "custom", + "char_filter": [ "wiki_char_filter" ], + "filter": [ "lowercase", "asciifolding" ] + } + } + } + }, + "mappings": { + "dynamic_templates": [ + { + "text_fields": { + "path_match": "P:*.txtField", + "match_mapping_type": "*", + "mapping": { + "type": "text", + "copy_to": "text_copy", + "fields": { + "sort": { + "type": "keyword", + "normalizer": "standard_sort_normalizer", + "index": false, + "ignore_above": 256 + }, + "keyword": { + "type": "keyword", + "ignore_above": 2000 + } + } + } + } + }, + { + "uri_fields": { + "path_match": "P:*.uriField", + "match_mapping_type": "*", + "mapping": { + "type": "text", + "copy_to": "text_copy", + "fields": { + "sort": { + "type": "keyword", + "normalizer": "standard_sort_normalizer", + "index": false, + "ignore_above": 256 + }, + "keyword": { + "type": "keyword", + "ignore_above": 2000 + }, + "lowercase": { + "type": "text", + "analyzer": "uri_lowercase_with_stopwords" + } + } + } + } + }, + { + "page_fields_text": { + "path_match": "P:*.wpgField", + "match_mapping_type": "*", + "mapping": { + "type": "text", + "copy_to": "text_copy", + "fields": { + "sort": { + "type": "keyword", + "normalizer": "standard_sort_normalizer", + "index": false, + "ignore_above": 256 + }, + "keyword": { + "type": "keyword", + "ignore_above": 500 + }, + "lowercase": { + "type": "keyword", + "normalizer": "lowercase_normalizer" + } + } + } + } + }, + { + "page_fields_identifier": { + "path_match": "P:*.wpgID", + "match_mapping_type": "*", + "mapping": { + "type": "long" + } + } + }, + { + "numeric_fields": { + "path_match": "P:*.numField", + "match_mapping_type": "*", + "mapping": { + "type": "double", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + } + } + }, + { + "date_fields": { + "path_match": "P:*.datField", + "match_mapping_type": "*", + "mapping": { + "type": "double", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + } + } + }, + { + "date_fields_raw": { + "path_match": "P:*.dat_raw", + "match_mapping_type": "*", + "mapping": { + "type": "keyword" + } + } + }, + { + "geo_fields": { + "path_match": "P:*.geoField", + "match_mapping_type": "string", + "mapping": { + "type": "keyword", + "fields": { + "point": { + "type": "geo_point" + } + } + } + } + }, + { + "boolean_fields": { + "path_match": "P:*.booField", + "match_mapping_type": "boolean", + "mapping": { + "type": "boolean" + } + } + } + ], + "properties": { + "noop": { + "type": "integer" + }, + "text_copy": { + "type": "text" + }, + "text_raw": { + "type": "text" + }, + "subject.title": { + "type": "text", + "fields": { + "sort": { + "type": "keyword", + "normalizer": "standard_sort_normalizer", + "index": false + }, + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "subject.interwiki": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "subject.subobject": { + "type": "text", + "fields": { + "keyword": { + "type": "keyword", + "ignore_above": 256 + } + } + }, + "subject.sortkey": { + "type": "text", + "copy_to": "text_copy", + "fields": { + "sort": { + "type": "keyword", + "normalizer": "standard_sort_normalizer", + "index": false + }, + "keyword": { + "type": "keyword", + "ignore_above": 256 + }, + "lowercase": { + "type": "keyword", + "normalizer": "lowercase_normalizer" + } + } + }, + "subject.rev_id": { + "type": "integer" + } + } + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/elastic/smw-lookup.json b/mediawiki/extensions/SemanticMediaWiki/data/elastic/smw-lookup.json new file mode 100644 index 0000000..c31af37 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/elastic/smw-lookup.json @@ -0,0 +1,15 @@ +{ + "settings": { + "number_of_shards": 1, + "refresh_interval" : "1s", + "index.mapping.total_fields.limit": "3000", + "index.max_result_window": "50000" + }, + "mappings": { + "properties": { + "id": { + "type": "long" + } + } + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/groups/predefined.properties.json b/mediawiki/extensions/SemanticMediaWiki/data/import/groups/predefined.properties.json new file mode 100644 index 0000000..f7401ef --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/groups/predefined.properties.json @@ -0,0 +1,76 @@ +{ + "type": "PROPERTY_GROUP_SCHEMA", + "groups": { + "administrative_group": { + "canonical_name": "Administrative properties", + "message_key": "smw-property-group-label-administrative-properties", + "property_keys": [ + "_MDAT", + "_CDAT", + "_NEWP", + "_LEDT", + "_DTITLE", + "_CHGPRO", + "_EDIP", + "_ERRC" + ] + }, + "classification_group": { + "canonical_name": "Classification properties", + "message_key": "smw-property-group-label-classification-properties", + "property_keys": [ + "_INST", + "_PPGR", + "_SUBP", + "_SUBC" + ] + }, + "content_group": { + "canonical_name": "Content properties", + "message_key": "smw-property-group-label-content-properties", + "property_keys": [ + "_SOBJ", + "_ASK", + "_MEDIA", + "_MIME", + "_ATTCH_LINK", + "_FILE_ATTCH", + "_CONT_TYPE", + "_CONT_AUTHOR", + "_CONT_LEN", + "_CONT_LANG", + "_CONT_TITLE", + "_CONT_DATE", + "_CONT_KEYW", + "_TRANS", + "_TRANS_SOURCE", + "_TRANS_GROUP" + ] + }, + "declarative_group": { + "canonical_name": "Declarative properties", + "message_key" : "smw-property-group-label-declarative-properties", + "property_keys": [ + "_TYPE", + "_UNIT", + "_IMPO", + "_CONV", + "_SERV", + "_PVAL", + "_LIST", + "_PREC", + "_PDESC", + "_PPLB", + "_PVAP", + "_PVALI", + "_PVUC", + "_PEID", + "_PEFU" + ] + } + }, + "tags": [ + "group", + "property group" + ] +} diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/groups/schema.json b/mediawiki/extensions/SemanticMediaWiki/data/import/groups/schema.json new file mode 100644 index 0000000..31728bc --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/groups/schema.json @@ -0,0 +1,23 @@ +{ + "type": "PROPERTY_GROUP_SCHEMA", + "groups": { + "schema_group": { + "canonical_name": "Schema properties", + "message_key": "smw-property-group-label-schema-group", + "property_keys": [ + "_SCHEMA_TYPE", + "_SCHEMA_DEF", + "_SCHEMA_DESC", + "_SCHEMA_TAG", + "_SCHEMA_LINK", + "_FORMAT_SCHEMA", + "_CONSTRAINT_SCHEMA", + "_PROFILE_SCHEMA" + ] + } + }, + "tags": [ + "group", + "property group" + ] +} diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/properties/foaf.homepage.txt b/mediawiki/extensions/SemanticMediaWiki/data/import/properties/foaf.homepage.txt new file mode 100644 index 0000000..95a2b32 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/properties/foaf.homepage.txt @@ -0,0 +1,4 @@ +* [[Imported from::foaf:homepage]] +* [[Property description::URL of the homepage of something, which is a general web resource.@en]] + +[[Category:Imported vocabulary]] {{DISPLAYTITLE:foaf:homepage}} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/properties/foaf.knows.txt b/mediawiki/extensions/SemanticMediaWiki/data/import/properties/foaf.knows.txt new file mode 100644 index 0000000..997db97 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/properties/foaf.knows.txt @@ -0,0 +1,4 @@ +* [[Imported from::foaf:knows]] +* [[Property description::A person known by this person (indicating some level of reciprocated interaction between the parties).@en]] + +[[Category:Imported vocabulary]] {{DISPLAYTITLE:foaf:knows}} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/properties/foaf.name.txt b/mediawiki/extensions/SemanticMediaWiki/data/import/properties/foaf.name.txt new file mode 100644 index 0000000..2baf7a0 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/properties/foaf.name.txt @@ -0,0 +1,4 @@ +* [[Imported from::foaf:name]] +* [[Property description::A name for some thing or agent.@en]] + +[[Category:Imported vocabulary]] {{DISPLAYTITLE:foaf:name}} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/properties/owl.differentFrom.txt b/mediawiki/extensions/SemanticMediaWiki/data/import/properties/owl.differentFrom.txt new file mode 100644 index 0000000..35db603 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/properties/owl.differentFrom.txt @@ -0,0 +1,4 @@ +* [[Imported from::owl:differentFrom]] +* [[Property description::The property that determines that two given individuals are different.@en]] + +[[Category:Imported vocabulary]] {{DISPLAYTITLE:owl:differentFrom}} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/search/facetedsearch.defaultprofile.json b/mediawiki/extensions/SemanticMediaWiki/data/import/search/facetedsearch.defaultprofile.json new file mode 100644 index 0000000..3ecd4eb --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/search/facetedsearch.defaultprofile.json @@ -0,0 +1,44 @@ +{ + "type": "FACETEDSEARCH_PROFILE_SCHEMA", + "profiles": { + "default_profile": { + "message_key": "smw-facetedsearch-profile-label-default", + "debug_output": false, + "theme": "default-theme", + "result": { + "default_limit": 50, + "paging_limit": [ + 10, + 20, + 50, + 250, + 500 + ] + }, + "filters": { + "property_filter": { + "hierarchy_tree": false, + "filter_input": { + "min_item": 10 + } + }, + "category_filter": { + "hierarchy_tree": false, + "filter_input": { + "min_item": 10 + } + }, + "value_filter": { + "default_filter": "list_filter", + "condition_field": false, + "filter_input": { + "min_item": 10 + } + } + } + } + }, + "tags": [ + "faceted search" + ] +} diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/smw.groups.json b/mediawiki/extensions/SemanticMediaWiki/data/import/smw.groups.json new file mode 100644 index 0000000..eeb5bb3 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/smw.groups.json @@ -0,0 +1,28 @@ +{ + "description": "Semantic MediaWiki group import", + "import": [ + { + "page": "Group:Schema properties", + "namespace": "SMW_NS_SCHEMA", + "contents": { + "importFrom": "/groups/schema.json" + }, + "options": { + "replaceable": { "LAST_EDITOR": "IS_IMPORTER" } + } + }, + { + "page": "Group:Predefined properties", + "namespace": "SMW_NS_SCHEMA", + "contents": { + "importFrom": "/groups/predefined.properties.json" + }, + "options": { + "replaceable": { "LAST_EDITOR": "IS_IMPORTER" } + } + } + ], + "meta": { + "version": "1" + } +} diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/smw.search.json b/mediawiki/extensions/SemanticMediaWiki/data/import/smw.search.json new file mode 100644 index 0000000..ae58983 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/smw.search.json @@ -0,0 +1,19 @@ +{ + "description": "Semantic MediaWiki search import", + "import": [ + { + "page": "Profile:Facetedsearch default profile", + "namespace": "SMW_NS_SCHEMA", + "import_performer": "SemanticMediaWikiImporter", + "contents": { + "importFrom": "/search/facetedsearch.defaultprofile.json" + }, + "options": { + "replaceable": { "LAST_EDITOR": "IS_IMPORTER" } + } + } + ], + "meta": { + "version": "1" + } +} diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/smw.vocab.json b/mediawiki/extensions/SemanticMediaWiki/data/import/smw.vocab.json new file mode 100644 index 0000000..939207b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/smw.vocab.json @@ -0,0 +1,88 @@ +{ + "description": "Semantic MediaWiki default vocabulary import", + "import": [ + { + "page": "Smw import schema", + "namespace": "NS_MEDIAWIKI", + "contents": { + "importFrom": "/vocabularies/schema.txt" + }, + "options": { + "replaceable": false + } + }, + { + "page": "Smw import skos", + "namespace": "NS_MEDIAWIKI", + "contents": { + "importFrom": "/vocabularies/skos.txt" + }, + "options": { + "replaceable": false + } + }, + { + "page": "Smw import foaf", + "namespace": "NS_MEDIAWIKI", + "contents": { + "importFrom": "/vocabularies/foaf.txt" + }, + "options": { + "replaceable": false + } + }, + { + "page": "Smw import owl", + "namespace": "NS_MEDIAWIKI", + "contents": { + "importFrom": "/vocabularies/owl.txt" + }, + "options": { + "replaceable": false + } + }, + { + "page": "Foaf:knows", + "namespace": "SMW_NS_PROPERTY", + "contents": { + "importFrom": "/properties/foaf.knows.txt" + }, + "options": { + "replaceable": false + } + }, + { + "page": "Foaf:name", + "namespace": "SMW_NS_PROPERTY", + "contents": { + "importFrom": "/properties/foaf.name.txt" + }, + "options": { + "replaceable": false + } + }, + { + "page": "Foaf:homepage", + "namespace": "SMW_NS_PROPERTY", + "contents": { + "importFrom": "/properties/foaf.homepage.txt" + }, + "options": { + "replaceable": false + } + }, + { + "page": "Owl:differentFrom", + "namespace": "SMW_NS_PROPERTY", + "contents": { + "importFrom": "/properties/owl.differentFrom.txt" + }, + "options": { + "replaceable": false + } + } + ], + "meta": { + "version": "1" + } +} diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/dcam.txt b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/dcam.txt new file mode 100644 index 0000000..d89a721 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/dcam.txt @@ -0,0 +1,7 @@ +http://purl.org/dc/dcam/ | [https://dublincore.org/specifications/dublin-core/dcmi-terms/#section-8 Dublin Core Terms for vocabulary description] + domainIncludes|Type:Page + memberOf|Type:Page + rangeIncludes|Type:Page + VocabularyEncodingScheme|Category + +[[Category:Imported vocabulary]] diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/dcmitype.txt b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/dcmitype.txt new file mode 100644 index 0000000..dff4b5e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/dcmitype.txt @@ -0,0 +1,15 @@ +http://purl.org/dc/dcmitype/ | [https://dublincore.org/documents/dcmi-type-vocabulary/ DCMI Type Vocabulary] + Collection|Category + Dataset|Category + Event|Category + Image|Category + InteractiveResource|Category + MovingImage|Category + PhysicalObject|Category + Service|Category + Software|Category + Sound|Category + StillImage|Category + Text|Category + +[[Category:Imported vocabulary]] diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/dct.txt b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/dct.txt new file mode 100644 index 0000000..f19614f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/dct.txt @@ -0,0 +1,81 @@ +http://purl.org/dc/terms/ | [http://purl.org/dc/terms/ Dublin Core™ Metadata Initiative (DCMI)] + abstract|Type:Text + accessRights|Type:Page + accrualMethod|Type:Page + accrualPeriodicity|Type:Page + accrualPolicy|Type:Page + alternative|Type:Text + audience|Type:Page + available|Type:Date + bibliographicCitation|Type:Text + conformsTo|Type:Page + contributor|Type:Page + coverage|Type:Page + created|Type:Date + creator|Type:Page + date|Type:Date + dateAccepted|Type:Date + dateCopyrighted|Type:Date + dateSubmitted|Type:Date + description|Type:Text + educationLevel|Type:Page + extent|Type:Page + format|Type:Page + hasFormat|Type:Page + hasPart|Type:Page + hasVersion|Type:Page + identifier|Type:External identifier + instructionalMethod|Type:Text + isFormatOf|Type:Page + isPartOf|Type:Page + isReferencedBy|Type:Page + isReplacedBy|Type:Page + isRequiredBy|Type:Page + issued|Type:Date + isVersionOf|Type:Page + language|Type:Page + license|Type:URL + mediator|Type:Page + medium|Type:Page + modified|Type:Date + provenance|Type:Page + publisher|Type:Page + references|Type:Page + relation|Type:Page + replaces|Type:Page + requires|Type:Page + rights|Type:Page + rightsHolder|Type:Page + source|Type:Page + spatial|Type:Page + subject|Type:Page + tableOfContents|Type:Text + temporal|Type:Page + title|Type:Text + type|Type:Page + valid|Type:Date + + Agent|Category + AgentClass|Category + BibliographicResource|Category + FileFormat|Category + Frequency|Category + Jurisdiction|Category + LicenseDocument|Category + LinguisticSystem|Category + Location|Category + LocationPeriodOrJurisdiction|Category + MediaType|Category + MediaTypeOrExtent|Category + MethodOfAccrual|Category + MethodOfInstruction|Category + PeriodOfTime|Category + PhysicalMedium|Category + PhysicalResource|Category + Policy|Category + ProvenanceStatement|Category + RightsStatement|Category + SizeOrDuration|Category + Standard|Category + +[[Category:Imported vocabulary]] diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/foaf.txt b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/foaf.txt new file mode 100644 index 0000000..9404ad4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/foaf.txt @@ -0,0 +1,50 @@ +http://xmlns.com/foaf/0.1/ | [https://en.wikipedia.org/wiki/FOAF_(ontology) Friend Of A Friend] + aimChatID|Type:External identifier + currentProject|Type:Page + depiction|Type:Page + depicts|Type:Page + dnaChecksum|Type:Text + family_name|Type:Text + firstName|Type:Text + fundedBy|Type:Page + geekcode|Type:Text + givenname|Type:Text + homepage|Type:URL + iChatID|Type:External identifier + img|Type:Page + interest|Type:Page + jabberID|Type:External identifier + knows|Type:Page + linkedWith|Type:Page + logo|Type:Page + made|Type:Page + mbox|Type:Email + mbox_sha1sum|Type:Text + msnChatID|Type:External identifier + myersBriggs|Type:Text + name|Type:Text + nick|Type:Text + page|Type:Page + pastProject|Type:Page + phone|Type:Telephone number + plan|Type:Text + publications|Type:Page + schoolHomepage|Type:URL + sha1|Type:Text + surname|Type:Text + theme|Type:Page + thumbnail|Type:URL + title|Type:Text + topic|Type:Page + topic_interest|Type:Page + weblog|Type:Page + workInfoHomepage|Type:URL + workplaceHomepage|Type:URL + + Document|Category + Image|Category + Organization|Category + Person|Category + Project |Category + +[[Category:Imported vocabulary]] diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/owl.txt b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/owl.txt new file mode 100644 index 0000000..f8b5538 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/owl.txt @@ -0,0 +1,48 @@ +https://www.w3.org/TR/owl2-syntax/ | [https://www.w3.org/TR/owl2-syntax/ Web Ontology Language (OWL)] + AllDifferent|Category + allValuesFrom|Type:Page + AnnotationProperty|Category + backwardCompatibleWith|Type:Page + cardinality|Type:Number + Class|Category + comment|Type:Page + complementOf|Type:Page + DataRange|Category + DatatypeProperty|Category + DeprecatedClass|Category + DeprecatedProperty|Category + differentFrom|Type:Page + disjointWith|Type:Page + distinctMembers|Type:Page + equivalentClass|Type:Page + equivalentProperty|Type:Page + FunctionalProperty|Category + hasValue|Type:Page + imports|Type:Page + incompatibleWith|Type:Page + intersectionOf|Type:Page + InverseFunctionalProperty|Category + inverseOf|Type:Page + label|Type:Page + maxCardinality|Type:Number + Members|Type:Page + minCardinality|Type:Number + Nothing|Category + ObjectProperty|Category + oneOf|Type:Page + onProperty|Type:Page + Ontology|Category + OntologyProperty|Category + owl|Type:Page + priorVersion|Type:Page + Restriction|Category + sameAs|Type:Page + seeAlso|Type:Page + someValuesFrom|Type:Page + SymmetricProperty|Category + Thing|Category + TransitiveProperty|Category + unionOf|Type:Page + versionInfo|Type:Page + +[[Category:Imported vocabulary]] diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/rdfs.txt b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/rdfs.txt new file mode 100644 index 0000000..a0a55a2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/rdfs.txt @@ -0,0 +1,35 @@ +http://www.w3.org/TR/rdf-schema/ | [http://www.w3.org/TR/rdf-schema/ RDF Schema] + type|Type:Page + subClassOf|Category + subPropertyOf|Type:Page + domain|Type:Page + range|Type:Page + label|Type:Text + comment|Type:Text + member|Type:Annotation URI + first|Type:Annotation URI + rest|Type:Annotation URI + seeAlso|Type:Annotation URI + isDefinedBy|Type:Annotation URI + value|Type:Annotation URI + subject|Type:Annotation URI + predicate|Type:Annotation URI + object|Type:Annotation URI + + Resource|Category + Literal|Category + langString|Category + HTML|Category + XMLLiteral|Category + Class|Category + Property|Category + Datatype|Category + Statement|Category + Bag|Category + Seq|Category + Alt|Category + Container|Category + ContainerMembershipProperty|Category + List|Category + +[[Category:Imported vocabulary]] diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/schema.txt b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/schema.txt new file mode 100644 index 0000000..16d5864 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/schema.txt @@ -0,0 +1,2885 @@ +https://schema.org/ | [https://schema.org/version/latest Schema.org], V 28.0 + about|Type:Text + abridged|Type:Boolean + abstract|Type:Text + accelerationTime|Type:Quantity + acceptedAnswer|Type:Text + acceptedOffer|Type:Text + acceptedPaymentMethod|Type:Text + acceptsReservations|Type:Text + accessCode|Type:Text + accessMode|Type:Text + accessModeSufficient|Type:Text + accessibilityAPI|Type:Text + accessibilityControl|Type:Text + accessibilityFeature|Type:Text + accessibilityHazard|Type:Text + accessibilitySummary|Type:Text + accommodationCategory|Type:Text + accommodationFloorPlan|Type:Text + accountId|Type:Text + accountMinimumInflow|Type:Text + accountOverdraftLimit|Type:Text + accountablePerson|Type:Text + acquireLicensePage|Type:Text + acquiredFrom|Type:Text + acrissCode|Type:Text + actionAccessibilityRequirement|Type:Text + actionApplication|Type:Text + actionOption|Type:Text + actionPlatform|Type:Text + actionStatus|Type:Text + actionableFeedbackPolicy|Type:Text + activeIngredient|Type:Text + activityDuration|Type:Text + activityFrequency|Type:Text + actor|Type:Text + actors|Type:Text + addOn|Type:Text + additionalName|Type:Text + additionalNumberOfGuests|Type:Number + additionalProperty|Type:Page + additionalType|Type:Text + additionalVariable|Type:Text + address|Type:Text + addressCountry|Type:Text + addressLocality|Type:Text + addressRegion|Type:Text + administrationRoute|Type:Text + advanceBookingRequirement|Type:Text + adverseOutcome|Type:Text + affectedBy|Type:Text + affiliation|Type:Text + afterMedia|Type:Text + agent|Type:Text + agentInteractionStatistic|Type:Text + aggregateRating|Type:Text + aircraft|Type:Text + album|Type:Text + albumProductionType|Type:Text + albumRelease|Type:Text + albumReleaseType|Type:Text + albums|Type:Text + alcoholWarning|Type:Text + algorithm|Type:Text + alignmentType|Type:Text + alternateName|Type:Text + alternativeHeadline|Type:Text + alternativeOf|Type:Text + alumni|Type:Text + alumniOf|Type:Text + amenityFeature|Type:Text + amount|Type:Text + amountOfThisGood|Type:Number + announcementLocation|Type:Text + annualPercentageRate|Type:Text + answerCount|Type:Number + answerExplanation|Type:Text + antagonist|Type:Text + appearance|Type:Text + applicableCountry|Type:Text + applicableLocation|Type:Text + applicantLocationRequirements|Type:Text + application|Type:Text + applicationCategory|Type:Text + applicationContact|Type:Text + applicationDeadline|Type:Date + applicationStartDate|Type:Date + applicationSubCategory|Type:Text + applicationSuite|Type:Text + appliesToDeliveryMethod|Type:Text + appliesToPaymentMethod|Type:Text + archiveHeld|Type:Text + archivedAt|Type:URL + area|Type:Text + areaServed|Type:Text + arrivalAirport|Type:Text + arrivalBoatTerminal|Type:Text + arrivalBusStop|Type:Text + arrivalGate|Type:Text + arrivalPlatform|Type:Text + arrivalStation|Type:Text + arrivalTerminal|Type:Text + arrivalTime|Type:Date + artEdition|Type:Text + artMedium|Type:Text + arterialBranch|Type:Text + artform|Type:Text + articleBody|Type:Text + articleSection|Type:Text + artist|Type:Text + artworkSurface|Type:Text + asin|Type:Text + aspect|Type:Text + assembly|Type:Text + assemblyVersion|Type:Text + assesses|Type:Text + associatedAnatomy|Type:Text + associatedArticle|Type:Text + associatedClaimReview|Type:Text + associatedDisease|Type:Text + associatedMedia|Type:Text + associatedMediaReview|Type:Text + associatedPathophysiology|Type:Text + associatedReview|Type:Text + athlete|Type:Text + attendee|Type:Text + attendees|Type:Text + audience|Type:Text + audienceType|Type:Text + audio|Type:Text + auditDate|Type:Date + authenticator|Type:Text + author|Type:Text + availability|Type:Text + availabilityEnds|Type:Date + availabilityStarts|Type:Date + availableAtOrFrom|Type:Text + availableChannel|Type:Text + availableDeliveryMethod|Type:Text + availableFrom|Type:Date + availableIn|Type:Text + availableLanguage|Type:Text + availableOnDevice|Type:Text + availableService|Type:Text + availableStrength|Type:Text + availableTest|Type:Text + availableThrough|Type:Date + award|Type:Text + awards|Type:Text + awayTeam|Type:Text + backstory|Type:Text + bankAccountType|Type:Text + baseSalary|Type:Text + bccRecipient|Type:Text + bed|Type:Text + beforeMedia|Type:Text + beneficiaryBank|Type:Text + benefits|Type:Text + benefitsSummaryUrl|Type:URL + bestRating|Type:Text + billingAddress|Type:Text + billingDuration|Type:Text + billingIncrement|Type:Number + billingPeriod|Type:Text + billingStart|Type:Number + bioChemInteraction|Type:Text + bioChemSimilarity|Type:Text + biologicalRole|Type:Text + biomechnicalClass|Type:Text + birthDate|Type:Date + birthPlace|Type:Text + bitrate|Type:Text + blogPost|Type:Text + blogPosts|Type:Text + bloodSupply|Type:Text + boardingGroup|Type:Text + boardingPolicy|Type:Text + bodyLocation|Type:Text + bodyType|Type:Text + bookEdition|Type:Text + bookFormat|Type:Text + bookingAgent|Type:Text + bookingTime|Type:Date + borrower|Type:Text + box|Type:Text + branch|Type:Text + branchCode|Type:Text + branchOf|Type:Text + brand|Type:Text + breadcrumb|Type:Text + breastfeedingWarning|Type:Text + broadcastAffiliateOf|Type:Text + broadcastChannelId|Type:Text + broadcastDisplayName|Type:Text + broadcastFrequency|Type:Text + broadcastFrequencyValue|Type:Number + broadcastOfEvent|Type:Text + broadcastServiceTier|Type:Text + broadcastSignalModulation|Type:Text + broadcastSubChannel|Type:Text + broadcastTimezone|Type:Text + broadcaster|Type:Text + broker|Type:Text + browserRequirements|Type:Text + busName|Type:Text + busNumber|Type:Text + businessDays|Type:Text + businessFunction|Type:Text + buyer|Type:Text + byArtist|Type:Text + byDay|Type:Text + byMonth|Type:Number + byMonthDay|Type:Number + byMonthWeek|Type:Number + callSign|Type:Text + calories|Type:Text + candidate|Type:Text + caption|Type:Text + carbohydrateContent|Type:Text + cargoVolume|Type:Text + carrier|Type:Text + carrierRequirements|Type:Text + cashBack|Type:Boolean + catalog|Type:Text + catalogNumber|Type:Text + category|Type:Text + causeOf|Type:Text + ccRecipient|Type:Text + certificationIdentification|Type:Text + certificationRating|Type:Text + certificationStatus|Type:Text + character|Type:Text + characterAttribute|Type:Text + characterName|Type:Text + cheatCode|Type:Text + checkinTime|Type:Date + checkoutPageURLTemplate|Type:Text + checkoutTime|Type:Date + chemicalComposition|Type:Text + chemicalRole|Type:Text + childMaxAge|Type:Number + childMinAge|Type:Number + childTaxon|Type:Text + children|Type:Text + cholesterolContent|Type:Text + circle|Type:Text + citation|Type:Text + claimInterpreter|Type:Text + claimReviewed|Type:Text + clincalPharmacology|Type:Text + clinicalPharmacology|Type:Text + clipNumber|Type:Text + closes|Type:Text + coach|Type:Text + code|Type:Text + codeRepository|Type:URL + codeSampleType|Type:Text + codeValue|Type:Text + codingSystem|Type:Text + colleague|Type:Text + colleagues|Type:Text + collection|Type:Text + collectionSize|Type:Number + color|Type:Text + colorSwatch|Type:URL + colorist|Type:Text + comment|Type:Text + commentCount|Type:Number + commentText|Type:Text + commentTime|Type:Date + competencyRequired|Type:Text + competitor|Type:Text + composer|Type:Text + comprisedOf|Type:Text + conditionsOfAccess|Type:Text + confirmationNumber|Type:Text + connectedTo|Type:Text + constraintProperty|Type:Page + contactOption|Type:Text + contactPoint|Type:Text + contactPoints|Type:Text + contactType|Type:Text + contactlessPayment|Type:Boolean + containedIn|Type:Text + containedInPlace|Type:Text + containsPlace|Type:Text + containsSeason|Type:Text + contentLocation|Type:Text + contentRating|Type:Text + contentReferenceTime|Type:Date + contentSize|Type:Text + contentType|Type:Text + contentUrl|Type:URL + contraindication|Type:Text + contributor|Type:Text + cookTime|Type:Text + cookingMethod|Type:Text + copyrightHolder|Type:Text + copyrightNotice|Type:Text + copyrightYear|Type:Number + correction|Type:Text + correctionsPolicy|Type:URL + costCategory|Type:Text + costCurrency|Type:Text + costOrigin|Type:Text + costPerUnit|Type:Number + countriesNotSupported|Type:Text + countriesSupported|Type:Text + countryOfAssembly|Type:Text + countryOfLastProcessing|Type:Text + countryOfOrigin|Type:Text + course|Type:Text + courseCode|Type:Text + courseMode|Type:Text + coursePrerequisites|Type:Text + courseSchedule|Type:Text + courseWorkload|Type:Text + coverageEndTime|Type:Date + coverageStartTime|Type:Date + creativeWorkStatus|Type:Text + creator|Type:Text + credentialCategory|Type:Text + creditText|Type:Text + creditedTo|Type:Text + cssSelector|Type:Text + currenciesAccepted|Type:Text + currency|Type:Text + currentExchangeRate|Type:Text + customer|Type:Text + customerRemorseReturnFees|Type:Text + customerRemorseReturnLabelSource|Type:Text + customerRemorseReturnShippingFeesAmount|Type:Text + cutoffTime|Type:Time + cvdCollectionDate|Type:Date + cvdFacilityCounty|Type:Text + cvdFacilityId|Type:Text + cvdNumBeds|Type:Number + cvdNumBedsOcc|Type:Number + cvdNumC19Died|Type:Number + cvdNumC19HOPats|Type:Number + cvdNumC19HospPats|Type:Number + cvdNumC19MechVentPats|Type:Number + cvdNumC19OFMechVentPats|Type:Number + cvdNumC19OverflowPats|Type:Number + cvdNumICUBeds|Type:Number + cvdNumICUBedsOcc|Type:Number + cvdNumTotBeds|Type:Number + cvdNumVent|Type:Number + cvdNumVentUse|Type:Number + dataFeedElement|Type:Text + dataset|Type:Text + datasetTimeInterval|Type:Date + dateCreated|Type:Date + dateDeleted|Type:Date + dateIssued|Type:Date + dateModified|Type:Date + datePosted|Type:Date + datePublished|Type:Date + dateRead|Type:Date + dateReceived|Type:Date + dateSent|Type:Date + dateVehicleFirstRegistered|Type:Date + dateline|Type:Text + dayOfWeek|Type:Text + deathDate|Type:Date + deathPlace|Type:Text + defaultValue|Type:Text + deliveryAddress|Type:Text + deliveryLeadTime|Type:Text + deliveryMethod|Type:Text + deliveryStatus|Type:Text + deliveryTime|Type:Text + department|Type:Text + departureAirport|Type:Text + departureBoatTerminal|Type:Text + departureBusStop|Type:Text + departureGate|Type:Text + departurePlatform|Type:Text + departureStation|Type:Text + departureTerminal|Type:Text + departureTime|Type:Date + dependencies|Type:Text + depth|Type:Text + description|Type:Text + device|Type:Text + diagnosis|Type:Text + diagram|Type:Text + diet|Type:Text + dietFeatures|Type:Text + differentialDiagnosis|Type:Text + digitalSourceType|Type:Text + directApply|Type:Boolean + director|Type:Text + directors|Type:Text + disambiguatingDescription|Type:Text + discount|Type:Number + discountCode|Type:Text + discountCurrency|Type:Text + discusses|Type:Text + discussionUrl|Type:URL + diseasePreventionInfo|Type:URL + diseaseSpreadStatistics|Type:Text + dissolutionDate|Type:Date + distance|Type:Text + distinguishingSign|Type:Text + distribution|Type:Text + diversityPolicy|Type:URL + diversityStaffingReport|Type:URL + documentation|Type:URL + doesNotShip|Type:Boolean + domainIncludes|Type:Text + domiciledMortgage|Type:Boolean + doorTime|Type:Date + dosageForm|Type:Text + doseSchedule|Type:Text + doseUnit|Type:Text + doseValue|Type:Number + downPayment|Type:Number + downloadUrl|Type:URL + downvoteCount|Type:Number + drainsTo|Type:Text + driveWheelConfiguration|Type:Text + dropoffLocation|Type:Text + dropoffTime|Type:Date + drug|Type:Text + drugClass|Type:Text + drugUnit|Type:Text + duns|Type:Text + duplicateTherapy|Type:Text + duration|Type:Text + durationOfWarranty|Type:Text + duringMedia|Type:URL + earlyPrepaymentPenalty|Type:Text + editEIDR|Type:Text + editor|Type:Text + eduQuestionType|Type:Text + educationRequirements|Type:Text + educationalAlignment|Type:Text + educationalCredentialAwarded|Type:Text + educationalFramework|Type:Text + educationalLevel|Type:Text + educationalProgramMode|Type:Text + educationalRole|Type:Text + educationalUse|Type:Text + elevation|Type:Number + eligibilityToWorkRequirement|Type:Text + eligibleCustomerType|Type:Text + eligibleDuration|Type:Text + eligibleQuantity|Type:Text + eligibleRegion|Type:Text + eligibleTransactionVolume|Type:Text + email|Type:Text + embedUrl|Type:URL + embeddedTextCaption|Type:Text + emissionsCO2|Type:Number + employee|Type:Text + employees|Type:Text + employerOverview|Type:Text + employmentType|Type:Text + employmentUnit|Type:Text + encodesBioChemEntity|Type:Text + encodesCreativeWork|Type:Text + encoding|Type:Text + encodingFormat|Type:Text + encodingType|Type:Text + encodings|Type:Text + endDate|Type:Date + endOffset|Type:Text + endTime|Type:Date + endorsee|Type:Text + endorsers|Type:Text + energyEfficiencyScaleMax|Type:Text + energyEfficiencyScaleMin|Type:Text + engineDisplacement|Type:Quantity + enginePower|Type:Quantity + engineType|Type:Text + entertainmentBusiness|Type:Text + epidemiology|Type:Text + episode|Type:Text + episodeNumber|Type:Number + episodes|Type:Text + equal|Type:Text + error|Type:Text + estimatedCost|Type:Text + estimatedFlightDuration|Type:Text + estimatedSalary|Type:Text + estimatesRiskOf|Type:Text + ethicsPolicy|Type:Text + event|Type:Text + eventAttendanceMode|Type:Text + eventSchedule|Type:Text + eventStatus|Type:Text + events|Type:Text + evidenceLevel|Type:Text + evidenceOrigin|Type:Text + exampleOfWork|Type:Text + exceptDate|Type:Date + exchangeRateSpread|Type:Text + executableLibraryName|Type:Text + exerciseCourse|Type:Text + exercisePlan|Type:Text + exerciseRelatedDiet|Type:Text + exerciseType|Type:Text + exifData|Type:Text + expectedArrivalFrom|Type:Date + expectedArrivalUntil|Type:Date + expectedPrognosis|Type:Text + expectsAcceptanceOf|Type:Text + experienceInPlaceOfEducation|Type:Boolean + experienceRequirements|Type:Text + expertConsiderations|Type:Text + expires|Type:Date + expressedIn|Type:Text + familyName|Type:Text + fatContent|Type:Quantity + faxNumber|Type:Text + featureList|Type:Text + feesAndCommissionsSpecification|Type:Text + fiberContent|Type:Quantity + fileFormat|Type:Text + fileSize|Type:Text + financialAidEligible|Type:Text + firstAppearance|Type:Text + firstPerformance|Type:Text + flightDistance|Type:Text + flightNumber|Type:Text + floorLevel|Type:Text + floorLimit|Type:Text + floorSize|Type:Quantity + followee|Type:Text + follows|Type:Text + followup|Type:Text + foodEstablishment|Type:Text + foodEvent|Type:Text + foodWarning|Type:Text + founder|Type:Text + founders|Type:Text + foundingDate|Type:Date + foundingLocation|Type:Text + free|Type:Boolean + freeShippingThreshold|Type:Text + frequency|Type:Text + fromLocation|Type:Text + fuelCapacity|Type:Quantity + fuelConsumption|Type:Quantity + fuelEfficiency|Type:Quantity + fuelType|Type:Text + functionalClass|Type:Text + fundedItem|Type:Text + funder|Type:Text + funding|Type:Text + game|Type:Text + gameAvailabilityType|Type:Text + gameEdition|Type:Text + gameItem|Type:Text + gameLocation|Type:Text + gamePlatform|Type:Text + gameServer|Type:Text + gameTip|Type:Text + gender|Type:Text + genre|Type:Text + geo|Type:Geographic coordinates + geoContains|Type:Text + geoCoveredBy|Type:Text + geoCovers|Type:Text + geoCrosses|Type:Text + geoDisjoint|Type:Text + geoEquals|Type:Text + geoIntersects|Type:Text + geoMidpoint|Type:Geographic coordinates + geoOverlaps|Type:Text + geoRadius|Type:Text + geoTouches|Type:Text + geoWithin|Type:Text + geographicArea|Type:Text + gettingTestedInfo|Type:URL + givenName|Type:Text + globalLocationNumber|Type:Text + governmentBenefitsInfo|Type:Text + gracePeriod|Type:Text + grantee|Type:Text + greater|Type:Text + greaterOrEqual|Type:Text + gtin|Type:Text + gtin12|Type:Text + gtin13|Type:Text + gtin14|Type:Text + gtin8|Type:Text + guideline|Type:Text + guidelineDate|Type:Date + guidelineSubject|Type:Text + handlingTime|Type:Quantity + hasAdultConsideration|Type:Text + hasBioChemEntityPart|Type:Text + hasBioPolymerSequence|Type:Text + hasBroadcastChannel|Type:Text + hasCategoryCode|Type:Text + hasCertification|Type:Text + hasCourse|Type:Text + hasCourseInstance|Type:Text + hasCredential|Type:Text + hasDefinedTerm|Type:Text + hasDeliveryMethod|Type:Text + hasDigitalDocumentPermission|Type:Text + hasDriveThroughService|Type:Boolean + hasEnergyConsumptionDetails|Type:Text + hasEnergyEfficiencyCategory|Type:Text + hasGS1DigitalLink|Type:URL + hasHealthAspect|Type:Text + hasMap|Type:Text + hasMeasurement|Type:Quantity + hasMemberProgram|Type:Text + hasMenu|Type:Text + hasMenuItem|Type:Text + hasMenuSection|Type:Text + hasMerchantReturnPolicy|Type:Text + hasMolecularFunction|Type:Text + hasOccupation|Type:Text + hasOfferCatalog|Type:Text + hasPOS|Type:Text + hasPart|Type:Text + hasRepresentation|Type:Text + hasTierBenefit|Type:Text + hasTierRequirement|Type:Text + hasTiers|Type:Text + hasVariant|Type:Text + headline|Type:Text + healthCondition|Type:Text + healthPlanCoinsuranceOption|Type:Text + healthPlanCoinsuranceRate|Type:Number + healthPlanCopay|Type:Text + healthPlanCopayOption|Type:Text + healthPlanCostSharing|Type:Boolean + healthPlanDrugOption|Type:Text + healthPlanDrugTier|Type:Text + healthPlanId|Type:Text + healthPlanMarketingUrl|Type:URL + healthPlanNetworkId|Type:Text + healthPlanNetworkTier|Type:Text + healthPlanPharmacyCategory|Type:Text + healthcareReportingData|Type:Text + height|Type:Text + highPrice|Type:Number + hiringOrganization|Type:Text + holdingArchive|Type:Text + homeLocation|Type:Text + homeTeam|Type:Text + honorificPrefix|Type:Text + honorificSuffix|Type:Text + hospitalAffiliation|Type:Text + hostingOrganization|Type:Text + hoursAvailable|Type:Text + howPerformed|Type:Text + httpMethod|Type:Text + iataCode|Type:Text + icaoCode|Type:Text + identifier|Type:Text + identifyingExam|Type:Text + identifyingTest|Type:Text + illustrator|Type:Text + image|Type:Text + imagingTechnique|Type:Text + inAlbum|Type:Text + inBroadcastLineup|Type:Text + inChI|Type:Text + inChIKey|Type:Text + inCodeSet|Type:URL + inDefinedTermSet|Type:URL + inLanguage|Type:Text + inPlaylist|Type:Text + inProductGroupWithID|Type:Text + inStoreReturnsOffered|Type:Boolean + inSupportOf|Type:Text + incentiveCompensation|Type:Text + incentives|Type:Text + includedComposition|Type:Text + includedDataCatalog|Type:Text + includedInDataCatalog|Type:Text + includedInHealthInsurancePlan|Type:Text + includedRiskFactor|Type:Text + includesAttraction|Type:Text + includesHealthPlanFormulary|Type:Text + includesHealthPlanNetwork|Type:Text + includesObject|Type:Text + increasesRiskOf|Type:Text + industry|Type:Text + ineligibleRegion|Type:Text + infectiousAgent|Type:Text + infectiousAgentClass|Type:Text + ingredients|Type:Text + inker|Type:Text + insertion|Type:Text + installUrl|Type:URL + instructor|Type:Text + instrument|Type:Text + intensity|Type:Quantity + interactingDrug|Type:Text + interactionCount|Type:Text + interactionService|Type:Text + interactionStatistic|Type:Text + interactionType|Type:Text + interactivityType|Type:Text + interestRate|Type:Number + interpretedAsClaim|Type:Text + inventoryLevel|Type:Quantity + inverseOf|Type:Page + isAcceptingNewPatients|Type:Boolean + isAccessibleForFree|Type:Boolean + isAccessoryOrSparePartFor|Type:Text + isAvailableGenerically|Type:Boolean + isBasedOn|Type:URL + isBasedOnUrl|Type:URL + isConsumableFor|Type:Text + isEncodedByBioChemEntity|Type:Text + isFamilyFriendly|Type:Boolean + isGift|Type:Boolean + isInvolvedInBiologicalProcess|Type:URL + isLiveBroadcast|Type:Boolean + isLocatedInSubcellularLocation|Type:Text + isPartOf|Type:URL + isPartOfBioChemEntity|Type:Text + isPlanForApartment|Type:Text + isProprietary|Type:Boolean + isRelatedTo|Type:Text + isResizable|Type:Boolean + isSimilarTo|Type:Text + isTierOf|Type:Text + isUnlabelledFallback|Type:Boolean + isVariantOf|Type:Text + isbn|Type:Text + isicV4|Type:Text + iso6523Code|Type:Text + isrcCode|Type:Text + issn|Type:Text + issueNumber|Type:Number + issuedBy|Type:Text + issuedThrough|Type:Text + iswcCode|Type:Text + item|Type:Text + itemCondition|Type:Text + itemDefectReturnFees|Type:Text + itemDefectReturnLabelSource|Type:Text + itemDefectReturnShippingFeesAmount|Type:Text + itemListElement|Type:Text + itemListOrder|Type:Text + itemLocation|Type:Text + itemOffered|Type:Text + itemReviewed|Type:Text + itemShipped|Type:Text + itinerary|Type:Text + iupacName|Type:Text + jobBenefits|Type:Text + jobImmediateStart|Type:Boolean + jobLocation|Type:Text + jobLocationType|Type:Text + jobStartDate|Type:Date + jobTitle|Type:Text + jurisdiction|Type:Text + keywords|Type:Text + knownVehicleDamages|Type:Text + knows|Type:Text + knowsAbout|Type:Text + knowsLanguage|Type:Text + labelDetails|Type:URL + landlord|Type:Text + language|Type:Text + lastReviewed|Type:Date + latitude|Type:Number + layoutImage|Type:URL + learningResourceType|Type:Text + leaseLength|Type:Text + legalName|Type:Text + legalStatus|Type:Text + legislationApplies|Type:Text + legislationChanges|Type:Text + legislationConsolidates|Type:Text + legislationDate|Type:Date + legislationDateVersion|Type:Date + legislationIdentifier|Type:Text + legislationJurisdiction|Type:Text + legislationLegalForce|Type:Text + legislationLegalValue|Type:Text + legislationPassedBy|Type:Text + legislationResponsible|Type:Text + legislationTransposes|Type:Text + legislationType|Type:Text + leiCode|Type:Text + lender|Type:Text + lesser|Type:Text + lesserOrEqual|Type:Text + letterer|Type:Text + license|Type:URL + line|Type:Text + linkRelationship|Type:Text + liveBlogUpdate|Type:Text + loanMortgageMandateAmount|Type:Text + loanPaymentAmount|Type:Text + loanPaymentFrequency|Type:Number + loanRepaymentForm|Type:Text + loanTerm|Type:Quantity + loanType|Type:Text + location|Type:Text + locationCreated|Type:Text + lodgingUnitDescription|Type:Text + lodgingUnitType|Type:Text + logo|Type:URL + longitude|Type:Number + loser|Type:Text + lowPrice|Type:Number + lyricist|Type:Text + lyrics|Type:Text + mainContentOfPage|Type:Text + mainEntity|Type:Text + mainEntityOfPage|Type:URL + maintainer|Type:Text + makesOffer|Type:Text + manufacturer|Type:Text + map|Type:URL + mapType|Type:Text + maps|Type:URL + marginOfError|Type:Quantity + masthead|Type:URL + material|Type:URL + materialExtent|Type:Text + mathExpression|Type:Text + maxPrice|Type:Number + maxValue|Type:Number + maximumAttendeeCapacity|Type:Number + maximumEnrollment|Type:Number + maximumIntake|Type:Text + maximumPhysicalAttendeeCapacity|Type:Number + maximumVirtualAttendeeCapacity|Type:Number + mealService|Type:Text + measuredProperty|Type:Text + measurementDenominator|Type:Text + measurementMethod|Type:Text + measurementQualifier|Type:Text + measurementTechnique|Type:Text + mechanismOfAction|Type:Text + mediaAuthenticityCategory|Type:Text + mediaItemAppearance|Type:Text + median|Type:Number + medicalAudience|Type:Text + medicalSpecialty|Type:Text + medicineSystem|Type:Text + meetsEmissionStandard|Type:Text + member|Type:Text + memberOf|Type:Text + members|Type:Text + membershipNumber|Type:Text + membershipPointsEarned|Type:Number + memoryRequirements|Type:Text + mentions|Type:Text + menu|Type:Text + menuAddOn|Type:Text + merchant|Type:Text + merchantReturnDays|Type:Date + merchantReturnLink|Type:URL + messageAttachment|Type:Text + mileageFromOdometer|Type:Quantity + minPrice|Type:Number + minValue|Type:Number + minimumPaymentDue|Type:Text + missionCoveragePrioritiesPolicy|Type:URL + mobileUrl|Type:Text + model|Type:Text + modelDate|Type:Date + modifiedTime|Type:Date + molecularFormula|Type:Text + molecularWeight|Type:Quantity + monoisotopicMolecularWeight|Type:Quantity + monthlyMinimumRepaymentAmount|Type:Number + monthsOfExperience|Type:Number + mpn|Type:Text + multipleValues|Type:Boolean + muscleAction|Type:Text + musicArrangement|Type:Text + musicBy|Type:Text + musicCompositionForm|Type:Text + musicGroupMember|Type:Text + musicReleaseFormat|Type:Text + musicalKey|Type:Text + naics|Type:Text + name|Type:Text + namedPosition|Type:Text + nationality|Type:Text + naturalProgression|Type:Text + negativeNotes|Type:Text + nerve|Type:Text + nerveMotor|Type:Text + netWorth|Type:Text + newsUpdatesAndGuidelines|Type:URL + nextItem|Type:Text + noBylinesPolicy|Type:Text + nonEqual|Type:Text + nonProprietaryName|Type:Text + nonprofitStatus|Type:Text + normalRange|Type:Text + nsn|Type:Text + numAdults|Type:Number + numChildren|Type:Number + numConstraints|Type:Number + numTracks|Type:Number + numberOfAccommodationUnits|Type:Quantity + numberOfAirbags|Type:Number + numberOfAvailableAccommodationUnits|Type:Quantity + numberOfAxles|Type:Number + numberOfBathroomsTotal|Type:Number + numberOfBedrooms|Type:Number + numberOfBeds|Type:Number + numberOfCredits|Type:Number + numberOfDoors|Type:Number + numberOfEmployees|Type:Quantity + numberOfEpisodes|Type:Number + numberOfForwardGears|Type:Number + numberOfFullBathrooms|Type:Number + numberOfItems|Type:Number + numberOfLoanPayments|Type:Number + numberOfPages|Type:Number + numberOfPartialBathrooms|Type:Number + numberOfPlayers|Type:Quantity + numberOfPreviousOwners|Type:Number + numberOfRooms|Type:Number + numberOfSeasons|Type:Number + numberedPosition|Type:Number + nutrition|Type:Text + object|Type:Text + observationAbout|Type:Text + observationDate|Type:Date + observationPeriod|Type:Text + occupancy|Type:Quantity + occupationLocation|Type:Text + occupationalCategory|Type:Text + occupationalCredentialAwarded|Type:Text + offerCount|Type:Number + offeredBy|Type:Text + offers|Type:Text + offersPrescriptionByMail|Type:Boolean + openingHours|Type:Text + openingHoursSpecification|Type:Text + opens|Type:Text + operatingSystem|Type:Text + opponent|Type:Text + option|Type:Text + orderDate|Type:Date + orderDelivery|Type:Text + orderItemNumber|Type:Text + orderItemStatus|Type:Text + orderNumber|Type:Text + orderQuantity|Type:Number + orderStatus|Type:Text + orderedItem|Type:Text + organizer|Type:Text + originAddress|Type:Text + originalMediaContextDescription|Type:Text + originalMediaLink|Type:URL + originatesFrom|Type:Text + overdosage|Type:Text + ownedFrom|Type:Date + ownedThrough|Type:Date + ownershipFundingInfo|Type:Text + owns|Type:Text + pageEnd|Type:Number + pageStart|Type:Number + pagination|Type:Text + parent|Type:Text + parentItem|Type:Text + parentOrganization|Type:Text + parentService|Type:Text + parentTaxon|Type:Text + parents|Type:Text + partOfEpisode|Type:Text + partOfInvoice|Type:Text + partOfOrder|Type:Text + partOfSeason|Type:Text + partOfSeries|Type:Text + partOfSystem|Type:Text + partOfTVSeries|Type:Text + partOfTrip|Type:Text + participant|Type:Text + partySize|Type:Number + passengerPriorityStatus|Type:Text + passengerSequenceNumber|Type:Text + pathophysiology|Type:Text + pattern|Type:Text + payload|Type:Quantity + paymentAccepted|Type:Text + paymentDue|Type:Date + paymentDueDate|Type:Date + paymentMethod|Type:Text + paymentMethodId|Type:Text + paymentMethodType|Type:Text + paymentStatus|Type:Text + paymentUrl|Type:URL + penciler|Type:Text + percentile10|Type:Number + percentile25|Type:Number + percentile75|Type:Number + percentile90|Type:Number + performTime|Type:Text + performer|Type:Text + performerIn|Type:Text + performers|Type:Text + permissionType|Type:Text + permissions|Type:Text + permitAudience|Type:Text + permittedUsage|Type:Text + petsAllowed|Type:Boolean + phoneticText|Type:Text + photo|Type:Text + photos|Type:Text + physicalRequirement|Type:Text + physiologicalBenefits|Type:Text + pickupLocation|Type:Text + pickupTime|Type:Date + playMode|Type:Text + playerType|Type:Text + playersOnline|Type:Number + polygon|Type:Text + populationType|Type:Text + position|Type:Number + positiveNotes|Type:Text + possibleComplication|Type:Text + possibleTreatment|Type:Text + postOfficeBoxNumber|Type:Text + postOp|Type:Text + postalCode|Type:Text + postalCodeBegin|Type:Text + postalCodeEnd|Type:Text + postalCodePrefix|Type:Text + postalCodeRange|Type:Text + potentialAction|Type:Text + potentialUse|Type:Text + practicesAt|Type:Text + preOp|Type:Text + predecessorOf|Type:Text + pregnancyCategory|Type:Text + pregnancyWarning|Type:Text + prepTime|Type:Text + preparation|Type:Text + prescribingInfo|Type:URL + prescriptionStatus|Type:Text + previousItem|Type:Text + previousStartDate|Type:Date + price|Type:Number + priceComponent|Type:Text + priceComponentType|Type:Text + priceCurrency|Type:Text + priceRange|Type:Text + priceSpecification|Type:Text + priceType|Type:Text + priceValidUntil|Type:Date + primaryImageOfPage|Type:Text + primaryPrevention|Type:Text + printColumn|Type:Text + printEdition|Type:Text + printPage|Type:Text + printSection|Type:Text + procedure|Type:Text + procedureType|Type:Text + processingTime|Type:Text + processorRequirements|Type:Text + producer|Type:Text + produces|Type:Text + productGroupID|Type:Text + productID|Type:Text + productSupported|Type:Text + productionCompany|Type:Text + productionDate|Type:Date + proficiencyLevel|Type:Text + program|Type:Text + programMembershipUsed|Type:Text + programName|Type:Text + programPrerequisites|Type:Text + programType|Type:Text + programmingLanguage|Type:Text + programmingModel|Type:Text + propertyID|Type:Text + proprietaryName|Type:Text + proteinContent|Type:Text + provider|Type:Text + providerMobility|Type:Text + providesBroadcastService|Type:Text + providesService|Type:Text + publicAccess|Type:Boolean + publicTransportClosuresInfo|Type:URL + publication|Type:Text + publicationType|Type:Text + publishedBy|Type:Text + publishedOn|Type:Text + publisher|Type:Text + publisherImprint|Type:Text + publishingPrinciples|Type:Text + purchaseDate|Type:Date + qualifications|Type:Text + quarantineGuidelines|Type:URL + query|Type:Text + quest|Type:Text + question|Type:Text + rangeIncludes|Type:Text + ratingCount|Type:Number + ratingExplanation|Type:Text + ratingValue|Type:Number + readBy|Type:Text + readonlyValue|Type:Boolean + realEstateAgent|Type:Text + recipe|Type:Text + recipeCategory|Type:Text + recipeCuisine|Type:Text + recipeIngredient|Type:Text + recipeInstructions|Type:Text + recipeYield|Type:Quantity + recipient|Type:Text + recognizedBy|Type:Text + recognizingAuthority|Type:Text + recommendationStrength|Type:Text + recommendedIntake|Type:Text + recordLabel|Type:Text + recordedAs|Type:Text + recordedAt|Type:Text + recordedIn|Type:Text + recordingOf|Type:Text + recourseLoan|Type:Boolean + referenceQuantity|Type:Quantity + referencesOrder|Type:Text + refundType|Type:Text + regionDrained|Type:Text + regionsAllowed|Type:Text + relatedAnatomy|Type:Text + relatedCondition|Type:Text + relatedDrug|Type:Text + relatedLink|Type:URL + relatedStructure|Type:Text + relatedTherapy|Type:Text + relatedTo|Type:Text + releaseDate|Type:Date + releaseNotes|Type:Text + releaseOf|Type:Text + releasedEvent|Type:Text + relevantOccupation|Type:Text + relevantSpecialty|Type:Text + remainingAttendeeCapacity|Type:Number + renegotiableLoan|Type:Boolean + repeatCount|Type:Number + repeatFrequency|Type:Text + repetitions|Type:Number + replacee|Type:Text + replacer|Type:Text + replyToUrl|Type:URL + reportNumber|Type:Text + representativeOfPage|Type:Boolean + requiredCollateral|Type:Text + requiredGender|Type:Text + requiredMaxAge|Type:Number + requiredMinAge|Type:Number + requiredQuantity|Type:Number + requirements|Type:Text + requiresSubscription|Type:Boolean + reservationFor|Type:Thing + reservationId|Type:Text + reservationStatus|Type:Text + reservedTicket|Type:Text + responsibilities|Type:Text + restPeriods|Type:Quantity + restockingFee|Type:Number + result|Type:Text + resultComment|Type:Text + resultReview|Type:Text + returnFees|Type:Text + returnLabelSource|Type:Text + returnMethod|Type:Text + returnPolicyCategory|Type:Text + returnPolicyCountry|Type:Text + returnPolicySeasonalOverride|Type:Text + returnShippingFeesAmount|Type:Text + review|Type:Text + reviewAspect|Type:Text + reviewBody|Type:Text + reviewCount|Type:Number + reviewRating|Type:Text + reviewedBy|Type:Text + reviews|Type:Text + riskFactor|Type:Text + risks|Type:Text + roleName|Type:Text + roofLoad|Type:Quantity + rsvpResponse|Type:Text + runsTo|Type:Text + runtime|Type:Text + runtimePlatform|Type:Text + rxcui|Type:Text + safetyConsideration|Type:Text + salaryCurrency|Type:Text + salaryUponCompletion|Type:Text + sameAs|Type:URL + sampleType|Type:Text + saturatedFatContent|Type:Text + scheduleTimezone|Type:Text + scheduledPaymentDate|Type:Date + scheduledTime|Type:Date + schemaVersion|Type:Text + schoolClosuresInfo|Type:URL + screenCount|Type:Number + screenshot|Type:URL + sdDatePublished|Type:Date + sdLicense|Type:URL + sdPublisher|Type:Text + season|Type:Text + seasonNumber|Type:Number + seasons|Type:Text + seatNumber|Type:Text + seatRow|Type:Text + seatSection|Type:Text + seatingCapacity|Type:Number + seatingType|Type:Text + secondaryPrevention|Type:Text + securityClearanceRequirement|Type:Text + securityScreening|Type:Text + seeks|Type:Text + seller|Type:Text + sender|Type:Text + sensoryRequirement|Type:Text + sensoryUnit|Type:Text + serialNumber|Type:Text + seriousAdverseOutcome|Type:Text + serverStatus|Type:Text + servesCuisine|Type:Text + serviceArea|Type:Text + serviceAudience|Type:Text + serviceLocation|Type:Text + serviceOperator|Type:Text + serviceOutput|Type:Text + servicePhone|Type:Text + servicePostalAddress|Type:Text + serviceSmsNumber|Type:Text + serviceType|Type:Text + serviceUrl|Type:URL + servingSize|Type:Text + sha256|Type:Text + sharedContent|Type:Text + shippingDestination|Type:Text + shippingDetails|Type:Text + shippingLabel|Type:Text + shippingOrigin|Type:Text + shippingRate|Type:Text + shippingSettingsLink|Type:URL + sibling|Type:Text + siblings|Type:Text + signDetected|Type:Text + signOrSymptom|Type:Text + significance|Type:Text + significantLink|Type:URL + significantLinks|Type:URL + size|Type:Text + sizeGroup|Type:Text + sizeSystem|Type:Text + skills|Type:Text + sku|Type:Text + slogan|Type:Text + smiles|Type:Text + smokingAllowed|Type:Boolean + sodiumContent|Type:Text + softwareAddOn|Type:Text + softwareHelp|Type:Text + softwareRequirements|Type:Text + softwareVersion|Type:Text + sourceOrganization|Type:Text + sourcedFrom|Type:Text + spatial|Type:Text + spatialCoverage|Type:Text + speakable|Type:URL + specialCommitments|Type:Text + specialOpeningHoursSpecification|Type:Text + specialty|Type:Text + speechToTextMarkup|Type:Text + speed|Type:Quantity + spokenByCharacter|Type:Text + sponsor|Type:Text + sport|Type:Text + sportsActivityLocation|Type:Text + sportsEvent|Type:Text + sportsTeam|Type:Text + spouse|Type:Text + stage|Type:Text + stageAsNumber|Type:Number + starRating|Type:Text + startDate|Type:Date + startOffset|Type:Text + startTime|Type:Date + statType|Type:Text + status|Type:Text + steeringPosition|Type:Text + step|Type:Text + stepValue|Type:Number + steps|Type:Text + storageRequirements|Type:Text + streetAddress|Type:Text + strengthUnit|Type:Text + strengthValue|Type:Number + structuralClass|Type:Text + study|Type:Text + studyDesign|Type:Text + studyLocation|Type:Text + studySubject|Type:Text + subEvent|Type:Text + subEvents|Type:Text + subOrganization|Type:Text + subReservation|Type:Text + subStageSuffix|Type:Text + subStructure|Type:Text + subTest|Type:Text + subTrip|Type:Text + subjectOf|Type:Text + subtitleLanguage|Type:Text + successorOf|Type:Text + sugarContent|Type:Text + suggestedAge|Type:Quantity + suggestedAnswer|Type:Text + suggestedGender|Type:Text + suggestedMaxAge|Type:Number + suggestedMeasurement|Type:Quantity + suggestedMinAge|Type:Number + suitableForDiet|Type:Text + superEvent|Type:Text + supersededBy|Type:Text + supply|Type:Text + supplyTo|Type:Text + supportingData|Type:Text + surface|Type:Text + syllabusSections|Type:Text + target|Type:URL + targetCollection|Type:Text + targetDescription|Type:Text + targetName|Type:Text + targetPlatform|Type:Text + targetPopulation|Type:Text + targetProduct|Type:Text + targetUrl|Type:URL + taxID|Type:Text + taxonRank|Type:Text + taxonomicRange|Type:Text + teaches|Type:Text + telephone|Type:Text + temporal|Type:Date + temporalCoverage|Type:Date + termCode|Type:Text + termDuration|Type:Text + termsOfService|Type:Text + termsPerYear|Type:Number + text|Type:Text + textValue|Type:Text + thumbnail|Type:Text + thumbnailUrl|Type:URL + tickerSymbol|Type:Text + ticketNumber|Type:Text + ticketToken|Type:Text + ticketedSeat|Type:Text + timeOfDay|Type:Text + timeRequired|Type:Text + timeToComplete|Type:Text + tissueSample|Type:Text + title|Type:Text + titleEIDR|Type:Text + toLocation|Type:Text + toRecipient|Type:Text + tocContinuation|Type:Text + tocEntry|Type:Text + tongueWeight|Type:Quantity + tool|Type:Text + torque|Type:Quantity + totalHistoricalEnrollment|Type:Number + totalJobOpenings|Type:Number + totalPaymentDue|Type:Text + totalPrice|Type:Number + totalTime|Type:Text + tourBookingPage|Type:URL + touristType|Type:Text + track|Type:Text + trackingNumber|Type:Text + trackingUrl|Type:URL + tracks|Type:Text + trailer|Type:Text + trailerWeight|Type:Quantity + trainName|Type:Text + trainNumber|Type:Text + trainingSalary|Type:Text + transFatContent|Type:Text + transcript|Type:Text + transitTime|Type:Quantity + transitTimeLabel|Type:Text + translationOfWork|Type:Text + translator|Type:Text + transmissionMethod|Type:Text + travelBans|Type:URL + trialDesign|Type:Text + tributary|Type:Text + tripOrigin|Type:Text + typeOfBed|Type:Text + typeOfGood|Type:Text + typicalAgeRange|Type:Text + typicalCreditsPerTerm|Type:Number + typicalTest|Type:Text + underName|Type:Text + unitCode|Type:Text + unitText|Type:Text + unnamedSourcesPolicy|Type:URL + unsaturatedFatContent|Type:Text + uploadDate|Type:Date + upvoteCount|Type:Number + url|Type:URL + urlTemplate|Type:Text + usNPI|Type:Text + usageInfo|Type:URL + usedToDiagnose|Type:Text + userInteractionCount|Type:Number + usesDevice|Type:Text + usesHealthPlanIdStandard|Type:Text + utterances|Type:Text + validFor|Type:Text + validForMemberTier|Type:Text + validFrom|Type:Date + validIn|Type:Text + validThrough|Type:Date + validUntil|Type:Date + value|Type:Boolean + valueAddedTaxIncluded|Type:Boolean + valueMaxLength|Type:Number + valueMinLength|Type:Number + valueName|Type:Text + valuePattern|Type:Text + valueReference|Type:Text + valueRequired|Type:Boolean + variableMeasured|Type:Text + variantCover|Type:Text + variesBy|Type:Text + vatID|Type:Text + vehicleConfiguration|Type:Text + vehicleEngine|Type:Text + vehicleIdentificationNumber|Type:Text + vehicleInteriorColor|Type:Text + vehicleInteriorType|Type:Text + vehicleModelDate|Type:Date + vehicleSeatingCapacity|Type:Number + vehicleSpecialUsage|Type:Text + vehicleTransmission|Type:Text + vendor|Type:Text + verificationFactCheckingPolicy|Type:URL + version|Type:Number + video|Type:Text + videoFormat|Type:Text + videoFrameSize|Type:Text + videoQuality|Type:Text + volumeNumber|Type:Number + warning|Type:Text + warranty|Type:Text + warrantyPromise|Type:Text + warrantyScope|Type:Text + webCheckinTime|Type:Date + webFeed|Type:URL + weight|Type:Quantity + weightTotal|Type:Quantity + wheelbase|Type:Quantity + width|Type:Quantity + winner|Type:Text + wordCount|Type:Number + workExample|Type:Text + workFeatured|Type:Text + workHours|Type:Text + workLocation|Type:Text + workPerformed|Type:Text + workPresented|Type:Text + workTranslation|Type:Text + workload|Type:Quantity + worksFor|Type:Text + worstRating|Type:Number + xpath|Type:Text + yearBuilt|Type:Number + yearlyRevenue|Type:Quantity + yearsInOperation|Type:Quantity + yield|Type:Quantity + 3DModel|Category + AMRadioChannel|Category + APIReference|Category + Abdomen|Category + AboutPage|Category + AcceptAction|Category + Accommodation|Category + AccountingService|Category + AchieveAction|Category + Action|Category + ActionAccessSpecification|Category + ActionStatusType|Category + ActivateAction|Category + ActivationFee|Category + ActiveActionStatus|Category + ActiveNotRecruiting|Category + AddAction|Category + AdministrativeArea|Category + AdultEntertainment|Category + AdultOrientedEnumeration|Category + AdvertiserContentArticle|Category + AerobicActivity|Category + AggregateOffer|Category + AggregateRating|Category + AgreeAction|Category + Airline|Category + Airport|Category + AlbumRelease|Category + AlcoholConsideration|Category + AlgorithmicMediaDigitalSource|Category + AlgorithmicallyEnhancedDigitalSource|Category + AlignmentObject|Category + AllWheelDriveConfiguration|Category + AllergiesHealthAspect|Category + AllocateAction|Category + AmpStory|Category + AmusementPark|Category + AnaerobicActivity|Category + AnalysisNewsArticle|Category + AnatomicalStructure|Category + AnatomicalSystem|Category + AndroidPlatform|Category + Anesthesia|Category + AnimalShelter|Category + Answer|Category + Apartment|Category + ApartmentComplex|Category + Appearance|Category + AppendAction|Category + ApplyAction|Category + ApprovedIndication|Category + Aquarium|Category + ArchiveComponent|Category + ArchiveOrganization|Category + ArriveAction|Category + ArtGallery|Category + Artery|Category + Article|Category + AskAction|Category + AskPublicNewsArticle|Category + AssessAction|Category + AssignAction|Category + Atlas|Category + Attorney|Category + Audience|Category + AudioObject|Category + AudioObjectSnapshot|Category + Audiobook|Category + AudiobookFormat|Category + AuthoritativeLegalValue|Category + AuthorizeAction|Category + AutoBodyShop|Category + AutoDealer|Category + AutoPartsStore|Category + AutoRental|Category + AutoRepair|Category + AutoWash|Category + AutomatedTeller|Category + AutomotiveBusiness|Category + Ayurvedic|Category + BackOrder|Category + BackgroundNewsArticle|Category + Bacteria|Category + Bakery|Category + Balance|Category + BankAccount|Category + BankOrCreditUnion|Category + BarOrPub|Category + Barcode|Category + BasicIncome|Category + Beach|Category + BeautySalon|Category + BedAndBreakfast|Category + BedDetails|Category + BedType|Category + BefriendAction|Category + BenefitsHealthAspect|Category + BikeStore|Category + BioChemEntity|Category + Blog|Category + BlogPosting|Category + BloodTest|Category + BoardingPolicyType|Category + BoatReservation|Category + BoatTerminal|Category + BoatTrip|Category + BodyMeasurementArm|Category + BodyMeasurementBust|Category + BodyMeasurementChest|Category + BodyMeasurementFoot|Category + BodyMeasurementHand|Category + BodyMeasurementHead|Category + BodyMeasurementHeight|Category + BodyMeasurementHips|Category + BodyMeasurementInsideLeg|Category + BodyMeasurementNeck|Category + BodyMeasurementTypeEnumeration|Category + BodyMeasurementUnderbust|Category + BodyMeasurementWaist|Category + BodyMeasurementWeight|Category + BodyOfWater|Category + Bone|Category + Book|Category + BookFormatType|Category + BookSeries|Category + BookStore|Category + BookmarkAction|Category + Boolean|Category + BorrowAction|Category + BowlingAlley|Category + BrainStructure|Category + Brand|Category + BreadcrumbList|Category + Brewery|Category + Bridge|Category + BroadcastChannel|Category + BroadcastEvent|Category + BroadcastFrequencySpecification|Category + BroadcastRelease|Category + BroadcastService|Category + BrokerageAccount|Category + BuddhistTemple|Category + BusOrCoach|Category + BusReservation|Category + BusStation|Category + BusStop|Category + BusTrip|Category + BusinessAudience|Category + BusinessEntityType|Category + BusinessEvent|Category + BusinessFunction|Category + BusinessSupport|Category + BuyAction|Category + ByBankTransferInAdvance|Category + ByInvoice|Category + CDCPMDRecord|Category + CDFormat|Category + COD|Category + CT|Category + CableOrSatelliteService|Category + CafeOrCoffeeShop|Category + Campground|Category + CampingPitch|Category + Canal|Category + CancelAction|Category + Car|Category + CarUsageType|Category + Cardiovascular|Category + CardiovascularExam|Category + CaseSeries|Category + Cash|Category + Casino|Category + CassetteFormat|Category + CategoryCode|Category + CategoryCodeSet|Category + CatholicChurch|Category + CausesHealthAspect|Category + Cemetery|Category + Certification|Category + CertificationActive|Category + CertificationInactive|Category + CertificationStatusEnumeration|Category + Chapter|Category + CharitableIncorporatedOrganization|Category + CheckAction|Category + CheckInAction|Category + CheckInAdvance|Category + CheckOutAction|Category + CheckoutPage|Category + ChemicalSubstance|Category + ChildCare|Category + ChildrensEvent|Category + Chiropractic|Category + ChooseAction|Category + Church|Category + City|Category + CityHall|Category + CivicStructure|Category + Claim|Category + ClaimReview|Category + Class|Category + CleaningFee|Category + Clinician|Category + Clip|Category + ClothingStore|Category + CoOp|Category + Code|Category + CohortStudy|Category + Collection|Category + CollectionPage|Category + CollegeOrUniversity|Category + ComedyClub|Category + ComedyEvent|Category + ComicCoverArt|Category + ComicIssue|Category + ComicSeries|Category + ComicStory|Category + Comment|Category + CommentAction|Category + CommentPermission|Category + CommunicateAction|Category + CommunityHealth|Category + CompilationAlbum|Category + CompleteDataFeed|Category + Completed|Category + CompletedActionStatus|Category + CompositeCaptureDigitalSource|Category + CompositeSyntheticDigitalSource|Category + CompositeWithTrainedAlgorithmicMediaDigitalSource|Category + CompoundPriceSpecification|Category + ComputerLanguage|Category + ComputerStore|Category + ConfirmAction|Category + Consortium|Category + ConstraintNode|Category + ConsumeAction|Category + ContactPage|Category + ContactPoint|Category + ContactPointOption|Category + ContagiousnessHealthAspect|Category + Continent|Category + ControlAction|Category + ConvenienceStore|Category + Conversation|Category + CookAction|Category + Corporation|Category + CorrectionComment|Category + Country|Category + Course|Category + CourseInstance|Category + Courthouse|Category + CoverArt|Category + CovidTestingFacility|Category + CreateAction|Category + CreativeWork|Category + CreativeWorkSeason|Category + CreativeWorkSeries|Category + CreditCard|Category + Crematorium|Category + CriticReview|Category + CrossSectional|Category + CssSelectorType|Category + CurrencyConversionService|Category + DDxElement|Category + DJMixAlbum|Category + DVDFormat|Category + DamagedCondition|Category + DanceEvent|Category + DanceGroup|Category + DangerousGoodConsideration|Category + DataCatalog|Category + DataDownload|Category + DataDrivenMediaDigitalSource|Category + DataFeed|Category + DataFeedItem|Category + DataType|Category + Dataset|Category + Date|Category + DateTime|Category + DatedMoneySpecification|Category + DayOfWeek|Category + DaySpa|Category + DeactivateAction|Category + DecontextualizedContent|Category + DefenceEstablishment|Category + DefinedRegion|Category + DefinedTerm|Category + DefinedTermSet|Category + DefinitiveLegalValue|Category + DeleteAction|Category + DeliveryChargeSpecification|Category + DeliveryEvent|Category + DeliveryMethod|Category + DeliveryTimeSettings|Category + Demand|Category + DemoAlbum|Category + DemoGameAvailability|Category + Dentist|Category + Dentistry|Category + DepartAction|Category + DepartmentStore|Category + DepositAccount|Category + Dermatologic|Category + Dermatology|Category + DesktopWebPlatform|Category + DiabeticDiet|Category + Diagnostic|Category + DiagnosticLab|Category + DiagnosticProcedure|Category + Diet|Category + DietNutrition|Category + DietarySupplement|Category + DigitalArtDigitalSource|Category + DigitalAudioTapeFormat|Category + DigitalCaptureDigitalSource|Category + DigitalDocument|Category + DigitalDocumentPermission|Category + DigitalDocumentPermissionType|Category + DigitalFormat|Category + DigitalPlatformEnumeration|Category + DirectDebit|Category + DisabilitySupport|Category + DisagreeAction|Category + Discontinued|Category + DiscoverAction|Category + DiscussionForumPosting|Category + DislikeAction|Category + Distance|Category + DistanceFee|Category + Distillery|Category + DonateAction|Category + DoseSchedule|Category + DoubleBlindedTrial|Category + DownloadAction|Category + Downpayment|Category + DrawAction|Category + Drawing|Category + DrinkAction|Category + DriveWheelConfigurationValue|Category + DrivingSchoolVehicleUsage|Category + Drug|Category + DrugClass|Category + DrugCost|Category + DrugCostCategory|Category + DrugLegalStatus|Category + DrugPregnancyCategory|Category + DrugPrescriptionStatus|Category + DrugStrength|Category + DryCleaningOrLaundry|Category + Duration|Category + EBook|Category + EPRelease|Category + EUEnergyEfficiencyCategoryA|Category + EUEnergyEfficiencyCategoryA1Plus|Category + EUEnergyEfficiencyCategoryA2Plus|Category + EUEnergyEfficiencyCategoryA3Plus|Category + EUEnergyEfficiencyCategoryB|Category + EUEnergyEfficiencyCategoryC|Category + EUEnergyEfficiencyCategoryD|Category + EUEnergyEfficiencyCategoryE|Category + EUEnergyEfficiencyCategoryF|Category + EUEnergyEfficiencyCategoryG|Category + EUEnergyEfficiencyEnumeration|Category + Ear|Category + EatAction|Category + EditedOrCroppedContent|Category + EducationEvent|Category + EducationalAudience|Category + EducationalOccupationalCredential|Category + EducationalOccupationalProgram|Category + EducationalOrganization|Category + EffectivenessHealthAspect|Category + Electrician|Category + ElectronicsStore|Category + ElementarySchool|Category + EmailMessage|Category + Embassy|Category + Emergency|Category + EmergencyService|Category + EmployeeRole|Category + EmployerAggregateRating|Category + EmployerReview|Category + EmploymentAgency|Category + Endocrine|Category + EndorseAction|Category + EndorsementRating|Category + Energy|Category + EnergyConsumptionDetails|Category + EnergyEfficiencyEnumeration|Category + EnergyStarCertified|Category + EnergyStarEnergyEfficiencyEnumeration|Category + EngineSpecification|Category + EnrollingByInvitation|Category + EntertainmentBusiness|Category + EntryPoint|Category + Enumeration|Category + Episode|Category + Event|Category + EventAttendanceModeEnumeration|Category + EventCancelled|Category + EventMovedOnline|Category + EventPostponed|Category + EventRescheduled|Category + EventReservation|Category + EventScheduled|Category + EventSeries|Category + EventStatusType|Category + EventVenue|Category + EvidenceLevelA|Category + EvidenceLevelB|Category + EvidenceLevelC|Category + ExampleMeasurementMethodEnum|Category + ExchangeRateSpecification|Category + ExchangeRefund|Category + ExerciseAction|Category + ExerciseGym|Category + ExercisePlan|Category + ExhibitionEvent|Category + Eye|Category + FAQPage|Category + FDAcategoryA|Category + FDAcategoryB|Category + FDAcategoryC|Category + FDAcategoryD|Category + FDAcategoryX|Category + FDAnotEvaluated|Category + FMRadioChannel|Category + FailedActionStatus|Category + False|Category + FastFoodRestaurant|Category + Female|Category + Festival|Category + FilmAction|Category + FinancialProduct|Category + FinancialService|Category + FindAction|Category + FireStation|Category + Flexibility|Category + Flight|Category + FlightReservation|Category + Float|Category + FloorPlan|Category + Florist|Category + FollowAction|Category + FoodEstablishment|Category + FoodEstablishmentReservation|Category + FoodEvent|Category + FoodService|Category + FourWheelDriveConfiguration|Category + FreeReturn|Category + Friday|Category + FrontWheelDriveConfiguration|Category + FullGameAvailability|Category + FullRefund|Category + FundingAgency|Category + FundingScheme|Category + Fungus|Category + FurnitureStore|Category + Game|Category + GameAvailabilityEnumeration|Category + GamePlayMode|Category + GameServer|Category + GameServerStatus|Category + GardenStore|Category + GasStation|Category + Gastroenterologic|Category + GatedResidenceCommunity|Category + GenderType|Category + Gene|Category + GeneralContractor|Category + GenericWebPlatform|Category + Genetic|Category + Genitourinary|Category + GeoCircle|Category + GeoCoordinates|Category + GeoShape|Category + GeospatialGeometry|Category + Geriatric|Category + GettingAccessHealthAspect|Category + GiveAction|Category + GlutenFreeDiet|Category + GolfCourse|Category + GovernmentBenefitsType|Category + GovernmentBuilding|Category + GovernmentOffice|Category + GovernmentOrganization|Category + GovernmentPermit|Category + GovernmentService|Category + Grant|Category + GraphicNovel|Category + GroceryStore|Category + GroupBoardingPolicy|Category + Guide|Category + Gynecologic|Category + HVACBusiness|Category + Hackathon|Category + HairSalon|Category + HalalDiet|Category + Hardcover|Category + HardwareStore|Category + Head|Category + HealthAndBeautyBusiness|Category + HealthAspectEnumeration|Category + HealthCare|Category + HealthClub|Category + HealthInsurancePlan|Category + HealthPlanCostSharingSpecification|Category + HealthPlanFormulary|Category + HealthPlanNetwork|Category + HealthTopicContent|Category + HealthcareConsideration|Category + HearingImpairedSupported|Category + Hematologic|Category + HighSchool|Category + HinduDiet|Category + HinduTemple|Category + HobbyShop|Category + HomeAndConstructionBusiness|Category + HomeGoodsStore|Category + Homeopathic|Category + Hospital|Category + Hostel|Category + Hotel|Category + HotelRoom|Category + House|Category + HousePainter|Category + HowItWorksHealthAspect|Category + HowOrWhereHealthAspect|Category + HowTo|Category + HowToDirection|Category + HowToItem|Category + HowToSection|Category + HowToStep|Category + HowToSupply|Category + HowToTip|Category + HowToTool|Category + HyperToc|Category + HyperTocEntry|Category + IOSPlatform|Category + IPTCDigitalSourceEnumeration|Category + IceCreamShop|Category + IgnoreAction|Category + ImageGallery|Category + ImageObject|Category + ImageObjectSnapshot|Category + ImagingTest|Category + InForce|Category + InStock|Category + InStoreOnly|Category + InStorePrepay|Category + IndividualPhysician|Category + IndividualProduct|Category + Infectious|Category + InfectiousAgentClass|Category + InfectiousDisease|Category + InformAction|Category + IngredientsHealthAspect|Category + InsertAction|Category + InstallAction|Category + Installment|Category + InsuranceAgency|Category + Intangible|Category + Integer|Category + InteractAction|Category + InteractionCounter|Category + InternationalTrial|Category + InternetCafe|Category + InvestmentFund|Category + InvestmentOrDeposit|Category + InviteAction|Category + Invoice|Category + InvoicePrice|Category + ItemAvailability|Category + ItemList|Category + ItemListOrderAscending|Category + ItemListOrderDescending|Category + ItemListOrderType|Category + ItemListUnordered|Category + ItemPage|Category + JewelryStore|Category + JobPosting|Category + JoinAction|Category + Joint|Category + KeepProduct|Category + KosherDiet|Category + LaboratoryScience|Category + LakeBodyOfWater|Category + Landform|Category + LandmarksOrHistoricalBuildings|Category + Language|Category + LaserDiscFormat|Category + LearningResource|Category + LeaveAction|Category + LeftHandDriving|Category + LegalForceStatus|Category + LegalService|Category + LegalValueLevel|Category + Legislation|Category + LegislationObject|Category + LegislativeBuilding|Category + LeisureTimeActivity|Category + LendAction|Category + Library|Category + LibrarySystem|Category + LifestyleModification|Category + Ligament|Category + LikeAction|Category + LimitedAvailability|Category + LimitedByGuaranteeCharity|Category + LinkRole|Category + LiquorStore|Category + ListItem|Category + ListPrice|Category + ListenAction|Category + LiteraryEvent|Category + LiveAlbum|Category + LiveBlogPosting|Category + LivingWithHealthAspect|Category + LoanOrCredit|Category + LocalBusiness|Category + LocationFeatureSpecification|Category + LockerDelivery|Category + Locksmith|Category + LodgingBusiness|Category + LodgingReservation|Category + Longitudinal|Category + LoseAction|Category + LowCalorieDiet|Category + LowFatDiet|Category + LowLactoseDiet|Category + LowSaltDiet|Category + Lung|Category + LymphaticVessel|Category + MRI|Category + MSRP|Category + MadeToOrder|Category + Male|Category + Manuscript|Category + Map|Category + MapCategoryType|Category + MarryAction|Category + Mass|Category + MathSolver|Category + MaximumDoseSchedule|Category + MayTreatHealthAspect|Category + MeasurementMethodEnum|Category + MeasurementTypeEnumeration|Category + MediaEnumeration|Category + MediaGallery|Category + MediaManipulationRatingEnumeration|Category + MediaObject|Category + MediaReview|Category + MediaReviewItem|Category + MediaSubscription|Category + MedicalAudience|Category + MedicalAudienceType|Category + MedicalBusiness|Category + MedicalCause|Category + MedicalClinic|Category + MedicalCode|Category + MedicalCondition|Category + MedicalConditionStage|Category + MedicalContraindication|Category + MedicalDevice|Category + MedicalDevicePurpose|Category + MedicalEntity|Category + MedicalEnumeration|Category + MedicalEvidenceLevel|Category + MedicalGuideline|Category + MedicalGuidelineContraindication|Category + MedicalGuidelineRecommendation|Category + MedicalImagingTechnique|Category + MedicalIndication|Category + MedicalIntangible|Category + MedicalObservationalStudy|Category + MedicalObservationalStudyDesign|Category + MedicalOrganization|Category + MedicalProcedure|Category + MedicalProcedureType|Category + MedicalResearcher|Category + MedicalRiskCalculator|Category + MedicalRiskEstimator|Category + MedicalRiskFactor|Category + MedicalRiskScore|Category + MedicalScholarlyArticle|Category + MedicalSign|Category + MedicalSignOrSymptom|Category + MedicalSpecialty|Category + MedicalStudy|Category + MedicalStudyStatus|Category + MedicalSymptom|Category + MedicalTest|Category + MedicalTestPanel|Category + MedicalTherapy|Category + MedicalTrial|Category + MedicalTrialDesign|Category + MedicalWebPage|Category + MedicineSystem|Category + MeetingRoom|Category + MemberProgram|Category + MemberProgramTier|Category + MensClothingStore|Category + Menu|Category + MenuItem|Category + MenuSection|Category + MerchantReturnEnumeration|Category + MerchantReturnFiniteReturnWindow|Category + MerchantReturnNotPermitted|Category + MerchantReturnPolicy|Category + MerchantReturnPolicySeasonalOverride|Category + MerchantReturnUnlimitedWindow|Category + MerchantReturnUnspecified|Category + Message|Category + MiddleSchool|Category + Midwifery|Category + MinimumAdvertisedPrice|Category + MinorHumanEditsDigitalSource|Category + MisconceptionsHealthAspect|Category + MixedEventAttendanceMode|Category + MixtapeAlbum|Category + MobileApplication|Category + MobilePhoneStore|Category + MobileWebPlatform|Category + MolecularEntity|Category + Monday|Category + MonetaryAmount|Category + MonetaryAmountDistribution|Category + MonetaryGrant|Category + MoneyTransfer|Category + MortgageLoan|Category + Mosque|Category + Motel|Category + Motorcycle|Category + MotorcycleDealer|Category + MotorcycleRepair|Category + MotorizedBicycle|Category + Mountain|Category + MoveAction|Category + Movie|Category + MovieClip|Category + MovieRentalStore|Category + MovieSeries|Category + MovieTheater|Category + MovingCompany|Category + MultiCenterTrial|Category + MultiPlayer|Category + MulticellularParasite|Category + Muscle|Category + Musculoskeletal|Category + MusculoskeletalExam|Category + Museum|Category + MusicAlbum|Category + MusicAlbumProductionType|Category + MusicAlbumReleaseType|Category + MusicComposition|Category + MusicEvent|Category + MusicGroup|Category + MusicPlaylist|Category + MusicRecording|Category + MusicRelease|Category + MusicReleaseFormatType|Category + MusicStore|Category + MusicVenue|Category + MusicVideoObject|Category + NGO|Category + NLNonprofitType|Category + NailSalon|Category + NarcoticConsideration|Category + Neck|Category + NegativeFilmDigitalSource|Category + Nerve|Category + Neuro|Category + Neurologic|Category + NewCondition|Category + NewsArticle|Category + NewsMediaOrganization|Category + Newspaper|Category + NightClub|Category + NoninvasiveProcedure|Category + Nonprofit501a|Category + Nonprofit501c1|Category + Nonprofit501c10|Category + Nonprofit501c11|Category + Nonprofit501c12|Category + Nonprofit501c13|Category + Nonprofit501c14|Category + Nonprofit501c15|Category + Nonprofit501c16|Category + Nonprofit501c17|Category + Nonprofit501c18|Category + Nonprofit501c19|Category + Nonprofit501c2|Category + Nonprofit501c20|Category + Nonprofit501c21|Category + Nonprofit501c22|Category + Nonprofit501c23|Category + Nonprofit501c24|Category + Nonprofit501c25|Category + Nonprofit501c26|Category + Nonprofit501c27|Category + Nonprofit501c28|Category + Nonprofit501c3|Category + Nonprofit501c4|Category + Nonprofit501c5|Category + Nonprofit501c6|Category + Nonprofit501c7|Category + Nonprofit501c8|Category + Nonprofit501c9|Category + Nonprofit501d|Category + Nonprofit501e|Category + Nonprofit501f|Category + Nonprofit501k|Category + Nonprofit501n|Category + Nonprofit501q|Category + Nonprofit527|Category + NonprofitANBI|Category + NonprofitSBBI|Category + NonprofitType|Category + Nose|Category + NotInForce|Category + NotYetRecruiting|Category + Notary|Category + NoteDigitalDocument|Category + Number|Category + Nursing|Category + NutritionInformation|Category + OTC|Category + Observation|Category + Observational|Category + Obstetric|Category + Occupation|Category + OccupationalActivity|Category + OccupationalExperienceRequirements|Category + OccupationalTherapy|Category + OceanBodyOfWater|Category + Offer|Category + OfferCatalog|Category + OfferForLease|Category + OfferForPurchase|Category + OfferItemCondition|Category + OfferShippingDetails|Category + OfficeEquipmentStore|Category + OfficialLegalValue|Category + OfflineEventAttendanceMode|Category + OfflinePermanently|Category + OfflineTemporarily|Category + OnDemandEvent|Category + OnSitePickup|Category + Oncologic|Category + OneTimePayments|Category + Online|Category + OnlineBusiness|Category + OnlineEventAttendanceMode|Category + OnlineFull|Category + OnlineOnly|Category + OnlineStore|Category + OpenTrial|Category + OpeningHoursSpecification|Category + OpinionNewsArticle|Category + Optician|Category + Optometric|Category + Order|Category + OrderAction|Category + OrderCancelled|Category + OrderDelivered|Category + OrderInTransit|Category + OrderItem|Category + OrderPaymentDue|Category + OrderPickupAvailable|Category + OrderProblem|Category + OrderProcessing|Category + OrderReturned|Category + OrderStatus|Category + Organization|Category + OrganizationRole|Category + OrganizeAction|Category + OriginalMediaContent|Category + OriginalShippingFees|Category + Osteopathic|Category + Otolaryngologic|Category + OutOfStock|Category + OutletStore|Category + OverviewHealthAspect|Category + OwnershipInfo|Category + PET|Category + PaidLeave|Category + PaintAction|Category + Painting|Category + PalliativeProcedure|Category + Paperback|Category + ParcelDelivery|Category + ParcelService|Category + ParentAudience|Category + ParentalSupport|Category + Park|Category + ParkingFacility|Category + ParkingMap|Category + PartiallyInForce|Category + Pathology|Category + PathologyTest|Category + Patient|Category + PatientExperienceHealthAspect|Category + PawnShop|Category + PayAction|Category + PaymentAutomaticallyApplied|Category + PaymentCard|Category + PaymentChargeSpecification|Category + PaymentComplete|Category + PaymentDeclined|Category + PaymentDue|Category + PaymentMethod|Category + PaymentMethodType|Category + PaymentPastDue|Category + PaymentService|Category + PaymentStatusType|Category + Pediatric|Category + PeopleAudience|Category + PercutaneousProcedure|Category + PerformAction|Category + PerformanceRole|Category + PerformingArtsTheater|Category + PerformingGroup|Category + Periodical|Category + Permit|Category + Person|Category + PetStore|Category + Pharmacy|Category + PharmacySpecialty|Category + PhoneCarrierPayment|Category + Photograph|Category + PhotographAction|Category + PhysicalActivity|Category + PhysicalActivityCategory|Category + PhysicalExam|Category + PhysicalTherapy|Category + Physician|Category + PhysiciansOffice|Category + Physiotherapy|Category + Place|Category + PlaceOfWorship|Category + PlaceboControlledTrial|Category + PlanAction|Category + PlasticSurgery|Category + Play|Category + PlayAction|Category + PlayGameAction|Category + Playground|Category + Plumber|Category + PodcastEpisode|Category + PodcastSeason|Category + PodcastSeries|Category + Podiatric|Category + PoliceStation|Category + PoliticalParty|Category + Pond|Category + PositiveFilmDigitalSource|Category + PostOffice|Category + PostalAddress|Category + PostalCodeRangeSpecification|Category + Poster|Category + PotentialActionStatus|Category + PreOrder|Category + PreOrderAction|Category + PreSale|Category + PregnancyHealthAspect|Category + PrependAction|Category + Preschool|Category + PrescriptionOnly|Category + PresentationDigitalDocument|Category + PreventionHealthAspect|Category + PreventionIndication|Category + PriceComponentTypeEnumeration|Category + PriceSpecification|Category + PriceTypeEnumeration|Category + PrimaryCare|Category + PrintDigitalSource|Category + Prion|Category + Product|Category + ProductCollection|Category + ProductGroup|Category + ProductModel|Category + ProfessionalService|Category + ProfilePage|Category + PrognosisHealthAspect|Category + ProgramMembership|Category + Project|Category + PronounceableText|Category + Property|Category + PropertyValue|Category + PropertyValueSpecification|Category + Protein|Category + Protozoa|Category + Psychiatric|Category + PsychologicalTreatment|Category + PublicHealth|Category + PublicHolidays|Category + PublicSwimmingPool|Category + PublicToilet|Category + PublicationEvent|Category + PublicationIssue|Category + PublicationVolume|Category + Pulmonary|Category + QAPage|Category + QualitativeValue|Category + QuantitativeValue|Category + QuantitativeValueDistribution|Category + Quantity|Category + Question|Category + Quiz|Category + Quotation|Category + QuoteAction|Category + RVPark|Category + RadiationTherapy|Category + RadioBroadcastService|Category + RadioChannel|Category + RadioClip|Category + RadioEpisode|Category + RadioSeason|Category + RadioSeries|Category + RadioStation|Category + Radiography|Category + RandomizedTrial|Category + Rating|Category + ReactAction|Category + ReadAction|Category + ReadPermission|Category + RealEstateAgent|Category + RealEstateListing|Category + RearWheelDriveConfiguration|Category + ReceiveAction|Category + Recipe|Category + Recommendation|Category + RecommendedDoseSchedule|Category + Recruiting|Category + RecyclingCenter|Category + ReducedRelevanceForChildrenConsideration|Category + RefundTypeEnumeration|Category + RefurbishedCondition|Category + RegisterAction|Category + Registry|Category + RegularPrice|Category + ReimbursementCap|Category + RejectAction|Category + RelatedTopicsHealthAspect|Category + RemixAlbum|Category + Renal|Category + RentAction|Category + RentalCarReservation|Category + RentalVehicleUsage|Category + RepaymentSpecification|Category + ReplaceAction|Category + ReplyAction|Category + Report|Category + ReportageNewsArticle|Category + ReportedDoseSchedule|Category + ResearchOrganization|Category + ResearchProject|Category + Researcher|Category + Reservation|Category + ReservationCancelled|Category + ReservationConfirmed|Category + ReservationHold|Category + ReservationPackage|Category + ReservationPending|Category + ReservationStatusType|Category + ReserveAction|Category + Reserved|Category + Reservoir|Category + Residence|Category + Resort|Category + RespiratoryTherapy|Category + Restaurant|Category + RestockingFees|Category + RestrictedDiet|Category + ResultsAvailable|Category + ResultsNotAvailable|Category + ResumeAction|Category + Retail|Category + ReturnAction|Category + ReturnAtKiosk|Category + ReturnByMail|Category + ReturnFeesCustomerResponsibility|Category + ReturnFeesEnumeration|Category + ReturnInStore|Category + ReturnLabelCustomerResponsibility|Category + ReturnLabelDownloadAndPrint|Category + ReturnLabelInBox|Category + ReturnLabelSourceEnumeration|Category + ReturnMethodEnumeration|Category + ReturnShippingFees|Category + Review|Category + ReviewAction|Category + ReviewNewsArticle|Category + Rheumatologic|Category + RightHandDriving|Category + RisksOrComplicationsHealthAspect|Category + RiverBodyOfWater|Category + Role|Category + RoofingContractor|Category + Room|Category + RsvpAction|Category + RsvpResponseMaybe|Category + RsvpResponseNo|Category + RsvpResponseType|Category + RsvpResponseYes|Category + SRP|Category + SafetyHealthAspect|Category + SaleEvent|Category + SalePrice|Category + SatireOrParodyContent|Category + SatiricalArticle|Category + Saturday|Category + Schedule|Category + ScheduleAction|Category + ScholarlyArticle|Category + School|Category + SchoolDistrict|Category + ScreeningEvent|Category + ScreeningHealthAspect|Category + Sculpture|Category + SeaBodyOfWater|Category + SearchAction|Category + SearchRescueOrganization|Category + SearchResultsPage|Category + Season|Category + Seat|Category + SeatingMap|Category + SeeDoctorHealthAspect|Category + SeekToAction|Category + SelfCareHealthAspect|Category + SelfStorage|Category + SellAction|Category + SendAction|Category + Series|Category + Service|Category + ServiceChannel|Category + SexualContentConsideration|Category + ShareAction|Category + SheetMusic|Category + ShippingDeliveryTime|Category + ShippingRateSettings|Category + ShoeStore|Category + ShoppingCenter|Category + ShortStory|Category + SideEffectsHealthAspect|Category + SingleBlindedTrial|Category + SingleCenterTrial|Category + SingleFamilyResidence|Category + SinglePlayer|Category + SingleRelease|Category + SiteNavigationElement|Category + SizeGroupEnumeration|Category + SizeSpecification|Category + SizeSystemEnumeration|Category + SizeSystemImperial|Category + SizeSystemMetric|Category + SkiResort|Category + Skin|Category + SocialEvent|Category + SocialMediaPosting|Category + SoftwareApplication|Category + SoftwareSourceCode|Category + SoldOut|Category + SolveMathAction|Category + SomeProducts|Category + SoundtrackAlbum|Category + SpeakableSpecification|Category + SpecialAnnouncement|Category + Specialty|Category + SpeechPathology|Category + SpokenWordAlbum|Category + SportingGoodsStore|Category + SportsActivityLocation|Category + SportsClub|Category + SportsEvent|Category + SportsOrganization|Category + SportsTeam|Category + SpreadsheetDigitalDocument|Category + StadiumOrArena|Category + StagedContent|Category + StagesHealthAspect|Category + State|Category + Statement|Category + StatisticalPopulation|Category + StatisticalVariable|Category + StatusEnumeration|Category + SteeringPositionValue|Category + Store|Category + StoreCreditRefund|Category + StrengthTraining|Category + StructuredValue|Category + StudioAlbum|Category + SubscribeAction|Category + Subscription|Category + Substance|Category + SubwayStation|Category + Suite|Category + Sunday|Category + SuperficialAnatomy|Category + Surgical|Category + SurgicalProcedure|Category + SuspendAction|Category + Suspended|Category + Syllabus|Category + SymptomsHealthAspect|Category + Synagogue|Category + TVClip|Category + TVEpisode|Category + TVSeason|Category + TVSeries|Category + Table|Category + TakeAction|Category + TattooParlor|Category + Taxi|Category + TaxiReservation|Category + TaxiService|Category + TaxiStand|Category + TaxiVehicleUsage|Category + Taxon|Category + TechArticle|Category + TelevisionChannel|Category + TelevisionStation|Category + TennisComplex|Category + Terminated|Category + Text|Category + TextDigitalDocument|Category + TextObject|Category + TheaterEvent|Category + TheaterGroup|Category + Therapeutic|Category + TherapeuticProcedure|Category + Thesis|Category + Thing|Category + Throat|Category + Thursday|Category + Ticket|Category + TieAction|Category + TierBenefitEnumeration|Category + TierBenefitLoyaltyPoints|Category + TierBenefitLoyaltyPrice|Category + TierBenefitLoyaltyReturns|Category + TierBenefitLoyaltyShipping|Category + Time|Category + TipAction|Category + TireShop|Category + TobaccoNicotineConsideration|Category + TollFree|Category + TouristAttraction|Category + TouristDestination|Category + TouristInformationCenter|Category + TouristTrip|Category + Toxicologic|Category + ToyStore|Category + TrackAction|Category + TradeAction|Category + TraditionalChinese|Category + TrainReservation|Category + TrainStation|Category + TrainTrip|Category + TrainedAlgorithmicMediaDigitalSource|Category + TransferAction|Category + TransformedContent|Category + TransitMap|Category + TravelAction|Category + TravelAgency|Category + TreatmentIndication|Category + TreatmentsHealthAspect|Category + Trip|Category + TripleBlindedTrial|Category + True|Category + Tuesday|Category + TypeAndQuantityNode|Category + TypesHealthAspect|Category + UKNonprofitType|Category + UKTrust|Category + URL|Category + USNonprofitType|Category + Ultrasound|Category + UnRegisterAction|Category + UnclassifiedAdultConsideration|Category + UnemploymentSupport|Category + UnincorporatedAssociationCharity|Category + UnitPriceSpecification|Category + UnofficialLegalValue|Category + UpdateAction|Category + Urologic|Category + UsageOrScheduleHealthAspect|Category + UseAction|Category + UsedCondition|Category + UserBlocks|Category + UserCheckins|Category + UserComments|Category + UserDownloads|Category + UserInteraction|Category + UserLikes|Category + UserPageVisits|Category + UserPlays|Category + UserPlusOnes|Category + UserReview|Category + UserTweets|Category + VacationRental|Category + VeganDiet|Category + VegetarianDiet|Category + Vehicle|Category + Vein|Category + VenueMap|Category + Vessel|Category + VeterinaryCare|Category + VideoGallery|Category + VideoGame|Category + VideoGameClip|Category + VideoGameSeries|Category + VideoObject|Category + VideoObjectSnapshot|Category + ViewAction|Category + VinylFormat|Category + ViolenceConsideration|Category + VirtualLocation|Category + VirtualRecordingDigitalSource|Category + Virus|Category + VisualArtsEvent|Category + VisualArtwork|Category + VitalSign|Category + Volcano|Category + VoteAction|Category + WPAdBlock|Category + WPFooter|Category + WPHeader|Category + WPSideBar|Category + WantAction|Category + WarrantyPromise|Category + WarrantyScope|Category + WatchAction|Category + Waterfall|Category + WeaponConsideration|Category + WearAction|Category + WearableMeasurementBack|Category + WearableMeasurementChestOrBust|Category + WearableMeasurementCollar|Category + WearableMeasurementCup|Category + WearableMeasurementHeight|Category + WearableMeasurementHips|Category + WearableMeasurementInseam|Category + WearableMeasurementLength|Category + WearableMeasurementOutsideLeg|Category + WearableMeasurementSleeve|Category + WearableMeasurementTypeEnumeration|Category + WearableMeasurementWaist|Category + WearableMeasurementWidth|Category + WearableSizeGroupBig|Category + WearableSizeGroupBoys|Category + WearableSizeGroupEnumeration|Category + WearableSizeGroupExtraShort|Category + WearableSizeGroupExtraTall|Category + WearableSizeGroupGirls|Category + WearableSizeGroupHusky|Category + WearableSizeGroupInfants|Category + WearableSizeGroupJuniors|Category + WearableSizeGroupMaternity|Category + WearableSizeGroupMens|Category + WearableSizeGroupMisses|Category + WearableSizeGroupPetite|Category + WearableSizeGroupPlus|Category + WearableSizeGroupRegular|Category + WearableSizeGroupShort|Category + WearableSizeGroupTall|Category + WearableSizeGroupWomens|Category + WearableSizeSystemAU|Category + WearableSizeSystemBR|Category + WearableSizeSystemCN|Category + WearableSizeSystemContinental|Category + WearableSizeSystemDE|Category + WearableSizeSystemEN13402|Category + WearableSizeSystemEnumeration|Category + WearableSizeSystemEurope|Category + WearableSizeSystemFR|Category + WearableSizeSystemGS1|Category + WearableSizeSystemIT|Category + WearableSizeSystemJP|Category + WearableSizeSystemMX|Category + WearableSizeSystemUK|Category + WearableSizeSystemUS|Category + WebAPI|Category + WebApplication|Category + WebContent|Category + WebPage|Category + WebPageElement|Category + WebSite|Category + Wednesday|Category + WesternConventional|Category + Wholesale|Category + WholesaleStore|Category + WinAction|Category + Winery|Category + Withdrawn|Category + WorkBasedProgram|Category + WorkersUnion|Category + WriteAction|Category + WritePermission|Category + XPathType|Category + XRay|Category + ZoneBoardingPolicy|Category + Zoo|Category + +[[Category:Imported vocabulary]] diff --git a/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/skos.txt b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/skos.txt new file mode 100644 index 0000000..31f87f4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/import/vocabularies/skos.txt @@ -0,0 +1,36 @@ +http://www.w3.org/2004/02/skos/core# | [http://www.w3.org/TR/skos-reference Simple Knowledge Organization System (SKOS)] + altLabel|Type:Monolingual text + broader|Type:Annotation URI + broaderTransitive|Type:Annotation URI + broadMatch|Type:Annotation URI + changeNote|Type:Monolingual text + closeMatch|Type:Annotation URI + definition|Type:Monolingual text + editorialNote|Type:Monolingual text + exactMatch|Type:Annotation URI + example|Type:Monolingual text + hasTopConcept|Type:Page + hiddenLabel|Type:Monolingual text + historyNote|Type:Monolingual text + inScheme|Type:Page + mappingRelation|Type:Annotation URI + member|Type:Page + memberList|Type:Page + narrower|Type:Annotation URI + narrowerTransitive|Type:Annotation URI + narrowMatch|Type:Annotation URI + notation|Type:Text + note|Type:Monolingual text + prefLabel|Type:Monolingual text + related|Type:Annotation URI + relatedMatch|Type:Annotation URI + scopeNote|Type:Monolingual text + semanticRelation|Type:Annotation URI + topConceptOf|Type:Page + + Collection|Category + Concept|Category + ConceptScheme|Category + OrderedCollection|Category + +[[Category:Imported_vocabulary]] diff --git a/mediawiki/extensions/SemanticMediaWiki/data/schema/class-constraint-schema.v1.json b/mediawiki/extensions/SemanticMediaWiki/data/schema/class-constraint-schema.v1.json new file mode 100644 index 0000000..088c054 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/schema/class-constraint-schema.v1.json @@ -0,0 +1,134 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://www.semantic-mediawiki.org/wiki/Help:Schema/Type/CLASS_CONSTRAINT_SCHEMA", + "type": "object", + "title": "Class constraint validation schema", + "required": [ + "type", + "constraints" + ], + "properties": { + "type": { + "$id": "#/properties/type", + "type": "string", + "enum": [ + "CLASS_CONSTRAINT_SCHEMA" + ], + "title": "Schema type", + "default": "CLASS_CONSTRAINT_SCHEMA" + }, + "title_prefix": { + "$id": "#/properties/title_prefix", + "type": "string", + "enum": [ + "Constraint" + ], + "title": "Title prefix" + }, + "tags": { + "$id": "#/properties/tags", + "type": "array", + "title": "tags", + "default": null, + "items": { + "$id": "#/properties/tags/items", + "type": "string", + "title": "tags, keywords etc.", + "default": "", + "pattern": "^(.*)$" + } + }, + "constraints": { + "$id": "#/properties/constraints", + "type": "object", + "title": "constraint rules", + "minProperties": 1, + "propertyNames": { + "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" + }, + "properties": { + "mandatory_properties": { + "$ref": "#/definitions/mandatory_properties" + }, + "shape_constraint": { + "$ref": "#/definitions/shape_constraint" + }, + "custom_constraint": { + "$ref": "#/definitions/custom_constraint" + } + }, + "additionalProperties": false + } + }, + "definitions": { + "mandatory_properties": { + "$id": "#/definitions/mandatory_properties", + "type": "array", + "title": "Specifies required properties", + "minItems": 1, + "items": { + "type": "string" + } + }, + "shape_constraint": { + "$id": "#/definitions/shape_constraint", + "type": "array", + "title": "Specifies required properties", + "minItems": 1, + "items": { + "$ref": "#/definitions/shape_item" + } + }, + "shape_item": { + "$id": "#/definitions/shape_item", + "type": "object", + "title": "shape item rules", + "minProperties": 1, + "propertyNames": { + "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" + }, + "required": [ "property" ], + "properties": { + "property": { + "$ref": "#/definitions/property" + }, + "property_type": { + "$ref": "#/definitions/property_type" + }, + "max_cardinality": { + "$ref": "#/definitions/max_cardinality" + }, + "min_textlength": { + "$ref": "#/definitions/min_textlength" + } + }, + "additionalProperties": false + }, + "custom_constraint": { + "$id": "#/definitions/custom_constraint", + "type": "object", + "title": "Specifies custom constraints to be implemented by a user" + }, + "property": { + "$id": "#/definitions/property", + "type": "string", + "title": "Specifies the related property" + }, + "property_type": { + "$id": "#/definitions/property_type", + "type": "string", + "title": "Specifies expected type of the property", + "enum": [ "Date", "Boolean", "Text", "Geo", "Page", "Number", "URI" ] + }, + "max_cardinality": { + "$id": "#/definitions/max_cardinality", + "type": "number", + "title": "Specifies the maximum number of values a property can contain for the given context" + }, + "min_textlength": { + "$id": "#/definitions/min_textlength", + "type": "number", + "title": "Specifies the minimum length of the characters expected for values assigned to the property" + } + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/schema/facetedsearch-profile-schema.v1.json b/mediawiki/extensions/SemanticMediaWiki/data/schema/facetedsearch-profile-schema.v1.json new file mode 100644 index 0000000..19f939a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/schema/facetedsearch-profile-schema.v1.json @@ -0,0 +1,465 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://www.semantic-mediawiki.org/wiki/Help:Schema/Type/FACETEDSEARCH_PROFILE_SCHEMA", + "type": "object", + "title": "Faceted search profile validation schema", + "required": [ + "type", + "profiles" + ], + "properties": { + "type": { + "$id": "#/properties/type", + "type": "string", + "enum": [ + "FACETEDSEARCH_PROFILE_SCHEMA" + ], + "title": "Schema type", + "default": "FACETEDSEARCH_PROFILE_SCHEMA" + }, + "title_prefix": { + "$id": "#/properties/title_prefix", + "type": "string", + "enum": [ + "Profile" + ], + "title": "Title prefix" + }, + "manifest_version": { + "$id": "#/properties/manifest_version", + "type": "number", + "title": "Manifest version", + "default": 1 + }, + "tags": { + "$id": "#/properties/tags", + "type": "array", + "title": "tags", + "default": null, + "items": { + "$id": "#/properties/tags/items", + "type": "string", + "title": "tags, keywords etc.", + "default": "", + "pattern": "^(.*)$" + } + }, + "default_profile": { + "$id": "#/properties/default_profile", + "type": "string", + "pattern": "^(.*)_profile" + }, + "profiles": { + "$ref": "#/definitions/profiles" + } + }, + "definitions": { + "profiles": { + "$id": "#/definitions/profiles", + "type": "object", + "title": "Definition of profiles", + "minProperties": 1, + "patternProperties": { + "^[^\\s]*_profile": { + "$ref": "#/definitions/profile" + } + }, + "properties": { + "default_profile": { + "$ref": "#/definitions/profile" + } + }, + "additionalProperties": false + }, + "profile": { + "$id": "#/definitions/profile", + "type": "object", + "title": "Profile definitions", + "minProperties": 1, + "propertyNames": { + "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" + }, + "required": [], + "properties": { + "message_key": { + "$ref": "#/definitions/message_key" + }, + "theme": { + "$ref": "#/definitions/theme" + }, + "debug_output": { + "$ref": "#/definitions/debug_output" + }, + "search": { + "$ref": "#/definitions/search" + }, + "result": { + "$ref": "#/definitions/result" + }, + "filters": { + "$ref": "#/definitions/filters" + }, + "exploration": { + "$ref": "#/definitions/exploration_section" + } + }, + "additionalProperties": false + }, + "message_key": { + "$id": "#/definitions/message_key", + "type": "string", + "title": "Group name as message key", + "default": "", + "examples": [ + "smw-facetedsearch-profile-label-default" + ], + "pattern": "^(.*)-facetedsearch-profile-label-(.*)$" + }, + "theme": { + "$id": "#/definitions/theme", + "type": "string", + "title": "CSS theme key", + "default": "", + "examples": [ + "smw-facetedsearch-profile-label-default" + ], + "pattern": "^(.*)-theme$" + }, + "search": { + "$id": "#/definitions/search", + "type": "object", + "title": "Search options and definitions", + "minProperties": 1, + "required": [], + "properties": { + "extra_fields": { + "$ref": "#/definitions/extra_fields" + } + }, + "additionalProperties": false + }, + "extra_fields": { + "$id": "#/definitions/extra_fields", + "type": "object", + "title": "Search options and definitions", + "minProperties": 1, + "required": [], + "properties": { + "default_collapsed": { + "$ref": "#/definitions/default_collapsed" + }, + "field_list": { + "$ref": "#/definitions/field_list" + } + }, + "additionalProperties": false + }, + "field_list": { + "$id": "#/definitions/field_list", + "type": "object", + "title": "Definition of extra fields", + "minProperties": 1, + "patternProperties": { + "^(.*)_field": { + "$ref": "#/definitions/field" + } + }, + "additionalProperties": false + }, + "field": { + "$id": "#/definitions/field", + "type": "object", + "title": "Field options and definitions", + "minProperties": 1, + "required": [], + "properties": { + "label": { + "$ref": "#/definitions/field_label" + }, + "message_key": { + "$ref": "#/definitions/field_message_key" + }, + "field_type": { + "$ref": "#/definitions/field_type" + }, + "property": { + "$ref": "#/definitions/field_property" + }, + "autocomplete": { + "$ref": "#/definitions/field_autocomplete" + } + }, + "additionalProperties": false + }, + "result": { + "$id": "#/definitions/result", + "type": "object", + "title": "Result options and definitions", + "minProperties": 1, + "required": [], + "properties": { + "default_limit": { + "$ref": "#/definitions/default_limit" + }, + "default_format": { + "$ref": "#/definitions/default_format" + }, + "paging_limit": { + "$ref": "#/definitions/paging_limit" + } + }, + "additionalProperties": false + }, + "filters": { + "$id": "#/definitions/filters", + "type": "object", + "title": "Filter definitions", + "minProperties": 1, + "patternProperties": { + "property_filter": { + "$ref": "#/definitions/property_filter" + }, + "category_filter": { + "$ref": "#/definitions/category_filter" + }, + "value_filter": { + "$ref": "#/definitions/value_filter" + } + }, + "additionalProperties": false + }, + "property_filter": { + "$id": "#/definitions/property_filter", + "type": "object", + "title": "Property filter definition", + "minProperties": 1, + "required": [], + "properties": { + "hierarchy_tree": { + "$ref": "#/definitions/hierarchy_tree" + }, + "filter_input": { + "$ref": "#/definitions/filter_input" + }, + "filter_type": { + "$ref": "#/definitions/filter_type" + } + }, + "additionalProperties": false + }, + "category_filter": { + "$id": "#/definitions/category_filter", + "type": "object", + "title": "Category filter definition", + "minProperties": 1, + "required": [], + "properties": { + "hierarchy_tree": { + "$ref": "#/definitions/hierarchy_tree" + }, + "filter_input": { + "$ref": "#/definitions/filter_input" + }, + "filter_type": { + "$ref": "#/definitions/filter_type" + } + }, + "additionalProperties": false + }, + "value_filter": { + "$id": "#/definitions/value_filter", + "type": "object", + "title": "Value filter definition", + "minProperties": 1, + "required": [], + "properties": { + "default_filter": { + "$ref": "#/definitions/value_filter_default_filter" + }, + "filter_input": { + "$ref": "#/definitions/filter_input" + }, + "filter_type": { + "$ref": "#/definitions/filter_type" + }, + "condition_field": { + "$ref": "#/definitions/filter_condition_field" + } + }, + "additionalProperties": false + }, + "hierarchy_tree": { + "title": "Whether to generate a hierarchy tree for the selected members or not", + "type": "boolean" + }, + "value_filter_default_filter": { + "$id": "#/definitions/value_filter_default_filter", + "type": "string", + "title": "Specified the default filter type where no other preference is matched", + "enum": [ + "list_filter", + "checkbox_filter" + ] + }, + "filter_input": { + "$id": "#/definitions/filter_input", + "type": "object", + "title": "Filter input definition", + "minProperties": 1, + "required": [], + "properties": { + "min_item": { + "$ref": "#/definitions/min_item" + } + }, + "additionalProperties": false + }, + "filter_type": { + "$id": "#/definitions/filter_type", + "type": "object", + "title": "Filter type definition", + "minProperties": 1, + "required": [], + "properties": { + "range_group_filter_preference": { + "oneOf": [ + { + "type": "boolean" + }, + { + "$ref": "#/definitions/range_group_filter_preference" + } + ] + }, + "TYPE_NUMBER": { + "type": "string", + "enum": [ + "range_filter", + "input_filter", + "histogram_range_filter" + ] + } + }, + "additionalProperties": false + }, + "min_item": { + "$id": "#/definitions/min_item", + "type": "number", + "title": "Specifies the minimum of items required to show an input field for searching a filter item." + }, + "filter_condition_field": { + "$id": "#/definitions/filter_condition_field", + "type": "boolean", + "title": "Whether to provide a conidition field (OR, AND, NOT) per filter or not." + }, + "range_group_filter_preference": { + "$id": "#/definitions/range_group_filter_preference", + "title": "List of properties for which the preference is enabled", + "type": "array", + "minItems": 1, + "items": { + "type": "string" + } + }, + "field_label": { + "$id": "#/definitions/field_label", + "type": "string", + "title": "Specifies a field label" + }, + "field_message_key": { + "$id": "#/definitions/field_message_key", + "type": "string", + "title": "Specifies a field label message key to support i18n" + }, + "field_type": { + "$id": "#/definitions/field_type", + "type": "string", + "title": "Specifies a field type" + }, + "field_property": { + "$id": "#/definitions/field_property", + "type": "string", + "title": "Specifies the property releated to a field" + }, + "field_autocomplete": { + "$id": "#/definitions/field_autocomplete", + "type": "boolean", + "title": "Specifies whether the input field has support for autocompletion" + }, + "default_limit": { + "$id": "#/definitions/default_limit", + "type": "number", + "title": "Specifies the default limit for a result display" + }, + "default_collapsed": { + "$id": "#/definitions/default_collapsed", + "type": "boolean", + "title": "Whether to show section/label by default" + }, + "debug_output": { + "$id": "#/definitions/debug_output", + "type": "boolean", + "title": "Whether to show some debug information or not" + }, + "default_format": { + "$id": "#/definitions/default_format", + "type": "string", + "enum": [ + "table" + ], + "title": "Specifies the default format for a result display" + }, + "paging_limit": { + "$id": "#/properties/paging_limit", + "type": "array", + "minItems": 1, + "items": { + "type": "number" + } + }, + "exploration_section": { + "$id": "#/definitions/exploration_section", + "type": "object", + "title": "Explore section definition", + "minProperties": 1, + "required": [], + "properties": { + "query_list": { + "$ref": "#/definitions/exploration_query_list" + } + }, + "additionalProperties": false + }, + "exploration_query_list": { + "$id": "#/definitions/exploration_query_list", + "type": "object", + "title": "Definition of a list of explorational queries", + "minProperties": 1, + "patternProperties": { + "^(.*)_query": { + "$ref": "#/definitions/exploration_query_link" + } + }, + "additionalProperties": false + }, + "exploration_query_link": { + "$id": "#/definitions/exploration_query_link", + "type": "object", + "title": "...", + "minProperties": 1, + "required": [ "query", "label" ], + "properties": { + "query": { + "type": "string" + }, + "label": { + "type": "string" + }, + "description": { + "type": "string" + } + }, + "additionalProperties": false + } + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/schema/link-format-schema.v1.json b/mediawiki/extensions/SemanticMediaWiki/data/schema/link-format-schema.v1.json new file mode 100644 index 0000000..6068182 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/schema/link-format-schema.v1.json @@ -0,0 +1,119 @@ +{ + "$id": "http://example.com/example.json", + "type": "object", + "properties": { + "description": { + "$id": "/properties/description", + "type": "string", + "title": "The Description Schema", + "default": "", + "examples": [ + "Define ..." + ] + }, + "type": { + "$id": "/properties/type", + "type": "string", + "title": "The Type Schema", + "default": "", + "examples": [ + "LINK_FORMAT_SCHEMA" + ], + "enum": [ + "LINK_FORMAT_SCHEMA" + ] + }, + "rule": { + "$id": "/properties/rule", + "type": "object", + "minProperties": 1, + "properties": { + "link_to": { + "$id": "/properties/rule/properties/link_to", + "type": "string", + "title": "The link_to Schema", + "default": "", + "examples": [ + "SPECIAL_ASK" + ], + "minLength": 1, + "enum": [ + "SPECIAL_ASK", + "SPECIAL_SEARCH_BY_PROPERTY" + ] + }, + "parameters": { + "$id": "/properties/rule/properties/parameters", + "type": "object", + "properties": { + "format": { + "$id": "/properties/rule/properties/parameters/properties/format", + "type": "string", + "title": "The Format Schema", + "default": "", + "examples": [ + "category" + ], + "enum": [ + "category", + "broadtable", + "table", + "list" + ] + }, + "printouts": { + "$id": "/properties/rule/properties/parameters/properties/printouts", + "type": "array", + "items": { + "$id": "/properties/rule/properties/parameters/properties/printouts/items", + "type": "string", + "title": "The 0 Schema", + "default": "", + "examples": [ + "Has description" + ] + } + } + } + } + }, + "required": [ + "link_to" + ], + "anyOf": [{ + "properties": { + "link_to": { + "enum": ["SPECIAL_ASK"] + } + }, + "required": [ "parameters" ] + }, + { + "properties": { + "link_to": { + "enum": ["SPECIAL_SEARCH_BY_PROPERTY" ] + } + }, + "additionalProperties": false + } + ] + }, + "tags": { + "$id": "/properties/tags", + "type": "array", + "items": { + "$id": "/properties/tags/items", + "type": "string", + "title": "The 0 Schema", + "default": "", + "examples": [ + "formatter" + ] + } + } + }, + "required": [ + "type", + "rule" + ] +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/schema/property-constraint-schema.v1.json b/mediawiki/extensions/SemanticMediaWiki/data/schema/property-constraint-schema.v1.json new file mode 100644 index 0000000..ac92395 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/schema/property-constraint-schema.v1.json @@ -0,0 +1,115 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://www.semantic-mediawiki.org/wiki/Help:Schema/Type/PROPERTY_CONSTRAINT_SCHEMA", + "type": "object", + "title": "Property constraint validation schema", + "required": [ + "type", + "constraints" + ], + "properties": { + "type": { + "$id": "#/properties/type", + "type": "string", + "enum": [ + "PROPERTY_CONSTRAINT_SCHEMA" + ], + "title": "Schema type", + "default": "PROPERTY_CONSTRAINT_SCHEMA" + }, + "title_prefix": { + "$id": "#/properties/title_prefix", + "type": "string", + "enum": [ + "Constraint" + ], + "title": "Title prefix" + }, + "tags": { + "$id": "#/properties/tags", + "type": "array", + "title": "tags", + "default": null, + "items": { + "$id": "#/properties/tags/items", + "type": "string", + "title": "tags, keywords etc.", + "default": "", + "pattern": "^(.*)$" + } + }, + "constraints": { + "$id": "#/properties/constraints", + "type": "object", + "title": "constraint rules", + "minProperties": 1, + "propertyNames": { + "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" + }, + "properties": { + "allowed_namespaces": { + "$ref": "#/definitions/allowed_namespaces" + }, + "unique_value_constraint": { + "$ref": "#/definitions/unique_value_constraint" + }, + "single_value_constraint": { + "$ref": "#/definitions/single_value_constraint" + }, + "custom_constraint": { + "$ref": "#/definitions/custom_constraint" + }, + "non_negative_integer": { + "$ref": "#/definitions/non_negative_integer" + }, + "must_exists": { + "$ref": "#/definitions/must_exists" + } + }, + "additionalProperties": false + } + }, + "definitions": { + "allowed_namespaces": { + "$id": "#/definitions/allowed_namespaces", + "type": "array", + "title": "Specifies allowed namespaces", + "minItems": 1, + "items": { + "type": "string", + "title": "namespace", + "default": "", + "pattern": "^(NS_|SMW_NS_)(.*)$" + } + }, + "unique_value_constraint": { + "$id": "#/definitions/unique_value_constraint", + "type": "boolean", + "title": "Specifies that values should be unique across the wiki, that the value is likely to be different (distinct) from all other items", + "default": false + }, + "single_value_constraint": { + "$id": "#/definitions/single_value_constraint", + "type": "boolean", + "title": "Specifies that the property expects only a single value per entity", + "default": false + }, + "custom_constraint": { + "$id": "#/definitions/custom_constraint", + "type": "object", + "title": "Specifies custom constraints to be implemented by a user" + }, + "non_negative_integer": { + "$id": "#/definitions/non_negative_integer", + "type": "boolean", + "title": "Specifies that values are derived from integer with the minimum inclusive to be 0", + "default": false + }, + "must_exists": { + "$id": "#/definitions/must_exists", + "type": "boolean", + "title": "Specifies that the annotated value must exists to be valid", + "default": false + } + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/schema/property-group-schema.v1.json b/mediawiki/extensions/SemanticMediaWiki/data/schema/property-group-schema.v1.json new file mode 100644 index 0000000..239ffbe --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/schema/property-group-schema.v1.json @@ -0,0 +1,116 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://www.semantic-mediawiki.org/wiki/Help:Schema/Type/PROPERTY_GROUP_SCHEMA", + "type": "object", + "title": "Property group validation schema", + "required": [ + "type", + "groups" + ], + "properties": { + "type": { + "$id": "#/properties/type", + "type": "string", + "enum": [ + "PROPERTY_GROUP_SCHEMA" + ], + "title": "Schema type", + "default": "PROPERTY_GROUP_SCHEMA" + }, + "title_prefix": { + "$id": "#/properties/title_prefix", + "type": "string", + "enum": [ + "Group" + ], + "title": "Title prefix" + }, + "manifest_version": { + "$id": "#/properties/manifest_version", + "type": "number", + "title": "Manifest version", + "default": 1 + }, + "tags": { + "$id": "#/properties/tags", + "type": "array", + "title": "tags", + "default": null, + "items": { + "$id": "#/properties/tags/items", + "type": "string", + "title": "tags, keywords etc.", + "default": "", + "pattern": "^(.*)$" + } + }, + "groups": { + "$ref": "#/definitions/groups" + } + }, + "definitions": { + "groups": { + "$id": "#/definitions/groups", + "type": "object", + "title": "Definition of groups", + "minProperties": 1, + "patternProperties": { + "^(.*)_group": { + "$ref": "#/definitions/group" + } + }, + "additionalProperties": false + }, + "group": { + "$id": "#/definitions/group", + "type": "object", + "title": "Group rules", + "minProperties": 1, + "propertyNames": { + "pattern": "^[A-Za-z_][A-Za-z0-9_]*$" + }, + "required": [ "property_keys", "canonical_name" ], + "properties": { + "message_key": { + "$ref": "#/definitions/message_key" + }, + "canonical_name": { + "$ref": "#/definitions/canonical_name" + }, + "property_keys": { + "$ref": "#/definitions/property_keys" + } + }, + "additionalProperties": false + }, + "message_key": { + "$id": "#/definitions/message_key", + "type": "string", + "title": "Group name as message key", + "default": "", + "examples": [ + "smw-property-group-label-schema-group" + ], + "pattern": "^(smw|sar|sesp|sbl|scite|sg)-property-group-label-(.*)$" + }, + "canonical_name": { + "$id": "#/definitions/canonical_name", + "type": "string", + "title": "Canonical group name", + "default": "", + "pattern": "^(.*)$" + }, + "property_keys": { + "$id": "#/definitions/property_keys", + "type": "array", + "title": "List of properties keys", + "minItems": 1, + "items": { + "type": "string", + "title": "property", + "default": "", + "pattern": "^(.*)$" + } + } + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/schema/property-profile-schema.v1.json b/mediawiki/extensions/SemanticMediaWiki/data/schema/property-profile-schema.v1.json new file mode 100644 index 0000000..6a8fb7f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/schema/property-profile-schema.v1.json @@ -0,0 +1,117 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "$id": "https://www.semantic-mediawiki.org/wiki/Help:Schema/Type/PROPERTY_PROFILE_SCHEMA", + "type": "object", + "title": "Property profile validation schema", + "required": [ + "type", + "profile" + ], + "properties": { + "type": { + "$id": "#/properties/type", + "type": "string", + "enum": [ + "PROPERTY_PROFILE_SCHEMA" + ], + "title": "Schema type", + "default": "PROPERTY_PROFILE_SCHEMA" + }, + "title_prefix": { + "$id": "#/properties/title_prefix", + "type": "string", + "enum": [ + "Profile" + ], + "title": "Title prefix" + }, + "manifest_version": { + "$id": "#/properties/manifest_version", + "type": "number", + "title": "Manifest version", + "default": 1 + }, + "tags": { + "$id": "#/properties/tags", + "type": "array", + "title": "tags", + "default": null, + "items": { + "$id": "#/properties/tags/items", + "type": "string", + "title": "tags, keywords etc.", + "default": "", + "pattern": "^(.*)$" + } + }, + "profile": { + "$id": "#/properties/profile", + "type": "object", + "title": "Available profile options", + "minProperties": 1, + "properties": { + "sequence_map": { + "$ref": "#/definitions/sequence_map" + }, + "range_group": { + "$ref": "#/definitions/range_group" + }, + "range_control": { + "$ref": "#/definitions/range_control" + } + }, + "additionalProperties": false + } + }, + "definitions": { + "sequence_map": { + "$id": "#/definitions/sequence_map", + "type": "boolean", + "default": false, + "title": "Whether to store annotation values in the order of the input or not" + }, + "range_group": { + "$id": "#/definitions/range_group", + "type": "object", + "patternProperties": { + "^(.*)$": { + "$ref": "#/definitions/range_group_field_value" + } + } + }, + "range_group_field_value": { + "$id": "#/definitions/range_group_field_value", + "type": "string", + "default": false, + "pattern": "^(.*)(\\.\\.\\.)(.*)$" + }, + "range_control": { + "$id": "#/definitions/range_control", + "type": "object", + "properties": { + "min_interval": { + "type": "number", + "title": "Number to define the minimum range required for the values" + }, + "step_size": { + "type": "number", + "title": "Specifies the size of increment between values" + }, + "precision": { + "type": "number", + "title": "Specifies a number of digits after the decimal point" + }, + "uncertainty": { + "type": "number", + "title": "Specifies a number of uncertainty for the minimum and maximum range value" + } + }, + "additionalProperties": false, + "required": [ + "min_interval", + "step_size", + "precision" + ] + } + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/schema/search-form-schema.v1.json b/mediawiki/extensions/SemanticMediaWiki/data/schema/search-form-schema.v1.json new file mode 100644 index 0000000..27b80b7 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/schema/search-form-schema.v1.json @@ -0,0 +1,34 @@ +{ + "$id": "https://www.semantic-mediawiki.org/search-profile-form.json", + "type": "object", + "properties": { + "type": { + "$id": "/properties/type", + "type": "string", + "title": "The Type Schema", + "default": "", + "examples": [ + "SEARCH_FORM_SCHEMA" + ], + "enum": [ + "SEARCH_FORM_SCHEMA" + ] + }, + "forms": { + "$id": "/properties/forms", + "type": "object" + }, + "namespaces": { + "$id": "/properties/namespaces", + "type": "object" + }, + "descriptions": { + "$id": "/properties/descriptions", + "type": "object" + } + }, + "required": [ + "type", + "forms" + ] +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/ConstraintErrorComment.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/ConstraintErrorComment.ms new file mode 100644 index 0000000..19229b7 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/ConstraintErrorComment.ms @@ -0,0 +1 @@ +{{comment}} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/ConstraintErrorHighlighter.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/ConstraintErrorHighlighter.ms new file mode 100644 index 0000000..b3fdd23 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/ConstraintErrorHighlighter.ms @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/ConstraintErrorLine.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/ConstraintErrorLine.ms new file mode 100644 index 0000000..4ac48a2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/ConstraintErrorLine.ms @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/constraint.error.top.line.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/constraint.error.top.line.ms new file mode 100644 index 0000000..b87dab8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/constraint.error.top.line.ms @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/constraint.sticky.top.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/constraint.sticky.top.ms new file mode 100644 index 0000000..74ec0d4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/constraint/constraint.sticky.top.ms @@ -0,0 +1 @@ +
{{content}}
\ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/CheckReplicationTaskComment.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/CheckReplicationTaskComment.ms new file mode 100644 index 0000000..5bc2172 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/CheckReplicationTaskComment.ms @@ -0,0 +1 @@ +
{{comment}}
\ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/CheckReplicationTaskHighlighter.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/CheckReplicationTaskHighlighter.ms new file mode 100644 index 0000000..7be2ea6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/CheckReplicationTaskHighlighter.ms @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/compare.list.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/compare.list.ms new file mode 100644 index 0000000..e83cc4f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/compare.list.ms @@ -0,0 +1 @@ +

{{explain}}

{{es_key}}{{es_value}}
{{backend_key}}{{backend_value}}
\ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/line.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/line.ms new file mode 100644 index 0000000..4ac48a2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/line.ms @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/text.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/text.ms new file mode 100644 index 0000000..d51fc8c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/elastic/indexer/text.ms @@ -0,0 +1 @@ +
{{text}}
\ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/container.empty.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/container.empty.ms new file mode 100644 index 0000000..1307c23 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/container.empty.ms @@ -0,0 +1,4 @@ +
+ {{search-extra-fields}} +
{{intro}}
+
\ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/container.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/container.ms new file mode 100644 index 0000000..d9e922b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/container.ms @@ -0,0 +1,10 @@ +
+ {{search-extra-fields}} +
+
{{sidebar}}
+
{{content}} +
+
+
+
+ \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/content.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/content.ms new file mode 100644 index 0000000..f6c31f8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/content.ms @@ -0,0 +1,3 @@ +
{{debug}}
+
{{options}}
+
{{results}}
diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/cards.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/cards.ms new file mode 100644 index 0000000..cc1404c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/cards.ms @@ -0,0 +1,5 @@ +
+ {{property-filter-card}} + {{category-filter-card}} + {{value-filter-cards}} +
\ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/facet.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/facet.ms new file mode 100644 index 0000000..048aba1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/facet.ms @@ -0,0 +1,6 @@ +
{{clear}} +
{{label}}
+
+ {{filterfacet}} +
+
\ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.checkbox.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.checkbox.ms new file mode 100644 index 0000000..134600e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.checkbox.ms @@ -0,0 +1,8 @@ +
+ + {{count}} +
\ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.linked.button.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.linked.button.ms new file mode 100644 index 0000000..5c39e49 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.linked.button.ms @@ -0,0 +1,8 @@ +
  • +
    + + + + {{count}} +
    +
  • \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.linked.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.linked.ms new file mode 100644 index 0000000..52bdb39 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.linked.ms @@ -0,0 +1 @@ +
  • {{key}}{{count}}
  • \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.unlink.button.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.unlink.button.ms new file mode 100644 index 0000000..7c5c81a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.unlink.button.ms @@ -0,0 +1,11 @@ +
  • +
    + + {{label}} + + + + {{count}} +
    + +
  • \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.unlink.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.unlink.ms new file mode 100644 index 0000000..9c6b4de --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/item.unlink.ms @@ -0,0 +1 @@ +
  • {{key}}{{count}}
  • \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.clear.button.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.clear.button.ms new file mode 100644 index 0000000..257d5b3 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.clear.button.ms @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.clear.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.clear.ms new file mode 100644 index 0000000..92ab31d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.clear.ms @@ -0,0 +1 @@ +{{key}} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.condition.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.condition.ms new file mode 100644 index 0000000..3b232da --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.condition.ms @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.input.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.input.ms new file mode 100644 index 0000000..c9084f4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.input.ms @@ -0,0 +1 @@ +
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.ms new file mode 100644 index 0000000..8947bf0 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.ms @@ -0,0 +1 @@ +{{option}}
    {{unlinked}}
    {{linked}}
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.option.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.option.ms new file mode 100644 index 0000000..a0412ed --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/filter/items.option.ms @@ -0,0 +1,3 @@ +
    +
    {{condition}}{{input}}
    +
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/intro.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/intro.ms new file mode 100644 index 0000000..9e0096b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/intro.ms @@ -0,0 +1 @@ +
    {{text}}
    {{tips}}
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/options.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/options.ms new file mode 100644 index 0000000..4423e7d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/options.ms @@ -0,0 +1,12 @@ +
    « {{previous}} | {{offset}} - {{limit}} of {{count}} | {{next}} »
    +
    + + + + + + + + + +
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/search.extrafield.input.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/search.extrafield.input.ms new file mode 100644 index 0000000..95cbb33 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/search.extrafield.input.ms @@ -0,0 +1,8 @@ +
    +
    +
    {{label}}
    +
    +
    + +
    +
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/search.extrafields.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/search.extrafields.ms new file mode 100644 index 0000000..4df5899 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/search.extrafields.ms @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/search.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/search.ms new file mode 100644 index 0000000..6510f7a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/search.ms @@ -0,0 +1,27 @@ +
    + +
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/sidebar.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/sidebar.ms new file mode 100644 index 0000000..c312c6e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/facetedsearch/sidebar.ms @@ -0,0 +1,3 @@ +
    + {{cards}} +
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/bottom.comment.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/bottom.comment.ms new file mode 100644 index 0000000..48de048 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/bottom.comment.ms @@ -0,0 +1 @@ +
    {{comment}}
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/bottom.marker.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/bottom.marker.ms new file mode 100644 index 0000000..50b4ef7 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/bottom.marker.ms @@ -0,0 +1 @@ +
    {{label}}
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/bottom.sticky.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/bottom.sticky.ms new file mode 100644 index 0000000..85487ee --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/bottom.sticky.ms @@ -0,0 +1 @@ +
    {{content}}
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/comment.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/comment.ms new file mode 100644 index 0000000..5bc2172 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/comment.ms @@ -0,0 +1 @@ +
    {{comment}}
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/compare.list.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/compare.list.ms new file mode 100644 index 0000000..e15b836 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/compare.list.ms @@ -0,0 +1 @@ +

    {{explain}}

    {{first_key}}{{first_value}}
    {{second_key}}{{second_value}}
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/composite.highlighter.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/composite.highlighter.ms new file mode 100644 index 0000000..02aead2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/composite.highlighter.ms @@ -0,0 +1 @@ +
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/composite.line.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/composite.line.ms new file mode 100644 index 0000000..4ac48a2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/composite.line.ms @@ -0,0 +1 @@ +
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/composite.placeholder.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/composite.placeholder.ms new file mode 100644 index 0000000..caa4081 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/composite.placeholder.ms @@ -0,0 +1 @@ +
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/dot.label.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/dot.label.ms new file mode 100644 index 0000000..1a50e55 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/dot.label.ms @@ -0,0 +1 @@ +{{title}} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/line.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/line.ms new file mode 100644 index 0000000..4ac48a2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/line.ms @@ -0,0 +1 @@ +
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/tabpanel.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/tabpanel.ms new file mode 100644 index 0000000..cf036d1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/tabpanel.ms @@ -0,0 +1 @@ +
    {{tabset}}
    {{content}}
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/tabpanel.tab.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/tabpanel.tab.ms new file mode 100644 index 0000000..eb9e586 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/tabpanel.tab.ms @@ -0,0 +1 @@ +
    {{content}}
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/tabpanel.tabset.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/tabpanel.tabset.ms new file mode 100644 index 0000000..78c4ee2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/tabpanel.tabset.ms @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/text.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/text.ms new file mode 100644 index 0000000..9d43dea --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/indicator/text.ms @@ -0,0 +1 @@ +
    {{text}}
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.db.requirement.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.db.requirement.ms new file mode 100644 index 0000000..ba20594 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.db.requirement.ms @@ -0,0 +1 @@ +

    {{version-title}}

    {{db-title}}:
    {{db-type}}
    {{db-minimum-title}}:
    {{db-minimum-version}}
    {{db-current-title}}:
    {{db-current-version}}

    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.errorbox.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.errorbox.ms new file mode 100644 index 0000000..3d6fa21 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.errorbox.ms @@ -0,0 +1 @@ +
    {{text}}
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.json b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.json new file mode 100644 index 0000000..71ed9aa --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.json @@ -0,0 +1,320 @@ +{ + "error_types":{ + "ERROR_SCHEMA_INVALID_KEY":{ + "indicator_title":"smw-setupcheck-error", + "indicator_color":"#dd3d31", + "output_form":[ + { + "type":"paragraph", + "text":"smw-setupcheck-invalid-upgrade-key" + }, + { + "type":"version", + "text":"smw-setupcheck-release" + }, + { + "type":"section", + "text":"smw-setupcheck-why-this-page" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-reason-for-invalid-upgrade-key" + }, + { + "type":"section", + "text":"smw-setupcheck-how-to-fix-error" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-administrator-assistance" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-install-assistance" + } + ] + }, + "ERROR_DB_REQUIREMENT_INCOMPATIBLE":{ + "indicator_title":"smw-setupcheck-error", + "indicator_color":"#dd3d31", + "output_form":[ + { + "type":"paragraph", + "text":"smw-setupcheck-requires-db-minimum-version" + }, + { + "type":"db-requirement", + "text":"smw-setupcheck-db-requirement" + }, + { + "type":"version", + "text":"smw-setupcheck-release" + }, + { + "type":"section", + "text":"smw-setupcheck-how-to-fix-error" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-requires-software-update" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-temporarily-disable" + } + ] + }, + "ERROR_EXTENSION_INCOMPATIBLE":{ + "indicator_title":"smw-setupcheck-dependency-error", + "indicator_color":"#dd3d31", + "output_form":[ + { + "type":"paragraph", + "text":"ERROR_TEXT" + }, + { + "type":"version", + "text":"smw-setupcheck-release" + }, + { + "type":"section", + "text":"smw-setupcheck-how-to-fix-error" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-requires-software-update" + } + ] + }, + "ERROR_EXTENSION_DEPENDENCY":{ + "indicator_title":"smw-setupcheck-dependency-error", + "indicator_color":"#dd3d31", + "output_form":[ + { + "type":"paragraph", + "text":"ERROR_TEXT" + }, + { + "type":"version", + "text":"smw-setupcheck-release" + }, + { + "type":"section", + "text":"smw-setupcheck-how-to-fix-error" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-dependency-requires-semanticmediawiki" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-enablesemantics-assistance" + } + ] + }, + "ERROR_EXTENSION_DEPENDENCY_MULTIPLE":{ + "indicator_title":"smw-setupcheck-dependency-error", + "indicator_color":"#dd3d31", + "output_form":[ + { + "type":"paragraph", + "text":"smw-setupcheck-dependency-error-multiple" + }, + { + "type":"paragraph", + "text":"ERROR_TEXT_MULTIPLE" + }, + { + "type":"version", + "text":"smw-setupcheck-release" + }, + { + "type":"section", + "text":"smw-setupcheck-how-to-fix-error" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-dependency-multiple-requires-semanticmediawiki" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-enablesemantics-assistance" + } + ] + }, + "ERROR_EXTENSION_REGISTRY":{ + "indicator_title":"smw-setupcheck-registry-error", + "indicator_color":"#dd3d31", + "output_form":[ + { + "type":"paragraph", + "text":"smw-setupcheck-registry-enablesemantics-conflict" + }, + { + "type":"version", + "text":"smw-setupcheck-release" + }, + { + "type":"section", + "text":"smw-setupcheck-how-to-fix-error" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-remove-wfloadextension" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-enablesemantics-assistance" + } + ], + "stack_trace":[ + { + "type":"section", + "text":"smw-setupcheck-stack-trace" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-stack-trace-abort-condition" + }, + { + "type":"errorbox", + "text":"ERROR_TEXT" + }, + { + "type":"errorbox", + "text":"TRACE_STRING" + } + ] + }, + "ERROR_EXTENSION_LOAD":{ + "indicator_title":"smw-setupcheck-registry-error", + "indicator_color":"#dd3d31", + "output_form":[ + { + "type":"paragraph", + "text":"smw-setupcheck-registry-invalid-access" + }, + { + "type":"version", + "text":"smw-setupcheck-release" + }, + { + "type":"section", + "text":"smw-setupcheck-how-to-fix-error" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-registry-requires-enablesemantics" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-enablesemantics-assistance" + } + ], + "stack_trace":[ + { + "type":"section", + "text":"smw-setupcheck-stack-trace" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-stack-trace-abort-condition" + }, + { + "type":"errorbox", + "text":"TRACE_STRING" + } + ] + }, + "ERROR_EXTENSION_INVALID_ACCESS":{ + "indicator_title":"smw-setupcheck-registry-error", + "indicator_color":"#dd3d31", + "output_form":[ + { + "type":"paragraph", + "text":"smw-setupcheck-registry-invalid-wfloadextension-use" + }, + { + "type":"version", + "text":"smw-setupcheck-release" + }, + { + "type":"section", + "text":"smw-setupcheck-how-to-fix-error" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-registry-requires-enablesemantics" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-enablesemantics-assistance" + } + ] + }, + "ERROR_CONFIG_PROFILE_UNKNOWN":{ + "indicator_title":"smw-setupcheck-error", + "indicator_color":"#dd3d31", + "output_form":[ + { + "type":"paragraph", + "text":"ERROR_TEXT" + }, + { + "type":"version", + "text":"smw-setupcheck-release" + }, + { + "type":"section", + "text":"smw-setupcheck-how-to-fix-error" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-config-profile" + } + ] + }, + "MAINTENANCE_MODE":{ + "indicator_title":"smw-setupcheck-maintenance", + "indicator_color":"#ffc107", + "output_form":[ + { + "type":"paragraph", + "text":"smw-setupcheck-in-maintenance-mode" + }, + { + "type":"version", + "text":"smw-setupcheck-release" + }, + { + "type":"section", + "text":"smw-setupcheck-why-this-page" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-reason-for-in-maintenance" + } + ], + "progress":[ + { + "type":"section", + "text":"smw-setupcheck-progress" + }, + { + "type":"paragraph", + "progress_keys":{ + "create-tables":"smw-setupcheck-progress-key-create-tables", + "post-creation":"smw-setupcheck-progress-key-post-creation", + "table-optimization":"smw-setupcheck-progress-key-table-optimization", + "supplement-jobs":"smw-setupcheck-progress-key-supplement-jobs" + }, + "text":"smw-setupcheck-estimation-of-completion" + }, + { + "type":"paragraph", + "text":"smw-setupcheck-administrator-contact-for-information" + } + ] + } + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.ms new file mode 100644 index 0000000..2c1ab14 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.ms @@ -0,0 +1,142 @@ + + + + + {{title}} + + + + +
    {{content}}
    + + \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.paragraph.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.paragraph.ms new file mode 100644 index 0000000..d4eacae --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.paragraph.ms @@ -0,0 +1 @@ +

    {{text}}

    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.progress.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.progress.ms new file mode 100644 index 0000000..6fe58c6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.progress.ms @@ -0,0 +1 @@ +
    {{label}}
    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.section.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.section.ms new file mode 100644 index 0000000..2e66711 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.section.ms @@ -0,0 +1 @@ +

    {{text}}

    \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.version.ms b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.version.ms new file mode 100644 index 0000000..1c9d6aa --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/data/template/setupcheck/setupcheck.version.ms @@ -0,0 +1 @@ +

    {{version-title}}

    {{smw-title}}:
    {{smw-version}} ({{smw-upgradekey}})
    {{mw-title}}:
    {{mw-version}}
    {{code-title}}:

    diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/COMPATIBILITY.md b/mediawiki/extensions/SemanticMediaWiki/docs/COMPATIBILITY.md new file mode 100644 index 0000000..dd23f09 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/COMPATIBILITY.md @@ -0,0 +1,437 @@ +# Compatibility + +This document holds the compatibility information for Semantic MediaWiki (SMW). + +For a full list of changes in each release, see the [release notes](https://github.com/SemanticMediaWiki/SemanticMediaWiki/tree/master/docs/releasenotes). +For instructions on how to install the latest version of Semantic MediaWiki (SMW), see the +[installation instructions](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/INSTALL.md). + +## Platform compatibility and release status + +The PHP and MediaWiki versions listed have been tested and are known to work. +Semantic MediaWiki may also work with more recent versions of PHP and MediaWiki, though this is not guaranteed. + +Increases of minimum requirements are indicated in bold. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    SMWStatusFirst releaseLatest releasePHPMediaWikiNotes
    6.0.xStable release2025-08-122025-08-268.1 - 8.41.43 - 1.44
    5.1.xObsolete release2025-07-242025-07-248.1 - 8.41.39 - 1.43.1MW 1.43.1 is the final version supported by the SMW 5.x series.
    5.0.xObsolete release2025-03-102025-05-248.1 - 8.41.39 - 1.43.1
    4.2.xObsolete release2024-07-182024-07-187.4 - 8.21.35 - 1.41
    4.1.xObsolete release2023-01-212024-02-177.4 - 8.11.35 - 1.394.1.1 or higher needed for PHP 8.1+
    4.0.xObsolete release2022-01-182022-07-217.3 - 8.01.35 - 1.37Not compatible with PHP 8.1+ or MW 1.39
    3.2.xObsolete release2020-09-072021-03-297.1.0 - 7.4.x1.31.0 - 1.35.x
    3.1.xObsolete release2019-09-232020-04-197.0.0 - 7.3.x1.31.0 - 1.34.x
    3.0.xObsolete release2018-10-112019-04-115.6.0 - 7.2.x1.27.0 - 1.31.x
    2.5.xObsolete release2017-03-142018-09-075.5.0 - 7.1.x1.23.0 - 1.30.x
    2.4.xObsolete release2016-07-092017-02-155.3.2 - 7.0.x1.19.0 - 1.27.x
    2.3.xObsolete release2015-10-252016-01-065.3.2 - 5.6.x1.19.0 - 1.25.x
    2.2.xObsolete release2015-05-092015-10-105.3.2 - 5.6.x1.19.0 - 1.25.x
    2.1.xObsolete release2015-01-192015-03-305.3.2 - 5.6.x1.19.0 - 1.24.x
    2.0.xObsolete release2014-08-042014-09-275.3.2 - 5.6.x1.19.0 - 1.23.x
    1.9.xObsolete release2014-01-032014-04-185.3.2 - 5.6.x1.19.0 - 1.22.x
    + +## Database compatibility + +### SQL support + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    SMWMySQLSQLitePostgreSQL
    6.xFull support (5.7.0+)Full support (3.24.0+)Full support (10+)
    5.xFull support (5.7.0+)Full support (3.8.0+)Full support (10+)
    4.xFull support (5.5.8+)Full support (3.3.7+)Full support (9.5.0+)
    3.2.xFull support (5.5.8+)Full support (3.3.7+)Full support (9.5.0+)
    3.1.xFull support (5.5.8+)Full support (3.3.7+)Full support (9.2.0+)
    3.0.xFull support (5.5.8+)Full support (3.3.7+)Full support (9.2.0+)
    2.5.xFull support (5.5.8+)Full support (3.3.7+)Full support (9.1.0+)
    2.4.xFull support (5.0.2+)Full support (3.3.7+)Full support (9.0.0+)
    2.3.xFull support (5.0.2+)Full support (3.3.7+)Full support (9.0.0+)
    2.2.xFull support (5.0.2+)Full support (3.3.7+)Full support (9.0.0+)
    2.1.xFull support (5.0.2+)Full support (3.3.7+)Full support (9.0.0+)
    2.0.xFull support (5.0.2+)Full support (3.3.7+)Beta support (8.3.0+)
    1.9.xFull support (5.0.2+)Full support (3.3.7+)Beta support (8.3.0+)
    + +Note that MS SQL Server and Oracle are not supported as database backends. + +### Triple store support + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    SMWFusekiVirtuoso4storeSesameBlazegraph
    3.2.xFull support
    (1.x >=1.1) + 2.4.0
    Full support
    (6.x >=6.1) + 7.2[t.1]
    Beta support
    (1.x >=1.1)[t.2]
    Full support
    (2.8.x)
    Full support
    (1.5.2) + 2.1.0[t.3]
    3.1.xFull support
    (1.x >=1.1) + 2.4.0
    Full support
    (6.x >=6.1) + 7.2[t.1]
    Beta support
    (1.x >=1.1)[t.2]
    Full support
    (2.8.x)
    Full support
    (1.5.2) + 2.1.0[t.3]
    3.0.xFull support
    (1.x >=1.1) + 2.4.0
    Full support
    (6.x >=6.1) + 7.2[t.1]
    Beta support
    (1.x >=1.1)[t.2]
    Full support
    (2.8.x)
    Full support
    (1.5.2) + 2.1.0[t.3]
    2.5.xFull support
    (1.x >=1.1) + 2.4.0
    Full support
    (6.x >=6.1) + 7.2[t.1]
    Beta support
    (1.x >=1.1)[t.2]
    Full support
    (2.8.x)
    Full support
    (1.5.2) + 2.1.0[t.3]
    2.4.xFull support
    (1.x >=1.1) + 2.4.0
    Full support
    (6.x >=6.1) + 7.2[t.1]
    Beta support
    (1.x >=1.1)[t.2]
    Full support
    (2.8.x)
    Full support
    (1.5.2) + 2.1.0[t.3]
    2.3.xFull support
    (1.x >=1.1)
    Full support
    (6.x >=6.1) + 7.1[t.1]
    Beta support
    (1.x >=1.1)[t.2]
    Full support
    (2.7.x)
    Full support
    (1.5.2)
    2.2.xFull support
    (1.x >=1.1)
    Full support
    (6.x >=6.1) + 7.1[t.1]
    Beta support
    (1.x >=1.1)[t.2]
    Full support
    (2.7.x)
    Beta support
    (1.5.2)
    2.1.xFull support
    (1.x >=1.1)
    Full support
    (6.x >=6.1)
    Beta support
    (1.x >=1.1)
    Full support
    (2.7.x)
    Not tested
    2.0.xFull supportFull supportBeta supportBeta supportNot tested
    1.9.xNo supportBeta supportBeta supportBeta supportNot tested
    + +- "Full support" means that all functionality has been verified to work and that it can be used in production +- "Beta support" means that most functionality has been verified to work, though stability is still low, and things might be buggy + +### ElasticStore support + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    SMWElasticsearchOpenSearchNotes
    6.0.x7.10.21.3.x+
    5.1.x7.10.21.3.x+
    5.0.x7.10.21.3.x+ + Confirmed to work with Elasticsearch 7.10.2 (MW 1.43.1).
    + Confirmed to work with OpenSearch 2.15.0+ (MW 1.43.1) +
    4.1.3 - 4.2.x7.10.2Not supportedConfirmed to work with Elasticsearch 7.10.2 (MW 1.39)
    4.1.0 - 4.1.26.5.x - 6.8.23Not supportedConfirmed not to work with Elasticsearch 7.x (MW 1.39)
    4.0.x6.5.x - 6.8.23Not supported
    3.2.x5.5.x - 6.8.23Not supported
    3.1.x5.5.x - 6.8.23Not supported
    3.0.x5.3.x - 6.8.23Not supported
    + +- The minimum supported version of Elasticsearch follows the [CirrusSearch requirements](https://www.mediawiki.org/wiki/Extension:CirrusSearch#Dependencies). +- [OpenSearch](https://opensearch.org/) is a fork of Elasticsearch OSS 7.10.2, governed by the OpenSearch Software Foundation (a project of The Linux Foundation), and Wikimedia is [migrating to it](https://phabricator.wikimedia.org/T370147). + +### Notes + +The information in brackets denotes the versions with which SMW is known to work. SMW might also work with different versions, especially more recent ones, though this is not guaranteed. + +- [t.1] On an irregular test plan with [Virtuoso 7.2](https://travis-ci.org/mwjames/SemanticMediaWiki/builds/97294290) +- [t.2] On an irregular test plan with [4store 1.1.4](https://travis-ci.org/mwjames/SemanticMediaWiki/builds/61200454) +- [t.3] [#1583](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1583) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/CONTRIBUTING.md b/mediawiki/extensions/SemanticMediaWiki/docs/CONTRIBUTING.md new file mode 100644 index 0000000..817415c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/CONTRIBUTING.md @@ -0,0 +1,56 @@ + +There are different ways to make a contribution to [Semantic MediaWiki][smw] (SMW) while a few guidelines are necessary to keep the workflow and review process most efficient. + +### Report bugs + +A bug is the occurrence of an unintended or unanticipated behaviour that causes a vulnerability or fatal error. + +* You may help us by reporting bugs via the [issue tracker][smw-issues]. See the help page on [reporting bugs (environment, reproducing)][smw-bugs1] as well as on [identifying bugs (stack-trace)][smw-bugs2] for information on how to do this best. Please remember to always provide information about your environment as well as a stack-trace. +* You may help us to do [pre-release testing][smw-testing] by joining the [team of testers][smw-testers] on GitHub. + +### Request features + +A feature request is a new, or altered behaviour of an existing functionality. You may describe them via the [issue tracker][smw-issues]. + +A request should contain a detailed description of the expected behaviour in order to avoid misconceptions in the process of an implementation. The following notes are provided to aid the process and help prioritize a request for project members. + +* Why is the feature requested or relevant? +* What does the feature solve? (e.g. it addresses a generalizable behaviour, it solves a specific use case etc.) +* Examples demonstrate the expected behaviour by: + * Being simple, clear, and targeted towards the feature and not rely on any other external functionality (such as other parser functions or extensions). + * In case of a modified behaviour, examples demonstrate the old and new behaviour together with an explanation of the expected difference + * In case of a new behaviour, examples are written down to outline the expected new behaviour (best practice is a step-by-step description) together with a [use case](https://en.wikipedia.org/wiki/Use_case) +* Examples made available via the [sandbox](https://sandbox.semantic-mediawiki.org). +* Examples should be adaptable so they can be used as part of an [integration test](https://www.semantic-mediawiki.org/wiki/Help:Integration_tests). + +### Improve documentation + +Documenting the software is an important part of the work to make the software usable. You may help us by creating, updating or amending the documentation of the software on [Semantic-MediaWiki.org][smw]. + +### Provide translations + +* You may help us by providing software translations via [translatewiki.net][twn]. See their [progress-statistics][twn-smw] to find out if there is still work to do for your language. +* You may also help up provide translations for important pages on the Semantic MediaWiki homepage. See the [info page][smw-trans] for further information + +### Provide patches + +You may help us by providing patches or additional features via a pull request but in order to swiftly co-ordinate your code contribution, the following should suffice: + +* Please ensure that pull requests are based on the current master. See also the [developer documentation overview][smw-ddo] for further information. +* Code should be easily readable (see [NPath complexity][smw-npath], `if else` nesting etc.) and if necessary be put into separate components (or classes) +* Newly added features should not alter existing tests but instead provide additional test coverage to verify the expected new behaviour. For a description on how to write and run PHPUnit test, please consult the [manual][mw-testing]. + +Thank you for contributing to Semantic MediaWiki! + +[smw]: https://github.com/SemanticMediaWiki/SemanticMediaWiki +[smw-issues]: https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues +[smw-bugs1]: https://www.semantic-mediawiki.org/wiki/Help:Reporting_bugs +[smw-bugs2]: https://www.semantic-mediawiki.org/wiki/Help:Identifying_bugs +[smw-testing]: https://www.semantic-mediawiki.org/wiki/Help:Reporting_bugs#Pre-release_testing +[smw-testers]: https://github.com/orgs/SemanticMediaWiki/teams/testers +[twn]: https://translatewiki.net/ +[twn-smw]: https://translatewiki.net/wiki/Special:MessageGroupStats?group=mwgithub-semanticmediawiki&suppressempty=1&x=D +[smw-trans]: https://www.semantic-mediawiki.org/wiki/semantic-mediawiki.org:Translating_content +[smw-ddo]: https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/technical/README.md +[mw-testing]: https://www.mediawiki.org/wiki/Manual:PHP_unit_testing +[smw-npath]: https://www.semantic-mediawiki.org/wiki/Code_coverage#NPath_complexity diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/INSTALL.md b/mediawiki/extensions/SemanticMediaWiki/docs/INSTALL.md new file mode 100644 index 0000000..8d059d0 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/INSTALL.md @@ -0,0 +1,121 @@ +# Installation guide (brief) + +This is a brief installation and configuration guide for [Semantic MediaWiki](../README.md) (SMW) +that only contains the core steps. More verbose installation instructions with additional explanation +and upgrading instructions can be found [here](https://www.semantic-mediawiki.org/wiki/Help:Installation). + +A list of supported PHP versions, MediaWiki versions and databases per SMW release can be found +in the [compatibility matrix](COMPATIBILITY.md). + + +## Download and installation + +### Installation + +The recommended way to install Semantic MediaWiki is with [Composer](https://getcomposer.org) using +[MediaWiki's built-in support for Composer](https://www.mediawiki.org/wiki/Composer). + +#### Step 1 + +Change to the base directory of your MediaWiki installation. If you do not have a "composer.local.json" file yet, +create one and add the following content to it: + +``` +{ + "require": { + "mediawiki/semantic-media-wiki": "^5.0.0" + } +} +``` + +If you already have a "composer.local.json" file add the following line to the end of the "require" +section in your file: + + "mediawiki/semantic-media-wiki": "^5.0.0" + +Remember to add a comma to the end of the preceding line in this section. + +#### Step 2 + +Run the following command in your shell: + + php composer.phar update --no-dev + +Note if you have Git installed on your system add the `--prefer-source` flag to the above command. + +#### Step 3 + +Add the following two lines to the end of your "LocalSettings.php" file: + + wfLoadExtension( 'SemanticMediaWiki' ); + enableSemantics( 'example.org' ); + +Note that "example.org" should be replaced by your wiki's domain. + +#### Step 4 + +Run the MediaWiki [update script](https://www.mediawiki.org/wiki/Manual:Update.php). The location of +this script is `maintenance/update.php`. It can be run as follows in your shell: + + php maintenance/update.php + +#### Step 5 + +If you are installing SMW on a freshly installed wiki then you are done. If the wiki already has content +pages run the Semantic MediaWiki [data rebuild script](https://www.semantic-mediawiki.org/wiki/Help:Maintenance_script_"rebuildData.php"). The location of this script +is `extensions/SemanticMediaWiki/maintenance/rebuildData.php`. It can be run as follows in your shell: + + php extensions/SemanticMediaWiki/maintenance/rebuildData.php -v + +### Installation without shell access + +As an alternative to installing via Composer, you can obtain the SMW code by creating your own [individual file release](https://github.com/SemanticMediaWiki/IndividualFileRelease) most likely if command line access to the webspace is not available or if the hoster imposes restrictions on required functionality. + +Note that SMW no longer provides file releases [(See #3347).](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1732) + +#### Step 1 + +Create your [individual file release](https://github.com/SemanticMediaWiki/IndividualFileRelease) using the respective script. Please pay attention to the MediaWiki version used in the script and adapt to your setup if necessary. + +#### Step 2 + +Transfer the code thus compiled to the appropriate folders on your webspace. + +#### Step 3 + +Add the following lines to the end of your "LocalSettings.php" file: + + enableSemantics( 'example.org' ); + +Note that "example.org" should be replaced by your wiki's domain. + +#### Step 4 + +Log in as a user with administrator permission to your wiki and go to the "Maintenance" tab on special page "Special:SemanticMediaWiki": + +Click on the "Initialise or upgrade tables" button in the "Database maintenance" section to setup the +database. + +#### Step 5 + +If you are installing SMW on a freshly installed wiki then you are done. If the wiki already has content +pages also do the following on page "Special:SemanticMediaWiki": + +Click on the "Start updating data" button in the "Data rebuild" subsection of "Maintenance" tab +to activate the [automatic data update](https://www.semantic-mediawiki.org/wiki/Help:Repairing_SMW's_data). + +### Installation of development versions and release candidates + +If you would like to install a development version or release candidate then replace the lines as stated in step 3 of the +"Installation with Composer" section with the following line + +* master: `"mediawiki/semantic-media-wiki": "dev-master"` +* legacy branch: `"mediawiki/semantic-media-wiki": "~5.0.0@dev"` +* release candidate: `"mediawiki/semantic-media-wiki": "~5.0@rc"` + +## More instructions + +* [Verbose installation instructions](https://www.semantic-mediawiki.org/wiki/Help:Installation) +* [Upgrading instructions](https://www.semantic-mediawiki.org/wiki/Help:Installation#Upgrading) +* [Configuration instructions](https://www.semantic-mediawiki.org/wiki/Help:Configuration) +* [Administrator manual](https://www.semantic-mediawiki.org/wiki/Help:Administrator_manual) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/README.md b/mediawiki/extensions/SemanticMediaWiki/docs/README.md new file mode 100644 index 0000000..f3ccebd --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/README.md @@ -0,0 +1,20 @@ +# Semantic MediaWiki documentation + +The documentation for **Semantic MediaWiki** (SMW) can primarily be found on the [SMW website](https://www.semantic-mediawiki.org). + + Some core documentation is included together with the source code, and can mostly be found in the +`docs/` directory. + +* [Installation guide](INSTALL.md#installation-guide-brief) +* [Compatibility matrix](COMPATIBILITY.md#compatibility) + +## Release notes / version history + +Releases are made according to our [release policy](RELEASE-POLICY.md#release-policy). + +View [all release notes](releasenotes/README.md) + +## For developers + +* [Developing Semantic MediaWiki](architecture/README.md) +* [Technical documentation](technical/README.md) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/RELEASE-POLICY.md b/mediawiki/extensions/SemanticMediaWiki/docs/RELEASE-POLICY.md new file mode 100644 index 0000000..90619b4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/RELEASE-POLICY.md @@ -0,0 +1,29 @@ +# Release Policy + +Semantic MediaWiki follows [Semantic Versioning](https://semver.org/). + +We have these types of releases: + +* Patch releases (third number changes) - only include fixes - upgrading is very safe +* Minor releases (second number changes) - new features but no breaking changes +* Major releases (first number change) - include breaking changes - upgrades need attention + +### Breaking changes + +We only make the following changes in major releases. + +* Removal of features +* Breaking changes to features, such as syntax changes or parameter name changes +* Removal of support for versions of MediaWiki +* Changes that require running update.php or doing a data rebuild + +This means you can be sure none +of these types of changes are included in patch releases (ie SMW 1.5.2 to 1.5.3) or minor +releases (ie SMW 1.5.3 to 1.6.0). You can thus safely run composer update to pull in +Semantic MediaWiki fixes and features, as long as you have the major version pinned. + +### See also + +* [Release notes](releasenotes/README.md#release-notes) +* [Compatibility matrix](COMPATIBILITY.md#compatibility) +* [Installation guide](INSTALL.md#installation-guide-brief) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/README.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/README.md new file mode 100644 index 0000000..ee44bdc --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/README.md @@ -0,0 +1,125 @@ +[Development policies and practices](#development-policies-and-practices) | [Architecture guide](#architecture-guide) | [Technical insights](#technical-insights) | [Testing](#testing) | [Pull request](#create-a-pull-request) + +## Objective + +This document should help newcomers and developers to navigate around Semantic MediaWiki and its development environment. + +The main objective of the `Semantic MediaWiki` software is to provide "semantic" functions on top of MediaWiki to enable machine-reading of wiki-content and allow structured content to be queried and displayed by means of employing different backends including: + +- [`SQLStore`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SQLStore/README.md) to be used as default storage and query engine for small and mid-size wikis +- [`ElasticStore`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Elastic/README.md) recommended to large wiki farms which need to scale or for users with a requirement to combine structured and unstructured searches +- [`SPARQLStore`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SPARQLStore/README.md) for advanced users that have an extended requirement to work with a triple store and linked data + +## Development policies and practices + +### Polices + +The general policy of the `Semantic MediaWiki` software and the development thereof is: + +- No MediaWiki tables are modified or altered, any data that needs to be stored persistently is relying on the Semantic MediaWiki's own [`database schema`][db-schema] (writing to the cache is an exception) +- No MediaWiki classes are modified, patched, or otherwise changed +- Only publicly available `Hooks` and `API` interfaces are used to extend MediaWiki with Semantic MediaWiki functions +- Classes and public methods (i.e. those declared using the `public` visibility attribute) marked as `@private` are not considered for public consumption or part of the public API hence a user should not rely upon these to be available as they may change their signature anytime or removed without prio notice +- Tables created and managed by Semantic MediaWiki should not be accessed directly, instead a user (or extension) should make use of the public available API to fetch relevant information + +### Conventions + +Some conventions to help developers and the project to maintain a consistent product and helps to create testable components where classes have a smaller footprint and come with a dedicated responsibility. + +- The top-level namespace is `SMW` and each component should be placed in a namespace that represents the main responsibility of the component +- [`PSR-4`](https://www.php-fig.org/psr/psr-4/) is used for resolving classes and namespaces in the `src` directory (`includes` is the legacy folder that doesn't necessarily follow any of the policies or conventions mentioned in this document) +- Development happens against the master branch (see also the [release process](https://www.semantic-mediawiki.org/wiki/Release_process)) and will be release according the the available release plan, backports should be cherry-picked and merged into the targeted branch +- Semantic MediaWiki tries to depend only on a selected pool of MediaWiki core classes (`Title`, `Wikipage`, `ParserOutput`, `RevisionRecord`, `Language` ... ) to minimize the potential for breakage during release changes +- It is expected that each new class and functionality is covered by corresponding unit tests and if the functionality spans into different components integration tests are required as well to ensure that the behaviour is tested across components and produces deterministic and observable outputs. + +#### Best practices + +- A `class` has a defined responsibility and boundary +- Dependency injection goes before inheritance, meaning that all objects used in a class should be injected. +- Instance creation (e.g. `new Foo( ... )`) is delegated to a factory service +- Object interaction with MediaWiki objects should be done using accessors in the `SMW\MediaWiki` namespace +- A factory service should avoid using conditionals (`if ... then ...`) to create an instance +- Instance creation and dependency injection are done using a service locator or dependency builder +- Using [`type hinting`](http://php.net/manual/en/language.oop5.typehinting.php) consistently throughout a repository is vital to ensure class contracts can be appropriately followed +- Trying to follow [`Single responsibility principle`](https://en.wikipedia.org/wiki/Single_responsibility_principle) and applying [`inversion of control`](https://en.wikipedia.org/wiki/Inversion_of_control) (i.e dependency injection, factory pattern, service locator pattern) is a best practice approach +- Newly added functionality is expected to be accompanied by unit and integration test to ensure that its operation is verifiable and doesn't interfere with existing services +- Newly introduced features (or enhancements) that alter existing behaviour need to be guarded by a behaviour switch (or flag) allowing to restore any previous behaviour and need to be accompanied by [integration tests](#testing) +- To improve the readability of classes in terms of what is public and what are internals (not to be exposed outside of the class boundary), class methods are ordered by its visibility where `public` comes before `protected` which comes before `private` defined functions + +## Architecture guide + +- [Datamodel][datamodel] contains the most essential architectural choice of Semantic MediaWiki for the management of its data including: + - [DataItem][dataitem] + - [SemanticData][semanticdata] + - [DataValue][datavalue] + - [DataTypes][datatype] +- [Database schema][db-schema] and table definitions in Semantic MediaWiki +- [Glossary][glossary] + +## Technical insights + +- Creating [annotations and storing data](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/storing.annotations.md) +- Querying and displaying [data](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/querying.data.md) +- Writing a [result printer](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/writing.resultprinter.md) +- Register a custom [datatype][datatype] or [predefined property][hook.property.initproperties.md] +- Extending [consistency checks](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/extending.declarationexaminer.md) on a property page +- Extending [property annotators](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/extending.propertyannotator.md) for core predefined properties, see also the [Semantic Extra Special Properties](https://github.com/SemanticMediaWiki/SemanticExtraSpecialProperties) extension that provides a development space for deploying other predefined (special) properties +- [Extending constraints](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/extending.constraint.md) and their checks +- Working with and [changing the table schema](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/changing.tableschema.md) of Semantic MediaWiki +- Managing [hook events][hooks], best practices for [developing an extension](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/developing.extension.md), and a [list of hooks][hook-list] provided by Semantic MediaWiki to extend its core functionality + +## Testing + +The `Semantic MediaWiki` software alone deploys ~7400 tests (as of July 2019) which are __required to pass__ before changes can be merged into the repository. + +Tests are commonly divided into [unit][glossary] and [integration tests][glossary] where unit tests represent an isolated unit (or component) to be tested and normally doesn't require a database or other repository connection (e.g. triple store etc.). Integration tests on the other hand provide the means to test the interplay with other components by directly interacting with MediaWiki and its services. For example, about 80% of the CI running time is spend on executing integration tests as they normally run a full integration cycle (parsing, storing, reading, HTML generating etc.). + +For an introduction on "How to use `PHPUnit`" and "How to write integration tests using `JSONScript`" see the relevant section in this [document](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/tests/README.md). + +### Continuous integration (CI) + +The project uses [Travis-CI](https://travis-ci.org/SemanticMediaWiki/SemanticMediaWiki) to run its tests on different platforms with different services enabled to provide a wide range of environments including MySQL, SQLite, and Postgres. + +- [`.travis.yml`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/.travis.yml) testing matrix +- Settings and [configurations](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/tests/travis/README.md) to tune the Travis-CI setup + +## Create a pull request + +Before creating a pull request it is recommended to: + +- Read this document +- Install [git](https://www.semantic-mediawiki.org/wiki/Help:Using_Git) +- Install/clone `Semantic MediaWiki` with `@dev` (with development happening against the master branch) +- Run `composer test` locally (see the test section) and verify that your installation and test environment are setup correctly + +### First PR + +- Send a PR with subject [first pr] to the [`Semantic MediaWiki`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/) repository and verify that your git setup works and you are able to replicate changes against the master branch +- Get yourself familiar with the [Travis-CI](https://travis-ci.org/SemanticMediaWiki/SemanticMediaWiki) environment and observe how a PR triggers CI jobs and review the output of those jobs (important when a job doesn't pass and you need to find the cause for a failure) + +### Preparing a PR + +- Create a PR with your changes and send it to the `Semantic MediaWiki` repository +- Observe whether tests are failing or not, and when there are failing identify what caused them to fail +- In case your PR went green without violating any existing tests, go back to your original PR and add tests that covers the newly introduced behaviour (see the difference for unit and integration tests) +- Rebase and re-post your PR with the newly added tests and verify that they pass on all voting [CI](#testing) jobs + +In an event that you encountered a problem, ask or create an [issue](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/new). + +## See also + +- https://doc.semantic-mediawiki.org/ +- [Developer manual](https://www.semantic-mediawiki.org/wiki/Help:Developer_manual) +- [Programmer's guide](https://www.semantic-mediawiki.org/wiki/Help:Programmer%27s_guide) +- [Coding conventions](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/coding.conventions.md) + +[datamodel]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.md +[dataitem]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.dataitem.md +[semanticdata]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.semanticdata.md +[datavalue]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.datavalue.md +[datatype]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.datatype.md +[db-schema]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/database.schema.md +[hooks]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/managing.hooks.md +[hook.property.initproperties.md]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/hook.property.initproperties.md +[hook-list]: https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/technical/hooks.md +[glossary]: https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/technical/glossary.md diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/changing.tableschema.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/changing.tableschema.md new file mode 100644 index 0000000..839a353 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/changing.tableschema.md @@ -0,0 +1,28 @@ +### `src/SQLStore/TableBuilder` + +- `TableSchemaManager` handles all table definitions used by Semantic MediaWiki in a RDBMS agnostic way +- `Installer` takes in the + - `TableSchemaManager` (holds the table definitions), + - `TableBuilder` (creates/updates/removes an individual table), and + - `TableBuildExaminer` (runs some pre/post examination checks after tables have been added or removed) to perform the setup or removal of database tables used by Semantic MediaWiki +- `TableBuilder` implements RDBMS specific execution commands and auxiliary classes + +### `src/SQLStore/TableBuilder/Examiner` + +- Contains individual classes used by the `TableBuildExaminer` + +## Notes + +Changing the database schema for Semantic MediaWiki should be done using the `TableSchemaManager` (please refer to the [database.schema.md](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/database.schema.md) document when working on database specific changes). + +Currently three different RDBMS provider are supported including MySQL/MariaDB, PostgreSQL, and SQLite, to add a different provider it is required to create a new class with RDBMS specific commands together with registering this class using the `TableBuilder::factory` method. Aside from adding a new class, it is paramount that the new class is tested and passes the test suite before any additional provider can be registered with SMW core. + +### Related hooks + +- [`SMW::SQLStore::Installer::BeforeCreateTablesComplete`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/technical/hooks/hook.sqlstore.installer.beforecreatetablescomplete.md) +- [`SMW::SQLStore::Installer::AfterCreateTablesComplete`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/technical/hooks/hook.sqlstore.installer.aftercreatetablescomplete.md) +- [`SMW::SQLStore::Installer::AfterDropTablesComplete`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/technical/hooks/hook.sqlstore.installer.afterdroptablescomplete.md) + +## See also + +- [`hook.sqlstore.installer.beforecreatetablescomplete`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/hook.sqlstore.installer.beforecreatetablescomplete.md) contains an example on how to modify table definitions (e.g. adding additional indices) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/coding.conventions.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/coding.conventions.md new file mode 100644 index 0000000..0bd7a10 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/coding.conventions.md @@ -0,0 +1,69 @@ +Semantic MediaWiki and many of its extensions stick to a strict naming conventions and code styles based on the [MediaWiki coding conventions](https://www.mediawiki.org/wiki/Manual:Coding_conventions). The guidelines can often be adopted to other extensions by just changing the prefix SMW. + +## Files and folders + +- The project follows the `PSR-4` guideline in naming and using namespaces for classes where `SMW` is the top-vendor identifier, +- Classes in the `src` folder follow the `PSR-4` layout +- Due to legacy reasons classes in the `includes` folder have no or very rudimentary test coverage and do not follow `PSR-4`. Once a class meets certain criteria (one of which is sufficient test coverage among others) it is expected to be moved into the `src` folder with the objective to remove `includes` in the future. + +## Encoding + +- All files need to be stored as `UTF8` (this is absolutely crucial) +- All line endings must be UNIX-style + +## PHP + +### Class annotations + +The `@private` annotation for a class indicates a solely restricted use within the SMW-core code base and even though a class might provide public access methods, it SHOULD NOT be expected that the class itself or its methods will be available during or after a specific release cycle. + +### Naming conventions + +In general, all names are written using the [CamelCase](https://en.wikipedia.org/wiki/Camel_case) style, although methodNames and variableNames typically start with lower case letters. Private methods are not required to follow the convention. + +- `Classes` use a [namespace](http://php.net/manual/en/language.namespaces.php) that starts with "SMW". Class definitions that are encapsulated in methods do not have a prefix. Another exception are classes for '''Specials''' which should be named after the special, as is common in MediaWiki. +- `Functions` that are accessible globally require the "smwf" prefix +- `Variables` are prefixed with "smwg" if declared globally. Variables in a class do not have a special prefix. Local variables in functions typically use the camelCase style or `_` if any separation is needed. +- `Constants` are written ALL_CAPS with underscores as internal separator, and are to be prefixed with "SMW_" when used globally (e.g. in "define('SMW_FOO', 1)"), class constants are free from this convention. + +### Code layout and indenting + +In general, code layout is guided by the [MediaWiki coding conventions](https://www.mediawiki.org/wiki/Manual:Coding_conventions). Please be sure to read this document. + +- Do not use a closing "?>" tag in your source files. It is a source for errors that is not needed in files. +- Document all your code (see source documentation for details) +- Avoid single lines of code becoming too long. +- '''Indenting''' of program blocks is done with tabulators, not with spaces. All program blocks are indented. +- All indented program blocks should be enclosed with { and }, even if they have one line only. +- Using in-line conditionals for value computations is fine ("condition?thenvalue:elsevalue"). +- Spaces around "=" (variable assignment) and all operators, including "." (string concatenation), are recommended. +- In conditionals, conjunctions and disjunctions should be written as ''&&'' and ''||'', respectively, not as ''and'' and ''or''. +- Value constants like '''true''', '''false''', and '''null''' are always written lower case. +- Class-members should be declared '''private''' and only use '''protected''' if sharing with sub-classes is expected. The use of '''public''' is required to indicate a publicly available method. +- Use the keyword '''static''' where only appropriate (static methods or properties are out of an object context, so you cannot use `$this` inside of a static method) +- When you finish some task, take some time to '''remove unused''' debug-statements, functions, and local variables from your code! + +## JavaScript + +### Naming conventions + +In general, all names are written CamelCase, although methodNames and variableNames typically start with lower case letters. + +- '''Variables''' mostly don't adhere to any naming conventions, but global variables should have the prefix "smw". +- JavaScript modules are registered with the [ResourceLoader](https://www.mediawiki.org/wiki/ResourceLoader) using [`Resources.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/res/Resources.php) + +### Code layout and indenting + +- ''No general code layout for SMW's JavaScript has been proposed or implemented yet.'' +- [JSHint](http://www.jshint.com/) can help detect errors and potential problems in JavaScript code + +## Source documentation + +- Every class and function ''must'' have a short documentation, enclosed in "/** ... */". These blocks use the [doxygen](https://en.wikipedia.org/wiki/Doxygen) notation. +- Use `@since` to indicate the version in which the function or field was added. Also do this for hooks. +- Use [type hinting](http://php.net/manual/en/language.oop5.typehinting.php) where possible. It is important to do this in new code that can be inherited, as deriving classes won't be able to use type hinting when this is not done in the base class. +- Use `@todo` and `@bug` in doxygen comments to keep track of to-dos and bugs directly within the code. +- Complex code and hacks should be documented with C-style line-comments ("// ..."). +- User documentation should be documented with Shell-style line-comments ("# ..."). +- Implementations that affect users and existing features ''must'' be documented in the [user manual](https://www.semantic-mediawiki.org/wiki/Help:User_manual) before release. +- Changes that are relevant to users, administrators, or third-party developers ''must'' be mentioned in the file [RELEASE-NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/RELEASE-NOTES.md) where a short note is enough (incl. the PR). diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/database.schema.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/database.schema.md new file mode 100644 index 0000000..3fed905 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/database.schema.md @@ -0,0 +1,64 @@ +This document provides a short introduction into the database schema and table structure used by Semantic MediaWiki. + +## Database schema + +The database schema is defined using the `TableSchemaManager` class and together with the `TableBuilder` is forming the interface to define, create, and remove database and schema related information used by Semantic MediaWiki. + +The SPO (subject, predicate, and object) pattern paradigm is reflected in how semantic relations are organized in Semantic MediaWiki. Three table types are used to store information with table fields normally being identified by its related intent such as `s_` (subject), `p_` (predicate, property), and `o_` (object). + +The three table types are: + +- `Data table` a table that to stores information not necessarily following the SPO pattern (statistics, ids, dependencies etc.) +- `Property table` (Common) a table (identified by `smw_di_...`) that follows the SPO pattern +- `Property table` (Fixed) a table (identified by `smw_fpt_...`) that follows the SPO pattern but omits the `p_id` as it is a designated table to one particular property + +A special type are temporary tables only used during a search request (which remains in-memory) and is dropped as soon as a query is resolved. + +### Data tables + +Data tables follow individual schema definitions to serve a specific purpose for either collecting or aggregating data. + +- `smw_object_ids` contains the entity and object references and is holding the foreign key (`smw_id` field) for all other tables that use an ID reference. +- `smw_query_links` collects embedded query dependencies. +- `smw_prop_stats` a table that collects of property statistics. +- `smw_ft_search` if enabled, contains a collection of full-text indexable text components. + +### Property tables (Common) + +User defined properties with an assigned datatype are stored in tables with a predefined structure and relevant fields required by the [`DataItem`][dataitem] to represent its literal value. + +
    +[
    +	DataItem::TYPE_NUMBER     => 'smw_di_number',
    +	DataItem::TYPE_BLOB       => 'smw_di_blob',
    +	DataItem::TYPE_BOOLEAN    => 'smw_di_bool',
    +	DataItem::TYPE_URI        => 'smw_di_uri',
    +	DataItem::TYPE_TIME       => 'smw_di_time',
    +	DataItem::TYPE_GEO        => 'smw_di_coords',
    +	DataItem::TYPE_CONTAINER  => 'smw_di_container',
    +	DataItem::TYPE_WIKIPAGE   => 'smw_di_wikipage',
    +	DataItem::TYPE_CONCEPT    => 'smw_conc'
    +]
    +
    + +Available fields include: + +- `s_id` subject ID reference (see `smw_id`) +- `p_id` property ID reference (see `smw_id`) +- `o_...` fields that identify object related values to adhere the s-p-o pattern + +### Property tables (Fixed) + +Fixed property table assignments are either defined by [`TypesRegistry.php`][types_registry] (for predefined properties) or by the `$smwgFixedProperties` setting (for user-defined fixed properties). + +Available fields include: + +- `s_id` subject ID reference (see `smw_id`) +- `o_...` fields that identify object related values to adhere the s-p-o pattern + +## See also + +- Working with and [changing the table schema](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/changing.tableschema.md) + +[types_registry]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/TypesRegistry.php +[dataitem]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.dataitem.md diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.dataitem.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.dataitem.md new file mode 100644 index 0000000..ebf95fc --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.dataitem.md @@ -0,0 +1,51 @@ + +A [DataItem][dataitem] represents the system perspective on the data to interact with a database in order to allow data to be managed, stored, and queried. + +The `DataItem` class and its subclasses are the basic building block of all Semantic MediaWiki data elements. Its purpose is to provide a unified interface for all ''semantic entities'' that SMW deals with, e.g., numbers, dates, geo coordinates, wiki pages, and properties. It might be surprising that not only values but also subjects and properties are represented by a user facing [`DataValue`][datavalue] class. This makes sense since wiki pages can be both subjects and values, and since properties have many similarities with wiki pages (in particular the associated articles). + +## Characteristics + +Objects of class [DataItem][dataitem] represent a very simple piece of data. A [DataItem][dataitem] is similar to a primitive type in PHP (e.g. a PHP string or number): its identity is determined by its contents and nothing else. Dataitems should thus be thought of as "primitive values" that are merely a bit more elaborate than the primitive types in PHP. Their main characteristics are: + +- [`Immutable`](https://en.wikipedia.org/wiki/Immutable_object) Once created, a dataitem cannot be changed. +- '''Context independent:''' The meaning of a dataitem is only based on its content, not on any contextual information (such as the information about the property it is assigned to). +- '''Limited shape:''' The kinds of dataitems (numbers, URLs, pages, ...) that SMW supports are limited and fixed. Extensions cannot add new kinds of dataitems, and programmers only need to handle a fixed list of possible kinds of dataitems. + +Being immutable is essential for dataitems to behave like simple values. It imposes a restriction on programmers, but it also simplifies programming a lot since one does not have to be concerned about dataitems being changed by code that happens to have a reference to them. + +## DataItem types + +The available kinds of dataitems correspond to subclasses of [DataItem][dataitem]. For convenience, each kind of dataitem is also associated with a PHP constant called its "DIType". For example, instead of using a nested if-then-else statement with many instanceof checks, one can use a switch over this DIType to handle different cases. The following is a list all available dataitems: + +- `DIWikiPage` (`DataItem::TYPE_WIKIPAGE`) Dataitems that represent a page in a wiki '''or''' a "subobject" of such a page. They are determined by the page title (string in MediaWiki DBkey format), namespace, interwiki code, and a subobject name (can be empty). +- `DIProperty` (`DataItem::TYPE_PROPERTY`) Dataitems that represent an SMW property. They are determined by the property key (which is the page DBKey string for user-defined properties), and the information whether or not they are inverted. +- `DINumber` (`DataItem::TYPE_NUMBER`) Dataitems that represent some number. +- `DIBlob` (`DataItem::TYPE_BLOB`) Dataitems that represent a string (of any length). +- `DIBoolean` (`DataItem::TYPE_BOOLEAN`) Dataitems that represent a truth value (true or false). +- `DIUri` (`DataItem::TYPE_URI`) Dataitems that represent a URI (or IRI) according to [RFC 3987](http://www.ietf.org/rfc/rfc3987.txt). +- `DITime` (DataItem::TYPE_TIME) Dataitems that represent a point in time in human or geological history. They are determined by a year, month, day, hour, minute, and (decimal) second, as well as a calendar model to interpret these values in (Julian or Gregorian). +- `DIGeoCoord` (`DataItem::TYPE_GEO`) Dataitems that represent a location on earth, represented by latitude and longitude. +- `DIContainer` (`DataItem::TYPE_CONTAINER`) Dataitems that represent a set of SMW facts, represented by an object of type [SemanticData][semanticdata]. +- `DIConcept` (`DataItem::TYPE_CONCEPT`) Dataitems that represent the input and feature information for some SMW [concept](https://www.semantic-mediawiki.org/wiki/Help:Concepts)(query, description, features in query, size and depth) +- `DIError` (`DataItem::TYPE_ERROR`) Dataitems that represent a list of errors (array of string). Used to gently pass on errors when dataitem return types are expected. +- (`DataItem::TYPE_NOTYPE`) Additional DIType constant that is used to indicate that the type is not known at all. + +### Type restriction + +The restriction to these types of dataitem may at first look like a major limitation, since it means that SMW can only represent limited forms of data. For example, there is no dataitem for storing the structure of chemical formulae – doesn't this mean that SMW can never handle such data? No, because the existing dataitems can be used to keep all required information (for example by representing chemical formulae as strings). The task of interpreting this basic data as a chemical formula has to be handled on higher levels that deal with user input and output using a [DataValue][datavalue]. + +### Container type + +There is one kind of dataitem, the `DIContainer`, that represents "values" that consist of many facts (subject-property-value triples); almost all complex forms of data that SMW does not have a dataitem for could be accurately represented in this format. This type uses the [SemanticData][semanticdata] as object representation. + +## Technical notes + +Creating dataitems is very easy: just call the constructor of the dataitem with the required values. Note that dataitems are strict about data quality: they are not meant to show the error-tolerance of the SMW user interface. For a programmer, it is more useful to see a clear error than to have SMW use some "repaired" or partly "guessed" value when a problem occurred. When trying to create dataitems from illegal data (e.g. trying to make a wikipage for an empty page title), an exception will be thrown. Usually dataitems will only implement basic data validation to avoid complex computations. If strict validation of, say, a URI string is needed, then own methods need to be implemented. + +The [DataItem][dataitem] implements a standard interface that allows useful operations like serialization and deserialization (a second way to create them from serialized strings). They also can generate a string hash code to efficiently compare their contents. Each dataitem also implements basic get methods to access the data, and sometimes other helper methods that are useful for the given kind of data. + +The important thing is to keep data items reasonably lean and simple data containers – complex parsing or formatting functions are implemented elsewhere. + +[dataitem]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.dataitem.md +[semanticdata]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.semanticdata.md +[datavalue]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.datavalue.md diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.datatype.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.datatype.md new file mode 100644 index 0000000..4a06744 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.datatype.md @@ -0,0 +1,53 @@ +Users can pick many datatypes for their data. Yet they do not specify the type for each value they write, but assign one global type to a property. This is slightly different from SMW's internal architecture, where datatypes influence a value's identity, whereas all properties are represented by values of a single type `PropertyValue`. This is not a problem, it simply says that the type information that users provide for each property is interpreted as "management information" that SMW uses to interpret user inputs. The [data model][datamodel] is still as described above, with types being part of the values (which is where they are mainly needed). + +Again, the typing approach in the user interface does not affect the data model but helps SMW to make sense of user input. One could equivalently dispense with the property-related types and require users to write the type for each input value instead. This would simply be cumbersome and would prevent some implementation optimizations that are now possible since we can assume that properties have values of only one type that we know. + +## Technical notes + +### Defining a type + +Users refer to types by using natural language labels such as datatype `[[Has type::Date]]`. These labels are subject to internationalization. There can also be aliases for some types to allow multiple spellings in one language. To make SMW code independent of the selected language, SMW uses internal [`TYPE_ID`][typesregistry] for referring to datatypes. These are short strings that typically start with `_` to avoid confusion with page titles. + +For example, `_dat` is the type ID for the `Date` type. Developers should always use the internal type IDs. The correspondence of user labels and internal IDs is defined in language files found in [`i18n/extra`][i18n-extra] folder. + +See the [`register.core.datatype.md`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/register.core.datatype.md) for "How to register a core data type". + +#### Implementing type-specific behavior + +How do type IDs relate to the subclasses of `DataValue` that implement type-specific behavior? + +The answer is that one such class may take care of one or more type IDs. For example, the handling of URLs and Email addresses has many things in common, so there is just one class `URIValue` that handles both. The datavalue object is told its type ID on creation, so it can adjust its behavior to suit more than one type. + +The association of internal type IDs with the classes that should be used to represent their objects is done in the [`TypesRegistry`][typesregistry] together with the [`DataTypeRegistry`][datatypetegistry] that includes some hooks and can be used to extend and change these associations. This allows developers to add new types and even register their own implementations for existing types without patching code. + +The [`DataValueFactory`][datavaluefactory] class should be used to create an instance representation for a data value object in SMW, since otherwise the associations (that someone might have overwritten) would not be honored. + +### Register a custom type and data value + +Some datavalue classes provide special methods, e.g. for getting the year component of a date, and parts of SMW (extension) code that use such methods must first check if they are dealing with the right class (you cannot rely on the type ID to determine the class). This also means that developers who overwrite SMW implementations may want to subclass the existing classes to ensure that checks like ( $datavalue instanceof `TimeValue`) succeed (if not, a modified time class might not work with some time-specific features). + +Own datatypes should always use type IDs that start with "___" (three underscores) to avoid (future) name clashes with SMW types. + +Finally, there are some datatypes that are internal to SMW. They use IDs starting with two underscores, and are not assigned to any user label. They cannot be accessed in a wiki and are only available to developers. + +The purpose of these types is usually to achieve a special handling when storing data. For example, values of `Subproperty of` could be represented by a `_wpg` datatype (aka page type), but it uses a special internal type that ensures that the data can be stored separately and in a form that simplifies its use in query answering. + +A datatype that is added by an extension becomes internal if it is not given any user label. In this case, users cannot create properties with this type, but everything else works normally (in particular, SMW will not know anything special about internal extension types and will just treat them like any other extension type). + +See the [`register.custom.datatype.md`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/register.custom.datatype.md) for "How to register a custom data type". + +## Examples + +- [CitationReferenceValue.php](https://github.com/SemanticMediaWiki/SemanticCite/blob/master/src/DataValues/CitationReferenceValue.php) (Semantic Cite) +- [CoordinateValue.php](https://github.com/JeroenDeDauw/Maps/blob/master/src/SemanticMW/DataValues/CoordinateValue.php) (Maps) +- [NotificationGroupValue.php](https://github.com/SemanticMediaWiki/SemanticNotifications/blob/master/src/DataValues/NotificationGroupValue.php) (Semantic Notifications) + +[datamodel]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.md +[dataitem]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.dataitem.md +[semanticdata]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.semanticdata.md +[datavalue]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.datavalue.md +[datatype]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.datatype.md +[typesregistry]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/TypesRegistry.php +[datatypetegistry]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/DataTypeRegistry.php +[datavaluefactory]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/DataValueFactory.php +[i18n-extra]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/tree/master/i18n/extra diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.datavalue.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.datavalue.md new file mode 100644 index 0000000..6f1483e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.datavalue.md @@ -0,0 +1,34 @@ +A [`DataValue`][datavalue] represents the user perspective on data which includes input and output specific rules. + +The various subclasses of `DataValue` roughly correspond to the [datatypes][datatype] that a value can have, and they implement the specific behaviour of particular values. In the current architecture, `DataValue` subclasses implement all functions that are specific to a particular [datatype][datatype]: + +- Interpreting user input (e.g. parsing a string into a calendar date) +- Encoding values in a format that is suitable for storage (e.g. computing a standardized, language-independent string for representing a date and a floating-point number that can be used for sorting dates) +- Generating readable output (e.g. converting the internal representation of a date back into a text that is readable in the current language) + +## Data representation and formatting + +Each data value can have many forms of representation, for example, a text a user writes on a wiki page can have many forms that lead to the same value), various display versions (e.g. augmented with links or tooltips), a unique internal representation (the value as the software sees it). + +Some subclasses of `DataValue` have additional representations, (e.g. `TimeValue` to provide an output that is formatted according to ISO 8601. The `DataValue` class provides different get methods for obtaining different representation, and developers should read the software documentation of that class to understand when to use which method. + +### Types and formatting + +A general challenge is that datatypes are very diverse. Many values have an internal structure, e.g. dates have a year, month, and day component, whereas wiki page titles have a namespace identifier, title text, and interwiki component. This diversity makes it hard to treat values as single values of some primitive datatype. For example, in case of a wikipage, the internal representation is a list of values, obtained with different methods to represent the `DBKey`, `Namespace`, `Interwiki` data fragment (e.g. representing wiki pages as strings would not be accurate, since it would be impossible to filter such values by namespace). + +There is also a method `DataValue::getHash` that returns a string that can be used to compare two datavalues without looking at the details of their format. + +### Output formats + +Another challenge is the diversity of desirable output formats. Users typically want a large number of formatting options that are very specific to certain datatypes, so that it is hard to provide them via a unified interface. Moreover, output is used in MediaWiki both within HTML and within Wikitext contexts, requiring different formatting and treatment of special characters. + +The output methods of `DataValue` reflect some of this diversity, and an additional facility of "output formats" (see `DataValue::setOutputFormat`) is provided for more fine-grained control to user when a specific output during a query request is sought. But obviously there must be limits of what can be achieved without cluttering the architecture, and users are advised to subclass their own datatype implementations for special formatting. + +DataValue objects can be created directly via their own methods, but are required to be constructed using the [`DataValueFactory`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/DataValueFactory.php). + +See also [`datatype`][datatype] for an explanation of the datatype system. + +[dataitem]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.dataitem.md +[semanticdata]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.semanticdata.md +[datavalue]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.datavalue.md +[datatype]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.datatype.md diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.md new file mode 100644 index 0000000..88d6bd6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.md @@ -0,0 +1,50 @@ +The datamodel contains the most essential architectural choice of Semantic MediaWiki for the management of its data. It specifies the way in which semantic information are represented within the system (actually it specifies what a semantic information fragment is). + +## Fact statement + +Data in Semantic MediaWiki are represented by property-value pairs that are assigned to objects. For example, the statement ''Dresden (object) has a population (property) of 517,052 (value)'' involves: + +- Dresden as `object` +- population as `property` and +- 517,052 as `value` + +### Objects, properties, and values + +To elaborate on the schema we can further clarify that: + +- The described ''objects'' are normally wiki pages. +- ''Properties'' can be used everywhere. They do not belong to specific wiki pages, categories, etc. +- ''Values'' can be of different types (numbers, dates, other wiki pages, ...). +- The [`datatype`][datatype] is part of the value's identity (values of different types are different, even if they are based on the same user input). +- Objects can have zero, one, or many values for any property. +- A semantic fact is completely specified by its object, property, and value. For instance, it does not matter who specified a fact (in contrast to tagging systems where each user can have individual tags for the same thing). +- Facts are either given or not given, but they cannot be given more than once (again in contrast to tagging systems where we count how often a tag has been given to a resource). +- "Object" is a very general term, so we often use "subject" when we want to emphasize that a thing is the subject of a property-value assignment in a fact. + +These ideas are reflected in a basic data model where: + +- All elements of a fact are represented by PHP objects of (subclasses of) the class [`DataItem`][dataitem] +- Sets of semantic facts in turn are represented by objects of type [`SemanticData`][semanticdata]. + +## Data representation + +To represent facts and fact statements, Semantic MediaWiki uses two different perspectives to help organize the data and make them available depending on the consumer that requests the data. + +### System perspective + +The "system perspective" describes on how to directly manipulate data on a database level in order for them to be managed, stored, and queried. This section describes the basic software components that are involved in representing those data. + +- [`DataItem`][dataitem] represents the system perspective on the data to interact with a database +- [`SemanticData`][semanticdata] represent semantic information as a collection of [`DataItem`][dataitem] objects + +### User perspective + +The "user perspective" incorporates the basic data model and its technical realization through the use of [`DataItem`][dataitem] and [`SemanticData`][semanticdata] containers and adds a representation layer (which is the user facing input/output) in form of datavalues. + +- [`DataValue`][datavalue] represents the user perspective on data which includes input and output specific rules. +- [`Datatype`][datatype] values are organized in datatypes that define how user inputs are interpreted and how data is presented in outputs. + +[dataitem]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.dataitem.md +[semanticdata]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.semanticdata.md +[datavalue]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.datavalue.md +[datatype]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.datatype.md diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.semanticdata.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.semanticdata.md new file mode 100644 index 0000000..e3710ff --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/datamodel.semanticdata.md @@ -0,0 +1,22 @@ +To represent semantic information, a collection of [`DataItem`][dataitem] objects need to be combined into facts. For this purpose, the class [`SemanticData`][semanticdata] provides a basic construct for handling sets of facts that refer to the same subject. This makes sense since it is by far the most common case that the subject is the same for many facts (e.g. all facts on one page, or all facts in one row of a query result). + +A `SemanticData` object further groups values by property: it has a list of properties, and for each property a list of values. Again this reflects common access patterns and avoids duplication of information. The data contained in `SemanticData` can still be viewed as a set of subject-property-value triples, but Semantic MediaWiki has no dedicated way to represent such triples, i.e. there is no special class for representing one fact. + +Semantic MediaWiki generally uses the `SemanticData` object whenever sets of triples are collected and referenced. If many subjects are involved, then one may use an array of `SemanticData` objects. In other cases, one only wants to consider a list of `DataValue` instead of whole facts, e.g. when fetching the list of all pages that are annotated with a given property-value pair (e.g. all things located in France). In this case, the facts are implicit (one could combine the query parameters "located_in" and "France" with each of the result values). + +## ContainerSemanticData + +`ContainerSemanticData` is an object that collects `SemanticData` as a container. Containers are not dataitems in the proper sense: they do not represent a single, opaque value that can be assigned to a property. Rather, a container represents a "subobject" with a number of property-value assignments. + +When a container is stored, these individual data assignments are stored -- the data managed by SMW never contains any "container", just individual property assignments for the subobject. Likewise, when a container is used in search, it is interpreted as a patterns of possible property assignments, and this pattern is searched for. + +The data encapsulated in a container data item is essentially an `SemanticData`object of class `ContainerSemanticData`. This class allows the subject to be kept anonymous if not known (if no context page is available for finding a suitable subobject name) + +Being a mere placeholder/template for other data, an `DIContainer` is not immutable as the other basic data items. New property-value pairs can always be added to the internal `ContainerSemanticData`. + +## QueryResult + +Another important case are query results. They have their own special container class `QueryResult` which is similar to a list of `SemanticData`objects for each row, but has some more intelligence to fetch the required data only on demand. + +[dataitem]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.dataitem.md +[semanticdata]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.semanticdata.md \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/developing.extension.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/developing.extension.md new file mode 100644 index 0000000..16c6be9 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/developing.extension.md @@ -0,0 +1,157 @@ + [Extensions](https://github.com/SemanticMediaWiki/) maintained by the project try follow some simple guidelines, also to make maintenance easier with a common infrastructure and setup: + +- Use [`Composer`](https://packagist.org/packages/mediawiki/) as deployment tool +- Loaded via MediaWiki's `extension.json` +- Use Make and Docker to support both, local testing and GitHub Actions continuous integration + +## Guidelines and conventions + +Some general guidelines are: + +- An extension specifies its dependency to ensure it is tested and usable for the Semantic MediaWiki release it was intended for by maintaining a `composer.json` +- Use `PSR-4` and a [PHP namespace](http://php.net/manual/en/language.namespaces.php) to distinguish a codebase from other repositories that may use similar (or even the same) class/interface names. +- Code quality should be considered when writing an extension in order for fellow developers to be able to understand, read, and review the code. +- See also the [coding conventions](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/coding.conventions.md) defined by Semantic MediaWiki +- Deploy and write tests as part of the extension + +## Getting started ... + +The following extensions can be used as inspiration on "How to write an extension" in connection with Semantic MediaWiki. + +- [`SemanticMetaTags`](https://github.com/SemanticMediaWiki/SemanticMetaTags) +- [`SemanticExtraSpecialProperties`](https://github.com/SemanticMediaWiki/SemanticExtraSpecialProperties) +- [`SemanticBreadcrumbLinks`](https://github.com/SemanticMediaWiki/SemanticBreadcrumbLinks) +- [`SemanticScribunto`](https://github.com/SemanticMediaWiki/SemanticScribunto) +- [`SemanticGlossary`](https://github.com/SemanticMediaWiki/SemanticGlossary) + +## Technical notes + +### Files and folders + +It has been good practice to code around the following files and folders structure: + +
    +docs/
    +i18n/
    +src/
    +tests/
    +
    + +### Continuous integration +> This section is outdated. Most SMW extensions use Make, Docker and Docker-Compose to run tests both, locally and on GitHub. Coverage is repored on Codecov. + +Using Travis-CI is fairly easy to set up and integrable with Semantic MediaWiki, the best approach is to select an existing repository and copy files such as: + +- [`.travis.yml`](https://github.com/SemanticMediaWiki/SemanticApprovedRevs/blob/master/.travis.yml) +- [`tests/travis`](https://github.com/SemanticMediaWiki/SemanticApprovedRevs/tree/master/tests/travis) folder and adapt the necessary references +- When you host your extension with GitHub remember to register your Travis-CI either as App or via the webhook (see the documentation from the provider) +- [`phpunit.xml.dist`](https://github.com/SemanticMediaWiki/SemanticApprovedRevs/blob/master/phpunit.xml.dist) and the [`tests/bootstrap.php`](https://github.com/SemanticMediaWiki/SemanticApprovedRevs/blob/master/tests/bootstrap.php) and make necessary changes + +### composer.json + +
    +	"require": {
    +		"php": ">=5.6.0",
    +		"composer/installers": "1.*,>=1.0.1",
    +		"mediawiki/semantic-media-wiki": "~3.0"
    +	},
    +	"extra": {
    +		"branch-alias": {
    +			"dev-master": "0.1.x-dev"
    +		}
    +	},
    +	"autoload": {
    +		"files" : [
    +			"Foo.php"
    +		],
    +		"psr-4": {
    +			"Foo\\": "src/"
    +		}
    +	}
    +
    + +### extension.json + +
    +{
    +	"name": "Foo",
    +	"version": "0.1-alpha",
    +	"author": [
    +		"Foo",
    +		"..."
    +	],
    +	"descriptionmsg": "foo-desc",
    +	"namemsg": "foo-name",
    +	"license-name": "GPL-2.0-or-later",
    +	"type": "foo",
    +	"requires": {
    +		"MediaWiki": ">= 1.30"
    +	},
    +	"MessagesDirs": {
    +		"Foo": [
    +			"i18n"
    +		]
    +	},
    +	"callback": "Foo::initExtension",
    +	"ExtensionFunctions": [
    +		"Foo::onExtensionFunction"
    +	],
    +	"load_composer_autoloader":true,
    +	"manifest_version": 1
    +}
    +
    + +### Foo.php + +
    +
    +/**
    + * Extension ...
    + *
    + * @defgroup Foo Foo
    + */
    +Foo::load();
    +
    +/**
    + * @codeCoverageIgnore
    + */
    +class Foo {
    +
    +	/**
    +	 * @note It is expected that this function is loaded before LocalSettings.php
    +	 * to ensure that settings and global functions are available by the time
    +	 * the extension is activated.
    +	 */
    +	public static function load() {
    +		if ( is_readable( __DIR__ . '/vendor/autoload.php' ) ) {
    +			include_once __DIR__ . '/vendor/autoload.php';
    +		}
    +	}
    +
    +	/**
    +	 * @see https://www.mediawiki.org/wiki/Manual:Extension.json/Schema#callback
    +	 */
    +	public static function initExtension( $credits = [] ) {
    +		define( 'FOO_VERSION', isset( $credits['version'] ) ? $credits['version'] : 'UNKNOWN' );
    +	}
    +
    +	/**
    +	 * @since 1.0
    +	 */
    +	public static function onExtensionFunction() {
    +
    +		if ( !defined( 'SMW_VERSION' ) ) {
    +			if ( PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg' ) {
    +				die( "\nThe 'Foo' extension requires the 'Semantic MediaWiki' extension to be installed and enabled.\n" );
    +			} else {
    +				die( 'Error: The Foo extension requires the Semantic MediaWiki extension to be installed and enabled.' );
    +			}
    +		}
    +
    +		// Do call the setup code
    +		// $hooks = new Hooks();
    +		// $hooks->register();
    +	}
    +
    +}
    +
    diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/extending.constraint.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/extending.constraint.md new file mode 100644 index 0000000..d7e0c48 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/extending.constraint.md @@ -0,0 +1,27 @@ +### `src/Constraint` + +#### Property constraint + +To add a new constraint (let's say represented by `foo_contraint`) it is expected that: + +- The `foo_contraint` property is registered with the validation schema (`property-constraint-schema.v1.json`) hereby defines its characteristics (array, boolean, pattern etc.) +- A new class is added that implements the [`Constraint`][constraint] interface and interprets the `foo_contraint` property together with the constraint boundaries +- The `foo_contraint` property and the newly created class are registered with the [`ConstraintRegistry`][constraint-registry] +- The newly created `Constraint` class is added to the [`ConstraintFactory`][constraint-factory] to define the object graph + +When adding new constraints, please ensure that: + +- Unit tests carefully test the expected behaviour +- The `ConstraintRegistryTest` and `ConstraintFactoryTest` are extended + +#### TYPE_DEFERRED + +When a constraint is expected to be expensive (in terms of performance, runtime) it should be postponed and be derived from the `DeferrableConstraint` class to ensure that those checks are run using the `DeferredConstraintCheckUpdateJob` hereby avoiding unnecessary resource hogging during a page view/GET process. + +## See also + +- How to register a [custom constraint](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/register.custom.constraint.md) + +[constraint]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Constraint/Constraint.php +[constraint-registry]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Constraint/ConstraintRegistry.php +[constraint-factory]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/ConstraintFactory.php \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/extending.declarationexaminer.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/extending.declarationexaminer.md new file mode 100644 index 0000000..66c425e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/extending.declarationexaminer.md @@ -0,0 +1,8 @@ +To broaden consistency checks on the property page and provide more user guidance in case of some input error such as: + +![image](https://user-images.githubusercontent.com/1245473/54471080-4559bf00-47ab-11e9-9b61-a79c7fd5c64c.png) + +### `src/Property/DeclarationExaminer` + +- Extending one of the existing [DeclarationExaminer](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Property/DeclarationExaminer.php) or +- Adding a new class that implements the interface which is then registered with the `DeclarationExaminerFactory` is sufficient to get called when viewing a property page. diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/extending.propertyannotator.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/extending.propertyannotator.md new file mode 100644 index 0000000..911d9a6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/extending.propertyannotator.md @@ -0,0 +1,10 @@ +### `src/Property/Annotator` + +- Add a new class that implements the [Annotator](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Property/Annotator.php) (alias `PropertyAnnotator`) interface via the `PropertyAnnotatorDecorator` base class +- Register the implementation with the `AnnotatorFactory` +- Use either the [`RevisionFromEditComplete`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/Hooks/RevisionFromEditComplete.php) or [`ParserAfterTidy`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/Hooks/ParserAfterTidy.php) hook to invoke the `AnnotatorFactory` method created and annotate values as demonstrated by existing `PropertyAnnotator` + +### See also + +- [`AttachmentLinkPropertyAnnotator.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Property/Annotators/AttachmentLinkPropertyAnnotator.php) +- [`TranslationPropertyAnnotator.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Property/Annotators/TranslationPropertyAnnotator.php) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/managing.hooks.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/managing.hooks.md new file mode 100644 index 0000000..2e106f1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/managing.hooks.md @@ -0,0 +1,68 @@ +The [`HookDispatcher`][dispatcher] is provided to inject a hook event handler into a class that triggers a specific hook event with the objective to isolate the MediaWiki `Hooks::run` static caller from a class instance. + +The removal of the `Hooks::run` static caller from an individual class follows mainly the problem of leaking global state into an instance which would persist during testing and hereby may alter results in a manner unpredictable based on hooks enabled at the time of the test run. + +### Register and trigger a hook event + +#### HookDispatcher + +Extend the [`HookDispatcher`][dispatcher] class with a particular method that is considered the public interface to trigger a hook event. + +```php +class HookDispatcher { + + /** + * @see ... + * @since 3.2 + * + * @param $bar + */ + public function onChangingSomething( $bar ) { + Hooks::run( 'SMW::Fake::ChangingSomething', [ $bar ] ); + } + +} +``` + +#### HookDispatcherAwareTrait + +The [`HookDispatcherAwareTrait`][trait] has been introduced to help extend a class that is expected to trigger a specific hook event. + +It requires to inject the `HookDispatcher` upon creation of an instance of that class (which should be done using a factory) hereby removes global state that would otherwise be leaking into the instance via `Hooks::run`. + +```php +use SMW\MediaWiki\HookDispatcherAwareTrait; + +class Foo { + + use HookDispatcherAwareTrait; + + public function doSomethingAndTriggerAnEvent( $bar ) { + + // Trigger the hook event + $this->hookDispatcher->onChangingSomething( $bar ); + } + +} +``` +```php +use SMW\Services\ServicesFactory; + +$servicesFactory = ServicesFactory::getInstance(); + +$foo = new Foo(); + +$foo->setHookDispatcher( + $servicesFactory->getHookDispatcher() +); + +$foo->doSomethingAndTriggerAnEvent( 'abc' ); +``` + +## List of hooks + +A list of [hook events][hook-list] provided by Semantic MediaWiki to help users to extend its core functionality. + +[hook-list]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/technical/hooks.md +[dispatcher]: https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/HookDispatcher.php +[trait]: https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/HookDispatcherAwareTrait.php \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/querying.data.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/querying.data.md new file mode 100644 index 0000000..1e3b9f2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/querying.data.md @@ -0,0 +1,43 @@ +## Querying and displaying data + +When resolving a query request (i.e. resolving the parser function `{{#ask ... }}` or `{{#show: ... }}`) the `QueryEngine` has two distinct tasks to accomplish: + +- First, build a query condition in a corresponding language (SQL, ES-DSL, SPARQL) that is understood by the assigned QueryEngine where it returns a list of subjects that match the condition (similar to finding rows in a table that match a WHERE condition) +- Secondly, build a `QueryResult` object that contains the matched subjects and provide information on the requested printouts (equivalent of columns displayed in a table) + +### `src/ParserFunctions` + +- [`AskParserFunction.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/ParserFunctions/AskParserFunction.php) defines the `#ask` parser function +- [`ShowParserFunction.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/ParserFunctions/ShowParserFunction.php) defines the `#show` parser function + +### `src/Query` + +- [`Parser.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Query/Parser.php) interface to `src/Query/Parser` to create a `Description` and `Query` object from an `{{#ask: ...}}` string +- [`PrintRequest.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Query/PrintRequest.php) +- [`ResultPrinter.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Query/ResultPrinter.php) interface to concrete implementations found in `src/Query/ResultPrinters` + +### `src/Query/Language` + +Each condition element (e.g. `[[Has foo::bar]] || [[!Foo]]`) of a query is represented by a `Description` object allowing to express a query condition as as description [AST](https://en.wikipedia.org/wiki/Abstract_syntax_tree). + +- [`Description.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Query/Language/Description.php) + +### `src/Query/Result` + +- [`QueryResult.php`] the instance represents the matched subjects of a query request (i.e. rows of a table) +- [`ResultArray.php`] represents a lazy-object to contain the printouts (see `PrintRequest`) for a particular subject (i.e. as columns for a particular row) + +### `src/Query/ResultPrinters` + +A `ResultPrinter` is the user facing output formatter that takes a `QueryResult` and transform its representation into a specific format by extending: + +- [`ResultPrinter.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Query/ResultPrinters/ResultPrinter.php) is an abstract base class to provide accessors and pre and postprocess the output after an individual printer returns the formatted result or +- [`FileExportPrinter.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Query/ResultPrinters/FileExportPrinter.php) is an abstract base class for file export result printers + +## Examples + +- [`boilerplate.resultprinter`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/boilerplate.resultprinter.md) starting point for writing a result printer +- [`boilerplate.fileexportprinter`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/boilerplate.fileexportprinter.md) starting point for writing a file result printer +- [`boilerplate.resultprinter.example`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/boilerplate.resultprinter.example.md) a complete example +- [`query.description.md`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/query.description.md) how to build a `Descripion` objects +- [`query.someproperty.of.type.number.md`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/query.someproperty.of.type.number.md) example on how to query a number diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/storing.annotations.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/storing.annotations.md new file mode 100644 index 0000000..35ef3cd --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/storing.annotations.md @@ -0,0 +1,17 @@ +## Creating annotations and storing data + +### `src/Parser` + +- [`InTextAnnotationParser.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Parser/InTextAnnotationParser.php) is the main entrypoint for handling of `[[...::...]]` annotations + +### `src/ParserFunctions` + +- [`SetParserFunction.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/ParserFunctions/SetParserFunction.php) defines the `#set` parser function +- [`SubobjectParserFunction.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/ParserFunctions/SubobjectParserFunction.php) defines the `#subobject` parser function +- [`RecurringEventsParserFunction.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/ParserFunctions/RecurringEventsParserFunction.php) defines the `#set_recurring_event` parser function + +### `src` + +- [`SemanticData.php`] is the storage and lookup representation for all semantic data assigned to a single subject +- [`ParserData.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/ParserData.php) prepares the data retrieved from the `ParserOutput` (where it is temporary stored during a user request and transferred from MediaWiki's `Parser`) +- [`DataUpdater.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/DataUpdater.php) prepares the data `SemanticData` injected by `ParserData` to make some final adjustments before posting it to `Store::updateData` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/architecture/writing.resultprinter.md b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/writing.resultprinter.md new file mode 100644 index 0000000..b3fdd18 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/architecture/writing.resultprinter.md @@ -0,0 +1,245 @@ +This section explains how to create a new result printer to be used to visualize the result of a `#ask` query. + +## Creating a printer class + +Each result printer is implemented as a derived class from [`ResultPrinter.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Query/ResultPrinters/ResultPrinter.php) and will require at least to implement the following 3 methods: + +
    +/**
    + * @license GNU GPL v2+
    + * @since 3.0
    + *
    + * @author ...
    + */
    +class FooResultPrinter extends ResultPrinter {
    +
    +	/**
    +	 * Output a human readable label for this printer.
    +	 *
    +	 * @see ResultPrinter::getName
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	public function getName() {
    +		return $this->msg( 'message-key-for-this-name' );
    +	}
    +
    +	/**
    +	 * Defines the list of available parameters to an individual result
    +	 * printer.
    +	 *
    +	 * @see ResultPrinter::getParamDefinitions
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	public function getParamDefinitions( array $definitions ) {
    +		$definitions = parent::getParamDefinitions( $definitions );
    +
    +		$definitions[] = [
    +			'name' => 'foo',
    +			'message' => 'smw-paramdesc-foo',
    +			'default' => '',
    +		];
    +
    +		return $definitions;
    +	}
    +
    +	/**
    +	 * This method gets the query result object and is supposed to return
    +	 * whatever output the format creates. For example, in the list format, it
    +	 * goes through all results and constructs an HTML list, which is then
    +	 * returned. Looping through the result object is somewhat complex, and
    +	 * requires some understanding of the `QueryResult` class.
    +	 *
    +	 * @see ResultPrinter::getResultText
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	protected function getResultText( QueryResult $queryResult, $outputMode ) {
    +		return '';
    +	}
    +}
    +
    + +### Returning a name + +Returns a human readable label for this printer. + +
    +	/**
    +	 * @see ResultPrinter::getName
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	public function getName() {
    +		return $this->msg( 'message-key-for-this-name' );
    +	}
    +
    + +### Handling parameters + +Parameters passed to your result printer can be accessed via the `$params`field, which gets set by the base class before `ResultPrinter::getResultText` is called. + +For example, if you want to retrieved the value for parameter foobar, use `$this->params['foobar']`. It is '''not''' needed to check if these parameters are set, if they are of the right type, or adhere to any restrictions you might want to put on them. This will already have happened at this point in the base class. + +- Invalid and non-set values will have been changed to their default. +- Invalid or missing required parameters would have caused an abort earlier on, so `ResultPrinter::getResultText` would not get called. +- When outputting any of these values, you will have to escape them using the core MediaWiki escaping functionality for security reasons. + +The `ResultPrinter::getParamDefinitions` function returns the allowed parameters for a query that uses the specific format. It should return an array of Parameter objects. These define in a declarative fashion which parameters the result printer accepts, what their type is, and their default values. See [ParamProcessor](https://github.com/JeroenDeDauw/ParamProcessor) for more information about the supported declarations. + +
    +	/**
    +	 * @see ResultPrinter::getParamDefinitions
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	public function getParamDefinitions( array $definitions ) {
    +
    +		// You should always get the params added by the parent class,
    +		// using the parent.
    +		$definitions = parent::getParamDefinitions( $definitions );
    +
    +		$definitions[] = [
    +			'name' => 'separator',
    +			'message' => 'smw-paramdesc-separator',
    +			'default' => '',
    +		];
    +
    +		return $definitions;
    +	}
    +
    + +### Building an output + +This is an example from the [`DsvResultPrinter.php`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Query/ResultPrinters/DsvResultPrinter.php). + +
    +
    +	/**
    +	 * @see ResultPrinter::getResultText
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	protected function getResultText( QueryResult $queryResult, $outputMode ) {
    +
    +		if ( $outputMode !== SMW_OUTPUT_FILE ) {
    +			return $this->getDsvLink( $queryResult, $outputMode );
    +		}
    +
    +		return $this->buildContents( $queryResult );
    +	}
    +
    +	private function buildContents( QueryResult $queryResult ) {
    +		$lines = [];
    +
    +		// Do not allow backspaces as delimiter, as they'll break stuff.
    +		if ( trim( $this->params['separator'] ) != '\\' ) {
    +			$this->params['separator'] = trim( $this->params['separator'] );
    +		}
    +
    +		/**
    +		 * @var ResultPrinter::mShowHeaders
    +		 */
    +		$showHeaders = $this->mShowHeaders;
    +
    +		if ( $showHeaders ) {
    +			$headerItems = [];
    +
    +			foreach ( $queryResult->getPrintRequests() as $printRequest ) {
    +				$headerItems[] = $printRequest->getLabel();
    +			}
    +
    +			$lines[] = $this->getDSVLine( $headerItems );
    +		}
    +
    +		// Loop over the result objects (pages).
    +		while ( $row = $queryResult->getNext() ) {
    +			$rowItems = [];
    +
    +			/**
    +			 * Loop over their fields (properties).
    +			 * @var \SMW\Query\Result\ResultArray $field
    +			 */
    +			foreach ( $row as $field ) {
    +				$itemSegments = [];
    +
    +				// Loop over all values for the property.
    +				while ( ( $object = $field->getNextDataValue() ) !== false ) {
    +					$itemSegments[] = Sanitizer::decodeCharReferences( $object->getWikiValue() );
    +				}
    +
    +				// Join all values into a single string, separating them with comma's.
    +				$rowItems[] = implode( ',', $itemSegments );
    +			}
    +
    +			$lines[] = $this->getDSVLine( $rowItems );
    +		}
    +
    +		return implode( "\n", $lines );
    +	}
    +
    + +Putting in comments and using type hinting can make the code a lot clearer. Also make sure you split up the functionality into multiple methods when it makes sense. + +In general, do not create methods longer then 70 lines, unless they are very simple. Avoid putting a lot of code in a loop, or worse yet, nested loop. In following example there is only a single line in the inner loop, if it where say 20, it'd be better to put this into a separate method (ie such as was done with the things that are in with the `DsvResultPrinter::getDSVLine` method. + +### Using JavaScript + +If you have data that requires JavaScript (e.g plotting a chart etc.) do not create a string with JavaScript in which you insert PHP variables, and create an inline JS output. Inline JS with logic is prohibited, instead just construct a data object (i.e. JSON) which you then is interpret with JS in a separate file. This way the page will load faster and the code will cleaner. + +A simple way to get all your data from PHP to JS is to create one big PHP object (arrays and associative arrays) that holds the values and turn it into JSON using `json_encode`. This function takes care of all escaping for you after which you need to use the `SMWOutputs` class to ensure your code works both in articles (when the result printers is used for inline ask queries), and on special pages, such as `Special:Ask` and `Special:Browse`. The method needed for adding your JS is SMWOutputs::requireHeadItem, which takes an ID and your actual JS. + +
    +	$requireHeadItem = [ $id => json_encode( $data ) ];
    +
    +	\SMWOutputs::requireHeadItem(
    +		// Unique id
    +		$id,
    +		\Skin::makeVariablesScript( $requireHeadItem )
    +	);
    +
    + +Predefined modules and styles can be added by overriding the `ResultPrinter::getResources` method to return something like: + +
    +	/**
    +	 * @see ResultPrinter::getResources
    +	 */
    +	protected function getResources() {
    +		return [
    +			'modules' => [
    +				'smw.foo'
    +			],
    +			'styles' => [
    +				'smw.foo.styles'
    +			]
    +		];
    +	}
    +
    + +It provides a convenient way to add resources such as JavaScript and CSS. This method is a stub in the `ResultPrinter` class which can be overridden, but is not required. + +## Adding tests + +Most `ResultPrinter` have integration tests to verify that the expected output is actually generated when different types of queries (e.g. with or without headers, with or without a mainlabel etc.) are requested. + +## Registering the format + +To register new format you need to add your format name to [`$smwgResultFormats`](https://www.semantic-mediawiki.org/w/index.php/Help:$smwgResultFormats) setting: + +
    +$GLOBALS['smwgResultFormats']['foo-format'] = \SMW\Query\ResultPrinters\FooResultPrinter::class;
    +
    + +For SRF use the [`$srfgFormats`](https://github.com/SemanticMediaWiki/SemanticResultFormats/blob/master/includes/DefaultSettings.php) setting: + +
    +$GLOBALS['srfgFormats'][] = 'my-format';
    +
    + +## See also + +- [`boilerplate.resultprinter`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/boilerplate.resultprinter.md) starting point for writing a result printer +- [`boilerplate.fileexportprinter`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/boilerplate.fileexportprinter.md) starting point for writing a file result printer +- [`boilerplate.resultprinter.example`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/boilerplate.resultprinter.example.md) a complete example diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/README.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/README.md new file mode 100644 index 0000000..0de693f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/README.md @@ -0,0 +1,8 @@ + +## Examples and code snippets + +* [register.core.datatype.md](register.core.datatype.md) Shows how to register a new dataType/dataValue +* [register.custom.datatype.md](register.custom.datatype.md) Shows how to register a new dataType/dataValue using the the `SMW::DataType::initTypes` hook +* [approve.update.md](approve.update.md) Shows how to alter the data representation in Semantic MediaWiki with the help of selected hooks in connection with the `ApprovedRevs` extension +* [hook.pagecontentsavecomplete.md](hook.pagecontentsavecomplete.md) Creating subobjects using the `PageContentSaveComplete` hook (see [#2974](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2974)) +* [hook.store.afterqueryresultlookupcomplete.md](hook.store.afterqueryresultlookupcomplete.md) Extending the query result \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/approve.update.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/approve.update.md new file mode 100644 index 0000000..d3c13de --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/approve.update.md @@ -0,0 +1,5 @@ +Certain user scenarios may require to refuse or alter an update by changing the revision that builds the basis for the semantic data stored in Semantic MediaWiki. + +Please see the [`Semantic ApprovedRevs`][ssc] extension for details on how and which hooks to be used in connection with Semantic MediaWiki. + +[ssc]:https://github.com/SemanticMediaWiki/SemanticApprovedRevs diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/boilerplate.fileexportprinter.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/boilerplate.fileexportprinter.md new file mode 100644 index 0000000..6b4592a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/boilerplate.fileexportprinter.md @@ -0,0 +1,63 @@ +
    +/**
    + * @license GNU GPL v2+
    + * @since 3.0
    + *
    + * @author ...
    + */
    +class FooFileExportPrinter extends FileExportPrinter {
    +
    +	/**
    +	 * @see ResultPrinter::getName
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	public function getName() {
    +		return '';
    +	}
    +
    +	/**
    +	 * @see FileExportPrinter::getMimeType
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	public function getMimeType( QueryResult $queryResult ) {
    +		return '';
    +	}
    +
    +	/**
    +	 * @see FileExportPrinter::getFileName
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	public function getFileName( QueryResult $queryResult ) {
    +		return '';
    +	}
    +
    +	/**
    +	 * @see ResultPrinter::getParamDefinitions
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	public function getParamDefinitions( array $definitions ) {
    +		$definitions = parent::getParamDefinitions( $definitions );
    +
    +		$definitions[] = [
    +			'name' => 'foo',
    +			'message' => 'smw-paramdesc-foo',
    +			'default' => '',
    +		];
    +
    +		return $definitions;
    +	}
    +
    +	/**
    +	 * @see ResultPrinter::getResultText
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	protected function getResultText( QueryResult $queryResult, $outputMode ) {
    +		return '';
    +	}
    +}
    +
    diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/boilerplate.resultprinter.example.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/boilerplate.resultprinter.example.md new file mode 100644 index 0000000..b49616e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/boilerplate.resultprinter.example.md @@ -0,0 +1,376 @@ +This document contains an example for a `ResultPrinter` both for the PHP and JavaScript part and before diving into the details, please make sure you have read ["Writing a result printer"](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/writing.resultprinter.md). + +## PHP + +
    +namespace SMW\Query\ResultPrinters;
    +
    +use SMW\Query\QueryResult;
    +use SMWDataItem as DataItem;
    +use SMWDataValue as DataValue;
    +use MediaWiki\Html\Html;
    +
    +/**
    + * Boilerplate query printer
    + *
    + * Add your description here ...
    + *
    + * @license GNU GPL v2+
    + * @since 3.0
    + *
    + * @author mwjames
    + */
    +class BoilerplateResultPrinter extends ResultPrinter {
    +
    +	/**
    +	 * @see ResultPrinter::getName
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	public function getName() {
    +		// Add your result printer name here
    +		return wfMessage( 'foo-boilerplate' )->text();
    +	}
    +
    +	/**
    +	 * @see ResultPrinter::getParamDefinitions
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	public function getParamDefinitions( array $definitions ) {
    +		$definitions = parent::getParamDefinitions( $definitions );
    +
    +		// Add your parameters here
    +
    +		// Example of a unit parameter
    +		$definitions['unit'] = [
    +			'message' => 'foo-paramdesc-unit',
    +			'default' => '',
    +		];
    +
    +		return $definitions;
    +	}
    +
    +	/**
    +	 * @see ResultPrinter::getResources
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	protected function getResources() {
    +
    +		// Add resource definitions that has been registered with `Resource.php`
    +		// Resource definitions contain scripts, styles, messages etc.
    +
    +		return [
    +			'modules' => [
    +				'foo.boilerplate'
    +			],
    +			'styles' => [
    +				'foo.boilerplate.styles'
    +			]
    +		];
    +	}
    +
    +	/**
    +	 * @see ResultPrinter::getResultText
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	protected function getResultText( QueryResult $queryResult, $outputMode ) {
    +
    +		// Data processing
    +		// It is advisable to separate data processing from output logic
    +		$data = $this->preprocess( $queryResult, $outputMode );
    +
    +		// Check if the data processing returned any results otherwise just bailout
    +		if ( $data === [] ) {
    +			// Add an error message to return method
    +			return $queryResult->addErrors( 'some-error' );
    +		} else {
    +			// Add options if needed to format the output
    +
    +			// $outputMode can be specified as
    +			// SMW_OUTPUT_HTML
    +			// SMW_OUTPUT_FILE
    +			// SMW_OUTPUT_WIKI
    +
    +			// For implementing template support this options has to be set but if you
    +			// manipulate data via jQuery/JavaScript it is less likely that you need
    +			// this option since templates will influence how wiki text is parsed
    +			// but will have no influence in how a HTML representation is altered
    +			// $this->hasTemplates = true;
    +
    +			$options = [
    +				'mode' => $outputMode
    +			];
    +
    +			// Return formatted results
    +			return $this->buildHTML( $data, $options );
    +		}
    +	}
    +
    +	/**
    +	 * Returns an array with data
    +	 *
    +	 * @return array
    +	 */
    +	private function preprocess( QueryResult $queryResult, $outputMode ) {
    +
    +		$data = [];
    +
    +		// This is an example implementation on how to select available data from
    +		// a result set. Please make appropriate adoptions necessary for your
    +		// application.
    +
    +		// Some methods are declared as private to show case which objects are
    +		// directly accessible within QueryResult
    +
    +		// Get all SMWDIWikiPage objects that make up the results
    +		// $subjects = $this->getSubjects( $queryResult->getResults() );
    +
    +		// Get all print requests property labels
    +		// $labels = $this->getLabels( $queryResult->getPrintRequests() );
    +
    +		/**
    +		 * Get all values for all rows that belong to the result set
    +		 *
    +		 * @var ResultArray $rows
    +		 */
    +		while ( $rows = $queryResult->getNext() ) {
    +
    +			/**
    +			 * @var ResultArray $field
    +			 * @var DataValue $dataValue
    +			 */
    +			foreach ( $rows as $field ) {
    +
    +				// Initialize the array each time it passes a new row to avoid data from
    +				// a previous row is remaining
    +				$rowData = [];
    +
    +				// Get the label for the current property
    +				$propertyLabel = $field->getPrintRequest()->getLabel();
    +
    +				// Get the label for the current subject
    +				// getTitle()->getText() will return only the main text without the
    +				// fragment(#) which can be arbitrary in case subobjects are involved
    +
    +				// getTitle()->getFullText() will return the text with the fragment(#)
    +				// which is important when using subobjects
    +				$subjectLabel = $field->getResultSubject()->getTitle()->getFullText();
    +
    +				while ( ( $dataValue = $field->getNextDataValue() ) !== false ) {
    +
    +					// Get the data value item
    +					$rowData[] = $this->getDataValueItem( $dataValue->getDataItem()->getDIType(), $dataValue );
    +				}
    +
    +				// Example how to build a hierarchical array by collecting all values
    +				// belonging to one subject/row using labels as array key representation
    +				$data[$subjectLabel][$propertyLabel][] = $rowData;
    +			}
    +		}
    +
    +		// Return the data
    +		// return array( 'labels' => $labels, 'subjects' => $subjects, 'data' => $data );
    +		return $data;
    +	}
    +
    +	/**
    +	 * A quick getway method to find all SMWDIWikiPage objects that make up the
    +	 * results
    +	 *
    +	 * @return array
    +	 */
    +	private function getSubjects( $result ) {
    +		$subjects = [];
    +
    +		foreach ( $result as $wikiDIPage ) {
    +			$subjects[] = $wikiDIPage->getTitle()->getText();
    +		}
    +		return $subjects;
    +	}
    +
    +	/**
    +	 * Get all print requests property labels
    +	 *
    +	 * @return array
    +	 */
    +	private function getLabels( $result ) {
    +		$printRequestsLabels = [];
    +
    +		foreach ( $result as $printRequests ) {
    +			$printRequestsLabels[] = $printRequests->getLabel();
    +		}
    +		return $printRequestsLabels;
    +	}
    +
    +	/**
    +	 * Get a single data value item
    +	 *
    +	 * @return mixed
    +	 */
    +	private function getDataValueItem( $type, DataValue $dataValue ) {
    +
    +		if ( $type == DataItem::TYPE_NUMBER ) {
    +
    +			// Set unit if available
    +			$dataValue->setOutputFormat( $this->params['unit'] );
    +
    +			// Check if unit is available and return the converted value otherwise
    +			// just return a plain number
    +			if ( $dataValue->getUnit() !== '' ) {
    +				return $dataValue->getShortWikiText();
    +			}
    +
    +			return $dataValue->getNumber();
    +		}
    +
    +		// For all other data types return the wikivalue
    +		return $dataValue->getWikiValue();
    +	}
    +
    +	/**
    +	 * Prepare data for the output
    +	 *
    +	 * @return string
    +	 */
    +	protected function buildHTML( $data, $options ) {
    +
    +		// The generated ID is to distinguish similar instances of the same
    +		// printer that can appear within the same page
    +		$id = uniqid( 'foo-boilerplate-' . rand( 1, 10000 ) );
    +
    +		// Used to set that the output and being treated as HTML (opposed to plain wiki text)
    +		$this->isHTML = true;
    +
    +		// Correct escaping is vital to minimize possibilities of malicious code snippets
    +		// and also a coherent string evaluation therefore it is recommended
    +		// that data transferred to the JS plugin is JSON encoded
    +
    +		// Assign the ID to make a data instance readily available and distinguishable
    +		// from other content within the same page
    +		$requireHeadItem = [ $id => json_encode( $data ) ];
    +		\SMWOutputs::requireHeadItem( $id, \Skin::makeVariablesScript( $requireHeadItem ) );
    +
    +		// Add two elements a outer wrapper that is assigned a class which the JS plugin
    +		// can select and will fetch all instances of the same result printer and an inner
    +		// container which is set invisible (display=none) for as long as the JS plugin
    +		// holds the content hidden. It is normally the place where the "hard work"
    +		// is done hidden from the user until it is ready.
    +		// The JS plugin can prepare the output within this container without presenting
    +		// unfinished visual content, to avoid screen clutter and improve user experience.
    +		return Html::rawElement(
    +			'div',
    +			[
    +				'class' => 'foo-boilerplate'
    +			],
    +			Html::element(
    +				'div',
    +				[
    +					'id' => $id,
    +					'class' => 'container',
    +					'style' => 'display:none;'
    +				]
    +			)
    +		);
    +	}
    +
    +}
    +
    + +## JavaScript + +
    +/**
    + * @license GNU GPL v2+
    + * @since 3.0
    + *
    + * @author mwjames
    + */
    +( function( $, mw ) {
    +
    +	// Use EcmaScript 5 to improve code quality and check with jshint/jslint
    +	// if the code adheres standard coding conventions
    +
    +	// Strict mode eliminates some JavaScript pitfalls
    +	'use strict';
    +
    +	// Passing jshint
    +	/*global mediaWiki:true */
    +
    +	/**
    +	 * @type Object
    +	 */
    +	foo = {};
    +
    +	/**
    +	 * Base constructor for objects representing a boilerplate instance
    +	 *
    +	 * @type Object
    +	 */
    +
    +	// If you have default values to be set during the instantiation
    +	// $.extend ... can be used here
    +	foo.boilerplate = function() {};
    +
    +	foo.boilerplate.prototype = {
    +		// Specify your functions and parameters
    +		show: function( context ) {
    +			return context.each( function() {
    +
    +				// Ensure variables have only local scope otherwise leaked content might
    +				// cause issues for other plugins
    +				var that = $( this );
    +
    +				// Find the container instance that was created by the PHP output
    +				// and store it as "container" variable which all preceding steps
    +				// working on a localized instance
    +				var container = that.find( '.container' );
    +
    +				// Find the ID that connects to the current instance with the published data
    +				var id = container.attr( 'id' );
    +
    +				// Fetch the stored data with help of mw.config.get() method and the current instance ID
    +				// @see https://www.mediawiki.org/wiki/ResourceLoader/Default_modules#mediaWiki.config
    +				var json = mw.config.get( id );
    +
    +				// Parse the fetched json string and convert it back into objects/arrays
    +				var data = typeof json === 'string' ? jQuery.parseJSON( json ) : json;
    +
    +				// You got everything you need to work your magic
    +				// A clean instance, data from the wiki, and a separate container
    +
    +				// If you need to see what data you've got from your result printer
    +				// it is always helpful to do
    +
    +				// console.log( data );
    +
    +				// Happy coding ...
    +			} );
    +		}
    +	};
    +
    +	/**
    +	 * Implementation and representation of the boilerplate instance
    +	 *
    +	 * @type Object
    +	 */
    +
    +	// Create class instance
    +	var boilerplate = new foo.boilerplate();
    +
    +	$( document ).ready(function() {
    +
    +		// Use the class selector to find all instances relevant to the "boilerplate" printer
    +		// since a wiki page can have more than one instance of the same result printer
    +		// .each() ensures instances are handled separately
    +		$( '.foo-boilerplate' ).each(function() {
    +
    +			// Access methods available through the boilerplate class
    +			boilerplate.show( $( this ) );
    +		} );
    +	} );
    +
    +} )( jQuery, mediaWiki );
    +
    diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/boilerplate.resultprinter.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/boilerplate.resultprinter.md new file mode 100644 index 0000000..ae60860 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/boilerplate.resultprinter.md @@ -0,0 +1,45 @@ +
    +/**
    + * @license GNU GPL v2+
    + * @since 3.0
    + *
    + * @author ...
    + */
    +class FooResultPrinter extends ResultPrinter {
    +
    +	/**
    +	 * @see ResultPrinter::getName
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	public function getName() {
    +		return '';
    +	}
    +
    +	/**
    +	 * @see ResultPrinter::getParamDefinitions
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	public function getParamDefinitions( array $definitions ) {
    +		$definitions = parent::getParamDefinitions( $definitions );
    +
    +		$definitions[] = [
    +			'name' => 'foo',
    +			'message' => 'smw-paramdesc-foo',
    +			'default' => '',
    +		];
    +
    +		return $definitions;
    +	}
    +
    +	/**
    +	 * @see ResultPrinter::getResultText
    +	 *
    +	 * {@inheritDoc}
    +	 */
    +	protected function getResultText( QueryResult $queryResult, $outputMode ) {
    +		return '';
    +	}
    +}
    +
    diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/constraint.schema.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/constraint.schema.md new file mode 100644 index 0000000..66184da --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/constraint.schema.md @@ -0,0 +1,103 @@ + +## PROPERTY_CONSTRAINT_SCHEMA + +Examples of schema definitions that can be mixed or created as separate schemata and assigned to property. + +### Must exists + +```json +{ + "type": "PROPERTY_CONSTRAINT_SCHEMA", + "constraints": { + "must_exists": true + }, + "tags": [ + "property constraint", + "must exists" + ] +} +``` + +### Single value + +Properties such as `place of birth` or `maternity hospital` are prime examples where only a `single` value is expected to exists for a person entity. + +```json +{ + "type": "PROPERTY_CONSTRAINT_SCHEMA", + "constraints": { + "single_value_constraint": true + }, + "tags": [ + "property constraint", + "single value" + ] +} +``` + +### Non negative + +```json +{ + "type": "PROPERTY_CONSTRAINT_SCHEMA", + "constraints": { + "non_negative_integer": true + }, + "tags": [ + "property constraint", + "integer", + "number" + ] +} +``` + +## CLASS_CONSTRAINT_SCHEMA + +### Mandatory properties + +``` +{ + "type": "CLASS_CONSTRAINT_SCHEMA", + "constraints": { + "mandatory_properties": [ + "Gender", + "Name", + "Birthdate", + "Birthplace" + ] + }, + "tags": [ + "class constraint" + ] +} +``` + +### Shape constraint + +``` +{ + "type": "CLASS_CONSTRAINT_SCHEMA", + "constraints": { + "mandatory_properties": [ + "Gender", + "Name", + "Birthdate", + "Birthplace" + ], + "shape_constraint": [ + { + "property": "Gender", + "max_cardinality": 1 + } + ] + }, + "tags": [ + "class constraint" + ] +} +``` + +## See also + +- [`property.constraint.md`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Schema/docs/property.constraint.md) +- [`class.constraint.md`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Schema/docs/class.constraint.md) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.fileupload.beforeupdate.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.fileupload.beforeupdate.md new file mode 100644 index 0000000..04c7c55 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.fileupload.beforeupdate.md @@ -0,0 +1,28 @@ +## SMW::FileUpload::BeforeUpdate hook + +SMW 2.4 + +```php +use SMW\DataItemFactory + +$GLOBALS['wgHooks']['SMW::FileUpload::BeforeUpdate'][] = function ( $filePage, $semanticData ) { + + $dataItemFactory = new DataItemFactory(); + + $property = $dataItemFactory->newDIProperty( '___ext_file_sha1' ); + + $semanticData->addPropertyObjectValue( + $property, + $dataItemFactory->newDIBlob( $filePage->getFile()->getSha1() ) + ); + + $property = $dataItemFactory->newDIProperty( '___ext_file_size' ); + + $semanticData->addPropertyObjectValue( + $property, + $dataItemFactory->newDIBlob( $filePage->getFile()->getSize() ) + ); + + return true; +}; +``` \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.pagecontentsavecomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.pagecontentsavecomplete.md new file mode 100644 index 0000000..e4d43e1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.pagecontentsavecomplete.md @@ -0,0 +1,101 @@ + +## PageContentSaveComplete hook + +[#2974](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2974) Creating subobjects using the `PageContentSaveComplete` hook + +```php +use MediaWiki\MediaWikiServices; +use MediaWiki\Parser\ParserOutput; +use SMW\Services\ServicesFactory as ApplicationFactory; +use SMW\DataModel\ContainerSemanticData; +use SMW\DataValueFactory; +use SMWDIContainer as DIContainer; +use SMW\DIWikiPage; +use SMW\DIProperty; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'PageContentSaveComplete', function( $wikiPage, $user, $content, $summary, $isMinor, $isWatch, $section, $flags, $revision, $status, $baseRevId, $undidRevId ) { + + $applicationFactory = ApplicationFactory::getInstance(); + $mwCollaboratorFactory = $applicationFactory->newMwCollaboratorFactory(); + + /** + * Initialize the ParserOuput object + */ + $editInfo = $mwCollaboratorFactory->newEditInfo( + $wikiPage, + $revision, + $user + ); + + $editInfo->fetchEditInfo(); + + $parserOutput = $editInfo->getOutput(); + + if ( !$parserOutput instanceof ParserOutput ) { + return true; + } + + $parserData = $applicationFactory->newParserData( + $wikiPage->getTitle(), + $parserOutput + ); + + // Subject Foo ... + $subject = $parserData->getSubject(); + + // Contains the wikitext, JSON or whatever is stored for this content model + $nativeData = $content->getNativeData(); + + // Identify the content as unique + $subobjectName = '_MYCUSTOMPREFIX' . md5( $nativeData ); + + $subject = new DIWikiPage( + $subject->getDBkey(), + $subject->getNamespace(), + $subject->getInterwiki(), + $subobjectName + ); + + // Build the subobject by using a separate container object + $containerSemanticData = new ContainerSemanticData( + $subject + ); + + /** + * Start doing all the work required after this + */ + + // If one knows the details you can add it directly + $containerSemanticData->addPropertyObjectValue( + new DIProperty( 'PropertyIWantToUse' ), + new DIWikiPage( 'SomeTextItem', NS_MAIN ) + ); + + // If you don't know the type, use the DataValueFactory (see available methods) + $dataValue = DataValueFactory::getInstance()->newDataValueByText( + 'AnotherPropertyIWantToUse', + '123' + ); + + $containerSemanticData->addDataValue( + $dataValue + ); + + /** + * Done + */ + + // This part is used to add the subobject the the main subject + // Page: Foo -> gets a _MYCUSTOMPREFIX.... attached + $parserData->getSemanticData()->addPropertyObjectValue( + new DIProperty( DIProperty::TYPE_SUBOBJECT ), + new DIContainer( $containerSemanticData ) + ); + + $parserData->pushSemanticDataToParserOutput(); + + return true; + +} ); + +``` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.parser.afterlinksprocessingcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.parser.afterlinksprocessingcomplete.md new file mode 100644 index 0000000..e16799b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.parser.afterlinksprocessingcomplete.md @@ -0,0 +1,84 @@ +## Register a # hash tag parser + +The example will use the `SMW::Parser::AfterLinksProcessingComplete` to process hash tags (e.g. #foo #foo_bar etc.) to add value annotations for the identified tag and the assigned property. + +```php +use SMW\Parser\AnnotationProcessor; + +class HashTagParser { + + private $subject; + private $property; + private $annotationProcessor; + private $showErrors = false; + + public function __construct( AnnotationProcessor $annotationProcessor ) { + $this->annotationProcessor = $annotationProcessor; + } + + public function setShowErrors( $showErrors ) { + $this->showErrors = $showErrors; + } + + public function parse( $text, $property ) { + + $semanticData = $this->annotationProcessor->getSemanticData(); + + $this->property = $property; + $this->subject = $semanticData->getSubject(); + + // Twitter regex (include underscore and not start with a number): + // (?<=^|\P{L})(#\b\p{L}[\p{L}\d_]+) + + // Allow to start with a number + // (?annotationProcessor->newDataValueByText( + $this->property, + $matches[1], + $matches[0], + $this->subject + ); + + if ( $this->annotationProcessor->canAnnotate() ) { + $this->annotationProcessor->getSemanticData()->addDataValue( $dataValue ); + } + + // If necessary add an error text + if ( ( $this->showErrors && !$dataValue->isValid() ) ) { + // Encode `:` to avoid a comment block and instead of the nowiki tag + // use : as placeholder + $result = str_replace( ':', ':', $result ) . $dataValue->getErrorText(); + } else { + $result = $dataValue->getShortWikitext( true ); + } + + return $result; + } + +} +``` + +```php +use MediaWiki\MediaWikiServices; +use SMW\Parser\AnnotationProcessor; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Parser::AfterLinksProcessingComplete', function( &$text, AnnotationProcessor $annotationProcessor ) { + + $hashTagParser = new HashTagParser( + $annotationProcessor + ); + + // Could be set on a context or via a configuration setting + $property = 'Has keyword'; + + $text = $hashTagParser->parse( $text, $property ); + + return true; +} ); +``` \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.property.initproperties.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.property.initproperties.md new file mode 100644 index 0000000..09418f5 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.property.initproperties.md @@ -0,0 +1,58 @@ +## Register custom predefined property + +This example shows how to register a custom predefined property in Semantic MediaWiki with the convention that for the property key `__` as leading identifer should be used to distinguish them from those defined by Semantic MediaWiki itself. + +### SMW::Property::initProperties + +```php +use MediaWiki\MediaWikiServices; +use SMW\PropertyRegistry; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Property::initProperties', function ( PropertyRegistry $propertyRegistry ) { + + // Canonical label + define( 'PROP_LABEL_FOOBAR_KEY', 'Foobar key' ); + + $definitions = [ + '__foobar_key' => [ + 'label' => PROP_LABEL_FOOBAR_KEY, + + // Can contain default or custom datatypes (see + // how to register custom datatypes) + 'type' => '_txt', + + // MW message key + 'alias' => 'foobar-property-alias-key', + + // Is viewable on the facbox + 'viewable' => true, + + // Can be used by a user to create an annotation + 'annotable' => true + ] + ]; + + foreach ( $definitions as $definition ) { + + $propertyRegistry->registerProperty( + $propertyId, + $definition['type'], + $definition['label'], + $definition['viewable'], + $definition['annotable'] + ); + + $propertyRegistry->registerPropertyAlias( + $propertyId, + wfMessage( $definition['alias'] )->text() + ); + + $propertyRegistry->registerPropertyAliasByMsgKey( + $propertyId, + $definition['alias'] + ); + } + + return true; +}; +``` \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.sqlstore.installer.beforecreatetablescomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.sqlstore.installer.beforecreatetablescomplete.md new file mode 100644 index 0000000..d394f56 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.sqlstore.installer.beforecreatetablescomplete.md @@ -0,0 +1,54 @@ +## SMW::SQLStore::Installer::BeforeCreateTablesComplete + +### Adding primary keys + +Demonstrates how to add primary keys ([#3559][issue-3559]) to Semantic MediaWiki table definitions. + +```php +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::SQLStore::Installer::BeforeCreateTablesComplete', function( array $tables, $messageReporter ) { + + // #3559 + // Incomplete list to only showcase how to modify the table definition + $primaryKeys = [ + 'smw_di_blob' => 'p_id,s_id,o_hash', + 'smw_di_bool' => 'p_id,s_id,o_value', + 'smw_di_uri' => 'p_id,s_id,o_serialized', + 'smw_di_coords' => 'p_id,s_id,o_serialized', + 'smw_di_wikipage' => [ 'addPrimaryID', 'id' ], + 'smw_di_number' => 'p_id,s_id,o_serialized', + + // smw_fpt ... + + 'smw_prop_stats' => 'p_id', + 'smw_query_links' => 's_id,o_id', + 'smw_prop_stats' => 'p_id', + 'smw_ft_search' => 's_id,p_id,o_sort' + ]; + + /** + * @var \Onoi\MessageReporter\MessageReporter + */ + $messageReporter->reportMessage( "Setting primary indices.\n" ); + + /** + * @var \SMW\SQLStore\TableBuilder\Table[] + */ + foreach ( $tables as $table ) { + $key = $primaryKeys[$table->getName()] ?? false; + if ( is_string( $key ) ) { + $table->setPrimaryKey( $primaryKeys[$table->getName()] ); + } elseif ( is_array( $key ) && $key[0] === "addPrimaryID" && is_string( $key[1] ?? false ) ) { + $table->addColumn( $key[1], 'id_primary' ); + } + } + + $messageReporter->reportMessage( "\ndone.\n" ); + +} ); +``` + +## See also + +- [`hook.sqlstore.installer.beforecreatetablescomplete`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/technical/hooks/hook.sqlstore.installer.beforecreatetablescomplete.md) + +[issue-3559]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3559 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.store.afterqueryresultlookupcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.store.afterqueryresultlookupcomplete.md new file mode 100644 index 0000000..87cf75c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/hook.store.afterqueryresultlookupcomplete.md @@ -0,0 +1,70 @@ +This document contains examples on how the [`SMW::Store::AfterQueryResultLookupComplete`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/technical/hooks/hook.store.afterqueryresultlookupcomplete.md) hook can be used. + +### Match unknown entities + +Demonstrates how the `SMW::Store::AfterQueryResultLookupComplete` hook can be used to add unknown entities (not matched by the `QueryEngine`) derived from the query description (see [#3934][issue-3934]). + +```php +use MediaWiki\MediaWikiServices; +use SMW\Store; +use SMW\Query\Language\Disjunction; +use SMW\Query\Language\ValueDescription; +use SMW\Query\QueryResult; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Store::AfterQueryResultLookupComplete', function( Store $store, QueryResult &$queryResult ) { + + // Contains matched results from the `QueryEngine` + $results = $queryResult->getResults(); + $map = []; + + // Build a hash map to quickly perform a search on members of the + // result set + foreach ( $results as $result ) { + $map[$result->getSha1()] = true; + } + + // Inspect the query ... + $query = $queryResult->getQuery(); + $description = $query->getDescription(); + + // #3934 + // Check query pattern: [[Foo||Bar||Foobar]] + if ( $description instanceof Disjunction ) { + $descriptions = $description->getDescriptions(); + + foreach ( $descriptions as $desc ) { + if ( $desc instanceof ValueDescription ) { + $dataItem = $desc->getDataItem(); + $sha1 = $dataItem->getSha1(); + + // Already part of the result set? + if ( isset( $map[$sha1]) ) { + continue; + } + + // Extend the result set!!, unordered + $results[] = $dataItem; + $map[$sha1] = true; + } + } + } + + // Build a new query result object + $queryResult = new QueryResult( + $queryResult->getPrintRequests(), + $query, + $results, + $store, + $queryResult->hasFurtherResults() + ); + +} ); + +``` + +## See also + +- [query.description.md](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/query.description.md) + +[issue-3934]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3934 +[doc-about]: # (Examples implementing the `SMW::Store::AfterQueryResultLookupComplete`) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/match.property.values.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/match.property.values.md new file mode 100644 index 0000000..d2cf0e4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/match.property.values.md @@ -0,0 +1,63 @@ +Examples listed in this document require SMW 2.5. + +```php +use SMW\Services\ServicesFactory as ApplicationFactory; + +$applicationFactory = ApplicationFactory::getInstance(); +$queryFactory = $applicationFactory->getQueryFactory(); + +$dataItemFactory = $applicationFactory->getDataItemFactory(); + +$dataValue = $applicationFactory->getDataValueFactory()->newDataValueByProperty( + $dataItemFactory->newDIProperty( 'Foo' ), + 'Bar' +); +``` +```php +$requestOptions = $queryFactory->newRequestOptions(); +$requestOptions->setLimit( 42 ); + +// Find subjects that match [[Foo::Bar]] and limit the return results to 42 +$subjectList = $applicationFactory->getStore()->getPropertySubjects( + $dataValue->getProperty(), + $dataValue->getDataItem(), + $requestOptions +); +``` +```php +$requestOptions = $queryFactory->newRequestOptions(); +$requestOptions->setLimit( 42 ); + +// Find all subjects that have a Property:Foo assigned and limit the return results to 42 +$subjectList = $applicationFactory->getStore()->getAllPropertySubjects( + $dataValue->getProperty(), + $requestOptions +); +``` +```php +$descriptionFactory = $queryFactory->newDescriptionFactory(); + +// Query [[Foo::+]] with a limit of 42 matches +$description = $descriptionFactory->newSomeProperty( + $dataValue->getProperty(), + $descriptionFactory->newThingDescription() +); + +$query = $queryFactory->newQuery( $description ); +$query->setLimit( 42 ); + +$queryResult = $applicationFactory->getStore()->getQueryResult( $query ); +``` +```php +$descriptionFactory = $queryFactory->newDescriptionFactory(); + +// [[Foo::Bar]] with a limit of 42 matches +$description = $descriptionFactory->newFromDataValue( + $dataValue +); + +$query = $queryFactory->newQuery( $description ); +$query->setLimit( 42 ); + +$queryResult = $applicationFactory->getStore()->getQueryResult( $query ); +``` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/phpunit.test.property.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/phpunit.test.property.md new file mode 100644 index 0000000..c20eb45 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/phpunit.test.property.md @@ -0,0 +1,69 @@ +## Setup a "Text" type property + +```php +$property = new DIProperty( 'Foo' ); +$property->setPropertyTypeId( '_txt' ); + +// Using a dedicated property to created a DV +$dataValue = DataValueFactory::getInstance()->newDataValueByProperty( + $property, + 'Some text' +); + +$this->assertInstanceof( + '\SMWStringValue', + $dataValue +); + +$this->assertEquals( + 'Some text', + $dataValue->getDataItem()->getString() +); +``` + +## Using the MockBuilder + +```php +$store = $this->getMockBuilder( '\SMW\Store' ) + ->disableOriginalConstructor() + ->getMockForAbstractClass(); + +$store->expects( $this->at( 0 ) ) + ->method( 'getPropertyValues' ) + ->will( $this->returnValue( array( + new DIWikiPage( 'SomePropertyOfTypeBlob', SMW_NS_PROPERTY ) ) ) ); + +$store->expects( $this->at( 1 ) ) + ->method( 'getPropertyValues' ) + ->with( + $this->equalTo( new DIWikiPage( 'SomePropertyOfTypeBlob', SMW_NS_PROPERTY ) ), + $this->anything(), + $this->anything() ) + ->will( $this->returnValue( array( + \SMWDIUri::doUnserialize( 'http://semantic-mediawiki.org/swivt/1.0#_txt' ) ) ) ); + +// Inject the store as a mock object due to DIProperty::findPropertyTypeID finding the +// type dynamically when called without explicit declaration +ApplicationFactory::getInstance()->registerObject( 'Store', $store ); + +// Create a DV from a string value instead of using a dedicated typed +// property (used by #set, #subobject since the user input is a string and not +// a typed object) +$dataValue = DataValueFactory::getInstance()->newDataValueByText( + 'SomePropertyOfTypeBlob', + 'Some text' +); + +$this->assertInstanceof( + '\SMWStringValue', + $dataValue +); + +$this->assertEquals( + 'Some text', + $dataValue->getDataItem()->getString() +); + +// Reset instance to avoid issues with tests that follow hereafter +ApplicationFactory::getInstance()->clear(); +``` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/query.description.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/query.description.md new file mode 100644 index 0000000..a816bbf --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/query.description.md @@ -0,0 +1,40 @@ +```php +$descriptionFactory = new DescriptionFactory(); + +// Equivalent to [[Category:Foo]] +$classDescription = $descriptionFactory->newClassDescription( + new DIWikiPage( 'Foo', NS_CATEGORY ) +); +``` + +```php +// Equivalent to [[:+]] +$namespaceDescription = $descriptionFactory->newNamespaceDescription( + NS_MAIN +); +``` + +```php +// Equivalent to [[Foo::+]] +$anyValueForSomeProperty = $descriptionFactory->newSomeProperty( + new DIProperty( 'Foo' ), + new ThingDescription() +); +``` + +```php +// Equivalent to [[:+]][[Category:Foo]][[Foo::+]] +$description = $descriptionFactory->newConjunction( array( + $namespaceDescription, + $classDescription, + $anyValueForSomeProperty +) ); +``` + +```php +// Equivalent to [[Category:Foo]] OR [[Foo::+]] +$description = $descriptionFactory->newDisjunction( array( + $classDescription, + $anyValueForSomeProperty +) ); +``` \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/query.someproperty.of.type.number.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/query.someproperty.of.type.number.md new file mode 100644 index 0000000..e3ea8cc --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/query.someproperty.of.type.number.md @@ -0,0 +1,71 @@ +## Match distinct numeric property value + +```php +{{#ask: [[NumericProperty::1111]] + |?NumericProperty +}} +``` + +```php +// Create property instance +$property = new DIProperty( 'NumericProperty' ); +$property->setPropertyTypeId( '_num' ); + +$dataItem = new DINumber( 1111 ); + +$dataValue = DataValueFactory::getInstance()->newDataValueByItem( + $dataItem, + $property +); +``` + +```php +// Create and store the SemanticData object in order to be able to match a value +$subject = new DIWikiPage( 'Foo', NS_MAIN ) + +$semanticData = new SemanticData( $subject ); + +$semanticData->addDataValue( + $dataValue +); + +ApplicationFactory::getInstance()->getStore()->updateData( + $semanticData +); +``` + +```php +// Create a description that represents the condition +$descriptionFactory = new DescriptionFactory(); + +$description = $descriptionFactory->newSomeProperty( + $property, + $descriptionFactory->newValueDescription( $dataItem ) +); + +$propertyValue = DataValueFactory::getInstance()->newPropertyValueByLabel( + 'NumericProperty' +); + +$description->addPrintRequest( + new PrintRequest( PrintRequest::PRINT_PROP, null, $propertyValue ) +); + +// Create query object +$query = new Query( + $description +); + +$query->querymode = Query::MODE_INSTANCES; +``` + +```php +// Try to match condition against the store +$queryResult = ApplicationFactory::getInstance()->getStore()->getQueryResult( $query ); + +// PHPUnit +$this->assertEquals( + 1, + $queryResult->getCount() +); +``` \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/register.core.datatype.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/register.core.datatype.md new file mode 100644 index 0000000..9ea0edf --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/register.core.datatype.md @@ -0,0 +1,63 @@ +The following example demonstrates how to register a new [`DataType`][datatype] and [`DataValue`][datavalue] in Semantic MediaWiki. + +### Type registration + +All IDs must start with an underscore, two underscores indicate a truly internal (non user-interacted type), three underscores should be used by an extension. + +`TypesRegistry::getDataTypeList` expects that the following information are provided: + +* A type id (e.g. `FooValue::TYPE_ID`) +* An associated class +* An item type (storage type) +* Boolean on whether it is a subData type (e.g subobject) or not +* Boolean on whether the type is browsable or not + +
    +return array(
    +	// ...
    +	FooValue::TYPE_ID => [ FooValue::class, DataItem::TYPE_WIKIPAGE, false, false ],
    +);
    +
    + +
    +class FooValue extends DataValue {
    +
    +	/**
    +	 * DV identifier
    +	 */
    +	const TYPE_ID = '_foo';
    +
    +	/**
    +	 * @see DataValue::parseUserValue
    +	 *
    +	 * @param string $value
    +	 */
    +	protected function parseUserValue( $userValue ) {
    +		...
    +	}
    +
    +}
    +
    + +### Label registration + +By default, DataTypes (Date, URL etc.) are registered with a corresponding property of the same name to match the expected semantics. For an exemption, see `smwgDataTypePropertyExemptionList`. + +Find `i18n/extra/en.json` and extend the canonical description (which is English) with something like: + +
    +	"datatype":{
    +		"labels": {
    +			"_foo": "SomeType"
    +			...
    +		}
    +		"aliases": {
    +			"SomeType": "_foo"
    +			"ExtraAlias": "_foo"
    +			...
    +		}
    +	},
    +
    + +[datavalue]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.datavalue.md +[datatype]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.datatype.md \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/register.custom.constraint.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/register.custom.constraint.md new file mode 100644 index 0000000..5ced833 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/register.custom.constraint.md @@ -0,0 +1,216 @@ +The following example shows how to register a custom constraint using the `custom_constraint` property. + +## Register a custom constraint + +The `custom_constraint` property is an `object` in the schema and is reserved for custom defined constraints using above outlined invocation and hook. The interpretation of what `custom_constraint` should contain and how those values of the schema are interpret are in the solely hand of the implementor. + +```json +{ + "type": "PROPERTY_CONSTRAINT_SCHEMA", + "constraints": { + "custom_constraint": { + "foo_constraint": true + } + }, + "tags": [ + "property constraint", + "custom constraint" + ] +} +``` +The validation schema only checks whether `custom_constraint` is an object or not, any further validation of what and how the object is structured is not part of the schema validation, the assigned `Constraint` class should handle any inconsistencies with an invalid constraint definition. + +### Hook registration + +```php +use Foo\FooConstraint; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Constraint::initConstraints', function ( $constraintRegistry ) { + + // Declares the constraint identifier and assigns a class that interprets the + // content of it + $constraintRegistry->registerConstraint( 'foo_constraint', FooConstraint::class ); + + return true; +} ); +``` + +Assigning a non `Constraint` class or a callable that doesn't return a `Constraint` instance will throw an exception. + +### Constraint representation + +```php +use SMW\Constraint\Constraint; + +class FooConstraint implements Constraint { + + private $hasViolation = false; + + /** + * @since 3.1 + * + * {@inheritDoc} + */ + public function hasViolation() { + return $this->hasViolation; + } + + /** + * @since 3.1 + * + * {@inheritDoc} + */ + public function getType() { + return Constraint::TYPE_INSTANT; + } + + /** + * @since 3.1 + * + * {@inheritDoc} + */ + public function checkConstraint( array $constraint, $dataValue ) { + + $this->hasViolation = false; + + // Do the necessary checks + + // `$constraint` contains the details of what the schema has defined + // and should be used to interpret the data available and identify any + // violations + + ... + + // Found a violation and report the error + $this->reportError( $dataValue ); + } + + private function reportError( $dataValue ) { + + $this->hasViolation = true; + + $error = [ + 'foo-violation-message-key' + ]; + + $dataValue->addError( + new ConstraintError( $error ) + ); + } +} +``` + +## Other examples + +For example, when implementing `custom_constraint` with a `start_end_constraint` that contains `greater_than` condition, the `greater_than` property may expect an array and the registered class for `start_end_constraint` has to interpret what `greater_than` means in the context of the given array. It could be defined as "the first element (e.g. property `Event end`) needs to be greater than the second element (e.g. property `Event start`)" but that is up to the implementing class to decide and has nothing to do with Semantic MediaWiki. + + +```json +{ + "type": "CLASS_CONSTRAINT_SCHEMA", + "constraints": { + "mandatory_properties": [ + "Event start", + "Event end" + ], + "custom_constraint": { + "start_end_constraint": { + "greater_than": ["Event end", "Event start"] + } + } + }, + "tags": [ + "class constraint", + "custom constraint" + ] +} +``` + +```php +use MediaWiki\MediaWikiServices; +use Custom\StartEndConstraint; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Constraint::initConstraints', function ( $constraintRegistry ) { + $constraintRegistry->registerConstraint( 'start_end_constraint', StartEndConstraint::class ); + return true; +} ); +``` + +```php +use SMW\Constraint\Constraint; +use SMW\SemanticData; +use SMW\DIProperty; + +class StartEndConstraint implements Constraint { + + private $hasViolation; + + /** + * @since 3.1 + * + * {@inheritDoc} + */ + public function hasViolation() { + return $this->hasViolation; + } + + /** + * @since 3.1 + * + * {@inheritDoc} + */ + public function getType() { + return Constraint::TYPE_INSTANT; + } + + /** + * @since 3.1 + * + * {@inheritDoc} + */ + public function checkConstraint( array $constraint, $dataValue ) { + + $this->hasViolation = false; + + if ( !$dataValue instanceof \SMWDataValue ) { + throw new RuntimeException( "Expected a DataValue instance!" ); + } + + foreach ( $constraint as $key => $v ) { + if ( $key === 'start_end_constraint' ) { + $this->start_end_constraint( $v, $dataValue ); + } + } + } + + private function start_end_constraint( $constraint, $dataValue ) { + + if ( !isset( $constraint['greater_than'] ) ) { + return; + } + + // Interpret the array structure + $end = $constraint['greater_than'][0]; + $start = $constraint['greater_than'][1]; + + $semanticData = $dataValue->getCallable( SemanticData::class )(); + + $s = $semanticData->getPropertyValues( + DIProperty::newFromUserLabel( $start ) + ); + + $e = $semanticData->getPropertyValues( + DIProperty::newFromUserLabel( $end ) + ); + + // Compare $s and $e and issue an error on case of + // a violation + ... + } +``` + +## See also + +- [hook.constraint.initconstraints.md][hook.constraint.initconstraints] + +[hook.constraint.initconstraints]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/technical/hooks/hook.constraint.initconstraints.md diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/register.custom.datatype.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/register.custom.datatype.md new file mode 100644 index 0000000..21bfb45 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/register.custom.datatype.md @@ -0,0 +1,63 @@ +## Register new datatype + +This example shows how to register a new dataType/dataValue in Semantic MediaWiki and the convention for the datatype key is to use `___` as leading identifer to distinguish them from those defined by Semantic MediaWiki itself. A matching new Property may also need to be created, see SMW::Property::initProperties. TYPE_ID should be unique - it cannot match any other Datatype ID or a Property ID. + +### SMW::DataType::initTypes + +```php +use MediaWiki\MediaWikiServices; +use SMW\DataTypeRegistry; +use Foo\DataValues\FooValue; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::DataType::initTypes', function () { + $dataTypeRegistry = DataTypeRegistry::getInstance(); + $dataTypeRegistry->registerDatatype( + FooValue::TYPE_ID, + FooValue::class, + DataItem::TYPE_BLOB + FooValue::LABEL, // default false + $isSubDataType, // default false + $isBrowseableType // default false + ); + + $dataTypeRegistry->setOption( + 'foovalue.SomeSetting', + 42 + ); + + return true; +}; +``` + +### DataValue representation + +```php +class FooValue extends DataValue { + + /** + * DV identifier + */ + const TYPE_ID = '___foo_bar'; + + /** + * @see DataValue::parseUserValue + * @note called by DataValue::setUserValue + * + * @param string $value + */ + protected function parseUserValue( $userValue ) { + ... + } +} +``` + +### Usage + +```php +$fooValue = DataValueFactory::getInstance()->newTypeIdValue( + '___foo_bar', + 'Bar' +) + +$fooValue->getShortWikiText(); +``` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/semanticdata.access.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/semanticdata.access.md new file mode 100644 index 0000000..8d54152 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/semanticdata.access.md @@ -0,0 +1,90 @@ +## Add semantic data to in-memory (#1202) + +To avoid having competing data being stored at a different point in time +during a request aimed for the same subject, property value assignments are collected +and stored in-memory before the finale `Store::updateData` process will +be invoked once. + + +```php +// Create in-memory ParserOutput transfer object +$parserData = ApplicationFactory::getInstance()->newParserData( + $parser->getTitle(), + $parser->getOutput() +); + +$subject = $parserData->getSubject(); +$property = new DIProperty( 'SomeProperty' ); + +// Add individual instances of a value for a known property +foreach ( $values as $value ) { + $dataValue = DataValueFactory::getInstance()->newDataValueByProperty( + $property, + trim( $value ), // Text value + false, + $subject + ); + + $parserData->addDataValue( $dataValue ); +} + +// Add individual instances of a value for a property only known by +// its textual representation +foreach ( $values as $value ) { + $dataValue = DataValueFactory::getInstance()->newDataValueByText( + $property, + trim( $value ), // Text value + false, + $subject + ); + + // Adds the object to the SemanticData container you could also use + // $parserData->getSemanticData()->addPropertyObjectValue( ...) + $parserData->addDataValue( $dataValue ); +} + +// Ensures that objects are pushed to the ParserOutput +$parserData->pushSemanticDataToParserOutput(); +``` + +## Access semantic data currently stored in-memory + +```php +// Create in-memory ParserOutput transfer object +$parserData = ApplicationFactory::getInstance()->newParserData( + $parser->getTitle(), + $parser->getOutput() +); + +// Access to the data store in-memory +$semanticData = $parserData->getSemanticData(); +``` + +## Read semantic data from DB + +```php +$subject = new DIWikiPage( 'Foo', NS_MAIN ); + +$semanticData = ApplicationFactory::getInstance()->getStore->getSemanticData( + $subject +); +``` + +### SubSemanticData +Properties like monolingual texts are stored inside the SubSemanticData. See example below; +```php +$store = ServicesFactory::getInstance()->getStore(); + +/** @var EntityLookup::getSemanticData $data */ +$data = $store->getSemanticData( $subject, [ MonolingualTextValue::TYPE_ID ] ); + +if ( $data->hasSubSemanticData() ) { + foreach ( $data->getSubSemanticData() as $subSemanticData ) { + /** @var \SMWDIBlob $text */ + $textDataItems = $subSemanticData->getPropertyValues( new DIProperty( '_TEXT' ) ); + /** @var \SMWDIBlob $lang */ + $langDataItems = $subSemanticData->getPropertyValues( new DIProperty( '_LCODE' ) ); + ... + } +} +``` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/examples/store.subobject.md b/mediawiki/extensions/SemanticMediaWiki/docs/examples/store.subobject.md new file mode 100644 index 0000000..6d96773 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/examples/store.subobject.md @@ -0,0 +1,73 @@ +## Using Subobject + +```php +$subject = new DIWikiPage( 'Foo', NS_MAIN ); + +$subobject = new Subobject( $subject->getTitle() ); +$subobject->setEmptyContainerForId( 'SomeSubobject' ); + +$dataValue = DataValueFactory::getInstance()->newDataValueByText( + 'SomeProperty, + 'SomeValue' +); + +$subobject->addDataValue( + $dataValue +); +``` + +```php +// Create and store SemanticData object and add the subobject +$semanticData = new SemanticData( $subject ); + +$semanticData->addPropertyObjectValue( + $subobject->getProperty(), + $subobject->getContainer() +); + +ApplicationFactory::getInstance()->getStore()->updateData( + $semanticData +); +``` + +## Using DIContainer + +```php +$subject = new DIWikiPage( 'Foo', NS_MAIN ); + +// Internal subobject reference +$subobjectName = 'SomeSubobject'; + +$containerSubject = new DIWikiPage( + $subject->getDBkey(), + $subject->getNamespace(), + $subject->getInterwiki(), + $subobjectName +); + +// Create container to host property values assignments +// for the particular subobjectName +$containerSemanticData = new ContainerSemanticData( $containerSubject ); + +$dataValue = DataValueFactory::getInstance()->newDataValueByText( + 'SomeProperty, + 'SomeValue' +); + +$containerSemanticData->addDataValue( + $dataValue +); +``` +```php +// Create and store SemanticData object and add the subobject +$semanticData = new SemanticData( $subject ); + +$semanticData->addPropertyObjectValue( + new DIProperty( '_SOBJ' ), + new DIContainer( $containerSemanticData ) +); + +ApplicationFactory::getInstance()->getStore()->updateData( + $semanticData +); +``` \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/README.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/README.md new file mode 100644 index 0000000..3017af5 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/README.md @@ -0,0 +1,97 @@ +## Release notes + +Major releases and feature releases are indicated in **bold**. + +### Semantic MediaWiki 6.x +* **[SMW 6.0.0 release notes](RELEASE-NOTES-6.0.0.md)** (current version) + +### Semantic MediaWiki 5.x +* [SMW 5.0.2 release notes](RELEASE-NOTES-5.0.2.md) +* [SMW 5.0.1 release notes](RELEASE-NOTES-5.0.1.md) +* [SMW 5.0.0 release notes](RELEASE-NOTES-5.0.0.md) + +### Semantic MediaWiki 4.x + +* **[SMW 4.2.0 release notes](RELEASE-NOTES-4.2.0.md)** +* [SMW 4.1.3 release notes](RELEASE-NOTES-4.1.3.md) +* [SMW 4.1.2 release notes](RELEASE-NOTES-4.1.2.md) +* [SMW 4.1.1 release notes](RELEASE-NOTES-4.1.1.md) +* **[SMW 4.1.0 release notes](RELEASE-NOTES-4.1.0.md)** +* [SMW 4.0.2 release notes](RELEASE-NOTES-4.0.2.md) +* [SMW 4.0.1 release notes](RELEASE-NOTES-4.0.1.md) +* **[SMW 4.0.0 release notes](RELEASE-NOTES-4.0.0.md)** + +### Semantic MediaWiki 3.2.x +* [SMW 3.2.3 release notes](RELEASE-NOTES-3.2.3.md) +* [SMW 3.2.2 release notes](RELEASE-NOTES-3.2.2.md) +* [SMW 3.2.1 release notes](RELEASE-NOTES-3.2.1.md) +* **[SMW 3.2.0 release notes](RELEASE-NOTES-3.2.0.md)** + +### Semantic MediaWiki 3.1.x +* [SMW 3.1.6 release notes](RELEASE-NOTES-3.1.6.md) +* [SMW 3.1.5 release notes](RELEASE-NOTES-3.1.5.md) +* [SMW 3.1.4 release notes](RELEASE-NOTES-3.1.4.md) +* [SMW 3.1.3 release notes](RELEASE-NOTES-3.1.3.md) +* [SMW 3.1.2 release notes](RELEASE-NOTES-3.1.2.md) +* [SMW 3.1.1 release notes](RELEASE-NOTES-3.1.1.md) +* **[SMW 3.1.0 release notes](RELEASE-NOTES-3.1.0.md)** + +### Semantic MediaWiki 3.0.x +* [SMW 3.0.2 release notes](RELEASE-NOTES-3.0.2.md) +* [SMW 3.0.1 release notes](RELEASE-NOTES-3.0.1.md) +* **[SMW 3.0.0 release notes](RELEASE-NOTES-3.0.0.md)** + +### Semantic MediaWiki 2.5.x +* [SMW 2.5.8 release notes](RELEASE-NOTES-2.5.8.md) +* [SMW 2.5.7 release notes](RELEASE-NOTES-2.5.7.md) +* [SMW 2.5.6 release notes](RELEASE-NOTES-2.5.6.md) +* [SMW 2.5.5 release notes](RELEASE-NOTES-2.5.5.md) +* [SMW 2.5.4 release notes](RELEASE-NOTES-2.5.4.md) +* [SMW 2.5.3 release notes](RELEASE-NOTES-2.5.3.md) +* [SMW 2.5.2 release notes](RELEASE-NOTES-2.5.2.md) +* [SMW 2.5.1 release notes](RELEASE-NOTES-2.5.1.md) +* **[SMW 2.5.0 release notes](RELEASE-NOTES-2.5.0.md)** + +### Semantic MediaWiki 2.4.x +* [SMW 2.4.6 release notes](RELEASE-NOTES-2.4.6.md) +* [SMW 2.4.5 release notes](RELEASE-NOTES-2.4.5.md) +* [SMW 2.4.4 release notes](RELEASE-NOTES-2.4.4.md) +* [SMW 2.4.3 release notes](RELEASE-NOTES-2.4.3.md) +* [SMW 2.4.2 release notes](RELEASE-NOTES-2.4.2.md) +* [SMW 2.4.1 release notes](RELEASE-NOTES-2.4.1.md) +* **[SMW 2.4.0 release notes](RELEASE-NOTES-2.4.0.md)** + +### Semantic MediaWiki 2.3.x +* [SMW 2.3.1 release notes](RELEASE-NOTES-2.3.1.md) +* **[SMW 2.3.0 release notes](RELEASE-NOTES-2.3.0.md)** + +### Semantic MediaWiki 2.2.x +* [SMW 2.2.3 release notes](RELEASE-NOTES-2.2.3.md) +* [SMW 2.2.2 release notes](RELEASE-NOTES-2.2.2.md) +* [SMW 2.2.1 release notes](RELEASE-NOTES-2.2.1.md) +* **[SMW 2.2.0 release notes](RELEASE-NOTES-2.2.0.md)** + +### Semantic MediaWiki 2.1.x +* [SMW 2.1.3 release notes](RELEASE-NOTES-2.1.3.md) +* [SMW 2.1.2 release notes](RELEASE-NOTES-2.1.2.md) +* [SMW 2.1.1 release notes](RELEASE-NOTES-2.1.1.md) +* **[SMW 2.1.0 release notes](RELEASE-NOTES-2.1.0.md)** + +### Semantic MediaWiki 2.0.x +* **[SMW 2.0.0 release notes](RELEASE-NOTES-2.0.md)** + +### Semantic MediaWiki 1.9.x +* [SMW 1.9.2 release notes](RELEASE-NOTES-1.9.2.md) +* [SMW 1.9.1.1 release notes](RELEASE-NOTES-1.9.1.1.md) +* [SMW 1.9.1 release notes](RELEASE-NOTES-1.9.1.md) +* [SMW 1.9.0.1 release notes](RELEASE-NOTES-1.9.0.1.md) +* [SMW 1.9.0.2 release notes](RELEASE-NOTES-1.9.0.2.md) +* **[SMW 1.9.0 release notes](RELEASE-NOTES-1.9.md)** + +### Semantic MediaWiki 1.8.x and earlier +* [SMW 1.8.x release notes](RELEASE-NOTES-1.8.md) +* [SMW 1.7.1 release notes](RELEASE-NOTES-1.7.1.md) +* [SMW 1.7.0 release notes](RELEASE-NOTES-1.7.md) +* [SMW 1.6.1 release notes](RELEASE-NOTES-1.6.1.md) +* [SMW 1.6.0 release notes](RELEASE-NOTES-1.6.md) +* [SMW 0.1 to 1.5.6 release notes](RELEASE-NOTES-old.md) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.6.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.6.1.md new file mode 100644 index 0000000..af3f862 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.6.1.md @@ -0,0 +1,10 @@ +Released on August 20, 2011. + +* #ask queries now allow printouts (table columns) that are exactly the same. + In previous versions, multiple printouts with the same label would be + collapsed (e.g. {{#ask: [[Catgegory:City]] |?|?|?}} now shows four columns). +* Fixed continue and limit escaping issues on Special:Ask. +* Fixed error occurring for invalid queries with count or debug formats. +* Fixed several small issues with the table format and cleaned it up somewhat. +* Fixed parsing of years for data properties. +* Internationalization improvements and layout tweaks to #smwdoc. \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.6.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.6.md new file mode 100644 index 0000000..2655c60 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.6.md @@ -0,0 +1,50 @@ +Released on July 30, 2011. + +* Full support for synchronizing RDF stores with SMW, and for answering #ask + queries based on this data. The communication happens via SPARQL (1.1), and + all SPARQL-capable stores should be supported. The following settings are + needed in LocalSettings.php: + $smwgDefaultStore = 'SMWSparqlStore'; + $smwgSparqlDatabase = 'SMWSparqlDatabase'; + // The following should be set to the URLs to reach the store: + $smwgSparqlQueryEndpoint = 'http://localhost:8080/sparql/'; + $smwgSparqlUpdateEndpoint = 'http://localhost:8080/update/'; + $smwgSparqlDataEndpoint = 'http://localhost:8080/data/'; // can be empty + The specific support that SMW used to have for the RAP RDF store has been + discontinued. +* The Type namespace has been abolished. Builtin types now are displayed by the + special page Special:Types, and there are no "custom types" any longer. + By default, the Type namespace is gone and existing pages in this namespace + can no longer be accessed. This can be changed by setting + $smwgHistoricTypeNamespace = true in LocalSettings.php before including SMW. +* Changed the way in which units of measurement work. Type:Number now does not + accept any units, and a new type "Quantity" is used for numbers with units. + Units must be declared on the property page (not on the Type page as before), + and only units that have a declared conversion factor are accepted. +* The declaration of Type:Record properties has changed. Instead of a list of + datatypes, the declaration now requires a list of properties that are to be + used for the fields of the record. The declaration is still done with the + property "has fields" as before. Properties must not be used more than once + in has_fields, or the order of values will be random. +* Introduced pre-defined builtin properties for every datatype. For example, + the property String is always of type String and available on all (English) + wikis. This helps to keep some of the old Tpe:Record declarations valid. +* Changed the way parameters in query printers are specified and handled + using the Validator extension. This includes improvements to the parameter + options in the Special:Ask GUI and better error reporting for ask queries. +* Added UNIX-style DSV (Delimiter-separated values) result format. +* Reworked internal data model, cleaning up and re-implementing SMWDataValue and + all of its subclasses, and introducing new data item classes to handle data. + The class SMWCompatibilityHelpers provides temporary help for extensions that + still depend on the old format and APIs. +* Fixed PostgreSQL issues with the installation and upgrade code. +* Added API module (smwinfo) via which statistics about the semantic data can + be obtained. +* Added second parameter to #info that allows chosing either the info or warning + icon. +* Added #smwdoc parser hook that displays a table with parameter documentation for + a single specified result format. +* Fixed escaping issues in the JSON result format. A compatibility breaking change + is that per property an array of values will be returned, even if there is only + one. +* Added SMWStore::updateDataBefore and SMWStore::updateDataAfter hooks. \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.7.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.7.1.md new file mode 100644 index 0000000..ac55e9d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.7.1.md @@ -0,0 +1,24 @@ +Released on March 5, 2012. + +* Added basic support for OpenLink Virtuoso RDF database. In addition to + $smwgDefaultStore = 'SMWSparqlStore', users should set + $smwgSparqlDatabase = 'SMWSparqlDatabaseVirtuoso' and use Virtuoso's SPARQL + endpoint at ./sparql/ for query and update alike. for further remarks and known + limitations, see the file ./includes/sparql/SMW_SparqlDatabaseVirtuoso.php . +* Added ability to sort dates as dates in tables generated by SMW (bug 25768). +* Added "Last editor is" and "Is a new page" special properties (bug 34359). +* When there are only invalid query conditions, query answering is stopped (bug 33177). +* Fixed display of nearby values on Special:SearchByProperty (bug 34178). +* Fixed display of URL values (bug 34312, 34044). +* Fixed warning when browsing certain property pages (bug 34306). +* Fixed failure of SMW_setup --delete when using postgresql (bug 31153). +* Fixed division by 0 error when setting the "Corresponds to" property to 0 (bug 32594). +* Fixed accept header send with SPARQL query requests (bug 32280). +* Fixed unresolved prefixed name in SPARQL queries (bug 33687). +* Fixed issues with modification date property occurring when using SMWSparqlStore (bug 30989). +* Fixed erroneous SPARQL for property value comparison queries (bug 30993). +* Fixed broken +index=x for records (bug 30284). +* Fixed querying of subobjects using 4store as a datastore. +* Fixed issue with namespace internationalization (bug 34383). + +Also see the [SMW 1.7 release notes](RELEASE-NOTES-1.7.md) \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.7.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.7.md new file mode 100644 index 0000000..ab46062 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.7.md @@ -0,0 +1,56 @@ +Released on January 1, 2012. + +* Added native "internal objects" that can be set using #subobject. +* Added support for selecting a default graph when using RDF stores, + configuration called $smwgSparqlDefaultGraph +* Use of native MediaWiki sortable tables for the table formats. +* Added value distribution functionality that can be used by result formats. +* Added validation and manipulation of the 'format' parameter using Validator. +* Added 'class' parameter to the 'table' format, which allows setting the CSS + class. +* Added automatically-generated CSS classes for rows and cells in 'table' format. +* Added alpha version of native SMW Ask API with modules 'ask' and 'askargs'. +* Added alpha version of a new ask query interface: Special:QueryCreator. +* Added setting to choose which optional special properties are enabled ($smwgPageSpecialProperties). +* Added creation date special property (disabled by default) (bug 32165). +* Added support for altitudes in geographic coordinates (bug 32698). +* Added definitions for missing params (sort, order, searchlabel) to the base query printer. +* Added automatic invocation of the SMW_setup maintenance script when running + update.php (for MW >= 1.19). +* Added support for the Page Schemas extension. +* Removed defunct "SMWLight" files. +* Fixed separator and filename parameters for the DSV format. +* Fixed display of properties of type URL (bug 30912). +* Fixed hide query functionality on Special:Ask (bug 30768). +* Fixed display of internal SMW helper constants in certain queries (bug 30969). +* Fixed some issues with the category result format (including bug 30761). +* Fixed email validation issue (bug 32295). +* Fixed incorrect handling of sort and order parameters on Special:Ask (bug 32706). +* Fixed display of images to old behavior after a recent regression. +* Fixed fatal error in the concept cache maintenance script (bug 32592). +* Fixed factbox links to Special:SearchByProperty containing numerical numbers for + wikis in languages with the comma as decimal separator instead of a dot. +* Fixed the "hide incoming properties" link on Special:Browse. +* Fixed several more issues not listed here. +* Dropped compatibility with MediaWiki 1.15.x (and earlier). +* Dropped compatibility with old-style (SMW < 1.6) query printers. +* Full compatibility with MediaWiki 1.18 and foreward-compatibility with 1.19. + +== SMW 1.7.0.2 == + +Released on January 16, 2012. + +* Fixed creation of concept cache and display of matching objects on concept pages (bug 32592, 32718). +* Fixed fatal error occurring for some invalid property definitions (bug 33652). +* Fixed error in RSS when using creator or date parameters (bug 33721). +* Fixed incorrect offset of export formats (bug 33726). + +== SMW 1.7.0.1 == + +Released on January 9, 2012. + +* Fixed bug in "further results" links causing the main column to be displayed twice on Special:Ask (bug 33473). +* Fixed incorrect case-sensitivity of the format parameter (bug 31138). +* Fixed internationalization of magic words. +* Fixed offset and limit value in further results links (bug 33575). + diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.8.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.8.md new file mode 100644 index 0000000..cf3f358 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.8.md @@ -0,0 +1,79 @@ +Semantic MediaWiki 1.8 is a stable release. + +Released December 2nd, 2012. + +=== Compatibility changes === + +* Changed minimum MediaWiki version from 1.16 to 1.17. +* Full compatibility with MediaWiki 1.19 and forward-compatibility with 1.20. +* Changed minimum Validator version from 0.4 to 0.5. +* The structure of the JSON result format has been altered (bug 37418). +* The default database layout has changed. Please read the upgrade instructions for existing sites. + +=== New features === + +* The #subobject function now supports the use of empty subobject names ("-" has the same effect). A new anonymous subobject will be created in this case. (bug 36634) +* Added atom printer (bug 38636) +* SMW now collects data about all queries, and this data can be queried to get an overview of queries used on the wiki. Information about queries is stored in subobjects of the page they are on. The property [[Property:Has query]] links a page to a query. The query subobject currently holds values for the following properties: [[Property:Query string]], [[Property:Query format]], [[Property:Query size]], [[Property:Query depth]]. +* Added new info tooltip (bug 37361) +* Added two new output formats for properties of type Time, "Gr" and "Jl", to set the desired calendar model for display in #ask results. If nothing is given, SMW will select the calendar based on the date as before (Julian calendar defaults from until 4th Oct 1582). As before. the same behavior is used when entering dates, and "Jl" and "Gr" also work in this case. +* Added new output format "nowiki" to properties of type URL, which will format a URL in such a way that it will not be autolinked by MediaWiki. + +=== Enhancements === + +* Significanlty less database write activity on wiki edits that do not change semantic data +* Less database read activity (esp. for displaying long query results and special pages) due to new and improved caching mechanisms +* Improved database table layout for more efficient access and better use of storage space +* Significant performance improvements for Special:Properties and Special:UnusedProperties +* Support for configuring dedicated tables for more efficient handling of frequently used properties, see http://semantic-mediawiki.org/wiki/Fixed_properties +* Improved JSON export (bug 37418). +* Improved Special:Ask UI. +** Enabled Special:Ask parameters form to be collapsible. +** Added individual format help links to enable access to online help manuals. +* Added continuation support to the Ask API. +* Added possibility to change the appearance of the service link icon via CSS (bug 40644) + +=== Dropped features === + +* Special:QueryCreator got disabled pending fixes. +* Values of type Time can no longer be selected by string pattern matching (the string was unspecified and has an internal format that is not useful to match against). This safes database memory (fewer indexes). + +=== Bug fixes === + +* Fixed automatic running of SMW updating script when running maitenance/update.php. +* Fixed page parameter handling on Special:ExportPDF (bug 35180). +* Fixed handling of #set_recurring_event for 'month' and 'year' time units. +* Fixed error on Special:URIResolver (bug 35643). +* Fixed 'badtitle' error on Special:URIResolver (bug 39967). +* Fixed alternative query source ($smwgQuerySources) (bug 38292). +* Fixed getMaxIncludeSize() on a non-object error in Special:Ask (bug 40650) +* Fixed markup issue with the display of service links (bug 39445) +* Fixed tooltip size issue (bug 29764) +* Fixed Special:Ask autocomplete issue (bug 40676) +* Fixed serialisation of Category namespace queries (bug 37065) +* Fixed non-linked output of URL values in query results (bug 39392) +* Avoid malformed SPARQL when default graph is not set (bug 37575) +* Do not batch process pages when using SMW_refreshData.php with delay option (bug 38136) +* Avoid use of hash_init PHP functions; use md5() instead (bug 38185) +* Fixed parsing of malformed printout requests that could cause exception (bug 38489) +* Don't confuse Julian an Gregorian dates internally (bug 41126) +* Avoid MediaWiki problem that can cause errors when refreshing data and using _LEDT (last editor is) (bug 35962) +* Fixed Special:PageProperty, which was broken + +=== Technical improvements and code quality === + +* Added tests for the query processor, the store, data items and result printers, including base test classes for the later two that can be used by extensions. +* Refactored large portions of the SQLStore implementation (SMWSQLStore3). + * More, shorter files for various task groups (SQLStore3_Writers, SQLStore3_Readers, SQLStore3_SpecialPageHandlers, SQLStore_SetupHandler, and others) + * Different types of data now handled modularly by DIHandler classes + * Completely rewritten writing methods that compute a full diff on a database level to decide which write activities are needed (if any) +* No more inline CSS and JavaScript on special pages (now all resource loader modules). +* Added SMWExportPrinter class to facilitate creating export printers and simplify handling code. +* Added SMWIResultPrinter interface to type hint result printers against. +* Migrated Validator parameter definitions to new Validator 0.5 array style. +* Transformed SMW_custom.css, SMW_tooltip.js, and the skin folder to comply with the ResourceLoader environment +* Made query link generation completely generic. Links for all formats will now contain all provided arguments. + +=== Extended translations === + +As usual, translations have been extended thanks to the [[Translatewiki.net|Translatewiki.net project]]. diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.0.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.0.1.md new file mode 100644 index 0000000..ae0ea7e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.0.1.md @@ -0,0 +1,19 @@ +# Semantic MediaWiki 1.9.0.1 + +Released January 6th, 2014. + +### New features + +* (Issue 82) It is now possible to view all SMW settings via Special:SMWAdmin. + +### Bug fixes + +* (Bug 59204) Fixed removal of properties on deletion of pages in custom namespaces. +* (Issue 73) Fixed double table prefixing issue causing problems when using SQLite. +* (Issue 84) Fixed the link to the INSTALL file on Special:SMWAmin. +* (9ac5288) Fixed reference to DataTypeRegistry in the SPARQL store. + +### New configuration parameters + +* [$smwgOnDeleteAction](https://semantic-mediawiki.org/wiki/Help:$smwgOnDeleteAction) +(incl. $smwgDeleteSubjectAsDeferredJob, $smwgDeleteSubjectWithAssociatesRefresh) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.0.2.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.0.2.md new file mode 100644 index 0000000..c915fdd --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.0.2.md @@ -0,0 +1,11 @@ +# Semantic MediaWiki 1.9.0.2 + +Released January 17th, 2014. + +### Bug fixes + +* #85 Fixed compatibility issue with PHP 5.3 on Special:SMWAdmin and added regression test +* #86 Fixed compatibility with older MediaWiki versions by supporting legacy job definitions +* #89 The resource paths will now be correct event if SMW is put on a non-standard location +* #97 Fixed strict standards notice in the SQLStore +* #99 Fixed issue occurring in the SQLStore for people using mysqli and MediaWiki 1.22 or later \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.1.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.1.1.md new file mode 100644 index 0000000..200da60 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.1.1.md @@ -0,0 +1,11 @@ +# Semantic MediaWiki 1.9.1.1 + +Released February 28th, 2014. + +### Bug fixes + +* #183 Fixed 1.9.1 regression in resource paths that caused resouces not to load + +### Internal enhancements + +* #200 Improved the usage of "InternalParseBeforeLinks" to indicate whether semantic data have been processed or not diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.1.md new file mode 100644 index 0000000..0b1a6f1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.1.md @@ -0,0 +1,44 @@ +# Semantic MediaWiki 1.9.1 + +Released February 9th, 2014. + +### New features + +* #162 Added possibility to create `_MEDIA` [(special property "Media type")](https://semantic-mediawiki.org/wiki/Help:Special_property_Media_type) and `_MIME` +[(special property "MIME type")](https://semantic-mediawiki.org/wiki/Help:Special_property_MIME_type) +property annotation when uploading a file (This feature can only be used with appropriate +[`$smwgPageSpecialProperties`](https://www.semantic-mediawiki.org/wiki/Help:$smwgPageSpecialProperties) +settings after running the "update.php" script.) +* #173 Extended the [factbox](https://semantic-mediawiki.org/wiki/Factbox#The_factbox) in +order to display "historical" data when used by `action=history` +* #180 Added further CSS classes for improved customization of special page +["Ask"](https://semantic-mediawiki.org/wiki/Help:Special:Ask) + +### Bug fixes + +* #80 Fixed issue with running the system tests on a MySQL based setup +* #110 Fixed type mismatch issue in the caching code of SQLStore3 +* #121 (Bug 60336) Fixed sortkey issue for multibyte characters in ListResultPrinter +* #144 (Bug 60284) Fixed record data type issue when using #set/#subobject +* #145 Fixed PHP strict standards notice in SMWParamFormat::formatValue +* #146 Fixed 1.9.0.2 regression in resource paths that caused the SMW badge and JS+CSS to +not be loaded on some wikis +* #148 Fixed regression that made data type labels case sensitive +* #151 (Bug 50155) Fixed issue with category hierarchies on SQLite +* #164 (Bug 19487) Fixed update of predefined properties when uploading a file +* #166 Fixed Factbox display issue during preview and edit mode +* #170 Fixed 1.9.0 regression of [special property "Is a new page"](https://semantic-mediawiki.org/wiki/Help:Special_property_Is_a_new_page) (`_NEWP`) +(Run ["SMW_refreshData.php"](https://semantic-mediawiki.org/wiki/Help:SMW_refreshData.php) +to amend falsely set values.) + +### Internal enhancements + +* #112 Added a date data type regression test +* #118 Added a possibility to inject a Revision into the ContentParser +* #119 Added a LinksUpdate integration test +* #131 Added internationalization support for special property "Query duration" +* #132 Added smoke test for the special language files +* #142 Changed the Norwegian language code (Bokmål variant) from "no" to "nb" for +L10n of datatypes, special properties, etc. +* #144 Added a record data type regression test +* #151 Added a category hierarchy regression test diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.2.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.2.md new file mode 100644 index 0000000..f1c5811 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.2.md @@ -0,0 +1,37 @@ +# Semantic MediaWiki 1.9.2 + +Released April 18th, 2014. + +### New features + +* #199 Added [object-Id lookup](https://www.semantic-mediawiki.org/wiki/Help:Object_ID_lookup) to SMWAdmin +* #217 Extended ListResultPrinter to make `userparam` parameter available to intro and outro templates and introduced [additional parameters](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/217) +* #243 Added `--query` parameter to the `SMW_refreshData.php` maintenance script + +### Bug fixes + +* #203 Fixed undefined index in connection with `$smwgQuerySources` +* #215 (Bug 62150) Fixed malformed query order in SparqlQueryEngine +* #272 #276 Fixed ConceptCache on SQLite +* #273 Fixed footer logo path for windows based installations + +### Deprecated + +* #187 Use of `SMW_conceptCache.php` has been deprecated in favour of `rebuildConceptCache.php` +* #244 Use of `SMW_refreshData.php` has been deprecated in favour of `rebuildData.php` + +### Internal enhancements + +* #195 Improvement of handling configuration settings in getPropertyTables +* #204 Added update job for new redirects +* #207 Removed SMWParamSource and added a `$smwgQuerySources` integration test +* #218 Extended SparqlStore to inject a SparqlDatabase to enable basic test coverage +* #226 Added ExecutionTimeTestListener to report long running tests +* #227 Moved all job related classes into the `SMW\MediaWiki\Jobs\` namespace +* #234 Added redirects regression test +* #236, #265 Removed wfGetDB from SMWSQLStore3Writers and extended test coverage +* #244, #253, #256, #267, #268 Refactored and migrate `SMW_refreshData.php` to `rebuildData.php` +* #248 Added support for the new MediaWiki i18n JSON system +* #256 Improved data selection for DataRebuilder filters +* #262 Improved SQLStore upgrading for Postgres +* #270 Removed SQLStore3::getPropertyTables as static caller diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.md new file mode 100644 index 0000000..ef5dd77 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-1.9.md @@ -0,0 +1,142 @@ +# Semantic MediaWiki 1.9 + +Released January 3rd, 2014. + +### Platform compatibility changes + +* Changed minimum PHP version from 5.2. to 5.3.2. +* Changed minimum MediaWiki version from 1.17 to 1.19. +* Full compatibility with MediaWiki 1.19, 1.20, 1.21, 1.22 and forward-compatibility with 1.23. +* Changed minimum Validator version from 0.5 to 1.0. +* Added beta support for PostgreSQL. + +### New features + +* SMW (and its dependencies) can now be installed via [Composer](https://getcomposer.org/) +* Added maintenance script [rebuildPropertyStatistics.php](https://semantic-mediawiki.org/wiki/Help:RebuildPropertyStatistics.php) to rebuild the property statistics +* (271864f) The property type String is now an alias for Text and has no more length restrictions +* (38499a8) Special:Statistics now shows a "semantic statistics" version (only when using a recent version of MediaWiki) +* (ed52df7) (Bug 50844) Special:Properties now provides a form to search user-defined properties +* (a949f04) (Bug 33181) Add page [Special:Concepts](https://semantic-mediawiki.org/wiki/Help:Special:Concepts) that lists available concepts +* (0c971f8) (Bug 46458) Extend smwinfo API module to provide additional information +* (b8aea6c) (Bug 48840) Add a smw-admin right to enable restricted access to Special:SMWAdmin +* (9714d04) (a33411f) Add new "browsebysubject" API module to fetch semantic data for a given subject + +### Enhancements + +* (Bug 36309) and (Bug 39019) Add +sep= as multiple value separator for #set and #subobject parser function +* (6dd845e) (Bug 34477) Add cache information to concept pages +* (Bug 34172) Add [individual CSS class](https://www.semantic-mediawiki.org/wiki/Help:Further_results) injection for further result links +* (I2e509e) Improved efficiency of property statistics rebuilding script +* (8bcee83) (Bug 44696) Fix XML output for AskApi +* (bb35e8a) (Bug 47123) Aggregate numbers based on the label/group +* (5cda766) (Bug 46930) SMWSQLStore3Writers::changeTitle only create redirects when appropriate +conditions are met +* (e4a5fb8) (Bug 31880) Formatting numbers in tables based based on a customizable typeId +* (e4a2035) Modify SMW\RecurringEvents to use a subobject as datamodel to represent +individual events within a page +* (7d1e2ad) (Bug 34782) Add note parameter to #info parser function + +#### New configuration parameters + +* [$smwgEnabledSpecialPage](https://semantic-mediawiki.org/wiki/Help:$smwgEnabledSpecialPage) +* [$smwgQueryProfiler](https://semantic-mediawiki.org/wiki/Help:$smwgQueryProfiler) +* [$smwgShowHiddenCategories](https://semantic-mediawiki.org/wiki/Help:$smwgShowHiddenCategories) +* [$smwgFactboxUseCache](https://semantic-mediawiki.org/wiki/Help:$smwgFactboxUseCache), [$smwgFactboxCacheRefreshOnPurge](https://semantic-mediawiki.org/wiki/Help:$smwgFactboxCacheRefreshOnPurge) +* [$smwgPropertyZeroCountDisplay](https://semantic-mediawiki.org/wiki/Help:$smwgPropertyZeroCountDisplay), [$smwgPropertyLowUsageThreshold](https://semantic-mediawiki.org/wiki/Help:$smwgPropertyLowUsageThreshold) +* [$smwgFixedProperties](https://semantic-mediawiki.org/wiki/Help:$smwgFixedProperties) +* [$smwgAutoRefreshOnPageMove](https://semantic-mediawiki.org/wiki/Help:$smwgAutoRefreshOnPageMove), [$smwgAutoRefreshOnPurge](https://semantic-mediawiki.org/wiki/Help:$smwgAutoRefreshOnPurge) +* [$smwgCacheType](https://semantic-mediawiki.org/wiki/Help:$smwgCacheType), [$smwgCacheUsage](https://semantic-mediawiki.org/wiki/Help:$smwgCacheUsage) + +### Bug fixes + +* The property statistics rebuilding is no longer done whenever you run update.php. +* (Bug 42321) Fixed issue frequently causing notices in SQLStore3 +* (5fdbb83) Fix offset display in Special:Ask +* (9113ad1) (Bug 47010) SMWInfoLink +* (af0cbe0) Fix escaping issue on Special:Ask +* (ba74804) Fix construction of SMWExpLiteral +* (d16a103) (Bug 45053) Fix quantity display support in SMW\ListResultPrinter +* (9b2b5c7) (Bug 44518) Do not display <li> elements for |format=list +* (Bug 43932) Fix html tag support for non-list results in SMW\ListResultPrinter +* (Bug 44275) Fix .data( 'sortkey' ) support in SMW\ListResultPrinter +* (fcb7da9) (Bug 42324) fix SQlite support in sqlstore3 +* (3507f84) (Bug 21893) Fixed queries that use the like comparator for properties with a restricted +set of values + +### Compatibility changes + +* Deleted pre SMW 1.5.1 entry point (includes/SMW_Settings.php), the main entry point is SemanticMediaWiki.php +* (I17a3e0) Support for quantity export via API and JSON format +* (50c5109) Removed old storage implementation SMWSQLStore2, superseded by SMWSQLStore3 in SMW 1.8 +* (I5db911) #set_recurring_event using subobjects (changes query behavior +for recurring events; for more see the help page on [recurring events](https://semantic-mediawiki.org/wiki/Help:Recurring_events "Recurring events") + +### Deprecated classes + +If not noted otherwise, deprecated methods or classes will be removed in SMW 1.11. + +* (b4664be) smwfIsSemanticsProcessed was replaced by SMW\NamespaceExaminer +* (3ba701f) smwfEncodeMessages was replaced by SMW\Highlighter, SMW\MessageFormatter +* SMWParseData was replaced by a non-static SMW\ParserData class +* SMWListResultPrinter, SMWResultPrinter, SMWSubobject, SMWSet +* SMWFeedResultPrinter, SMWDISerializer +* SMWDIString, SMWStringLengthException, SMWSetRecurringEvent + +### Added or changed classes + +* (eb764db) Add SMW\PropertyAnnotatorDecorator for handling individual "standard" properties +* (f33fd12) Add SMW\ExtensionContext and \SMW\ContextAware +* (40e7572) Renamed SMWDISerializer to \SMW\Serializers\QueryResultSerializer +* (a0b08fe) Add SMW\Serializes\SemanticDataSerializer in order for SemanticData to be serializable +* (02635a1) Replace SkinTemplateToolboxEnd hook with SMW\BaseTemplate +* (ec5dd46) Add SMW\SimpleDependencyBuilder and SMW\SharedDependencyContainer as simple framework that +allows for individual object factoring and dependency injection +* (92b67bd) Add SMW\TableFormatter for the table query printer +* (5a33d2d) Add SMW\CacheHandler to separate MediaWiki specific cache injection +* (395b584) Add ResourceLoaderGetConfigVars to populate SMW related configuration details for JavaScript +* (7c60e50) Add SMW\ApiResultPrinter to support query printers to use Ajax/WebApi interface for +query result updates +* (cb6c6ad) SMW\ResultPrinter class turn RequestContext aware + +The following classes and interfaces were re-factored and/or added in order to promote testability: + +* (e0f3f4d) Rename and re-factor \SMW\RefreshJob +* (I3b41d4) Rename and re-factor \SMW\UpdateJob +* (6d5a3c5) Add SMW\JobBase to enable dependency injection +* (058c2fc) Add SMW\Setup to separate extension registration and initialization +* (87b214f) Add SMW\Settings class to remove GLOBAL state and enable injection of individual configuration +details during runtime +* (5a82da8) Re-factor SMW\Factbox and add SMW\FactboxCache to minimize content parsing +* (24cca37) Add SMW\Test\MockObjectBuilder to easily manage MW and SMW mock objects +* (71dbba1) Add SMW\ObservableDispatcher to enable Observes to act as an observable subject itself +* (dc28899) (18d17a5) Add SMW\StoreUpdater, SMW\UpdateDispatcherJob, and SMW\PropertyTypeComparator +to separate responsibilities during the update +* (6c06567) Add SMW\SQLStore\PropertyTableDefinitionBuilder to separate build definition +* (2164a25) Add \SMW\ResultCollector interface to support cacheable results when executing Special:Statistics or Special:Properties +* (c8a2f97) (Bug 51091) Rename and re-factor SMW\Api\Ask and SMW\Api\AskArgs + +### Removed features + +* (6f7625f) Remove Special:QueryCreator +* (5a3f6ed) (Bug 50755) Remove MigrationJob/SMWMigrate +* (f9cff2b) Remove smwfLoadExtensionMessages +* (a957596) SMW\JsonResultPrinter remove obsolete serialization + + +### Platform stability + +* Over 130 PHPUnit tests have been added +* Over 10 QUnit tests have been added +* The tests now [run on TravisCI](https://travis-ci.org/SemanticMediaWiki/SemanticMediaWiki) + * Compatibility is now ensured against all supported MediaWiki and PHP versions + * Compatibility is now ensured for all supported databases + +### Documentation + +The documentation bundled with the SMW source code has been updated. It can be found in the docs folder. + +### Extended translations + +As usual, translations have been extended thanks to the [Translatewiki.net project](https://translatewiki.net). +In addition, the core strings (SMW properties and datatypes) for Slovak have been updated. diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.0.md new file mode 100644 index 0000000..9a43539 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.0.md @@ -0,0 +1,127 @@ +# Semantic MediaWiki 2.0 + +Released August 4th, 2014. + +## Compatibility changes + +Semantic MediaWiki 2.0 is compatible with MediaWiki 1.19 up to MediaWiki 1.23, and possibly later +versions. Support for both MediaWiki 1.23 and MediaWiki 1.24 was improved compared to SMW 1.9. + +PHP compatibility remains the same as in SMW 1.9: all versions from PHP 5.3.2 to PHP 5.6.x. + + +For a full overview, see our [compatibility matrix](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/COMPATIBILITY.md). + +## Quality and stability improvements + +A great deal of effort has been put into ensuring both existing and new features work well. +Not just at present, but also in future releases. And not just with MySQL and one version of +MediaWiki, but on all platforms we support. This dedication to quality has resulted in many +bugs being discovered and fixed, and makes future regressions much less likely. + +Continuous integration is now an integral part of the development process behind SMW. As of +the 2.0 release, SMW has over 2300 automated tests, which cover two thirds of the codebase. +These tests are run automatically for every change made to the code, on machines with different +databases, different versions of PHP, different SPARQL stores and different versions of MediaWiki. + +## Semantic Versioning + +As of the 2.0 release, Semantic MediaWiki adheres to the [Semantic Versioning standard](http://semver.org/). +This makes our version numbers more meaningful and makes it easier for administrators to determine +if a new release is relevant to them. + +## Improved SPARQLStore support + +[Semantic MediaWiki 1.6](http://www.semantic-mediawiki.org/wiki/SMW_1.6#Synchronizing_SMW_with_RDF_stores) +introduced support for data synchronization with RDF back-ends. SMW 2.0 makes this functionality a +first class citizen through many enhancements and stability improvements. + +* New and full support for [Jena Fuseki](http://jena.apache.org/) 1.0 +* Enhanced and full support for [Virtuoso](https://github.com/openlink/virtuoso-opensource) 6.1 +* Enhanced support for [4store](https://github.com/garlik/4store) 1.1 + +The [`smwgSparqlDatabase`](https://www.semantic-mediawiki.org/wiki/Help:$smwgSparqlDatabase) setting +introduced in 1.6 has been deprecated in favour of +[`$smwgSparqlDatabaseConnector`](https://www.semantic-mediawiki.org/wiki/Help:$smwgSparqlDatabaseConnector) +(#342) to avoid arbitrary class assignments in `$smwgSparqlDatabase` (now only used to assign custom +connectors). + +Unit and integration tests were given extra focus together with a continuous integration of +[Jena Fuseki](http://jena.apache.org/) (1.0.2) (#337) and [Virtuoso opensource 6.1](https://github.com/openlink/virtuoso-opensource) (#394) to ensure that compatibility and functional +parity are going hand in hand with the rest of SMW. (Unfortunately `4Store` currently does not run +on the continuous integration platform, for details see [garlik#110](https://github.com/garlik/4store/issues/110) +but tests have been run successfully with a local `4store` instance). + +At this moment, the only RDF store to be tested and to support [SPARQL 1.1](http://www.w3.org/TR/sparql11-query/) +is `Jena Fuseki` therefore other stores may not support all `query features`. For details to +the testing environment and its configuration, see the [README](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SPARQLStore/README.md) +file. + +## Improved subobject support + +Support for subobjects has been added to the RDF export. This new capability is used by the RDF +store functionality to also synchronize subobjects. (#344) + +Subobjects now support sorting via the `@sortkey` annotation that stores an individual sortkey +per subobject. (#225) + +## Notable bug fixes + +* #279 Fixed undefined index in `DataTypeRegistry::getDefaultDataItemTypeId` +* #282 Output a message instead of an exception in `Special:WantedProperties` for unknown predefined properties +* #308 Fixed caching issue in `DataRebuilder` for duplicate title objects +* #312 Fixed fatal error in `CategoryResultPrinter` for when a mainlabel is hidden +* #322 Fixed file names containing spaces or non-ASCII characters for for downloadable result formats (csv, excel) +* #379 Modernized `dumpRDF.php` while deprecating the use of `SMW_dumpRDF.php` (bug 35679) +* #425 Deprecated `SMW_setup.php` in favour of `setupStore.php` +* #444 Fixed language namespace alias issue +* #420 Extended `ContentParser` to mitigate issues caused by the 62856 bug in MW 1.24+ +* #405 Added a compatibility fix to mitigate issues caused by the `RefreshLinksJob` in MW 1.23+ + +### SPARQLStore + +- #291 Fixed call to undefined method in `SPARQLStore` +- #338 Fixed exception in `ResultParser` for an invalid datatype (bug 62218) +- #385 Fixed '#' encoding for subobjects in `SMWExporter::findDataItemForExpElement` to enable `SPARQLStore` result display +- #387 Fixed `SPARQLStore` namespace query support (e.g `[[:+]]` ) +- #415 Fixed `SPARQLStore` usage for `rebuildConceptCache.php` and `rebuildPropertyStatistics.php` +- #460 Fixed `SPARQLStore` subobject sub query and pre-defined property query support + +## Behind the scenes + +SMW 2.0 continues to convert its classes to use PHP namespaces in order to separate responsibilities +(#398, #404, #407, #409, #410, #411, #412, #416, #417, #418, #419, #421) and to be able to support +[PSR-4](http://www.php-fig.org/psr/psr-4/) in future. + +* All `job` related classes of been moved to `SMW\MediaWiki\Jobs` +* All `hook` related classes of been moved to `SMW\MediaWiki\Hooks` +* All `api` related classes of been moved to `SMW\MediaWiki\Api` +* All `SPARQLStore` related classes now reside in `SMW\SPARQLStore` +* `SMWSparqlStore` and `SMWSparqlDatabase` where moved into the `SMW\SPARQLStore` namespace + +Other internal enhancements or changes include: + +* #278 Changed the `PropertyStatisticsTable` interface +* #289 Added [`CONTRIBUTING.md`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/CONTRIBUTING.md) for better contributor guidance +* #307 Added `removeDuplicates` option to `UpdateJob` +* #310 Fixed autoloading for `QueryPrinterRegistryTestCase` +* #311 Removed `MediaWikiTestCase` dependency +* #315 Updated jquery.qTip2 from v2.0.0 to v2.2.0 (Mar 17 2014) +* #332 Added the number of pages and percentage done to report messages when rebuilding selected pages +* #366 Extended `Sql3StubSemanticData` to load suobjects on request and introduced a `__sob` datatype for subobjects +* #382 Extended interface to support `format=count` information in `QueryResult` +* #453 Added [`COMPATIBILITY.md`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/COMPATIBILITY.md) for better user guidance + +Deprecated classes or scripts: + +* `SMW_conceptCache.php` +* `SMW_dumpRDF.php` +* `SMW_refreshData.php` +* `SMW_setup.php` +* `SMWSparqlStore` +* `SMWSparqlDatabase` +* `SMWIResultPrinter` + +Removed classes or scripts: + +* `SMWParseData` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.0.md new file mode 100644 index 0000000..ccf1dc3 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.0.md @@ -0,0 +1,92 @@ +# Semantic MediaWiki 2.1 + +Released on January 19th, 2015. + +## Highlights + +### Support for semantic queries in Special:Search + +This release adds support for semantic queries run directly from MediaWiki's standard search. You +can enable this feature by setting `$wgSearchType` to ["SMWSearch"](https://semantic-mediawiki.org/wiki/Help:SMWSearch). +The related configuration parameter [``$smwgFallbackSearchType``](https://semantic-mediawiki.org/wiki/Help:$smwgFallbackSearchType) +allows specifying which search engine to fall back to in case "SMWSearch" returns no results. (#450, #496, #505) + +### SPARQLStore improvements + +The SPARQLStore now supports concept queries (#696) and regex like queries (`[[Url::~http://*query=*]] OR [[Url::~*ccc*]]`) for Page and URL values (#679). + +Notable performance improvements and many other fixes (can be found in the bug fix list) have been +made to broaden the SPARQLStore support. + +### Enhanced platform support + +SMW has partially supported PostgreSQL for a long time. This new release brings SMW's PostgreSQL +support to the same level as MySQL and SQLite, making it the third fully supported relational database. + +HHVM (HipHop Virtual Machine) 3.3 or above is now supported along with all previously supported PHP +versions. + +Although earlier versions of SMW probably work with MediaWiki 1.24, this new release officially +supports it. + +## New features + +* #546 Concepts can now be nested (bug 15316) +* #537 Modernized [`Special:SearchByProperty`](https://semantic-mediawiki.org/wiki/Help:Special:Search_by_property) interface +* #613 Added `subobject` parameter to the `BrowseBySubject` API module and imporved resolving of circular redirects +* #620 Added `--page` as export option to the [`dumpRDF.php`](https://semantic-mediawiki.org/wiki/Help:DumpRDF.php) maintenance script +* #633 Made ouput decoding for uri's human readable (bug 35452) +* #643 Added `--runtime` option to [`rebuildData.php`](https://semantic-mediawiki.org/wiki/Help:RebuildData.php). It allows you to see how much time was spend and how much memory was used. +* #659 Added [``$smwgEnabledEditPageHelp``](https://semantic-mediawiki.org/wiki/Help:$smwgEnabledEditPageHelp) option that enables showing a contextual help text on the edit page +* #664 Enabled semicolon escaping for record-type values (`\;`) (bug T17732) +* #672 Added `Special:Log` support for events enabled in `smwgLogEventTypes` + +## Bug fixes + +* #500 Fixed the `SPAPRQLStore` to return a `FalseCondition` instead of an exception for not supported data types (e.g `Geo`) +* #520 Fixed the `SPAPRQLStore` query selection for subobjects used with a namespace condition +* #543 Removes invalid category value links to `SearchByProperty` on `Special:Browse` (bug 33449) +* #537 Fixed parameter encoding in `Special:SearchByProperty` for hyphens and spaces (bug 16150) +* #554 Enhanced concept pages to provide time and date of the last update +* #566 Fixed the `SPARQLStore` query result display for moved pages (a.k.a. "gost" pages) +* #601 Fixed movability for predefined property pages +* #615 Fixed data display inconsistency for pre-existing redirects +* #617 Fixed circular `UpdateJob` caused by redirects +* #619 Fixed exception in `dumpRDF.php` caused by resolving a subobject for a redirect +* #622 Fixed cache id mismatch for redirects in `SQLStore` +* #622 Fixed exception for when a `null` is returned by `ExportController::getSemanticData` +* #627 Enhanced `SPARQLStore` XML result parser to support `Virtuoso` singelton response +* #618 Fixed subobject disjunctive/conjunctive subquery handling +* #628 Fixed named subobject encoding in the `Exporter` to support accented characters +* #630 Fixed browse link generation for wikipages in `Special:Browse` +* #638 Fixed the hard-coded upper bound for the offset option of an inline query by replacing it with configuration parameter [```$smwgQUpperbound```](https://semantic-mediawiki.org/wiki/Help:$smwgQUpperbound) +* #638 Fixed `postgres` temporary table generation issue (bug 34855, #455, #462) +* #640 Fixed `QueryProcessor` to allow query conditions to contain `=` (bug 32955) +* #641 Removes service info links from the `Factbox` +* #654 Fixed broken field detection in record-type caused by html encoded strings (bug T23926) +* #656 Fixed `#REDIRECT` detection in MW 1.24+ +* #661 Fixed regex search `(~/!)` for page-type property values (bug T36665, T49073, T33151, T35854) +* #674 Fixed regex search support for uri-type property values +* #683 Fixed invalid `:smw-redi` marker when `#REDIRECT` is removed manually +* #694 Fixed probable race condition for `SQLStore`(`postgres`) when creating temporary tables +* #702 Fixed http header in `SPARQLStore` to be Sesame complaint + +## Internal changes + +* #486 Added continuous integration support for for `Jena Fuseki` 1.1.1 +* #487, #576, #600 Added an internal cache to improve `SPARQLStore` redirect and export lookup performance +* #512, #521 Added benchmark tests for different components such as job-queue, maintenance script, queries etc. +* #523 Disabled the Factbox display for a `delete action` and re-enable the Factbox for an undeleted page +* #532 Added `UrlEncoder` to recognize all special characters when creating a manual link to `Special:Browse` +* #534 Added a value hash to `SQLStore::fetchSemanticData` to ensure that only distinct values are displayed +* #557 Added `SMW::Store::BeforeQueryResultLookupComplete` and `SMW::Store::AfterQueryResultLookupComplete` hook +* #590, #596 Added `CompoundConditionBuilder` and `ConditionBuilderStrategyFinder` to the `SPARQLStore` +* #645 Added `RedirectInfoStore` to isolate access to redirect information and cache info requests +* #646 Improved error message handling for the `_num` data type +* #665 Replaced arbitrary DB access in `Store::updateData` with `PageUpdater::doPurgeParserCache` +* #667 Added `Database::beginTransaction` and `Database::commitTransaction` +* #670 Added `SMW::SQLStore::BeforeChangeTitleComplete` hook +* #673 Extended `DataValueFactory` to ignore `$wgCapitalLinks` settings for the property namespace +* #678 Added `PropertyRegistry` to remove global state from `DIProperty` +* #668 Changed `SQLStore` `iw` table field specification from `VARCHAR(32) binary` to `VARBINARY(32)` +* #707 Added continuous integration support for `openrdf-sesame` 2.7.14 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.1.md new file mode 100644 index 0000000..130daeb --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.1.md @@ -0,0 +1,9 @@ +# Semantic MediaWiki 2.1.1 + +Released on March 2nd, 2015. + +## Bug fixes + +* #861 Fixed owl property export declaration +* #863 Fixed missing interwiki encoding for the RDF export +* #864 Fixed empty searchlabel raw wikitext display for a QueryResultPrinter with limit=0 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.2.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.2.md new file mode 100644 index 0000000..e62e56c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.2.md @@ -0,0 +1,9 @@ +# Semantic MediaWiki 2.1.2 + +Released on March 28th, 2015. + +## Bug fixes + +* #882 Fixed exception in `SMWExportController` caused by an empty reference +* #885 Fixed pre tag rendering in template output +* #896 Fixed empty string for boolean x-format output diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.3.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.3.md new file mode 100644 index 0000000..26dd2a9 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.1.3.md @@ -0,0 +1,7 @@ +# Semantic MediaWiki 2.1.3 + +Released on March 30th, 2015. + +## Bug fix + +* #946 Fixed variable name regression for the "list" format introduced with version 2.1.2 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.0.md new file mode 100644 index 0000000..ba5ee37 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.0.md @@ -0,0 +1,64 @@ +# Semantic MediaWiki 2.2 + +Released on May 9th, 2015. + +## New features + +* #770 Added the `--no-cache` option to `rebuildData.php` and the `--debug` option to `rebuildData.php` and `rebuildConceptCache.php` (refs #749, #766) +* #756 Added template support to the `#set` parser function +* #783 Added support for `wgCategoryCollation` setting in `CategoryResultPrinter` (#699, T40853) +* #829 Added the `--report-runtime` option to `rebuildConceptCache.php` +* #886 Extended rules on how an `ImportValue` need to contain a valid type definition +* #891 Enforced strict type declaration for properties with import references (type of the imported reference takes precedence over any user-defined type declaration) +* #892 Added support for `` in order for a RDF export to point to a "real" file resource +* #893 Added information about "improper value for" to the statistics overview and as `API` parameter (`&errorcount`) +* #913 Fixed exception for usage of `Has subobject` as free annotation +* #914 Added restriction for "manual" annotation use to some pre-defined properties (e.g. `Has subobject`, `Has query`) +* #974 Added `named args` as parameter to `CategoryResultPrinter` +* #988 Added `sep` as parameter to the `TableResultPrinter` to define a separator for cell values + +## Enhancements + +* #958 Replaced defunct SMWRegsitry wiki registration on Special:SMWAdmin with a link to WikiApiary +* #976 Reduced the number of pages on which SMW JavaScript and CSS is loaded +* #994, #995 Made small performance improvements + +## Bug fixes + +* #556 Fixed Missing parentheses in `SQL` for disjunctions when temporary tables are not used by the `SQLStore` +* #764 Fixed DB error when a `#ask` query contains `order=random` for a `sqlite` or `postgres` DB platform (disabled `smwgQRandSortingSupport` for `postgres`) +* #860 Fixed escape character usage in `SPARQLStore`, `SQLStore` +* #860 Fixed handling of an empty result send by the `SPARQLStore` Sesame connector +* #861 Fixed owl property export declaration +* #863 Fixed missing interwiki encoding for the RDF export +* #864 Fixed empty searchlabel raw wikitext display for a `QueryResultPrinter` with `limit=0` +* #869 Fixed data update when moving a page to a non-enabled semantic namespace +* #870 Fixed `#set` where an error from a previous parse call could have affected succeeding `#set` error messages +* #882 Fixed exception in `SMWExportController` caused by an empty property reference +* #884 Fixed fetching of import vocabularies to be language independent +* #887 Fixed `pre` element rendering for the template "furtherresult" output link +* #896 Fixed empty caption for `false` when using the`#x` format option +* #928 Fixed exception in `SMWExportController` for use of `&stats` option +* #945 Fixed nesting of self-referenced concepts in a concept query +* #974 Fixed inconsistency when using `headers=plain` in `CategoryResultPrinter` also fixed the `__NOTOC__` hack + +## Internal changes + +* #373 Update `jquery.jstorage.js` (0.3.2 => 0.4.12) +* #494 Changes to the `SQLStore\QueryEngine` interface +* #711 Fetching annotations made by an `#ask` transcluded template +* #725 Moved psr-4 complaint classes into the top level 'src' folder +* #740 Added `serialization/serialization:~3.2` component dependency +* #771 Added `doctrine/dbal:~2.5` component dependency +* #772 Added `onoi/message-reporter:~1.0` component dependency +* #777 Moved all concept related code into a separate `ConceptCache` class +* #831 Added `onoi/cache:~1.0` component dependency +* #884, #983 Added `ControlledVocabularyImportContentFetcher`, `ImportValueParser` to isolate import vocabulary parsing from the `ImportValue` object +* #883 Added `CircularReferenceGuard` to monitor possible self/circular references in ask templates +* #914 Added `DIProperty::isUnrestrictedForUse` +* #924 Added `onoi/event-dispatcher:~1.0` component dependency +* #929 Added serialization to `ExpElement` objects +* #950 Renamed `PropertyTypeDiffFinder` to `PropertySpecDiffFinder` +* #951 Extended `UpdateDispatcherJob` to create `UpdateJob` chunks to avoid memory exhaustion +* #959 Added `ExpDataSerializer` and `ExpDataDeserializer` +* #984 Moved remaining part of `SMWSQLStore3QueryEngine` to `SMW\SQLStore\QueryEngine\QueryEngine` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.1.md new file mode 100644 index 0000000..e44ba85 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.1.md @@ -0,0 +1,12 @@ +# Semantic MediaWiki 2.2.1 + +Released on June 2nd, 2015. + +## Bug fixes + +* Fixed "Notice: Undefined variable: dataItem" in `QueryEngine` +* #1031 CategoryResultPrinter to recognize offset for further results +* #1033 Fixed assumption that always an array is sent to `JobBase` for booleans +* #1038 Fixed Fatal error: Call to undefined method `SMWDIError::getString` +* #1046 Fixed RuntimeException in `UndeclaredPropertyListLookup` when a DB prefix is used +* #1051 Fixed call to `DIWikiPage::getText` in `ConceptDescriptionInterpreter` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.2.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.2.md new file mode 100644 index 0000000..c6956d2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.2.md @@ -0,0 +1,8 @@ +# Semantic MediaWiki 2.2.2 + +Released on July 7th, 2015. + +## Bug fixes + +* #1067 Fixed return value of the `#set` parser +* #1081 Fixed mismatch of `owl:Class` for categories when used in connection with a vocabulary import diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.3.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.3.md new file mode 100644 index 0000000..3e16a10 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.2.3.md @@ -0,0 +1,7 @@ +# Semantic MediaWiki 2.2.3 + +Released on October 11th, 2015. + +## Bug fixes + +* #1201 Fixed php-serialization issue for `SemanticData` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.3.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.3.0.md new file mode 100644 index 0000000..91afe68 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.3.0.md @@ -0,0 +1,133 @@ +# Semantic MediaWiki 2.3 + +Released on October 25th, 2015. + + +## Highlight: Improved SPARQLStore support + +SMWs SPARQLStore has now reached full feature parity with the SQLStore. On top of that, various performance improvements where made to the SPARQLStore. + +The `$GLOBALS['smwgSparqlQFeatures']` configuration setting now supports these additional values: + +* #1001 `SMW_SPARQL_QF_REDI`: enable property/value redirects support in queries +* #1003 `SMW_SPARQL_QF_SUBP`: enable subproperty hierarchy support +* #1012 `SMW_SPARQL_QF_SUBC`: enable subcategory hierarchy support + +If your TDB back-end does not support SPARQL 1.1, this setting needs to be set to `SMW_SPARQL_QF_NONE`. + +* #1152 Added preference for use of canonical identifiers to support language agnostic category/property statements, (use `$GLOBALS['smwgExportBCNonCanonicalFormUse'] = true` to keep backwards compatibility until 3.x) +* #1158 Added basic support for `_geo` queries to the `SPARQLStore` +* #1159 Added limitation of the `aux` property usage in the Exporter (use `$GLOBALS['smwgExportBCAuxiliaryUse'] = true;` to keep backwards compatibility until 3.x) + +## New features and enhancements + +* #1042 Added progress indicator to `rebuildData.php` +* #1047 Extended context help displayed on `Special:Types` and subsequent type pages +* #1049 Improved MobileFrontend support +* #1053 Added a `CSS` rule to visually distinguish subobject links from "normal" links +* #1063 Added `$GLOBALS['smwgValueLookupCacheType']` to improve DB lookup performance though the use of a responsive cache layer (such as `redis`) and buffer repeated requests either from the API or page view to the back-end. +* #1066, #1075 It is now possible to use extra double colons in annotations. For instance `[[DOI::10.1002/123::abc]]` or `[[Foo:::123]]` +* #1097 Predefined property aliases are redirected to the base property +* #1107 The template support of #set now includes an automatically added `last-element` parameter +* #1106 Added `--skip-properties` flag to `rebuildData.php` +* #1106 `rebuildData.php` now first removes items marked for deletion +* #1129 Extended `~*` search pattern for `_ema` and `_tel` to allow for searches like `[[Has telephone number::~*0123*]]` and `[[Has email::~*123.org]]` +* #1147 The category result format now supports `columns=0`, which results in automatic column count selection +* #1171 Added SQL EXPLAIN output to the debug result format +* #1172 Added `@category` as parameter with a fixed assignment (`_INST`) to `#subobject` +* #1178 Added `~` and `!~` comparator support for values of type date + +## New experimental features + +These features are disabled by default and can be turned on using configuration. Additional logging +happens for these features until they mature from being an experimental feature in a future release. + +* #1035, #1063 Added `CachedValueLookupStore` as post-cached layer to improve DB read access (`$GLOBALS['smwgValueLookupCacheType']`, $GLOBALS['smwgValueLookupCacheLifetime']) +* #1116 Added $GLOBALS['smwgValueLookupFeatures'] setting to fain grain the cache access level, default is set to `SMW_VL_SD | SMW_VL_PL | SMW_VL_PV | SMW_VL_PS;` +* #1117 Added `EmbeddedQueryDependencyLinksStore` to track query dependencies and update altered queries using `ParserCachePurgeJob` for when `$GLOBALS['smwgEnabledQueryDependencyLinksStore']` is enabled +* #1135 Added `$GLOBALS['smwgPropertyDependencyDetectionBlacklist']` to exclude properties from dependency detection +* #1141 Added detection of property and category hierarchy dependency in `EmbeddedQueryDependencyLinksStore` + +## Bug fixes + +* #400 (#1222) Fixed `RuntimeException` in `SQLStore` caused by a DI type mismatch during a lookup operation +* #682 Fixed id mismatch in `SQLStore` +* #1005 Fixed syntax error in `SQLStore`(`SQLite`) for temporary tables on disjunctive category/subcategory queries +* #1033 Fixed PHP notice in `JobBase` for non-array parameters +* #1038 Fixed Fatal error: Call to undefined method `SMWDIError::getString` +* #1046 Fixed RuntimeException in `UndeclaredPropertyListLookup` for when a DB prefix is used +* #1051 Fixed call to undefined method in `ConceptDescriptionInterpreter` in `SQLStore` +* #1054 Fixed behavior for `#REDIRECT` to create the same data reference as `Special:MovePage` +* #1059 Fixed usage of `[[Has page::~*a*||~*A*]]` for `SPARQLStore` when `Has page` is declared as page type +* #1060 Fixed usage of `(a OR b) AND (c OR d)` as query pattern for the `SQLStore` +* #1067 Fixed return value of the `#set` parser +* #1074 Fixed duplicated error message for a `_dat` DataValue +* #1081 Fixed mismatch of `owl:Class` for categories when used in connection with a vocabulary import +* #1090 Fixed error on Special:Ask when using a format provided by Semantic Maps +* #1126 Fixed silent annotations added by the `Factbox` when content contains `[[ ... ]]` +* #1120 Fixed resource loading issue on Windows when using `$wgResourceLoaderDebug=true` +* #233 Fixed disabling of `$GLOBALS['wgFooterIcons']['poweredby']['semanticmediawiki']` +* #1137 Fixed re-setting of `smw-admin` user group permission to its default +* #1146 Fixed #set rendering of template supported output (refs #1067) +* #1096 Fixed inverse prefix for predefined properties that caused misinterpret `Concept` queries +* #1166 Fixed context awareness of `ParserAfterTidy` in connection with the `purge` action +* #1165 Fixed "duplicate key value violates unique constraint" for PostgreSQL on conjunctive and disjunctive queries +* #1182 Fixed further link to use the format parameter as specified by `#ask` +* #1207 Fixed usage of the `!~` comparator for properties that have a limited set of allowed values + +### Improved handling of removed entities in SQLStore + +In previous releases it could happen that deleted entities (subject, property) reappeared in queries even though they have been removed. This release introduces several changes to eliminate some of the issues identified. + +* #1100 introduced a deletion marker on entities that got deleted, making them no longer available to queries or special page display. +* #1127 Added `--shallow-update` to `rebuildData.php`, to only parse those entities that have a different last modified timestamp compared to that of the last revision. This enables to run `rebuildData.php` updates on deleted, redirects, and other out of sync entities. +* Solved #701 where an unconditional namespace query `[[Help:+]]` would display deleted subjects (in case those subjects were deleted) +* #1105 Added filter to mark deleted redirect targets with `SMW_SQL3_SMWDELETEIW` +* #1112 Added filter to mark outdated subobjects with `SMW_SQL3_SMWDELETEIW` +* #1151 Added removal of unmatched "ghost" pages in the ID_TABLE + +## Internal changes + +* #1018 Added `PropertyTableRowDiffer` to simplify computation of `SemanticData` diff's (relates to #682) +* #1039 Added `SemanticData::getLastModified` +* #1041 Added `ByIdDataRebuildDispatcher` to isolate `SMWSQLStore3SetupHandlers::refreshData` +* #1071 Added `SMW::SQLStore::AddCustomFixedPropertyTables` hook to simplify registration of fixed property tables by extensions +* #1068 Added setting to support recursive annotation for selected result formats (refs #1055, #711) +* #1086 Changed redirect update logic to accommodate the manual #REDIRECT (refs #895, #1054) +* Added `SMW::Browse::AfterIncomingPropertiesLookupComplete` which allows to extend the incoming properties display for `Special:Browse` +* Added `SMW::Browse::BeforeIncomingPropertyValuesFurtherLinkCreate` which allows to replace the further result incoming link in `Special:Browse` +* #1078 Renamed `ParserParameterFormatter` to `ParserParameterProcessor` and `ParameterFormatterFactory` to `ParameterProcessorFactory` +* #1102 Added `onoi/http-request:~1.0` dependency +* Decrease chunk size in `UpdateDispatcherJob` (refs #951) +* #1110 Extended `TurtleTriplesBuilder` to split larger turtle sets into chunks +* #1111 Added support for the atomic DB transaction mode to improve the rollback process in case of a DB transaction failure +* #1108 Added `CompositePropertyTableDiffIterator` which for the added `'SMW::SQLStore::AfterDataUpdateComplete'` returns ids that have been updated only (as diff of the update) +* #1119 Added `RequestOptionsProcessor` +* #1130 Added `DeferredRequestDispatchManager` to decouple jobs during an update +* #1133 Fixed MW 1.25/1.26 API tests +* #1145 Added `onoi/callback-container:~1.0` and removes all custom DIC code from SMW-core +* (964155) Added removal of whitespace for `DIBlob` values (" Foo " becomes "Foo") +* #1149 Added `InMemoryPoolCache` to improve performance for the `SPARQLStore` during turtle serialization + +## Contributors + +**Code contributors** + +* MWJames +* Jeroen De Dauw +* Karsten Hoffmeyer (kghbln) +* Felipe de Jong (jongfeli) +* Vitaliy Filippov (vitalif) +* paladox +* Amir E. Aharoni +* Joel K. Pettersson +* umherirrender +* Kunal Mehta (legoktm) +* TranslateWiki.net + +**Other contributors** + +* yoonghm +* cicalese +* bogota +* plegault3397 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.3.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.3.1.md new file mode 100644 index 0000000..b1698e2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.3.1.md @@ -0,0 +1,12 @@ +# Semantic MediaWiki 2.3.1 + +Released on January 4th, 2016. + +## Bug fixes + +* #1248 Fixed misplaced replacement of `_` in the `ImportValueParser` +* #1252 Added [`$smwgEnabledInTextAnnotationParserStrictMode`](https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledInTextAnnotationParserStrictMode) allowing to reenable (by disabling strict mode which by default is enabled) multi-property assignments in `[[ :: ]]` +* #1256 Added creation of object ID's that are not yet available in `EmbeddedQueryDependencyLinksStore` +* #1268 Fixed 1.26/1.27 API/RawMode MediaWiki output changes +* #1255 Fixed output regression (T121761) in connection with `#ask` and generated template HTML output +* #1321 Added [`$smwgSparqlRepositoryConnectorForcedHttpVersion`](https://semantic-mediawiki.org/wiki/Help:$smwgSparqlRepositoryConnectorForcedHttpVersion) setting to set a specific HTTP version in case of a observed cURL issue (#1306) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.0.md new file mode 100644 index 0000000..abcfe99 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.0.md @@ -0,0 +1,200 @@ +# Semantic MediaWiki 2.4 + +Released on July 9th, 2016. + +## Highlights + +### Support for multiple languages + +Added support for [multilingual content](https://www.semantic-mediawiki.org/wiki/Localization_and_multilingual_content). +This includes the introduction of the [monolongual text datatype](https://www.semantic-mediawiki.org/wiki/Help:Type_Monolingual_text), +a new [special property to describe properties](https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_property_description) +and the new [Semantic Interlanguage Links extension](https://www.semantic-mediawiki.org/wiki/Extension:Semantic_Interlanguage_Links). + +### Pattern based constraints + +Added support for constraint specification using regular expressions (#1417). The use of `regular +expressions` and thus the `Allows pattern` property to express a constraint assignment is restricted +to users with the [`smw-patternedit`](https://www.semantic-mediawiki.org/wiki/Help:Permissions_and_user_rights) right. + +### Positional units + +It is now possible to specify which position a [custom unit](https://www.semantic-mediawiki.org/wiki/Help:Custom_units) +should have in [Corresponds to](https://www.semantic-mediawiki.org/wiki/Help:Special_property_Corresponds_to) annotations. +This means you can specify `[[Corresponds to::€ 1]]` instead of `[[Corresponds to::1 €]]`. You can find a +[small example](http://sandbox.semantic-mediawiki.org/wiki/Issue/1329_(Positional_unit_preference)) on the Sandbox. + +### Display precision + +You can now specify the precision used for display of numeric properties (i.e. those of type Number, +Quantity, Temperature). This is done using the +[Display precision of](https://www.semantic-mediawiki.org/wiki/Help:Special_property_Display_precision_of) +property. You can override this display precision per `#ask` query, by using `-p`. +You can [view the examples](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1335). + +### Enhanced date and time formatting + +Extended [date and time formatting](https://www.semantic-mediawiki.org/wiki/Help:Type_Date) +by supporting PHP's `DateTime` format rules. + +### Display Title storage + +MediaWiki's `{{DISPLAYTITLE:...}}` can now be stored as the +[Display title of](https://www.semantic-mediawiki.org/wiki/Help:Special_property_Display_title_of) +special property, so it can be used in queries. + + +## Compatibility changes + +Support was added for MediaWiki 1.26 and MediaWiki 1.27. SMW 2.3 has know issues with these versions +of MediaWiki, so you are highly encouraged to upgrade SMW if you plan to use one of them. While SMW +2.3 already had beta support for PHP 7, this release fully supports it. + +This release does not drop support for anything. It is however the last release to support PHP older +than 5.5 and MediaWiki older than 1.25. + +For more information, see the [compatibility overview](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/COMPATIBILITY.md). + + +## New features and enhancements + +* [#498](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/498) Extended `rebuildData.php` to remove outdated entity references (see `PropertyTableIdReferenceDisposer`) +* [#1243](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1243) Made failed queries discoverable +* [#1246](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1246) Added support for `~`/`!~` on single value queries (example: `{{#ask: [[~Foo/*]] }}`) +* [#1267](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1267) Added the `browseByProperty` API module to fetch a property list or individual properties via the WebAPI +* [#1268](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1268) Restored compliance with MediaWiki's 1.26/1.27 WebAPI interface to ensure continued support for the `ask` and `askargs` output serialization +* [#1257](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1257) Changed import of recursive annotations (#1068) from the format to a query level using the `import-annotation` parameter +* [#1291](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1291) Added support for range queries such as `[[>AAA]] [[` as `#ask` printout option +* [#1344](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1344) Added `MonolingualTextValue` and `LanguageCodeValue` +* [#1361](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1361) Added `--with-maintenance-log` option to `rebuildData.php`, `rebuildPropertyStatistics.php`, and `rebuildConceptCache.php` +* [#1381](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1381) Added localizable context help for properties using the predefined property `Has property description` (which is specified as `MonolingualText` type) +* [#1389](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1389) Added free date/time formatting support using the `-F[ ... ]` option +* [#1391](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1391) Made subobject directly browsable from/in the Factbox +* [#1396](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1396) Explicitly annotated years now have an `AC/CE` era indication +* [#1397](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1397) Added support for microseconds in `DITime` +* [#1401](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1401) Added support for parsing `年/月/日` date format in `DITime` +* [#1407](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1407) Added quick result download links to `Special:Ask` +* [#1410](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1410) Added support for `{{DISPLAYTITLE:title}}` caption using the [`Display title of`](https://www.semantic-mediawiki.org/wiki/Help:Special_property_Display_title_of) property +* [#1417](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1417) Added [`Allows pattern`](https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_pattern) property to define a value constraint using regular expressions and the required `smw-patternedit`right to add those expressions +* [#1433](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1433) Added `--ignore-exceptions` and `exception-log` options to `rebuildData.php` while option `-v` is showing additional information about the processed entities +* [#1440](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1440) Added various changes to accommodate MW 1.27 +* [#1463](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1463) Added support for the [`Has uniqueness constraint`](https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_uniqueness_constraint) property trait +* [#1474](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1474) Added a search link for zero properties to the `Special:Properties` +* [#1483](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1483) Added statistics about [outdated entities](https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities) to the `Special:Statistics` +* [#1542](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1542) Extended the query parser to support conditions with object values that contain `=` (#640) +* [#1545](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1545) Added `#LOCL` as `TimeValue` output format +* [#1570](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1570) Added ["Object ID disposal"](https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal) `to Special:SMWAdmin` +* [#1572](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1572) Extended the query parser to support property chaining on subtypes +* [#1580](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1580) Added `#LOCL` as `BooleanValue` output format +* [#1591](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1591) Added `#LOCL` as `NumberValue` output format +* [#1626](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1626) Added `$GLOBALS['smwgQueryDependencyAffiliatePropertyDetectionlist']` to monitor affiliate properties required for initiating a query dependency update + + +## Bug fixes + +* [#541](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/541) Fixed duplicate column when "further results ..." are redirected to `Special:Ask` +* [#753](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/753) Fixed number parsing of non-zero lead decimal numbers (.1 vs 0.1) / (T40476) +* [#1244](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1244) Find redirect for a property when specified as a record field (in `PropertyListValue`) +* [#1248](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1248) Fixed misplaced replacement of `_` in the `ImportValueParser` +* [#1270](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1270) Fixed printout display of inverse properties +* [#1272](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1272) Fixed serialization of `_rec` type in the `QueryResultSerializer` +* [#1275](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1275) Fixed export of record type data when embedded in a subobject +* [#1286](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1286) Fixed support for sorting by category +* [#1287](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1287) Fixed exception for when `$smwgFixedProperties` contains property keys with spaces +* [#1289](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1289) Fixed redirect statement for resources matched to an import vocabulary (`SPARQL` query) +* [#1301](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1301) Fixed `count` query result discrepancy (to exclude redirect and deleted entities) +* [#1314](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1314) Fixed hidden annotation copy of `[[ :: ]]` text values when embedded in query results +* [#1318](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1318) Fixed possible `null` object in `AskParserFunction` when creating a `QueryProfile` +* [#1357](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1357) Fixed `|+align=...` usage for `format=table` +* [#1358](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1358) Fixed recognition of multi-byte boolean value +* [#1348](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1348) Fixed single year detection in `TimeValue` +* [#1414](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1414) Fixed exception caused by a missing message page on a `Service link` annotation +* [#1449](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1449) Fixed mapping of imported URI to an internal `DataItem` +* [#1450](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1450) Fixed export of concept +* [#1453](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1453) Fixed off/on display in text value +* [#1459](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1459) Fixed column display regression in `CategoryResultPrinter` for subobjects +* [#1466](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1466) Fixed remote resource path detection that appeared in connection with a non-default extension setup +* [#1473](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1473) Fixed exception caused by `ParameterInput` due to "HTML attribute value can not contain a list of values" +* [#1477](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1477) Fixed query result from `SPARQLStore` to filter redirects natively +* [#1489](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1489) Fixed fatal error in `RdfResultPrinter` due to namespace mismatch +* [#1496](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1496) Fixed concept handling for `postgres` +* [#1513](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1513) Fixed rendering of text properties containing wikitext lists +* [#1526](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1526) Fixed `_` handling for value strings submitted to the `Special:SearchByProperty` +* [#1550](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1550) Fixed `SPARQLStore` `XML` response parsing for strings that contain UTF-8 characters +* [#1562](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1562) Fixed fatal error in `FeedResultPrinter` due to usage of an interwiki assignment +* [#1568](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1568) Fixed usage of invalid characters/tags in property name +* [#1594](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1594) Fixed handling of numbers with scientific notation in `Special:SearchByProperty` +* [#1597](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1597) Fixed possible ID collision in `DependencyLinksTableUpdater` +* [#1598](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1598) Fixed content language setting for `InfoLinks` +* [#1589](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1589) Fixed display precision constraint during condition building +* [#1608](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1608) Fixed that a `#info` without a message will create an empty tooltip or when used as `` causing a failure +* [#1610](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1610) Fixed a potential exception in the `postgres` implementation when creating temporary tables +* [#1628](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1628) Fixed exception when `NumberValue` tries to use a `NULL` as numeric value. +* [#1638](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1638) Fixed possible invalid property in case the label contains `[` + + +## Internal changes + +* [#1235](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1235) Improve query performance in `PropertyUsageListLookup` +* [#1023](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1023) Split the `DocumentationParserFunction` +* [#1264](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1264) Removed `pg_unescape_bytea` special handling for `postgres` in the `ResultPrinter` +* [#1276](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1276) Extended `QueryResultSerializer` (relevant for the API output) to export the raw output of a time related value +* [#1281](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1281) Extended `QueryResultSerializer` to export the internal property key +* [#1291](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1291) Added `DescriptionProcessor` to isolate code path from the `SMWQueryParser` +* [#1319](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1319) Switched from Sesame 2.7.14 to 2.8.7 in the CI environment +* [#1382](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1382) Added `DispatchingDataValueFormatter` and `ValueFormatterRegistry` +* [#1385](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1385) Added `StringValueFormatter` and `CodeStringValueFormatter` +* [#1388](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1388) Added `TimeValueFormatter` +* [#1421](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1421) Added `DeferredDependencyLinksUpdater` to avoid violations reported by `TransactionProfiler` in MW 1.26+ +* [#1417](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1417) Added `PermissionPthValidator` together with new the `smwcurator` group and `smw-patternedit` right +* [#1435](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1435) Added `DeferredCallableUpdate` (together with `$GLOBALS['smwgEnabledDeferredUpdate']`) to support MW's `DeferrableUpdate` interface (i.e. to support queuing DB related transactions) +* [#1445](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1445) Added `userlang` as `ParserOutput` option +* [#1451](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1451) Added `ExtraneousLanguage` interface +* [#1460](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1460) Requires PHP extension mbstring in `composer.json` +* [#1482](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1482) Added the `SMW::FileUpload::BeforeUpdate` hook +* [#1512](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1512) Fixed test suite to support PHP7 +* [#1575](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1575) Removed `smw_subobject` from `PropertyListLookup` query +* [#1591](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1591) Added `IntlNumberFormatter` +* [#1593](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1593) Added `NumberValueFormatter` +* [#1601](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1601) Added `InfoLinksProvider` +* [#1606](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1606) Disabled DB transactions in `QueryEngine` to avoid potential issues when creating temporary tables +* [#1626](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1626) Added `EntityIdListRelevanceDetectionFilter` and `TemporaryEntityListAccumulator` in #1627 +* [#1635](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1635) Switched from Fuseki 1.1.0 to 2.4.0 in the CI environment +* Most updates now occur in [deferred mode](https://www.semantic-mediawiki.org/wiki/Deferred_updates) +to conform with [T92357](https://phabricator.wikimedia.org/T92357) Extensions that wish to extend +data objects are encouraged to use hooks and avoid conflicts when updates are queued. + + +## Contributors + +* James Hong Kong +* Jeroen De Dauw +* Karsten Hoffmeyer +* Felipe de Jong +* Florian Schmidt +* Niklas Laxström +* Ahmad Gharbeia +* Stephan Gambke +* Amir E. Aharoni +* Siebrand Mazeland +* Cindy Cicalese +* Hangya +* Sébastien Beyou +* Aaron Schulz +* Jaider Andrade Ferreira +* Kunal Mehta +* Ori Livneh +* Peter Grassberger +* Reedy +* Vitaliy Filippov +* Wolfgang Fahl +* Alexander Gesinn +* TranslateWiki.net translators diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.1.md new file mode 100644 index 0000000..7012cd4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.1.md @@ -0,0 +1,14 @@ +# Semantic MediaWiki 2.4.1 + +Released on July 12th, 2016. + +## Bug fixes + +* #1328 Fixed a "Undefined index: language" error in `#smwdoc` parser function +* #1713 Fixed a "Segmentation fault" when `QueryResultDependencyListResolver` tries to resolve a category/property hierarchy with a circular reference +* #1715 Fixed decoding of a single quotation mark in `DisplayTitlePropertyAnnotator` +* #1724 Fixed a possible `InvalidArgumentException` in connection with `SMW_DV_PVUC` by updating the `CachedPropertyValuesPrefetcher` version number +* #1726 Allows `QueryDependencyLinksStore` to execute `getDependencyListByLateRetrieval` even in cases of an intial empty list +* #1727 Fixed an issue when property names contain `<` or `>` symbols +* #1728 Fixed fatal error in `Special:SearchByProperty` on when the property name contains invalid characters +* #1731 Fixed possible error in the `SkinAfterContent` hook when a null object is used diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.2.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.2.md new file mode 100644 index 0000000..c4e3861 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.2.md @@ -0,0 +1,13 @@ +# Semantic MediaWiki 2.4.2 + +Released on November 13th, 2016. + +## Bug fixes + +* #1829 Only have the `DisplayTitlePropertyAnnotator` create an annotation in case `SMW_DV_WPV_DTITLE` is enabled +* #1883 Avoided mismatch in case `hasSubSemanticData` has been overridden as by `Sql3StubSemanticData` +* #1885 Fixed postgres bytea escape/unescape on blob fields +* #1887 Moved `Hooks:CanonicalNamespaces` to an earlier execution point +* #1897 Worked around deprecated/removed `DatabaseBase::getSearchEngine` +* #1901 Made `enableSemantics` call `NamespaceManager` +* #1911 Improved compatibility with MediaWiki 1.28+ diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.3.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.3.md new file mode 100644 index 0000000..832ef7f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.3.md @@ -0,0 +1,9 @@ +# Semantic MediaWiki 2.4.3 + +Released on November 28nd, 2016. + +## Bug fixes + +* #1975 Fixed alias definitions for namspace "Type" causing notices due to the namespace being undefined +* fd6b4cf Fixed a compatibility breaking short array syntax for PHP 5.3 +* 0ae3a3e Added missing internal file loading diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.4.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.4.md new file mode 100644 index 0000000..27e1dce --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.4.md @@ -0,0 +1,8 @@ +# Semantic MediaWiki 2.4.4 + +Released on December 14, 2016. + +## Bug fixes + +* #2078 Fixed error for MySQL 5.7 causing "SELECT list; this is incompatible with DISTINCT" +* #2089 Fixed error for MySQL 5.7 causing "UPDATE - SET; Data too long for column" diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.5.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.5.md new file mode 100644 index 0000000..5480b95 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.5.md @@ -0,0 +1,11 @@ +# Semantic MediaWiki 2.4.5 + +Released on January 16th, 2017. + +## Bug fixes + +* e3689e6 Fixed datatypes not being recognized on property pages +* #2124 Fixed to use `wfCgiToArray` to avoid deprecation notice for `SMWInfolink` +* #2156 Fixed Javascript error caused by `wikiScript` being undefined +* #2160 Fixed `ParserCachePurgeJob` to be avoided on an empty request +* #2166 Fixed `QueryDependencyLinksStore` to check for a null title diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.6.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.6.md new file mode 100644 index 0000000..a049b06 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.4.6.md @@ -0,0 +1,7 @@ +# Semantic MediaWiki 2.4.6 + +Released on February 15th, 2017. + +## Enhancement + +* #2235 Backport of #1758 - Add configuration parameter `$smwgQTemporaryTablesAutoCommitMode` allowing to create MySQL temp tables in auto commit mode diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.0.md new file mode 100644 index 0000000..1708542 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.0.md @@ -0,0 +1,209 @@ +# Semantic MediaWiki 2.5 + +Released on March 14, 2017. + +## Highlights + +### Full-text search support + +Support for [full-text search](https://www.semantic-mediawiki.org/wiki/Help:Full-text_search) was added using the native capabilities of the SQL backends "MySQL"/"MariaDB" (#1481) and "SQLite" (#1801) for the "Text", "URL" and "Page" datatypes. + +### Provenance data recording + +Qualifying facts using a simple [provenance model](https://www.semantic-mediawiki.org/wiki/Reference_and_provenance_data) is now supported (#1808) using existing mechanisms in defining a property specification together with a new ["Reference" datatype](https://www.semantic-mediawiki.org/wiki/Help:Type_Reference) ([video](https://youtu.be/t045qkf4YAo)). + +### Property chain and language filter support in print request + +[Property chain](https://www.semantic-mediawiki.org/wiki/Property_chains_and_paths) for conditions (e.g `[[Located in.Capital of::Foo]]`) was provided for some time, and now got extended (#1824) to supporting the syntax on print requests to retrieve values of a chain member that represent a page node. Values of datatype "Monolingual Text" can now use a language filter (#2037) to restrict the display of a value in a print request. + +### Edit protection + +[Edit protection](https://www.semantic-mediawiki.org/wiki/Edit_protection) to help avoid changes to properties or other data sensitive pages from alterations that may cause data invalidations (e.g. change of a property type, inconsistent specifications etc.) or process disruptions. This feature integrates with MediaWiki's page protection functionality. + +### Preferred property label support + +Semantic MediaWiki now supports the declaration of [preferred property labels](https://www.semantic-mediawiki.org/wiki/Preferred_property_label) (#1865) with the objective to show labels in a user context on special pages, query results, and factboxes instead of the canonical property label. + +### Query result cache + +[Caching of query results](https://www.semantic-mediawiki.org/wiki/Query_result_cache) (#1251) was added as experimental feature to minimize a possible impact of query processing during and after a page view. This change also includes a reevaluation (#2099, #2176) of the query hash (used as identifier) to ensure that cache fragmentation is reduced and duplicate queries can share the same cache across different pages. + +### Links in values + +Support for [links in values](https://www.semantic-mediawiki.org/wiki/Help:$smwgLinksInValues) for datatype "Text" was extended by use-cases and improved in performance as well as avoiding the former error-prone "PCRE-approach". + +### Fixed properties + +Support for [fixed properties](https://www.semantic-mediawiki.org/wiki/Help:Fixed_properties) was overhauled, fixed (#2135) and is no longer experimental. + +### Special page "SemanticMediaWiki" + +Special page ["SemanticMediaWiki"](https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki) formerly known as special page "SMWAdmin" was modernized and extended (#2044, etc.) including a new [configuration setting](https://www.semantic-mediawiki.org/wiki/Help:$smwgAdminFeatures) allowing for a more fine-granded control over feature accessibilty (#2142). + +## Compatibility changes + +* Minimum requirement for PHP changed to version 5.5 and later +* Minimum requirement for MediaWiki changed to version 1.23 and later (1.27 and later recommended) +* Forward comatibility with MediaWiki 1.29+ adjustments which include #2149, #2198 + +## Upgrading + +This release requires to run `update.php` or `setupStore.php` to add an extra table column for the URI table (#1872) and a new table for the preferred label property (#1865). + +## New features and enhancements + +* [#1251](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1251) Added support to cache query results +* [#1418](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1418) Added recognition for image formatting options in query results +* [#1481](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1481) Added full-text `MySQL`/`MariaDB` search support to the `SQLStore` (see #1481 for limitations and features supported) +* [#1652](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1652) Added support for approximate search queries that contain a namespace `[[Help:~Abc*]]` +* [#1691](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1691) Added language fallback for special properties +* [#1708](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1708) Added the [External identifier](https://www.semantic-mediawiki.org/wiki/Help:Type_External_identifier) type +* [#1718](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1718) Added feature flag `SMW_DV_NUMV_USPACE` to allow preserving spaces in unit labels +* [#1747](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1747) Extended `InTextAnnotationParser` to check for a possible pipe syntax in combination with `::` +* [#1757](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1757) Added the [`$smwgQTemporaryTablesAutoCommitMode`](https://www.semantic-mediawiki.org/wiki/Help:$smwgQTemporaryTablesAutoCommitMode) setting to mitigate possible issues with temporary tables in `MySQL` for when `enforce_gtid_consistency=true` is set +* [#1756](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1756) Extended the display characteristics of `Special:Browse` to load content via the API back-end (legacy display can be retained by maintaining [`$smwgBrowseByApi`](https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi) with `false`) +* [#1759](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1759) Improved `Special:Ask` error output +* [#1760](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1760) Improved handling of `MonolingualTextValue` in `Special:SearchByProperty` +* [#1761](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1761) Added language context support in a property page to recognize localized property type `[[Has type ...]]` annotations +* [#1768](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1768) Extended error display to be shown in a user language context +* [#1778](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1778) Export the canonical form of a special page (e.g. `Special:ExportRDF`, `Special:URIResolver`) +* [#1779](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1779) Added [`Special:ProcessingErrorList`](https://www.semantic-mediawiki.org/wiki/Help:Special:ProcessingErrorList) +* [#1793](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1793) Extended date type (`TimeValue`) with an `#LOCL@lang` output format to recognize a specific language tag +* [#1801](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1801) Added `SQLStore` full-text search support for `SQLite` +* [#1802](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1802) Extended parsing in `#set_recurring_event` to avoid a `00:00:00` time display +* [#1809](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1809) Added support for using a property name as index identifier in a print request for the `Record` type +* [#1808](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1808) Added support for recording [provenance data](https://www.semantic-mediawiki.org/wiki/Referenced_statement) +* [#1824](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1824) Added support for the [property chain](https://www.semantic-mediawiki.org/wiki/Property_chain) syntax (e.g. `?SomeProperty.Foo`) in a print request +* [#1838](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1838) Added time zone support in `TimeValue` together with the new `#LOCL#TZ` output format +* [#1854](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1854) Added unescaped output option for `format=json` +* [#1855](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1855) Added `@@@` as special annotation syntax to generate a link to a property (e.g `[[Foo::@@@]]` or `[[Foo::@@@en]]`) +* [#1865](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1865) Added support for [preferred property labels](https://www.semantic-mediawiki.org/wiki/Preferred_property_label) +* [#1872](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1872) Added support for retrieving and storing URIs longer than 255 characters +* [#1875](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1875) Added support for displaying a `title` attribute on tooltips for non JS environments +* [#1891](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1891) Added support for `JSON` typed annotation in `#set` and `#subobject` using the `@json` marker +* [#1927](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1927) Added [`$smwgSubPropertyListLimit`](https://www.semantic-mediawiki.org/wiki/Help:$smwgSubPropertyListLimit) to restrict selection of subproperties on the property page +* [#2007](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2007) Extended the `intro` and `outro` parameter to correctly display parsed links in `Special:Ask` +* [#2024](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2024) Added option `template arguments` in `format=template` to define the type of used parameters +* [#2027](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2027) Extended `format=table` to display an image (instead of a link) in `Special:Ask` +* [#2036](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2036) Added print request option for text values to reduce the length of a text output (e.g. `|?Has text#20`) +* [#2037](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2037) Added `|+lang=` as print request filter to specify a language for a `Monolingual text` result instance +* [#2068](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2068) Extended the `#info` tooltip to work on multiple form sections +* [#2108](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2108) Extended the `smw.dataItem.time` JS component to support historic dates +* [#2109](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2109) Extended `Special:Browse` to distinguish between machine and human generate links +* [#2113](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2113) Extended the [uniqueness constraint](https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_uniqueness_constraint) to apply a stricter validation on competing annotations +* [#2118](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2118) Added a button to `Special:Ask` to copy the query to the clipboard +* [#2135](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2135) Changed and fixed the behaviour of the [`$smwgFixedProperties`](https://www.semantic-mediawiki.org/wiki/Help:$smwgFixedProperties) setting for [fixed properties](https://www.semantic-mediawiki.org/wiki/Help:Fixed_properties) to ensure consistent typing +* [#2137](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2137) Extended the display of statistics in `Special:Statistics` +* [#2139](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2139) Added the display of Semantic MediaWiki related job statistics under the subsection of the [`Special:SemanticMediaWiki`](https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki) page +* [#2142](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2142) Added `$smwgAdminFeatures` to support `PropertyStatisticsRebuildJob` and `FulltextSearchTableRebuildJob` from the `Special:SemanticMediaWiki` (formally known as `Special:SMWAdmin`) page, the `smwgAdminRefreshStore` setting was deprecated +* [#2153](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2153) Changed the behaviour of the [`$smwgLinksInValues`](https://www.semantic-mediawiki.org/wiki/Help:$smwgLinksInValues) setting to allow using the `Obfuscator` (`SMW_LINV_OBFU`) approach instead of `PCRE` to match links in values (e.g. `[[Has text::[[Lorem ipsum]] dolor sit amet, [[Has page::consectetur adipiscing elit]]]]`) +* [#2157](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2157) Extended the property page to show [redirects (synonyms)](https://www.semantic-mediawiki.org/wiki/Redirects) directly +* [#2173](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2173) Added support for prettified `JSON` output in the `CodeStringValueFormatter` +* [#2176](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2176) Added an experimental feature [`smwgQFilterDuplicates`](https://www.semantic-mediawiki.org/wiki/Help:$smwgQFilterDuplicates) to filter duplicate query segments +* [#2204](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2204) Extended `Special:UnusedProperties` and `Special:WantedProperties` to provide an input form +* [#2207](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2207) Added [`smwgExportResourcesAsIri`](https://www.semantic-mediawiki.org/wiki/Help:$smwgExportResourcesAsIri) to allow exporting resources as IRIs +* [#2209](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2209) Extended parsing of interface messages to support additional `smwgEnabledSpecialPage` pages +* [#2221](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2221) Added possibility to show a general message on each property page (`smw-property-introductory-message`) or for a specific type of property (`smw-property-introductory-message-user`, `smw-property-introductory-message-special`) +* [#2227](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2227) Added warning, error, and info messages for incomplete requirements on a property page +* [#2232](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2232) Added support for [Is edit protected](https://www.semantic-mediawiki.org/wiki/Help:Special_property_Is_edit_protected) property together with `$wgRestrictionLevels` (#2249) +* [#2243](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2243) Added property and concept namespace to the `$wgContentNamespaces` and `$wgNamespacesToBeSearchedDefault` setting +* [#2244](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2244) Added [`Special:PropertyLabelSimilarity`](https://www.semantic-mediawiki.org/wiki/Help:Special:PropertyLabelSimilarity) to help reporting syntactic similarities between property labels +* [#2253](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2253) Added `#-hl` output formatting option to highlight search tokens within a result set +* [#2270](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2270) Added query parameters recording in the [query profiler](https://www.semantic-mediawiki.org/wiki/Help:Query_profiler) +* [#2281](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2281) Added check to detect a divergent type specification for an imported vocabulary +* [#2282](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2282) Added [`$smwgPropertyInvalidCharacterList`](https://www.semantic-mediawiki.org/wiki/Help:$smwgPropertyInvalidCharacterList) to define character validation rules for property labels +* [#2285](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2285) Added [`SMW_HTTP_DEFERRED_SYNC_JOB`](https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledHttpDeferredJobRequest) option to execute secondary updates synchronously +* [#2289](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2289) Added a [contents importer](https://www.semantic-mediawiki.org/wiki/Help:Contents_importer) to support importing of additional data during the setup process +* [#2290](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2290) Added [query reference](https://www.semantic-mediawiki.org/wiki/Query_reference) links section to `Special:Browse` +* [#2295](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2295) Added [`Allows value list`](https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list) to maintain a list of allowed values using a `NS_MEDIAWIKI` reference page +* [#2301](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2301) Added [`$smwgSparqlReplicationPropertyExemptionList`](https://www.semantic-mediawiki.org/wiki/Help:$smwgSparqlReplicationPropertyExemptionList) to suppress replication for selected properties to a `SPARQL` endpoint +* [#2325](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2325) Added `#-ia` as print request output option for the text datatype +* [#2331](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2331) Added [`$smwgResultFormatsFeatures`](https://www.semantic-mediawiki.org/wiki/Help:$smwgResultFormatsFeatures) to control available features for specific `ResultFormatter` and includes (`SMW_RF_TEMPLATE_OUTSEP` to support the #2022 changes) +* Many new translations for numerous languages by the communtity of [translatewiki.net](https://translatewiki.net/w/i.php?title=Special%3AMessageGroupStats&x=D&group=mwgithub-semanticmediawiki&suppressempty=1) +* New translation for special properties, datatypes, magic words, date formats and aliases for Catalan and German by Semantic MediaWiki community members + +## Bug fixes + +* [#1258](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1258) Fixed "named args" parameter use in further results link +* [#1328](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1328) Fixed a "Undefined index: language" error in `#smwdoc` parser function +* [#1419](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1419) Fixed Feed result printer ouput for empty results +* [#1709](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1709) Fixed a potential "Lock wait timeout exceeded; try restarting transaction" in connection with `--procs` +* [#1713](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1713) Fixed a "Segmentation fault" for when `QueryResultDependencyListResolver` tries to resolve a category/property hierarchy with a circular reference +* [#1715](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1715) Fixed decoding of a single quotation mark in `DisplayTitlePropertyAnnotator` +* #1724 Fixed a possible `InvalidArgumentException` in connection with `SMW_DV_PVUC` by updating the `CachedPropertyValuesPrefetcher` version number +* #1727 Fixed an issue when property names contain `<` or `>` symbols +* #1728 Fixed fatal error in `Special:SearchByProperty` on when the property name contains invalid characters +* #1731 Fixed possible error in the `SkinAfterContent` hook when a null object is used +* #1744 Fixed special page "Searchbyproperty" not working correctly with "-" sign +* #1775 Fixed time offset recognition +* #1817 Disabled `DataValue` constraint validation when used in a query context +* #1823 Fixed annotation of `Display title of` when `SMW_DV_WPV_DTITLE` is disabled +* #1880 Fixed handling of the `bytea` type in `postgres` for a blob field +* #1886 Fixed disappearance of the `Property` namespace in connection with extensions that use `wfLoadExtension` +* #1922 Fixed `InfoLinksProvider` to avoid `LOCL` info links +* #1926 Fixed `PrintRequest` to recognize the spant tag in labels +* #1935 Fixed "Error: 42P10 ERROR: ... ORDER BY expressions must appear in select list" for PostgreSQL +* #1957 Fixed `SMWSQLStore3Writers::getSubobjects` using the wrong DBKey in case of predefined properties +* [#1963](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1963) Fixed by relying on #2153 +* #1977 Fixed Unexpected general modules for Resource Loader +* #1978 Fixed `Tablebuilder` to avoid index creation on an unaltered schema definition +* #1985 Fixed a potential fatal error in `MaintenanceLogger` for when `$wgMaxNameChars` doesn't match an expected name length +* [#2000](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2000) Fixed label and caption sanitization +* [#2022](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2022) Fixed the usage of the sep parameter for format "template" +* #2061 Fixed strict comparison `===` for strings in `PropertyTableRowDiffer` +* #2070 Filter invalid entity display from `Special:Concepts` +* #2071 Prevent extensions to register already known canonical property labels and hereby avoid a possible ID mismatch +* #2076 Fixed issue for Gregorian and Julian calendars having a year 0 +* #2078 Fixed issue with "SELECT list; this is incompatible with DISTINCT" for MySQL 5.7+ +* #2089 Fixed issue with "UPDATE - SET; Data too long for column" for MySQL 5.7+ +* #2093 Avoid removal of existing data by #REDIRECT in target +* #2107 Fixed `NamespaceManager::init` to set SMW_NS* default settings +* #2127 Fixed a call to a the member function `getHash()` on nulll +* [#2182](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2182) Fixed display of special properties in `Special:UnusedProperties` +* [#2183](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2183) Fixed display of properties with no explicit datatype in `Special:UnusedProperties` +* #2188 Fixed error in special page "RDFExport" with non-latin instance names +* #2202 Added guard against error "Invalid or virtual namespace -1 given" +* [#2228](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2228) Fixed text output for the table format in `Special:Ask` +* [#2294](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2294) Avoid a possible `Parser::lock` during an `UpdateJob` + +## Internal changes + +* #1511 Removed I18n shim originally required for MediaWiki < 1.23 +* #1726 Allows `QueryDependencyLinksStore` to execute `getDependencyListByLateRetrieval` even in cases of an intial empty list +* #1750 Added `TableBuilder` to replace `SMWSQLHelpers` +* #1780 Added `ResourceBuilder` and `DispatchingResourceBuilder` +* #1791 Added `PropertyRegistry::registerPropertyDescriptionByMsgKey` +* #1776 Added `QueryEngine` and `StoreAware` interface +* [#1848](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1848) Added `ExtraneousLanguage` to handle Semantic MediaWiki specific `i18n` content in a `JSON` format, removed the `PHP` language files +* #1940 Added `Installer` and `TableSchemaManager` to replace `SMWSQLStore3SetupHandlers` +* [#2118](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2118) Added the `onoi/shared-resources~0.3` dependency +* [#2201](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2201) Changed normalization of spaces to `_` instead of `%20` in `DIUri` +* [#2214](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2214) Added `LinksProcessor` and `SemanticLinksParser` +* [#2217](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2217) Added `QuerySegmentListBuildManager` +* [#2275](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2275) Added the `onoi/callback-container:~2.0` dependency +* [#2282](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2282) Added `DataValueServiceFactory` and `DataValueServices.php` to allow injection of services into a `DataValue` instance + +## Settings and configurations + +[Settings and configurations](https://www.semantic-mediawiki.org/w/index.php?title=Special:Ask&x=-5B-5BHas-20configuration%3A%3A%2B-5D-5D-20-5B-5BHas-20minimum-20version%3A%3A2.5.0-5D-5D%2F-3FHas-20configuration-20parameter-20name%3DConfiguration-20parameter%2F-3FHas-20description%3DDescription&format=broadtable&limit=50&link=all&headers=show&mainlabel=-&searchlabel=...%20further%20results&class=sortable%20wikitable%20smwtable&offset=) added with 2.5.0. + +## Contributors + +* 688 - James Hong Kong +* 59 - Karsten Hoffmeyer +* 51 - Jeroen De Dauw +* 37 - Niklas Laxström +* 14 - translatewiki.net +* 5 - Maciej Brencz +* 4 - Felipe de Jong +* 4 - Siebrand Mazeland +* 2 - Alex Winkler +* 2 - Stephan Gambke +* 2 - Toni Hermoso Pulido +* 1 - Amir E. Aharoni +* 1 - Felipe Schenone +* 1 - Jaider Andrade Ferreira +* 1 - James Forrester +* 1 - Justin Du +* 1 - Sébastien Beyou +* 1 - Virginia Cepeda diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.1.md new file mode 100644 index 0000000..4d1f1e1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.1.md @@ -0,0 +1,51 @@ +# Semantic MediaWiki 2.5.1 + +Released on April 22, 2017. + +## New feature + +* [#2357](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2357) as `ec3810d` Added [deprecation notices](https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Deprecation_notices) system (#2357, #2384, #2401) to `Special:SemanticMediaWiki` in support for the upcoming 3.0 release + +## Enhancements + +* [#2356](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2356) as `c781b02` Extended [`smwgEnabledHttpDeferredJobRequest`](https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledHttpDeferredJobRequest) to allows `SMW_HTTP_DEFERRED_LAZY_JOB` (#2356) +* [#2358](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2358) as `769ca88` Enforces "Property" and "Concept" canonical namespaces +* [#2367](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2367) as `ec6d5c1` Added a more verbose error message for failed [allows values](https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list) +* [#2386](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2386) as `cd31a79` Extended the [contents importer](https://www.semantic-mediawiki.org/wiki/Help:Contents_importer) to support the MediaWiki's XML format +* [#2387](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2387) as `6d11e5a` Improved the display of `Special:Browse` in connection with mobile devices and the `MobileFrontend` extension +* [#2388](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2388) as `74afabe` Ensured the content for the full-text search is in sync with the "SemanticData" primary data update +* [#2414](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2414) as `3e32ad3` Add support for the display of [query references](https://www.semantic-mediawiki.org/wiki/Help:Query_reference) on a subobject +* [#2417](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2417) as `55b3d99` Add a more verbose error message to the "WikiPageValue" + +## Bug fixes and internal code changes + +* [#2351](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2351) as `8a9b94d` Fixed `[` encoding in `Highlighter` to allows for some `#info` post-processing +* [#2353](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2353) as `2414cb8` Fixed "Undefined index: HTTP_ACCEPT" in Special:URIResolver +* [#2354](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2354) as `21ee86c` Fixed a "Out of range value ..." in DB strict mode caused by the "PropertyStatisticsTable" +* [#2359](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2359) as `ed5686a` Fixed a "SubSemanticData::copyDataFrom ... null given" message +* [#2361](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2361) as `85b2386` Fixed `EntityIdDisposerJob::dispose` to use an int value +* [#2363](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2363) as `bad1460` Fixed pre-process of title content in the `Highlighter` +* [#2365](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2365) as `f5a30dd` Added update marker to track and avoid having `refreshLinksPrioritized` (MW 1.29+) to issue store updates +* [#2373](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2373) as `8a37d42` Added detection of `SMW off/on` for annotations within system messages +* [#2374](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2374) as `6ddb4c6` Added detection of property max count to `Special:PropertyLabelSimilarity` +* [#2377](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2377) as `5d51d2c` Fixed "Uncaught Error: Unknown dependency: jquery.ui.autocomplete" in `Special:Browse` when displayed by the `MobileFrontend` extension +* [#2385](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2385) as `727b825` Fixed display if unparsed error text in wikitext display +* [#2389](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2389) as `b1800eb` Fixed counting of links in `ParserCachePurgeJob` +* [#2393](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2393) as `013da5a` Added `PageUpdater::isHtmlCacheUpdate` to disable `HTMLCacheUpdateJob ` due to [T154427](https://phabricator.wikimedia.org/T154427) +* [#2397](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2397) as `2af43cb` Fixed `SemanticData::getPropertyValues` to always return an indexed array +* [#2405](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2405) as `982f1dc` Fixed normalization of error messages in the `API` output +* [#2406](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2406) as `7d4a0f5` Fixed duplicate detection for sort conditions in `prop.chain` notations in connection with [`$smwgQFilterDuplicates`](https://www.semantic-mediawiki.org/wiki/Help:$smwgQFilterDuplicates) +* [#2410](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2410) as `d2cb5b7` Fixed the appearance of an `index` parameter in the `further results` link in connection with the `+|lang` printout parameter +* [#2412](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2412) as `d6aca45` Fixed order of parameters in `Special:Ask` on the event of a `further results` link that contains `+|...` parameters +* [#2413](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2413) as `d017a15` Fixed ID creation of temporary queries in `UniquenessConstraintValueValidator` when a uniqueness constraint isn't cached +* [#2415](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2415) as `88e8884` Fixed URI value encoding for the [`External identifier`](https://www.semantic-mediawiki.org/wiki/Help:Type_External_identifier) type + +## Deprecations + +* [#2362](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2362) as `4c004e4` Deprecated [`$smwgAdminRefreshStore`](https://www.semantic-mediawiki.org/wiki/Help:$smwgAdminRefreshStore) in favor of +[`$smwgAdminFeatures`](https://www.semantic-mediawiki.org/wiki/Help:$smwgAdminFeatures) to be removed with SMW 3.1.0 +* [#2364](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2364) as `aba22d8` Fixed inconsistent list name parameter settings : + * [`$smwgQueryDependencyPropertyExemptionList`](https://www.semantic-mediawiki.org/wiki/Help:$smwgQueryDependencyPropertyExemptionList) +instead of now deprecated `$smwgQueryDependencyPropertyExemptionlist` to be removed with SMW 3.1.0 and + * [`$smwgQueryDependencyAffiliatePropertyDetectionList`](https://www.semantic-mediawiki.org/wiki/Help:$smwgQueryDependencyAffiliatePropertyDetectionList) +instead of now deprecated `$smwgQueryDependencyAffiliatePropertyDetectionlist` to be removed with SMW 3.1.0 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.2.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.2.md new file mode 100644 index 0000000..1d073c8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.2.md @@ -0,0 +1,22 @@ +# Semantic MediaWiki 2.5.2 + +Released on May 17, 2017. + +## Enhancements + +* [#2449](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2449) as `8783268` Made property pages show the source name of the redirect (synonym) without a `DisplayTitle` formatter +* Many new translations for numerous languages by the communtity of [translatewiki.net](https://translatewiki.net/w/i.php?title=Special%3AMessageGroupStats&x=D&group=mwgithub-semanticmediawiki&suppressempty=1) + +## Bug fixes and internal code changes + +* [#2413](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2413) as `313d08e` Enforced `NO_DEPENDENCY_TRACE` on queries with namespace `NS_SPECIAL` +* [#2426](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2426) as `595efea` Removed duplicate entry for `$smwgFulltextSearchPropertyExemptionList` +* [#2434](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2434) as `bb6ef9a` Made `ParserAfterTidy` to check "readOnly" mode +* [#2438](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2438) as `ba2c6e7` Made `ArticlePurge` add a safeguard to flush query result cache +* [#2444](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2444) as `8c9c4c3` Fixed `NamespaceManager` to avoid reset of user settings +* [#2446](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2446) as `6697da4` Added safeguard against duplicate ID creation +* [#2448](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2448) as `60cd466` Added usage of `forcedUpdate` on redirect jobs +* [#2450](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2450) as `4adfd2d` Fixed `QueryDependencyLinksStore` to avoid `ORDER BY/GROUP BY` on select +* [#2451](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2451) as `8a9bef2` Fixed "ext.smw.dataItem.time.js" to construct a UTC date object +* [#2457](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2457) as `5619b55` Fixed `JulianDay` values to use a consistent format +* [#2463](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2457) as `3f7f47e` Made `SMWSql3SmwIds` set legacy cache only on success diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.3.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.3.md new file mode 100644 index 0000000..e65bdad --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.3.md @@ -0,0 +1,35 @@ +# Semantic MediaWiki 2.5.3 + +Released on July 8, 2017. + +## Enhancements + +* [#2534](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2534) as `d7077b8` Added [`$smwgLocalConnectionConf`](https://www.semantic-mediawiki.org/wiki/Help:$smwgLocalConnectionConf) configuration parameter together with respective functionality allowing for modifications on connection providers in environments with multiple relational databases +* Many new translations for numerous languages by the communtity of [translatewiki.net](https://translatewiki.net/w/i.php?title=Special%3AMessageGroupStats&x=D&group=mwgithub-semanticmediawiki&suppressempty=1) + +## Bug fixes and internal code changes + +* [#2379](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2379) as `7c98b4a` Removed `ContentParser::forceToUseParser` from tests +* [#2459](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2459) as `a7b3f00` Switched Travis CI integration test to use Ubuntu Trusty operating system environment +* [#2460](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2460) as `3b6e30d` Made `ArticleDelete` restrict the pool of properties in update dispatcher +* [#2472](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2472) as `03e0b8c` Added debug output to Travis CI integration tests +* [#2473](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2473) as `9f78042` Replaced `isSupportedLanguage` with `isKnownLanguageTag` to allow for any known language usage +* [#2474](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2474) as `d1ba666` Fixed limit when the number of results is greater as the `$smwgQMaxLimit` or in `$smwgQMaxInlineLimit` where it is reset to the default value despite the global limitation +* [#2475](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2475) as `a3499b6` Fixed behavior in case of `$wgCapitalLinks = false;` by restricting property name uppercase conversion to special properties only +* [#2477](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2477) as `c12fec7` Fixed `UpdateDispatcherJob` to check for null title +* [#2478](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2478) as `681b0fc` Tidyed `QueryToken` +* [#2481](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2481) as `7c3900f` Made `RequestOptions` cast "int" on `limit` and `offset` +* [#2482](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2482) as `2ff92bd` Added TransactionalDeferredCallableUpdate +* [#2491](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2491) as `ca36069` Provided `ChunkedIterator` to avoid possible out of memory situations in cases where outdated entities reach a unhandable level +* [#2493](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2493) as `409025d` Prevended unintended override of `PropertyTablePrefix` in hook +* [#2496](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2496) as `fb3d604` Normalized message value arguments +* [#2500](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2500) as `3edb303` Made "Special:Browse" avoid API request on legacy setting +* [#2502](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2502) as `a527bbe` Provided POST purge link to avoid confirmation by users using action "purge" +* [#2512](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2512) as `86f9733` Made `DataRebuilder` to report progress on disposed entities +* [#2518](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2518) as `a851f8d` Prevended "PHP Notice: A non well formed numeric value encountered" on `Title::touched` +* [#2522](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2522) as `36cec82` Set a comma as default for `valuesep` with the "template" format +* [#2524](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2524) as `36cec82` Ensured that only marked `isDeferrableUpdate` can use a `transactionTicket` +* [#2526](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2526) as `9d3e0f2` Prevented failing test in `QueryDependencyLinksStoreTest` +* [#2527](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2527) as `f72df04` Made `BooleanValue` always recognize canonical boolean string +* [#2530](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2530) as `ad32a26` Made `InternalParseBeforeLinks` cast `$smwgEnabledSpecialPage` setting late +* `2bf07c3` Removed update marker on delete event diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.4.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.4.md new file mode 100644 index 0000000..b6a3d67 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.4.md @@ -0,0 +1,15 @@ +# Semantic MediaWiki 2.5.4 + +Released on August 7, 2017. + +## Enhancements + +* [#2547](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2547) as `b527e3c` Added type `parser-html` to `JSONScript` testing to allow assertions on HTML structure +* Many new translations for numerous languages by the communtity of [translatewiki.net](https://translatewiki.net/w/i.php?title=Special%3AMessageGroupStats&x=D&group=mwgithub-semanticmediawiki&suppressempty=1) + +## Bug fixes and internal code changes + +* [#2563](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2563) as `f17f90f` Made `'HtmlValidator'` check for `'CssSelectorConverter'` +* [#2568](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2568) as `c8d6718` Made each parameter of the template calls created by the template format start on a new line +* [#2579](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2579) as `39b074b` Fixed class `'SMW\DataItemException'` not found +* [#2590](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2590) as `61ea7e0` **SECURITY** Made "Special:SemanticMediaWiki" ("Special:SMWAdmin") to check `'wpEditToken'` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.5.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.5.md new file mode 100644 index 0000000..979e5e8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.5.md @@ -0,0 +1,11 @@ +# Semantic MediaWiki 2.5.5 + +Released on October 25, 2017. + +## Bug fixes and internal code changes + +* [#2672](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2672) as `e17160e` Changes obfuscator to use `[` instead of `[` for the links in values detection +* [#2692](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2692) as `5ddd9ca` Fixes "EventListenerRegistry.php: Call to a member function getArticleID() on null" +* [#2767](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2767) as `848ed0c` Forces data updates on template refreshs +* [#2773](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2773) as `55b6b72` Adds in MediaWiki's default script parameters in non-standard setups +* [#2780](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2780) as `4bc0d5f` Brings additional checks for namespaces that are enabled for links and annotations diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.6.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.6.md new file mode 100644 index 0000000..8eb1e71 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.6.md @@ -0,0 +1,10 @@ +# Semantic MediaWiki 2.5.6 + +Released on February 14, 2018. + +## Bug fixes and internal code changes + +* [#2855](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2855) as `5acfd1a` Fixes link type relating to special page "Browse" +* [#2856](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2856) as `2db4d30` Fixes link type relating to special page "ExportRDF" +* [#2941](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2941) as `4ebb529` Removes deprecated `ApiBase::dieUsage` +* [#2986](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2986) as `9a8d1c8` Makes the "External identifier" (`_eid`) datatype use HTML format in references diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.7.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.7.md new file mode 100644 index 0000000..d988628 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.7.md @@ -0,0 +1,11 @@ +# Semantic MediaWiki 2.5.7 + +Released on August 9, 2018. + +## Bug fixes and internal code changes + +* [#3038](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2855) as `4ebb125` Removes deprecated `ParserOptions::setEditSection()` +* [#3176](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3176) as `6de5e42` Removes deprecated `wfBCP47()` +* [#3211](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3211) as `6196919` Makes `-3D` decode in parameter list to allow the usage of equal signs +* [#3221](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3221) as `954ff20` Converts `log-show-hide-{$type}` system messages to `logeventslist-{$type}-log` +* [#3222](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3222) as `dae4dd5` Fixes the `Title` class to check for the NULL case for "illegal" characters diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.8.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.8.md new file mode 100644 index 0000000..a1492bb --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-2.5.8.md @@ -0,0 +1,13 @@ +# Semantic MediaWiki 2.5.8 + +Released on September 7, 2018. + +## Enhancements + +* #[3322](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3322) as `d9b3bcf` Improves `UpdateDispatcherJob` selection of subjects on `forcedUpdate` +* #[3341](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3341) as `726f54b` Adds support for installation via MediaWiki's "install.php" script + +## Bug fixes and internal code changes + +* #[3177](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3177) as `ad23b16` Removes deprecated "jquery.json" module +* #[3386](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3386) as `a24965c` Fixes encode/decode issues for special property "External formatter URI" diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.0.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.0.0.md new file mode 100644 index 0000000..3a4a3bb --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.0.0.md @@ -0,0 +1,375 @@ +# Semantic MediaWiki 3.0 + +Released on October 11, 2018. + +## Highlights + +This release brings many highlights: + +### User interface changes + +Several user interface changes are deployed to make user facing front-end components more intutive and mobile-friendly by improving the responsiveness on small screens including: + +* Special page "Ask" ([#2891](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2891), [#2893](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2893), [#2898](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2898), [#3415](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3415)) – including further enhancements, most notably input assistance on input fields ([#2699](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2699)), comprehensive input help ([#2907](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2907)) and compact links ([#3017](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3017)) +* Special page "Browse" ([#2891](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2891), [#2875](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2875)) – including further enhancements, grouping of properties ([#2874](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2874)) and compact links ([#3017](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3017)) +* Special page "SemanticMediaWiki" ([#3218](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3218)) +* Property pages – boxed pagination ([#3236](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3236)), tabbed navigation ([#3308](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3308)) including usage count information ([#3440](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3440)) and custom tabs ([#3416](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3416)) +* Concept pages – boxed pagination ([#3236](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3236)), tabbed navigation ([#3308](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3308)) and custom tabs ([#3416](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3416)) +* Factbox ([#2906](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2906)) +* Special page "Concepts" ([#3333](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3333)) + +### List formats and template format rework + +The "list" formats (`list`, `ol` and `ul`) and the `template` format were completely reworked with the latter being renamed to `plainlist` [(#3130)](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3130) now being the default result format if no result format was explicitly specifed for the query. Most notably dedicated separators for values, properties and result "rows" (`sep`, `propsep`, `valuesep`) were introduced as well as class attributes to HTML elements of "list", "ol" and "ul" formats were added to facilitate easy indidual styling. Note that the `plainlist` format does not apply these additional class attributes. + +**See the [migration guide](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/technical/migration-guide-3.0.md#list-formats-incl-list-ol-ul-template) for a comprehensive overview of the changes done.** + +### Search and query + +Local-specific (ICU) sorting and collation is now possible for pages as well as values of datatype "Page" [(#2065)](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2065) facilitated via configuration parameter [`$smwgEntityCollation`](https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation) [(#2429).](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2429) + +Special page "Search" now provides and additional search form accessible via the "Extended" selector in case the ["SMWSearch" feature](https://www.semantic-mediawiki.org/wiki/Help:SMWSearch) was enabled [(#3126).](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3126) with custom search forms definable in the new "smw/schema" namespace [(#3431).](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3431) + +It is now possible to define [remote sources which can be queried](https://www.semantic-mediawiki.org/wiki/Help:Remote_request) using special page "Ask" or doing inline queries [(#3167).](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3167) + +### Performance + +Various effort have been put into improving the performance of the software, most notably with these three code changes: +[#3142](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3142), [#3261](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3261) and [#3286](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3286) with the latter facilitating less expensive paging limits on various user facing special pages via configuration parameter [`$smwgPagingLimit`](https://www.semantic-mediawiki.org/wiki/Help:$smwgPagingLimit). + +## Upgrading + +Even though Semantic MediaWiki now supports the extension registration approach with "extension.json" (#1732), `enableSemantics` remains the sole point of activiation for SMW itself to ensure that data and objects are prepared in advanced and users do not have to modify any existing settings in their "LocalSettings.php" file. + +This release requires (#2065, #2461, #2499) to run the "setupStore.php" or "update.php" script and a missing upgrade process will redirect users to an [error message](https://www.semantic-mediawiki.org/wiki/Help:Upgrade) to remind him or her of a required action. Note that running the schema update may take quite long (minutes on a medium sized site, many hours on a large site). + +**Note that SMW requires write access to the code directory meaning that you currently cannot update. This will be fixed in the following relase allowing to configure an alternative directory for this purpose.** + +After the upgrade, please check the "Deprecation notices" section on special page "SemanticMediaWiki" to adapt and modify listed deprecated settings. + +If you are still using maintenance scripts identifiable by the "SMW_" prefix you must now migrate to the new maintenance script names. See the help pages on [maintenance scrips](https://www.semantic-mediawiki.org/wiki/Help:Maintenance_scripts) for further information. + +[#3198](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3198) switched to PHP 5.6 as minimum requirement as well as to MediaWiki 1.27 as minimum requirement. + +**Please also carefully read the section on breaking changes and deprecations further down in these release notes. We have also prepared a [migration guide](https://www.semantic-mediawiki.org/wiki/Semantic_MediaWiki_3.0.0/Migration_guide) for you.** + +## Miscellaneous + +Semantic MediaWiki no longer provides file releases [(See #3347).](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3347) If command line access to the webspace is not available or if the hoster imposes restrictions on required functionality an [individual file release](https://github.com/SemanticMediaWiki/IndividualFileRelease) will have to be created. + +## New features and enhancements + +### Setup + +* [#1732](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1732) Added support for "extension.json" +* [#2916](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2916) Added supplements jobs during the installation process +* [#3095](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3095) Added database upgrade check with ".smw.json" + +### Store + +* [#2461](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2461) Improved performance on fetching incoming properties +* [#2882](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2882) Added detection of duplicate entities upon storage +* [#2516](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2516) Added an optimization run during the installation process (`setupStore.php`) for SQL tables managed by Semantic MediaWiki +* [#2065](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2065) Added entity specific collation support with help of the [`$smwgEntityCollation`](https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation) setting +* [#2499](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2499) Added [`$smwgFieldTypeFeatures`](https://www.semantic-mediawiki.org/wiki/Help:$smwgFieldTypeFeatures) with `SMW_FIELDT_CHAR_NOCASE` to enable case insensitive search queries +* [#2536](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2536) Added `SMW_FIELDT_CHAR_LONG` as flag for `$smwgFieldTypeFeatures` to extend the indexable length of blob and uri fields to max of 300 chars +* [#2823](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2823) Added `SMW_QSORT_UNCONDITIONAL` +* [#3080](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3080) Added warm up caching for the ID lookup +* [#3142](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3142) Replaced `DISTINCT` with `GROUP BY` in `SQLStore::getPropertySubjects` +* [#3261](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3261) Added support for index hint in `DataItemHandler` to enforce specific index selection +* [#3314](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3314) Moved the `FIXED_PROPERTY_ID_UPPERBOUND` from 50 to 500 to increase the range for fixed property IDs +* [#3353](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3353) Added support in SQLite to drop fields without the need to delete and restore the entire store +* [#3360](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3360) In MySQL/MariaDB increase ID field size from "int(8)" to "int(11)". Postgres and SQLite have no size restriction. +* [#3390](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3390) Adds the `smw_rev` field to the `smw_object_ids` table to track an entity instance and its associated revision ID (represents the raw content) +* [#3397](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3397) MediaWiki removed `Database::nextSequenceValue` in commit wikimedia/mediawiki@0a9c55b#diff-278465351b7c14bbcadac82036080e9f. SMW added this functionality back for the sake of Postgres. + +#### ElasticStore + +* [#3054](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3054) Added `ElasticStore` to use Elasticsearch as query backend + - #3237, #3241, #3245, #3247, #3249, #3250, #3253 +* [#3152](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3152) Added extra debug query parameter (score_set, q_engine) to special page "Ask" + +### Search + +* [#2738](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2738) Added information whether `SMWSearch` search mode is enabled or not for special page "Search" +* [#3006](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3006) Disabled default autocompletion for terms starting with `[[` in special page "Search" for the `SMWSearch` type +* [#3096](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3096) Added section title display support to indicate subobjects +* [#3126](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3126) Added extended power profile form +* [#3143](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3143) Hides namespace section and add auto-discovery +* [#3145](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3145) Added simplified term parser to `SMWSearch` (see #3157, #3281) +* [#3234](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3234) Added support for displaytitle in `SearchResult` +* [#3237](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3237) Added support for highlights from external search engine, if available +* [#3419](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3419) Add search autocompletion options when `$wgSearchType = 'SMWSearch';`: + * `in:Foo bar` equivalent to `[[~~*Foo bar*]]` + * `phrase:Foo bar` equivalent to `[[~~"Foo bar"]]` + * `has:Foo bar` equivalent to `[[Foo bar::+]]` + +### Query + +* [#2398](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2398) Added `#ask` and `#show` parser function support for `@deferred` output mode (see also #3257) +* [#2476](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2476) Added [`$smwgQExpensiveThreshold`](https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveThreshold) and [`$smwgQExpensiveExecutionLimit`](https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit) to count and restrict expensive `#ask` and `#show` functions on a per page basis +* [#2953](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2953) Added support for natural sort (`n-asc`, `n-desc`) of printout column values +* [#2662](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2662) Added `+depth` as syntax component for a condition to restrict the depth of class and property hierarchy queries +* [#2558](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2558) Added `like:` and `nlike:` comparator operator for approximate queries +* [#2572](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2572) Added `@annotation` as special processing mode to embedded `#ask` queries +* [#2673](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2673) Added the `Query state` special property to be able to track an internal state when a `#ask` uses `@annotation` or `@deferred` as special execution mode. In addition to internal usage, one can also now find all deferred queries with `{{#ask: [[Query state::200]] |format=ul }}` +* [#2873](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2873) Added support for `in:` as expression to the #ask syntax +* [#3125](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3125) Added support for `phrase:` as expression + +#### Result formats + +* [#2420](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2420) Added support for a datatable output in the `format=table` (and `broadtable`) result printer +* [#2515](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2515) Added support for `#LOCL#TO` date formatting to display a [local time](https://www.semantic-mediawiki.org/wiki/Local_time) offset according to a user preferrence +* [#2677](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2677) Added `+width` as parameter to the `format=table` (and `broadtable`) result printer +* [#2690](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2690) Added the `type` parameter to `format=json` in support for a simple list export +* [#2718](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2718) Added ad-hoc export for the `format=table` datatable +* [#2824](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2824) Added `bom` as parameter to `format=csv` +* [#2826](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2826) Added `valuesep` as parameter to `format=csv` to define a value separator +* [#2822](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2822) Added add `merge` parameter to `format=csv` +* [#2844](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2844) Renamed output formatter `#-ia` to `#-raw` +* [#3024](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3024) Added `format=templatefile` to support individual export formats defined using MediaWiki templates +* [#3009](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3009) Added `#tick` and `#num` output formatter to boolean value type +* [#3011](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3011) Added the [`$smwgDefaultOutputFormatters`](https://www.semantic-mediawiki.org/wiki/Help:$smwgDefaultOutputFormatters) setting to declare default output formatter for a type or property +* [#1315](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1315) Added support for media files to the `feed` printer +* [#3130](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3130) Reworked `list` format +* [#3162](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3162) Added support for `{{DISPLAYTITLE}}` to the `feed` printer +* [#3136](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3136) Added `class` parameter to `list` format + +### API + +* [#2696](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2696) Added a new `smwbrowse` API module ([#2717](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2717), [#2719](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2719), [#2721](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2721)) +* [#3052](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3052) Added `api_version` to ask, askargs API +* [#3129](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3129) Added API `pvalue` browse module +* [#3381](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3381) Added API `psubject` browse module + +### Misc + +* [#794](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/794) Added `SMW_PARSER_UNSTRIP` to [`$smwgParserFeatures`](https://www.semantic-mediawiki.org/wiki/Help:$smwgParserFeatures) enabling to use unstripped content on a text annotation +* [#2348](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2348) Allow showing annotations even if they are improper for datatype "Text" +* [#2435](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2435) Added filtering of invisible characters (non-printable, shyness etc.) to armor against incorrect annotations +* [#2453](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2453) Changed the approach on how referenced properties during an article delete are generated to optimize the update dispatcher +* [#2471](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2471) Added [`SMW_CAT_REDIRECT`](https://www.semantic-mediawiki.org/wiki/Help:$smwgCategoryFeatures) option to allow finding redirects on categories +* [#2494](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2494) Added [`$smwgChangePropagationProtection`](https://www.semantic-mediawiki.org/wiki/Help:$smwgChangePropagationProtection) and changed the approach on how property modifications are propagated +* [#2543](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2543) Extended [`EditPageHelp`](https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledEditPageHelp) to be disabled using a user preference +* [#2561](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2561) Added listing of improper assignments to the property page for an easier visual control +* [#2595](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2595) Improved the content navigation in special page "SemanticMediaWiki" +* [#2600](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2600) Added [`$smwgCreateProtectionRight`](https://www.semantic-mediawiki.org/wiki/Help:$smwgCreateProtectionRight) setting to control the creation of new properties and hereby annotations as part of the [authority mode](https://www.semantic-mediawiki.org/wiki/Help:Authority_mode) +* [#2615](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2615) Added `filter=unapprove` to special page "WantedProperties" +* [#2632](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2632) Added [uniqueness violation](https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness) check on the property page for the property label used +* [#2699](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2699) Added an [input assistance](https://www.semantic-mediawiki.org/wiki/Help:Input_assistance) for the condition textbox on special page "Ask" +* [#2726](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2726) Added entity [input assistance](https://www.semantic-mediawiki.org/wiki/Help:Input_assistance) for editors and the input field on special page "Search" ([#2756](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2756)) +* [#2776](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2776) Added tracking of changes to categories (see 2495) +* [#2785](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2785) Added new styling to property page value list +* [#2796](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2796) Allows "rendering of HTML" on special page "Ask" when using `|headers=plain` in queries +* [#2801](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2801) Added `--skip-optimize` and `--skip-import` to `setupStore.php` (see 2516) +* [#2803](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2803) Filter categories from transcluded content in `format=embedded` +* [#2815](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2815) Added `#nowiki` support for external identifier type +* [#2820](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2820) Added check on declarative property usage +* [#2840](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2840) Added [`$smwgPropertyReservedNameList`](https://www.semantic-mediawiki.org/wiki/Help:$smwgPropertyReservedNameList) to define reserved property names +* [#2842](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2842) Added [`$smwgURITypeSchemeList`](https://www.semantic-mediawiki.org/wiki/Help:$smwgURITypeSchemeList) to restrict valid URI scheme +* [#2861](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2861) Added restriction for a property name that contains a CR, LF +* [#2867](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2867) Added singular, plural category canonical check +* [#2874](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2874) Added grouping support for properties to special page "Browse" +* [#2875](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2875) Changed the theme on special page "Browse" to `smwb-theme-light` +* [#2878](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2878) Added value filter to the property page +* [#2883](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2883) Added function to special page "SemanticMediaWiki" to find duplicate entities +* [#2889](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2889) Added method to make subobject sortkeys distinguishable +* [#2891](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2891) Added flex (responsive) mode to special page "Ask" and special page "Browse" div table +* [#2893](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2893) Changed special page "Ask" appearance ([#2898](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2898)) +* [#2895](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2895) Changed display of named subobject caption to appear without an underscore +* [#2906](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2906) Added flex (responsive) mode to the factbox +* [#2907](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2907) Added modal help to special page "Ask" +* [#2913](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2913) Added a job queue watchlist feature and the [`$smwgJobQueueWatchlist`](https://www.semantic-mediawiki.org/wiki/Help:$smwgJobQueueWatchlist) setting +* [#2922](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2922) Added `SMW_BROWSE_SHOW_SORTKEY` flag to the [`$smwgBrowseFeatures`](https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseFeatures) setting +* [#2930](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2930) Added limit to value selection on the property page +* [#2932](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2932) Added ["removeDuplicateEntities.php"](https://www.semantic-mediawiki.org/wiki/Help:Maintenance_script_removeDuplicateEntities.php) script to remove duplicate entities +* [#2933](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2933) Added [`$smwgDefaultLoggerRole`](https://www.semantic-mediawiki.org/wiki/Help:$smwgDefaultLoggerRole) setting to define logging granularity for Semantic MediaWiki +* [#2973](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2973) Set initial stats entry for non-fixed predefined properties +* [#3017](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3017) Added the [`$smwgCompactLinkSupport`](https://www.semantic-mediawiki.org/wiki/Help:$smwgCompactLinkSupport) setting to compact links produced by special page "Ask" and special page "Browse" +* [#3019](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3019) Added experimental support for the `SMW_NS_RULE` namespace +* [#3020](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3020) Added the [keyword](https://www.semantic-mediawiki.org/wiki/Help:Type_Keyword) (`_keyw`) type +* [#3029](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3029) Added function to keep updated entities in-memory to improve rebuild performance +* [#3088](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3088) Modernized special page "Page property" +* [#3167](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3167) Added support for `RemoteRequest` to share and consolidate query results from remote sources +* [#3284](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3284) Added the `--dispose-outdated` flag to the "rebuildData.php" maintenance script +* [#3289](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3289) Added support for the JSON format in the `Allows value list` definition +* [#3292](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3292) Added support for bounded intervals, ranges in `Allows value` for number and quantity types +* [#3293](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3293) Added tanslation page annotation (`_TRANS`) support +* [#3308](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3308) Extended content representation on property and concept pages using tabs +* [#3318](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3318) Added `smwgPostEditUpdate` to manage post edit event handling for seconday updates via the API interface +* [#3319](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3319) Sets an extra parser key for queries that contain a self-reference to improve the result display after an edit event +* [#3339](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3339) Added support for uniqueness validation in records/references +* [#3416](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3416) Added support for `
    ` on property pages to put user-defined content into SMW-defined tabs +* [#3415](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3415) Added "compact view" to hide query on special page "Ask" +* [#3429](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3429) Changed default submit method of special page "Ask" to POST. Submit method can be modified by setting `$smwgSpecialAskFormSubmitMethod` to `SMW_SASK_SUBMIT_GET`, `SMW_SASK_SUBMIT_REDIRECT`, or explicitly setting the default `SMW_SASK_SUBMIT_POST`. +* [#3431](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3431) Moved namespace "Rule" to namespace "smw/schema" +* [#3436](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3436) When an entity is deleted, check for possible open references and keep the ID in case it has a residual reference by turning it into a simple object instance (setting `smw_rev` and `smw_proptable_hash` to null) +* [#3440](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3440) Changed property pages to show the property usage count in the tab +* [#3441](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3441) Added flags to maintenance script "rebuildData.php": + * `--revision-mode`: Skip entities where its associated revision matches the latests referenced revision of an associated page + * `--force-update`: Force an update even when an associated revision is known +* [#3443](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3443) Changed job queue job names from `SMW\` prefix to `smw.` prefix. Example: `SMW\UpdateJob` -> `smw.update` + +## Bug fixes + +* [#481](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/481) Fixed "further results" link with special page "Ask" and templates +* [#502](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/502) Fixed template with named arguments use in #show +* [#839](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/839) Fixed and extended special page "Ask" to be more maintainable +* [#2001](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2001) Fixed issue with `smw_subobject` and the generation of duplicate entities +* [#2505](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2505) Fixed hard-coded default value for `format=csv` +* [#2586](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2586) Fixed class assignments for empty cells in `format=table` +* [#2621](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2621) Fixed sort/order field behaviour in special page "Ask" +* [#2652](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2652) Fixed handling of multiple checkbox parameter in special page "Ask" +* [#2817](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2817) Fixed Fix preg_replace ... unmatched parentheses +* [#2871](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2871) Fixed PHP 7.2 `each` use in `SearchResultSet` +* [#2881](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2881) Fixed display of display dispatched ID in `DataRebuilder` +* [#2884](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2884) Fixed "Cannot use object of type MappingIterator as array" +* [#2896](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2896) Fixed display of inverse indicator for translated predefined properties +* [#2902](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2902) Fixed "LBFactory::getEmptyTransactionTicket ... does not have outer scope" +* [#2909](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2909) Fixed use of `LBFactory::getEmptyTransactionTicket` +* [#2915](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2915) Fixed connection instantiation +* [#2917](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2917) Fixed "DataItemException ... Unserialization failed: the string ..." +* [#2919](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2919) Fixed fetching all entities during a delete +* [#2958](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2958) Fixed to mark subobject entities as done in `ExportController` +* [#2963](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/2963) Fixed recognition of `$wgDBadminuser` in maintenance script "setupStore.php" +* [#2969](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2969) Fixed PHP 7.2 "Warning: count(): Parameter must be an array or an object that implements Countable" issue +* [#3000](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3000) Fixed fetching namespace aliases +* [#3010](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3010) Fixed breaking links in an abbreviated text by the `StringValueFormatter` +* [#3025](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3025) Fixed storage of query information during a `preview` activity +* [#3026](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3026) Fixed replacement of `smw_proptable_hash` during setup +* [#3031](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3031) Fixed duplicate entry `smw_prop_stats` exception +* [#3033](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3033) Fixed "The supplied ParserOptions are not safe ... set $forceParse = true" during the upload of files +* [#3049](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3049) Fixed concept selection +* [#3067](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3067) Fixed processing of simple links containing `|` during the in-text annotation parsing +* [#3076](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3076) Fixed factbox magic works +* [#3082](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3082) Fixed use of `ParserOptions::setEditSection` for MW 1.31 +* [#3107](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3107) Fixed recognition of `::=` in `LinksProcessor ` +* [#3134](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3134) Escape `/` in property names +* [#3144](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3144) Return IDs as integer when matching all entities +* [#3336](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3336) Fixed issue in special page "Ask" with sort parameter where the first parameter is left empty +* [#3322](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3322) Fixed issue in `UpdateDispatcherJob` with selecting unrelated entities +* [#3336](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3336) Fixed special page "Ask" to recognize first empty sort parameter as page title, e.g. `|sort=,Has foo` +* [#3375](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3375) Fixed error "Invalid sort: title. Must be one of: relevance". MediaWiki default sort type is only `relevance`. SMW added `title`, `recent`, and `best`. +* [#3389](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3389) Fixed "Error: 23505 ERROR: duplicate key value violates unique constraint "smw_new_pkey"" by setting SQL temporary table `id` field to type `SERIAL` instead of `INTEGERY PRIMARY KEY` +* [#3393](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3393) Fixed MW 1.31+ highlighter issue causing extra inline `

    ` which added newlines to display +* [#3413](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3413) Fixed a performance issue for maintenance script "rebuildData.php" by doing `SELECT` on pages+namespaces rather than just pages. + +## Breaking changes and deprecations + +* [#1345](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/1345) Setting multiple values to the `#set` and `#subobject` paser functions using pipe `|` is deprecated. Use the `+sep` parameter instead. +* [#2495](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2495) `Store::getPropertySubjects` and `Store::getAllPropertySubjects` will return an `Iterator` instead of just an array +* [#2588](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2588) Removed special page "SemanticStatistics" +* [#2611](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2611) Removed the user preference `smw-ask-otheroptions-collapsed-info` +* [#2640](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2640) Removed `$smwgAutocompleteInSpecialAsk` +* [#2659](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2659) Removed deprecated constant `SMWDataItem::TYPE_STRING` (replaced by `SMWDataItem::TYPE_BLOB`) +* [#2696](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2696) Soft deprecate the `browsebyproperty` API module, the new `smwbrowse` should be used instead +* [#2705](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2705) Removed usages of deprecated `ResultPrinter::getParameters` +* [#2724](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2724) Added `$smwgUseComparableContentHash` and will be removed with 3.1 to help migrating subobject hash generation +* [#2730](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2730) Replaced `$smwgCacheUsage` settings +* [#2732](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2732) Replaced `$smwgQueryProfiler` settings +* [#2748](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2748) Removed `ContextSource` from `ResultPrinter` instances +* [#2750](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2750) Removed `$smwgSparqlDatabaseMaster` and `$smwfGetSparqlDatabase` +* [#2752](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2752) Renamed `$smwgSparqlDatabaseConnector` to `$smwgSparqlRepositoryConnector` +* [#2761](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2761) Renamed `$smwgDeclarationProperties` +* [#2768](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2768) Changed default setting for `$smwgSparqlRepositoryConnector` +* [#2788](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2788) Resources are now being exported as Internationalized Resource Identifiers (IRI) by default. +* [#2790](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2790) Removed deprecated entry points for maintenance scripts +* [#2802](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2802) Consolidated `$smwgParserFeatures` setting +* [#2806](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2806) Consolidated `$smwgCategoryFeatures` setting +* [#2821](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2821) Consolidated `smwgQSortFeatures` setting +* [#2841](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2841) Replaced `$smwgLinksInValues` with the `SMW_PARSER_LINV` flag now maintained in `$smwgParserFeatures`, PCRE option has been removed +* [#2880](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2880) Migrated special property message keys to new naming schema +* [#2899](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2899) Removed `$smwgScriptPath` +* [#2927](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2927) Removed `SEMANTIC_EXTENSION_TYPE` flag +* [#2944](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2944) Removed deprecated methods in `SMW\DIProperty` +* [#2961](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2961) Renamed `smwAddToRDFExport` hook +* [#2995](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2995) Updated old namespace in Spanish +* [#3164](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3164) Removed `SMW_NS_TYPE` ns and `$smwgHistoricTypeNamespace` +* [#3231](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3231) Consolidated `$smwgPagingLimit` setting +* [#3267](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3267) Removed `SMWQueryProcessor::getSortKeys` +* [#3285](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3285) Deprecated API module `BrowseBySubject`, use `smwbrowse` instead +* [#3307](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3307) Replaced `smwgCacheType` with `smwgMainCacheType` +* [#3315](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3315) Consolidated `smwgSparqlEndpoint` sparql endpoint setting +* [#3366](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3366) Replaced deprecated alias `SMWDIProperty` with `DIProperty` in `SMWDataValue` +* [#3364](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3364) Removed long-deprecated static functions `SMWWikiPageValue::makePage` and `SMWWikiPageValue::makePageFromTitle` +* [#3363](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3363) Removed deprecated `ResultPrinter::$m_params`. Use `ResultPrinter::$params` instead. +* [#3399](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3399) Removed several functions deprecated since SMW 1.9 from `SMW\DataValueFactory` +* [#3401](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3401) Removed long-deprecated functions `ResultPrinter::textDisplayParameters` and `ResultPrinter::exportFormatParameters` +* [#3403](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3403) Removed long-deprecated function `SMWResultArray::getNextObject` +* [#3405](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3405) Removed long-deprecated SMWDIString +* [#3406](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3406) Removed long-deprecated function `SMWRecordValue::getDV` +* [#3407](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3407) Removed deprecated global function `smwfIsSemanticsProcessed` + +## Other changes + +* [#2342](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2342) Added the display of invalid data value annotations for datatype "Text" +* [#2485](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2485) Disabled updates by the `QueryDependencyLinksStore` on a 'stashedit' activity +* [#2491](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2491) Added `ChunkedIterator` to `DataRebuilder` to avoid OOM situations in case of a large update queue +* [#2535](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2535) Fixed property namespace (`_wpp`) display in `WikiPageValue` +* [#2540](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2540) Added type `parser-html` to [`JSONScript`](https://www.semantic-mediawiki.org/wiki/Help:Integration_tests) testing to allow assertions on HTML structure +* [#2591](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2591) Discontinued reading MediaWiki `job` table, use the `JobQueue::getQueueSizes` instead +* [#2609](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2609) Added check to special page "Ask" to require JavaScript +* [#2631](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2631) Disabled purge button while JS resources are still loaded +* [#2650](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2650) Replaced some styles in special page "Ask" +* [#2653](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2653) Fixed `broadtable` width with the "MobileFrontend" extension +* [#2676](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2676) Added support for column default values in the `TableBuilder` +* [#2680](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2680) Added `null_count` column to `PropertyStatisticsTable` +* [#2691](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2691) Replaced `#info` icon set +* [#2698](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2698) Added persistent caching to the `HierarchyLookup` +* [#2714](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2714) Added `SMW::GetPreferences` hook +* [#2727](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2727) Moved parameter processing from `QueryProcessor` to `ParamListProcessor` +* [#2745](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2745) Moved `ResultPrinter` base class +* [#2747](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2747) Moved `TableResultPrinter` +* [#2751](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2751) Added `RecursiveTextProcessor` to isolate `$wgParser` access in `ResultPrinter` +* [#2765](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2765) Added `SMW::Setup::AfterInitializationComplete` hook +* [#2774](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2774) Moved `SMWQueryParser` to `SMW\Query\Parser` +* [#2783](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2783) Added `JsonSchemaValidator` +* [#2785](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2785) Moved `PropertyPage` and `ConceptPage` +* [#2845](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2845) Extended use of cached hierarchy instance +* [#2847](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2847) Introduced different approach to update query dependencies +* [#2888](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2888) Introduced `Setup::initExtension` to allow an early registration of `SpecialPage_initList` and `ApiMain::moduleManager` hooks +* [#2908](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2908) Refactored the `ConnectionProvider` +* [#2928](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2928) Moved `SQLStore::fetchSemanticData` to `SemanticDataLookup` +* [#2972](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/2972) Added `SMW::SQLStore::EntityReferenceCleanUpComplete` hook +* [#3032](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3032) Added the `SMW::LinksUpdate::ApprovedUpdate` and `SMW::Parser::ChangeRevision` hook +* [#3061](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3061) Added detection of changes emitted by the `BlockIpComplete`, `UnblockUserComplete`, and `UserGroupsChanged` hook +* [#3063](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3063) Moved import files to data folder +* [#3070](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3070) Added `SMW::Admin::TaskHandlerFactory` hook +* [#3131](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3131) Added `CONTENT_MODEL_RULE` to be able to do schema validation before a save sometime in the future. Switching to an alternate model at a later stage would only create headaches. +* [#3138](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3138) Fixed use of `$wgExtensionDirectory` to find SMW's "extension.json" +* [#3146](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3147) Moved table hash cache handling +* [#3160](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3160) Moved `FeedExportPrinter` and added integration test +* [#3260](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3260) Moved `SMWSQLStore3::changeSMWPageID` +* [#3275](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3275) Moved `SMWSQLStore3Readers::getPropertySubjects` +* [#3282](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3282) Moved `SMWSQLStore3Readers::getProperties` +* [#3384](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3384) Isolated the handling of "ALTER SEQUENCE ..." for Postgres +* [#3432](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3432) Moved `SMW\CategoryResultPrinter` to `SMW\Query\ResultPrinters\CategoryResultPrinter` + +## Contributors + +- 1036 - James Hong Kong +- 147 - translatewiki.net for the translator community +- 120 - Karsten Hoffmeyer +- 50 - Jeroen De Dauw +- 13 - Stephan Gambke +- 7 - Kumioko +- 6 - Iván +- 6 - Zoran Dori +- 4 - James Montalvo +- 4 - Máté Szabó +- 2 - Jaider Andrade Ferreira +- 2 - Josef Konrad +- 2 - TK-999 +- 1 - Amir E. Aharoni +- 1 - C. Scott Ananian +- 1 - Kunal Mehta +- 1 - Peter Grassberger +- 1 - Prateek Saxena +- 1 - Stephan +- 1 - Thiemo Kreuz +- 1 - Timo Tijhof +- 1 - Toni Hermoso Pulido +- 1 - ka7 +- 1 - matthew-a-thompson +- 1 - salle +- 1 - غلامحسین حق دوست diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.0.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.0.1.md new file mode 100644 index 0000000..ef8c80a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.0.1.md @@ -0,0 +1,36 @@ +# Semantic MediaWiki 3.0.1 + +Released on January 25, 2019. + +## Enhancements +* [#3566](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3566) as `af04255`: Extended the array of permissive URI schemes of [configuration parameter `$smwgURITypeSchemeList`](https://www.semantic-mediawiki.org/wiki/Help:$smwgURITypeSchemeList) +* [#3596](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3596) as `a6ccc2a`: Added [`$smwgConfigFileDir` configuration parameter](https://www.semantic-mediawiki.org/wiki/Help:$smwgConfigFileDir) allowing to specify the location for the [setup information file](https://www.semantic-mediawiki.org/wiki/Help:Setup_information_file) +* [#3597](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3597) as `c92b2ca`: Extended and improved information on the ["Upgrade Error Screen"](https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Upgrade_and_setup_consistency) and made it localizable +* [#3611](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3611) as `8f1177a`: Added ["populateHashField.php" maintenance script](https://www.semantic-mediawiki.org/wiki/Help:Maintenance_script_populateHashField.php) to decouple mass conversions of database field "smw_hash" in the "smw_objects_ids" database table when upgrading the database for large wikis +* Many new translations for numerous languages by the communtity of [translatewiki.net](https://translatewiki.net/w/i.php?title=Special%3AMessageGroupStats&x=D&group=mwgithub-semanticmediawiki&suppressempty=1) + +## Bug fixes and internal code changes +* [#3565](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3565) as `6f24bf6`: Added missing system message for the "templatefile" format +* [#3572](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3572) as `70f629e`: Fixed `HtmlForm::getForm` to support a string as result on special page "Ask" +* [#3573](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3573) as `a59c76c`: Modified tests to avoid "Call to a member function getSchema() on null" for MediaWiki 1.32 and later +* [#3578](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3578) as `484a4b5`: Made indexer apply `pg_unescape_bytea` for bytea/blob values on postgres +* [#3584](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3584) as `1205b87`: Added pipe detection in printrequest labels (`[[ ... | ... ]]`) +* [#3585](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3585) as `5d6d6ff`: Fixed "`strpos()`: Non-string needles ..." for PHP 7.3 and later +* [#3586](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3586) as `53655ed`: Fixed `#set_recurring_event` parser function to respect related configuration parameters and their settings +* [#3595](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3595) as `e9ed65e`: Fixed invalid user names using the mandatory interwiki prefix for MediaWiki 1.31 and later by unlinking them +* [#3599](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3599) as `732ef23`: Fixed "`fputcsv` ... delimiter must be a single character" for the "csv" format +* [#3607](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3607) as `4d9e5a7`: Fixed `#set_recurring_event` parser function to cause "Call to undefined method `SMWDIError::getJD()`" +* [#3608](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3608) as `b17526d`: Fixed "QueryResultSerializer" to handle `_qty` on chained properties +* [#3609](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3609) as `c005c6f`: Restored use of `$wgDBTableOptions` configuration parameter +* [#3616](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3616) as `4b0cfb7`: Made `isCapitalLinks` be set in `_wpg` description context +* [#3617](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3617) as `9152f94`: Made "SemanticDataLookup", use `DISTINCT` for non subject items +* [#3622](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3622) as `cfbd338`: Fixed `#set_recurring_event` parser function to allow monthly events start on a 30th and 31st of a month +* [#3628](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3628) as `e587291`: Improved commandline prompts for maintenance script "populateHashField.php" +* [#3630](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3630) as `79aee30`: Added extra _uri validation for `http:///` +* [#3631](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3631) as `0903c1b`: Fixed `ResultFormatNotFoundException` on untrimmed format strings +* [#3632](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3632) as `24d8bae`: Changed to using `0x003D` instead of `-3D` to encode `=` +* [#3633](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3633) as `f70339a`: Made the container subject be used as context to check uniqueness constaints +* [#3634](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3634) as `711e365`: Made "WikiPageValue" use the provided fixed namespace +* [a5a4a0d](https://github.com/SemanticMediaWiki/SemanticMediaWiki/commit/a5a4a0d1b05eb622749fe59a1d2be4be699aaed4) as `bea16a5`: Fixed "PHP Notice: Uncommitted DB writes (transaction from ...)" +* [8bc4443](https://github.com/SemanticMediaWiki/SemanticMediaWiki/commit/8bc4443a6a48682e74e94a014adfcd91cb6104a5) as `5a729d4`: Fixed `get_headers` can return `false` +* [8ca1ec0](https://github.com/SemanticMediaWiki/SemanticMediaWiki/commit/8ca1ec05ef56144b1991c0381696a52687e39ed4) as `93cf100`: Made "PHP Warning: Class '`SMW\CategoryResultPrinter`' not found in ... Aliases.php" be avoided diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.0.2.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.0.2.md new file mode 100644 index 0000000..81d740b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.0.2.md @@ -0,0 +1,24 @@ +# Semantic MediaWiki 3.0.2 + +Released on April 11, 2019. + +## Enhancements + +* [#3682](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3682) as `f5d0cab`: Removed `IsFileCacheable` hook and improves file caching +* [#3856](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3856) as `767c981`: Switched setting of configuration parameter "$smwgCompactLinkSupport" to "false" + +## Bug fixes and internal code changes + +* [#3742](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3742): Fixed raw output of templated message particles +* [#3771](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3771) as `b7a78e0`: Removed `doPostOutputShutdown` +* [#3772](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3772) as `79e4adb`: Fixed "... expects parameter 1 to be a valid callback ..." +* [#3775](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3775) as `3b0d83c`: Made data type "Equivalent URI" non declarative +* [#3847](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3847) as `d088204`: Fixed warning "a non-numeric value" was encountered +* [#3854](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3854) as `d05671e`: Provided a new test case for "display title" +* [#3859](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3859): Updated "InfolinkTest" +* [#3863](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3863): Fixed resource loading by replacing `localpath` with `localBasePath` +* [0ed4bbf7](https://github.com/SemanticMediaWiki/SemanticMediaWiki/commit/0ed4bbf75e7ee9989d2ac84437d3733b52885eb8): Updated "EventHandlerTest" + +## See also +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.0.x/docs/releasenotes/RELEASE-NOTES-3.0.0.md) for Semantic MediaWiki 3.0.0 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.0.x/docs/releasenotes/RELEASE-NOTES-3.0.1.md) for Semantic MediaWiki 3.0.1 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.0.md new file mode 100644 index 0000000..d8da16b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.0.md @@ -0,0 +1,233 @@ +# Semantic MediaWiki 3.1 + +Released on September 23, 2019. + +## Highlights + +This release brings the following highlights: + +- Support for tracking [attachment links](https://www.semantic-mediawiki.org/wiki/Help:Attachment_links) added. They display on special page "Browse" and in the factbox using an extra tab ([#3643](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3643), [#3652](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3652), [#3661](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3661), [#4147](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4147)) +- Elasticsearch [replication monitoring](https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring) introduced ([#3697](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3697), [#3700](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3700), [#3713](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3713)) +- [Embedded query update](https://www.semantic-mediawiki.org/wiki/Help:Embedded_query_update) feature refactored and improved by a new dependency links validation and invalidation mechanism ([#3644](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3644), [#3831](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3831)) +- Support for [constraint schemas](https://www.semantic-mediawiki.org/wiki/Help:Constraint_schema) added ([#3746](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3746), [#3829](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3829), [#3968](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3968), [#4033](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4033), [#4047](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4047)) +- Support for annotation value [sequence maps](https://www.semantic-mediawiki.org/wiki/Help:Sequence_map) added ([#4226](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4226)) + +## Compatibility + +This release supports MediaWiki 1.31.x up to 1.33.x and PHP 7.0.x up to PHP 7.4.x. For more detailed information, see the [compatibility matrix](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/COMPATIBILITY.md). + +## New features and enhancements + +Changes to the data store are now triggered by introducing `DependencyLinksValidator` a mechanism to validate temporal attributes ([#3644](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3644), [#3831](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3831)). This refactored and improved the [embedded query update](https://www.semantic-mediawiki.org/wiki/Help:Embedded_query_update) feature. + +### Setup + +* [#3605](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3605) Conditionally create the full-text ([`smw_ft_search`](https://www.semantic-mediawiki.org/wiki/Table:smw_ft_search)) table +* [#3738](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3738) Show an "in maintenance" screen with information while the [upgrade](https://www.semantic-mediawiki.org/wiki/Help:Upgrade) is progressing +* [#4026](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4026) Show relative upgrade progress on the "in maintenance" screen +* [#4119](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4119) Added check for `SMW_EXTENSION_LOADED` to enforce `enableSemantics` +* [#4123](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4123) Added `smwgDefaultStore` to upgrade key matrix hereby making it part of the upgrade key +* [#4170](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4170) Added check whether the extension registration is complete or not +* [#4190](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4190) Prevent "Uncaught Exception: It was attempted to load SemanticMediaWiki twice" + +### Store + +* [#3642](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3642) Extended maintenance script ["rebuildData.php"](https://www.semantic-mediawiki.org/wiki/rebuildData.php) to support the removal of outdated query links +* [#3686](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3686) Display of semantic statistics on special page "Statistics" was improved and extended +* [#3782](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3782) Added check for retired properties +* [#3803](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3803) SQLite, use text type for `o_hash` field +* [#3809](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3809) DataUpdater, use changed revision +* [#3822](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3822) Check `smw_hash` and update if necessary +* [#3887](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3887) Added check to detect and remove detached subobjects i in the rebuilder +* [#4063](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4063) Added a prefetch cache and lookup capabilities to minimize required read queries when resolving result objects + +#### ElasticStore + +* [#3637](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3637) Uses `keyword` as type for the `P:*.geoField` mapping +* [#3638](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3638) Added minimal index document for an empty bulk request +* [#3693](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3693) Relaxed link removal in raw text +* [#3697](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3697) Added replication monitoring (`indexer.monitor.entity.replication`) on per entity base and [#3713](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3713) (`indexer.monitor.entity.replication.cache_lifetime`) +* [#3699](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3699) Added length restriction to value inputs for a query construct (`query.maximum.value.length`) +* [#3700](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3700) Show indicator placeholder for replication monitoring +* [#3763](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3763) Forced `FileIngestJob` to wait on the command line before executing the file indexing +* [#3777](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3777) Added `rev_id` as field for indexing to extend the [replication monitoring](https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring) +* [#3810](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3810) Check for associated revision +* [#3835](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3835) Added capabilities to record replication issues +* [#3999](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3999) Added support for inverse property + category subquery +* [#4018](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4018) Added replication check to confirm connection status with the Elasticsearch +* [#4019](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4019) Show the Elasticsearch status unconditionally on the dashboard +* [#4088](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4088) Fixed handling of predefined properties keys +* [#4114](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4114) Added the "rebuildElasticMissingDocuments.php" maintenance script to find missing entities (aka documents) from Elasticsearch and schedule `smw.update` jobs for those identified documents +* [#4126](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4126) Added a monitoring on whether an adminstrator has run the rebuild index script after switching to the `ElasticStore` or not +* [#4155](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4155) Fixed `PredefinedPropertyLabelMismatchException` on invalid predefined property matches +* [#4158](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4158) Added `--only-update` option to the "rebuildElasticIndex.php" maintenance script to run an update without switching indices or initiating a rollover +* [#4208](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4208) Fixed that only deleted subobjects on related entities are removed during an replication +* [#4230](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4230), [#4231](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4231) Fixed overriding `smw_rev`, `smw_touched` on predefined properties during the setup and show user readable property labels +* [#4240](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4240) Added support for running the rebuild index as part of the "updateEntityCollation.php" maintenance script execution +* [#4250](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4250) Improve ICU related collation sorting + +### Query + +* [#3644](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3644) Added [`DependencyLinksValidator`](https://www.semantic-mediawiki.org/wiki/Help:Embedded_query_update), refactored the update logic, and improved the detection of outdated dependencies (see also #4265) +* [#3665](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3665) Added support for the `ctrl+q` shortkey to start the query process on special page "Ask" +* [#4064](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4064) Fixed use of `+offset=` as printout parameter +* [#4137](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4137) Added maintenance script ["updateQueryDependencies.php"](https://www.semantic-mediawiki.org/wiki/Help:UpdateQueryDependencies.php) to update the `smw_query_links` table on entities that contain embedded queries + +#### Result formats + +* [#3620](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3620) Fixed result printer "csv" to not ignore omitting of units with display formatter `#-n` +* [#3650](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3650) Added support for `noimage` as output option for entity (aka. page) links +* [#3734](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3734) Moved remaining result printers to new namespace +* [#3760](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3760) Removed `template arguments` and added `named args` to the "templatefile" result printer +* [#3793](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3793) Added support for (ul/ol) as value separator in result format "table" +* [#3873](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3873) Use canonical property label in a template context + +### Misc + +* [#3621](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3621) Added support for hidden annotation +* [#3643](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3643) Added support for tracking [attachment links](https://www.semantic-mediawiki.org/wiki/Help:Attachment_links) via the `_ATTCH_LINK` property +* [#3652](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3652) Added [attachment display](https://www.semantic-mediawiki.org/wiki/Help:Attachment_links) in the `Factbox`, [#3661](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3661) added suport for sorting attachment list columns, [#4147](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4147) added a `Is local` column to indicate whether a file is local or not +* [#3678](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3678) Decodes `#` in a record text field +* [#3696](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3696) Highlighter to decode `<` and `>` in content +* [#3717](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3717) Highlighter to decode `\n` in content +* [#3718](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3718) Extended tables to find and remove duplicates +* [#3720](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3720) Added special page "MissingRedirectAnnotations" to show [missing redirect annotations](https://www.semantic-mediawiki.org/wiki/Help:Missing_redirect_annotations) +* [#3733](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3733) Added support for enforced property [parent type inheritance](https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_datatype_inheritance) (disabled by default, can be enabled using the [`$smwgMandatorySubpropertyParentTypeInheritance`](https://www.semantic-mediawiki.org/wiki/Help:$smwgMandatorySubpropertyParentTypeInheritance) setting) +* [#3735](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3735) Added declaration check for when multiple `Has fields` declarations are used +* [#3747](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3747) Added an option to define `LAST_EDITOR`, `IS_IMPORTER` +* [#3749](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3749) Added [`PROPERTY_GROUP_SCHEMA`](https://www.semantic-mediawiki.org/wiki/Help:Schema/Type/PROPERTY_GROUP_SCHEMA) as schema type to to define [property groups](https://www.semantic-mediawiki.org/wiki/Help:Property_group) using a JSON schema +* [#3751](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3751) Added `?`, `*`, and `!` as invalid characters for a property name +* [#3756](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3756) Added properties count in use for a specific type to special page "Types" +* [#3779](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3779) Added normalization for `__` in propery names +* [#3790](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3790) Highlighter, remove trailing line feeds +* [#3792](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3792) Added the `_ERR_TYPE` predefine property +* [#3795](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3795) Decode values before comparing (</>,) +* [#3816](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3816) Show filter count on property page +* [#3817](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3817) ExternalFormatterUri to replace ` ` with `_` +* [#3818](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3818) External identifier to support multi substitutes using {...} +* [#3819](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3819) Support `Has fields` to allow property names with `:` +* [#3821](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3821) Support schema change to push a change propagation dispatch job +* [#3864](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3864) Added core hook to support `--skip-optimize` in "update.php" again with MW 1.33+ +* [#3866](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3866) Added check for [remnant entities](https://www.semantic-mediawiki.org/wiki/Help:Remnant_entities), `$smwgCheckForRemnantEntities ` +* [#3869](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3869) Minimize redirect lookups on properties +* [#3905](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3905) Added maintenance script "purgeEntityCache.php" to purge all cache entries (including associates) that use the `EntityCache` interface +* [#3920](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3920) Added `DisplayTitleFinder` to support a prefetch lookup so that titles can be fetched and cached in bulk to minimize the required database queries +* [#3922](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3922) Added the `--auto-recovery` option to maintenance scripts "rebuildElasticIndex.php" and "rebuildData.php" +* [#3928](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3928) Added `TableStatistics` to dashboard to gather some inforamtion of the table usage +* [#3940](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3940) Added support for `callable` in `$smwgFallbackSearchType` to allow using `SMWSearch` in tandem with for example `CirrusSearch` +* [#3945](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3945) Added support for the full pipe trick to the WikiPage datavalue +* [#3960](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3960) Added `--namespace` option filter to maintenance script "rebuildData.php" +* [#3965](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3965) Show usage (properties linked to a schema) for schemta that define a `usage_lookup` +* [#4042](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4042) Added support for `#` as formatting directive to create a no link +* [#4048](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4048) Added new `smwtable-clean` table CSS +* [#4151](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4151) Added `--report-runtime` and `--with-maintenance-log` options to the "removeDuplicateEntities.php" maintenance script +* [#4069](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4152) Added `--with-maintenance-log` option to the "rebuildElasticIndex.php" maintenance script +* [#4143](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4143) Added support for `count` and `further results` to the [remote request](https://www.semantic-mediawiki.org/wiki/Help:Remote_request) +* [#4144](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4144) Added schema summary +* [#4150](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4150) Fixed `enableSemantics` exception where external functions try to access Semantic MediaWiki that hasn't been enabled +* [#4223](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4223) Improved the option display on the preference page +* [#4226](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4226) Introduced the concept of `sequence map` for annotation values +* [#4244](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4244) Adding sorting of properties by label (not by key) on special page "Browse" +* [#4281](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4281) Added wider search radius for `completionSearch` + +#### Constraints + +* [#3746](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3746) Added [`PROPERTY_CONSTRAINT_SCHEMA`] as a new schema type and introduce an approach by assigning a `[[Constraint schema::...]]` to a property +* [#3829](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3829) Added `_CONSTRAINT_SCHEMA` property (see #3746) +* [#3843](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3843) Show compiled constraint schema on property page +* [#3908](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3908) Added `unique_value_constraint` +* [#3968](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3968) Added support for displaying [`constraint` errors](https://www.semantic-mediawiki.org/wiki/Help:Constraint_error) using an [page indicator](https://www.mediawiki.org/wiki/Help:Page_status_indicators) +* [#3969](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3969) Added support for `custom_constraint` to enable users to define custom constraints via a `Constraint` interface and the provided hook +* [#3970](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3970) Added `non_negative_integer` constraint +* [#3981](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3981) Added `must_exists` constraint +* [#3989](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3989) Extended the constraint `ErrorLookup` to scan subobjects and cache the lookup, also added `smwgCheckForConstraintErrors` setting +* [#4010](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4010) Added `single_value_constraint` +* [#4033](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4033) Added support for [`CLASS_CONSTRAINT_SCHEMA`](https://www.semantic-mediawiki.org/wiki/Help:Schema/Type/CLASS_CONSTRAINT_SCHEMA) +* [#4047](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4047) Added `SpecialConstraintErrorList` to display errors classified as constraint +* [#4069](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4069) Added `shape_constraint` + +## Bug fixes + +* [#3568](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3568) Fixed "Warning: Cannot modify header information - headers already sent by" on a remote request +* [#3750](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3750) Checks whether the sort argument can be accessed or not in the datatable +* [#3839](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3839) Fixed display of time offset display for non date items on the property page +* [#3840](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3840) Fixed special page "Browse" and display of properties when more than 200 items are available +* [#3888](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3888) Fixed `MWUnknownContentModelException` while running maintenance script "rebuildData.php" +* [#3938](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3938) Fixed "Index name must always be lower case" in connection with Elasticsearch +* [#3914](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3914) Fixed "Cannot override final method Job::getTitle" +* [#4022](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4022) Fixed "Call to undefined method ... transformSearchTerm" +* [#4035](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4035) Fixed "DispatchContext.php .. subject is unknown" +* [#4071](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4071) Fixed "Minus prepended to queried negative values stored with datatype Number" +* [#4077](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4077) Fixed "Maintenance logging no longer works due to missing user" +* [#4091](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4091) Fixed "HTMLInfoField.php: 'default' must be a FieldLayout or subclass when using 'rawrow'" +* [#4110](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4110) Fixed "trailing spaces" in JSON language files +* [#4111](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4111) Fixed "TypeError SearchDatabase.php: Argument 1 passed to SearchDatabase ... must implement interface ... ILoadBalancer ..." +* [#4113](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4113) Fixed "Declaration of SMW\MediaWiki\Search\SearchResult::getTextSnippet($terms) should be compatible with SearchResult::getTextSnippet($terms = Array)" +* [#4160](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4160) Fixed "SQL error `... AND ( AND o_id LIKE '%input%') ...` when matching a string using `Store::getPropertyValues`" +* [#4205](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4205) Fixed "NavigationLinksWidget.php ... PHP Warning: A non-numeric value encountered" +* [#4210](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4210) Fixed "MediumSpecificBagOStuff reports ... Serialization of 'Closure' is not allowed" +* [#4255](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4255) Fixed `allows value` declaration for record types +* [#4270](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4270) Fixed "Error: Call to undefined method RevisionSearchResult ..." + +## Breaking changes and deprecations + +* [#3808](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3808) Removed `CachingEntityLookup` +* [#3995](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3995) Disabled access to `Title` related methods in the `WikiPageValue` +* [#3402](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3402) Removed long deprecated functions from `SMWQueryProcessor` + +## Other changes + +* [#3580](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3580) Removed HHVM from the test matrix (implicitly it means that HHVM is no longer supported) +* [#3612](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3612) Added `FieldType::TYPE_ENUM` support +* [#3666](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3666) Uses HTML instead of JS for the SMWSearch namespace buttons +* [#3675](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3675) Support definition of field index type +* [#3682](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3682) Removed `IsFileCacheable` hook usage +* [#3685](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3685) Replaced qTip with tippy.js (3.4+) (#3811, #3812, #3813) +* [#3712](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3712) Uses `smw_rev` field to check if an update is skippable +* [#3721](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3721) Added index hint for page types +* [#3723](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3723) Added prefetch support for the property value list retrievable +* [#3770](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3770) Extended `ParserAfterTidy` hook event listening +* [#3780](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3780) Added `Database::beginSectionTransaction` due to MW 1.33 +* [#3801](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3801) Class and namespace reorg +* [#3792](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3792) Added the `ProcessingError` interface to describe error types +* [#3808](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3808) Removed `CachingEntityLookup` +* [#3807](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3808) Added `SMW::Event::RegisterEventListeners` hook +* [#3815](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3815) EntityValidator +* [#3823](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3823) Added 'jquery.async' as local copy +* [#3830](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3830) Added `Constraint` interface and `ConstraintCheckRunner` +* [#3895](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3895) Added the `SMW::SQLStore::Installer::BeforeCreateTablesComplete` hook +* [#3897](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3897) Added `SMW::RevisionGuard::*` hooks +* [#3924](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3924) Removed `SMWSQLStore3Readers` +* [#4066](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4066) Moved `QueryResult` and `ResultArray` +* [#4131](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4131) `LoadBalancerConnectionProvider` to rely on `getConnectionRef` +* [#4169](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4169) Added the `SMW::Parser::AfterLinksProcessingComplete` hook to address things like [#3651](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/3651) +* [#4189](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4189) Isolated `smw_proptable_hash` handling +* [#4192](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4192) Moved `SMWSQLStore3` to `SMW\SQLStore\SQLStore` +* [#4194](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4194) Moved `SMWSQLStore3Writers` to `SMW\SQLStore\SQLStoreUpdater` +* [#4200](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4200) Moved `SMWSql3SmwIds` to `SMW\SQLStore\EntityStore\EntityIdManager` +* [#4222](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4222) Added exception handling to ensure that errors are logged during a deferred update +* [#4240](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4240) Added the `SMW::Maintenance::AfterUpdateEntityCollationComplete` hook +* [#4273](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4273) Added `ResultPrinterDependency` interface + +## Contributors + +- 650 – James Hong Kong +- 88 – translatewiki.net for the translator community +- 48 – Jeroen De Dauw +- 41 – Karsten Hoffmeyer +- 4 – DannyS712 +- 2 – Bernhard Krabina +- 2 – Mark A. Hershberger +- 2 – Máté Szabó +- 2 – Zoran Dori +- 2 – Alexander Gesinn +- 1 – Alex Winkler +- 1 – Brett Zamir +- 1 – Clara +- 1 – Jaider Andrade Ferreira +- 1 – Morgon Kanter +- 1 – NIKITA +- 1 – Peter Grassberger +- 1 – Sébastien Beyou +- 1 – Timo Tijhof +- 1 – Tisza Gergő diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.1.md new file mode 100644 index 0000000..8764877 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.1.md @@ -0,0 +1,13 @@ +# Semantic MediaWiki 3.1.1 + +Released on November 17, 2019. + +## Bug fixes and internal code changes + +* [#4332](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4332): Fixed runtime errors when rebuilding links +* [#4333](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4333): Switched from `DELETE FROM` instead of `TRUNCATE TABLE` for temporary database tables +* [b75e468](https://github.com/SemanticMediaWiki/SemanticMediaWiki/commit/b75e468910ca9be0a2dcd50f3fe3df6ed1fd847b): Fixed missing use declaration +* Localisation updates from the translatewiki.net community of translators + +## See also +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.0.md) for Semantic MediaWiki 3.1.0 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.2.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.2.md new file mode 100644 index 0000000..b1634c8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.2.md @@ -0,0 +1,16 @@ +# Semantic MediaWiki 3.1.2 + +Released on January 12, 2020. + +## Enhancement + +* [#4367](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4367) as `c2fa49d`: Added the [`$smwgPlainList` configuration parameter](https://www.semantic-mediawiki.org/wiki/Help:$smwgPlainList) for convenience allowing to set whether the list format should provide class attributes to HTML elements + +## Bug fix and internal code changes + +* [#4364](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4364) as `1884b1d`: Fixed the `default` parameter of queries not being considered by the "list" format +* Localisation updates from the translatewiki.net community of translators + +## See also +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.1.md) for Semantic MediaWiki 3.1.1 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.0.md) for Semantic MediaWiki 3.1.0 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.3.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.3.md new file mode 100644 index 0000000..4d1ccc2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.3.md @@ -0,0 +1,21 @@ +# Semantic MediaWiki 3.1.3 + +Released on January 24, 2020. + +## Bug fixes and internal code changes + +* [#4390](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4390) as `a9fdd77`: Fixes the `filename` parameter for export formats providing it +* [#4393](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4393) as `3a007b5`: Fixes title preview for namespaces in the standard search field when using `SMWSearch` +* [#4405](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4407) as `c0e3ae9`: Fixes using `SMWElasticStore` as the default store for Elasticsearch lower than 6.4.0 +* [#4407](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4407) as `c18aad4`: Fixes the `#show` parser function no longer being able to query subobjects +* [#4419](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4419) as `9460d09`: Fixes the `#show` parser function no longer following redirect targets +* [#4420](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4420) as `2047e6f`: Removes overriding instance construction when using `SMWSparqlStore` as the default store +* [#4430](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4430) as `620fd40`: Fixes a "TypeError" in "SchemaDefinition.php" +* `20ce009`: Makes a new constrictor argument optional for result formats provided by the "Semantic Result Formats" extension +* `fcd9d5f`: Fixes the `@annotation` query marker when used in conjuction with the "Page Forms" extension +* Localisation updates from the translatewiki.net community of translators + +## See also +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.2.md) for Semantic MediaWiki 3.1.2 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.1.md) for Semantic MediaWiki 3.1.1 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.0.md) for Semantic MediaWiki 3.1.0 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.4.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.4.md new file mode 100644 index 0000000..48250a3 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.4.md @@ -0,0 +1,15 @@ +# Semantic MediaWiki 3.1.4 + +Released on February 8, 2020. + +## Bug fixes and internal code changes + +* [#4470](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4470) as `b4d47a7`: Replaces the `GAID_FOR_UPDATE` constant with `READ_LATEST` to bring compatibility with MediaWiki 1.34 and later +* [#4473](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4473) as `e806689`: Adds `overrideUserPermissions` to bring compatibility with MediaWiki 1.34 and later +* [#4401](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4401) as `c0e3ae9`: Fixes "Error: Class `SMW\Maintenance\*` not found" + +## See also +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.3.md) for Semantic MediaWiki 3.1.3 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.2.md) for Semantic MediaWiki 3.1.2 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.1.md) for Semantic MediaWiki 3.1.1 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.0.md) for Semantic MediaWiki 3.1.0 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.5.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.5.md new file mode 100644 index 0000000..c1cfb16 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.5.md @@ -0,0 +1,19 @@ +# Semantic MediaWiki 3.1.5 + +Released on February 29, 2020. + +## Bug fixes and internal code changes + +* [#4423](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4423) as `2e11fd7`: Fixes table alias usage in select queries by maintenace script ["updateQueryDependencies.php"](https://www.semantic-mediawiki.org/wiki/Help:Maintenance_script_updateQueryDependencies.php) +* [#4500](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4500) as `b9e1bff`: Fixes special page ["SemanticMediaWiki"](https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki) being broken if configuration paramter `$wgDebugLogFile` is set +* [#4516](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4516) as `13056ff`: Fixes external identifier formatting in [references](https://www.semantic-mediawiki.org/wiki/Help:Type_Reference) +* [#4532](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4532) as `3a08cad`: Fixes the `InvalidArgumentException` issue when using the [`#info`](https://www.semantic-mediawiki.org/wiki/Help:Adding_tooltips) parser function with an integer parameter +* [#4550](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4550) as `243f0ab`: Checks `PropertyRegistry::getInstance()->findPropertyIdByLabel( $label )` for `false` +* [#4589](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4589) as `1ca5979` and `93765eb`: Fixes ["smwtable-clean"](https://www.semantic-mediawiki.org/wiki/Help:Table_format#smwtable-clean) class being broad by default + +## See also +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.4.md) for Semantic MediaWiki 3.1.4 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.3.md) for Semantic MediaWiki 3.1.3 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.2.md) for Semantic MediaWiki 3.1.2 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.1.md) for Semantic MediaWiki 3.1.1 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.0.md) for Semantic MediaWiki 3.1.0 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.6.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.6.md new file mode 100644 index 0000000..9c5383a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.1.6.md @@ -0,0 +1,18 @@ +# Semantic MediaWiki 3.1.6 + +Released on April 19, 2020. + +## Bug fixes and internal code changes + +* [#4648](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4648) as `e8c9994`: Makes "justinrainbow/json-schema" a hard requirement allowing for json-schema validation +* [#4667](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4667) as `be7c3f4`: Changes styling of the tables generated by the [`#smwdoc`](https://www.semantic-mediawiki.org/wiki/Help:Generating_documentation) parser function +* [#4670](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4670) as `e5c7417`: Makes maintenance scripts compliant with psr-4 autoloading standard to avoid deprecation notices for Composer +* `93ac2b0` and `56f3e94`: Fixes `desc` ordering of subjects for the ["Datatables"](https://www.semantic-mediawiki.org/wiki/Help:Datatables_format) result format + +## See also +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.5.md) for Semantic MediaWiki 3.1.5 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.4.md) for Semantic MediaWiki 3.1.4 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.3.md) for Semantic MediaWiki 3.1.3 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.2.md) for Semantic MediaWiki 3.1.2 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.1.md) for Semantic MediaWiki 3.1.1 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.1.x/docs/releasenotes/RELEASE-NOTES-3.1.0.md) for Semantic MediaWiki 3.1.0 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.0.md new file mode 100644 index 0000000..ffe1d1b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.0.md @@ -0,0 +1,87 @@ +# Semantic MediaWiki 3.2.0 + +Released on September 7, 2020. + +## Compatibility + +This release supports MediaWiki 1.31.x up to 1.35.x and PHP 7.1.x up to PHP 7.4.x. Compared to Semantic MediaWiki 3.1.x, +support for PHP 7.0 has been dropped and support for MediaWiki 1.34 and 1.35 was added. + +You might encounter deprecation warnings on MediaWiki 1.35 if you have these warnings turned on (they are off by default). +We are working on these and will create follow up releases as we fix them. + +For more detailed information, see the [compatibility matrix](../COMPATIBILITY.md#compatibility). + +## New features and enhancements + +### Awareness + +* [#4554](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4554) Adds the [entity issue panel](https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel) +* [#4686](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4686) Show message on property page if the property namespace is functionless +* [#4490](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4490) Adds a baloon help to filtering field on propert pages + +### Schemas + +* [#4417](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4417) Adds a navigation bar to the schema page +* [#4422](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4422) Adds a search field with search highlighting to schema navigation +* [#4657](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4657) Adds profile schema display to property page +* [#3749](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3749) Adds the schema group import mechanism +* [#4592](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4592) Adds predefined property groups → **BREAKING** +* [#4404](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4404) Adds the error reporting mechanism for schema validation +* [#4633](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4633) Improves error reporting for schema validation + +### Setup and configuration + +* [#4438](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4438) Improves [setup checking](https://www.semantic-mediawiki.org/wiki/Help:Setup_check) +* [#4684](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4684) Adds the [coniguration preloading mechanism](https://www.semantic-mediawiki.org/wiki/Help:Configuration_preloading) +* [#4721](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4721) Adds the `smweditor` user group and the `smw-vieweditpageinfo` permission +* [#4698](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4698) Adds the `smw-viewjobqueuewatchlist` and `smw-viewentityassociatedrevisionmismatch` permissions +* [#4645](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4645) Show registered schema types on special page "SemanticMediaWiki" + +### Maintenance + +#### Notifications and awareness + +* [#4458](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4458) Adds special page ["PendingTaskList"](https://www.semantic-mediawiki.org/wiki/Help:Special:PendingTaskList) +* [#4476](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4476) Show maintenance alert for datastore optimization in the "Alerts" tab on special page "SemanticMediaWiki" +* [#4744](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4744) Show maintenance alert for outdated entities in the "Alerts" tab on special page "SemanticMediaWiki" +* [#4468](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4468) Show deprecation notices for configuration parameters in "Alerts" tab on special page "SemanticMediaWiki" +* [#4646](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4646) Show configuration and endpoints for Elasticsearch on special page "SemanticMediaWiki" + +→ See also the help page on [maintenance alerts](https://www.semantic-mediawiki.org/wiki/Help:Maintenance_alerts) + +#### Scripts + +* [#4403](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4403) Improves client output for maintenance scripts +* [#4466](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4466) Adds the ["runImport.php"](https://www.semantic-mediawiki.org/wiki/Help:Maintenance_script_runImport.php) maintenance script +* [#4484](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4484) Adds the ["disposeOutdatedEntities.php"](https://www.semantic-mediawiki.org/wiki/Help:Maintenance_script_disposeOutdatedEntities.php) maintenance script +* [#4504](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4504) Adds the `check-file-attachment`, `namespace`, `id` and `v` options to the ["rebuildElasticMissingDocuments.php"](https://www.semantic-mediawiki.org/wiki/Help:Maintenance_script_rebuildElasticMissingDocuments.php) maintenance script + +### Miscellaneous + +* [#4586](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4586) Adds the `max-width` and `theme` parameters to the [`#info` parser function](https://www.semantic-mediawiki.org/wiki/Help:Adding_tooltips) +* [#4664](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4664) Adds `namedargs` as alias for the `named args` parameter to relevant result formats (list formats, templatefile format, category format) + +## Overview of all changes + +All relevant pull requests and issue items (code improvements, bug fixes and internal changes) which were closed or addressed with this release were added to the [SMW 3.2.0 milestone](https://github.com/SemanticMediaWiki/SemanticMediaWiki/milestone/34?closed=1) for your further information. + +## Contributors + +- 301 - James Hong Kong +- 118 - Jeroen De Dauw ([sponsor Jeroen](https://github.com/sponsors/JeroenDeDauw)) +- 70 - The translator community translatewiki.net +- 52 - Karsten Hoffmeyer ([sponsor Karsten](https://github.com/sponsors/kghbln)) +- 4 - Jaider Andrade Ferreira +- 2 - Fonata +- 2 - Stephan +- 1 - Alex Winkler +- 1 - C. Scott Ananian +- 1 - DannyS712 +- 1 - Mark A. Hershberger +- 1 - Máté Szabó +- 1 - Niklas Laxström +- 1 - Peter Grassberger +- 1 - Robert Vogel +- 1 - Yuki Shira +- 1 - carlo66 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.1.md new file mode 100644 index 0000000..378347f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.1.md @@ -0,0 +1,15 @@ +# Semantic MediaWiki 3.2.1 + +Released on November 21, 2020. + +## Bug fixes and internal code changes + +* [#4833](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4833): Fixes the "Refresh" option in the page menu from no longer being functional +* [#4831](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4831): Fixes the "Browse properties" link in the tools menu from no longer being shown +* [#4851](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4851): Fixes user rights registration +* [#4858](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4858): Makes `ask` and `askargs` API return a value for `format=count` +* Internal code improvements +* Localisation updates from the translatewiki.net community of translators + +## See also +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.2.x/docs/releasenotes/RELEASE-NOTES-3.2.0.md) for Semantic MediaWiki 3.2.0 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.2.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.2.md new file mode 100644 index 0000000..ea1ae3e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.2.md @@ -0,0 +1,12 @@ +# Semantic MediaWiki 3.2.2 + +Released on December 5, 2020. + +## Bug fix and improvements + +* [#4858](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4858): **Revert** of "Make `ask` and `askargs` API return a value for `format=count`" due to issues discovered +* Localisation updates from the translatewiki.net community of translators + +## See also +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.2.x/docs/releasenotes/RELEASE-NOTES-3.2.0.md) for Semantic MediaWiki 3.2.0 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.2.x/docs/releasenotes/RELEASE-NOTES-3.2.1.md) for Semantic MediaWiki 3.2.1 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.3.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.3.md new file mode 100644 index 0000000..5548009 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-3.2.3.md @@ -0,0 +1,16 @@ +# Semantic MediaWiki 3.2.3 + +Released on March 30, 2021. + +## Bug fix and improvements + +* [#4849](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4849): Fixes deserialization error (SECURITY) +* [#4904](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4904): Fixes `xdebug_is_enabled` being enabled +* [#4927](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4927): Use "$1" in the messages on special page "Types" +* Polish localisation updates for extra translatable items by indiviual community members +* Localisation updates from the translatewiki.net community of translators + +## See also +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.2.x/docs/releasenotes/RELEASE-NOTES-3.2.0.md) for Semantic MediaWiki 3.2.0 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.2.x/docs/releasenotes/RELEASE-NOTES-3.2.1.md) for Semantic MediaWiki 3.2.1 +* [RELEASE NOTES](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/3.2.x/docs/releasenotes/RELEASE-NOTES-3.2.2.md) for Semantic MediaWiki 3.2.2 diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.0.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.0.0.md new file mode 100644 index 0000000..a0a4737 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.0.0.md @@ -0,0 +1,55 @@ +# Semantic MediaWiki 4.0.0 + +Released on January 18, 2022. + +## Summary + +This release mainly brings support for recent versions of MediaWiki. +A small number of fixes and enhancements where also made. Anyone using MediaWiki 1.35 +is recommended to upgrade. Using versions of SMW older than 4.0 on MediaWiki 1.36 or +above is not supported. + +## Compatibility + +* Added support for MediaWiki 1.36 and MediaWiki 1.37 +* Improved compatibility with MediaWiki 1.38, though this version still has many issues +* Improved support for MediaWiki 1.35 +* Dropped support for MediaWiki older than 1.35 +* Dropped support for PHP older than 7.3 + +For more detailed information, see the [compatibility matrix](../COMPATIBILITY.md#compatibility). + +## Upgrading + +**Calling `wfLoadExtension` is now required in the "LocalSettings.php" file**. Example: + +``` +wfLoadExtension( 'SemanticMediaWiki' ); +``` +``` +enableSemantics( 'example.org' ); +``` + +There is no need to run the "update.php" maintenance script or any of the rebuild data scripts. + +When a triplestore is used with the SPARQL feature `SMW_SPARQL_QF_COLLATION`, the "updateEntityCollation.php" +maintenance script must be run (the collation sort key algorithm was changed). + +## New features + +* [Added namespace flag to dumpRDF.php to allow dumping a list of namespaces](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/5031) + +## Enhancements + +* [Special properties of type Page are now displayed consistently](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5111) +* [The maintenance page is no longer indexed by search engines](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4967) +* [Improved performance on multi-database setups](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5002) +* [Improved support for recent ElasticSearch versions](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4976) +* [Updated the logo](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5013) +* Localisation updates from the translatewiki.net community of translators + +## Bug fixes + +* [Fixed the collation key for triplestores with the SPARQL feature `SMW_SPARQL_QF_COLLATION`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/4997) +* [Fixed occasional type errors in the ElasticStore](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5033) +* [Fixed boolean property support on PostgreSQL](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5098) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.0.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.0.1.md new file mode 100644 index 0000000..e62a136 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.0.1.md @@ -0,0 +1,26 @@ +# Semantic MediaWiki 4.0.1 + +Released on March 24, 2022. + +## Summary + +This is a [patch release](../RELEASE-POLICY.md), meaning that it contains only fixes and no breaking changes. + +This release improves compatibility with MediaWiki 1.38, fixes a warning occurring on MediaWiki 1.36 and later, and +closes a minor HTML table generation issue. + +Users of MediaWiki 1.36 and later are encouraged to upgrade. + +## Changes + +* Added support for _installation_ with MediaWiki 1.38 by merging in the Tesa library. This avoids a composer error + that mentions wikimedia/cdb. Semantic MediaWiki does not officially support the unreleased MediaWiki 1.38 yet! Improvements + made by [Jeroen De Dauw](https://entropywins.wtf/) from [Professional.Wiki](https://professional.wiki/). +* Improved MediaWiki 1.38 compatibility by using ParserOutput getPageProperty. By [C. Scott Ananian](https://github.com/cscott). +* Fixed warning occurring on MediaWiki 1.36 and above during serialization. By [Sébastien Beyou](https://github.com/Seb35) +* Fixed HTML table creation issue, where closing tags would be added to empty tables. By ["miriamschlindwein"](https://github.com/miriamschlindwein). +* Localisation updates from the translatewiki.net community of translators + +## Upgrading + +Just get the new version. No need to run update.php or any other migration scripts. diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.0.2.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.0.2.md new file mode 100644 index 0000000..b76383e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.0.2.md @@ -0,0 +1,40 @@ +# Semantic MediaWiki 4.0.2 + +Released on July 21, 2022. + +## Summary + +This is a [patch release](../RELEASE-POLICY.md), meaning that it contains only fixes and no breaking changes. + +This release improves compatibility with MediaWiki 1.37 and 1.38. It also brings a fix for a security issue. + +Users of MediaWiki 1.37 and later and Semantic MediaWiki 4.0.1 and earlier are encouraged to upgrade. + +## Upgrading + +Get the new version via Composer: + +* Step 1: if you are upgrading from SMW older than 4.0.0, ensure the SMW version in `composer.json` is `^4.0.2` +* Step 2: run composer in your MediaWiki directory: `composer update --no-dev --optimize-autoloader` + +No need to run "update.php" or any other migration scripts. + +## Changes + +* [#5275](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5275): **SECURITY** Sanitized query log before output. Thanks to [Markus Glaser](https://hallowelt.com/en/) for fixing and [Kirill Anikin](https://digitalcompliance.ru/) as well as [Justin Lloyd](https://www.arena.net/en) for reporting +* [#5271](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5269): Replaced deprecated use of "SkinTemplateNavigation". Thanks to [Abijeet Patro](https://thecurlybraces.com/) +* [#5269](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5269): Replaced deprecated use of `JobQueueGroup::singleton()`. Thanks to [Abijeet Patro](https://thecurlybraces.com/) +* [#5260](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5260): Replaced deprecated use of `LinksUpdate::mRecursive`. Thanks to [Niklas Laxström](https://laxstrom.name/blag/) +* [#5258](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5258): Replaced rdbms methods with ResultWrapper methods. Thanks to [Abijeet Patro](https://thecurlybraces.com/) +* [#5257](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5257): Replaced deprecated use of `Sanitizer::removeHTMLtags`. Thanks to [Abijeet Patro](https://thecurlybraces.com/) +* [#5256](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5256): Replaced deprecated use of `LinksUpdate::mTemplate`. Thanks to [Abijeet Patro](https://thecurlybraces.com/) +* [#5255](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5255): Replaced deprecated use of "LinksUpdateConstructed". Thanks to [Abijeet Patro](https://thecurlybraces.com/) +* [#5254](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5254): Replaced deprecated use of `ParserOutput::getPageProperty`. Thanks to [Abijeet Patro](https://thecurlybraces.com/) +* [#5249](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5249): Fixed "Is a new page" special property. Thanks to [Markus Wagenhofer](https://gesinn.it/) +* [#5246](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5246): Removed unused variable. Thanks to [Markus Wagenhofer](https://gesinn.it/) +* [#5236](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5236): Fixed "TypeErrors" to be thrown. Thanks to [wgevaert](https://github.com/wgevaert) +* [#5216](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5216): Fixed Resource Loader warning when loading the factbox module. Thanks to [Jeroen De Dauw](https://entropywins.wtf/) & [Professional.Wiki](https://professional.wiki/). +* [#5206](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5206): Made "ElasticFactory" object to be injected into "ElasticStore". Thanks to [Marijn van Wezel](https://github.com/marijnvanwezel) +* Localisation updates. Thanks to [translatewiki.net](https://translatewiki.net/) and its community of translators + + diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.0.md new file mode 100644 index 0000000..1d2bbd8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.0.md @@ -0,0 +1,76 @@ +# Semantic MediaWiki 4.1.0 + +Released on January 21st, 2023. + +## Summary + +This is a [minor release](../RELEASE-POLICY.md). Thus it contains no breaking changes, only bug fixes and new features. + +This release improves compatibility with MediaWiki 1.38 and 1.39. + +## Changes + +* Improved compatibility with MediaWiki 1.38 and 1.39 +* Improved compatibility with PHP 8.1 (not complete yet) +* Fixed type error occurring during specific number formatting on PHP 8.0+ (https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5389) +* Fixed bug causing the job queue to be flooded with jobs (https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/4950) +* Fixed issue with the pipe character in the Ask API (https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5348) +* Fixed `rebuildData.php` issue for the `smw_ftp_sesp_usereditcntns` table (https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5313) +* Fixed issue in the category result format (https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/5270) +* Fixed upsert warning log spam (https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5307) +* Added user preference that allows enabling or disabling the entity issue panel (https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5345) +* Added support for partial ISO dates (https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5312) +* SMW now ships with updated vocabularies including Schema.org, Dublin Core, FOAF and SKOS +* Various grammar and spelling fixes +* Translation updates + +## Contributors + +Top contributors + +1. Morne Alberts from [Professional Wiki](https://professional.wiki/) +2. Jeroen De Dauw from [Professional Wiki](https://professional.wiki/) +3. Abijeet from [TranslateWiki](https://translatewiki.net) +4. Bernhard Krabina from [KM-A](https://km-a.net/) +5. Karsten Hoffmeyer from [Professional Wiki](https://professional.wiki/) + +Code contributions + +* translatewiki.net +* Morne Alberts +* Jeroen De Dauw +* Abijeet +* Bernhard Krabina +* Sébastien Beyou +* Hannes +* Hamish Slater +* Karsten Hoffmeyer +* Youri vd Bogert +* Alexander +* Alexander Mashin +* Amir E. Aharoni +* C. Scott Ananian +* D-Groenewegen +* Greg Rundlett +* Mark A. Hershberger +* Markus +* Máté Szabó +* UnknownSkyrimPasserby +* iusgit + +## Upgrading + +No need to run "update.php" or any other migration scripts. + +**Get the new version via Composer:** + +* Step 1: if you are upgrading from SMW older than 4.0.0, ensure the SMW version in `composer.json` is `^4.1.0` +* Step 2: run composer in your MediaWiki directory: `composer update --no-dev --optimize-autoloader` + +**Get the new version via Git:** + +This is only for those that have installed SMW via Git. + +* Step 1: do a `git pull` in the SemanticMediaWiki directory +* Step 2: run `composer update --no-dev --optimize-autoloader` in the MediaWiki directory + diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.1.md new file mode 100644 index 0000000..6db6c40 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.1.md @@ -0,0 +1,64 @@ +# Semantic MediaWiki 4.1.1 + +Released on March 9, 2023. + +## Summary + +This is a [patch release](../RELEASE-POLICY.md). Thus it contains only bug fixes. No new features or breaking changes. + +This release improves compatibility with MediaWiki 1.39 and PHP 8.1. + +## Changes + +* Improved MediaWiki 1.39 compatibility (thanks Jeroen De Dauw) +* Improved PHP 8.1 compatibility (thanks Morne Alberts) +* Fixed SQLite compatibility issue (thanks Marijn van Wezel) +* Fixed Maps compatibility issue (thanks Universal Omega) +* Various grammar and spelling fixes (thanks Amir E. Aharoni) +* Translation updates + +## Technical notes + +* Dropped dependence on `onoi/shared-resources` and added copies of these resource loader modules to SMW: `onoi.qtip`, `onoi.rangeslider`, `onoi.blobstore`, `onoi.clipboard`, `noi.dataTables`. This fixes https://github.com/SemanticMediaWiki/SemanticResultFormats/issues/766 + +## Contributors + +Top contributors + +1. Amir E. Aharoni from [TranslateWiki](https://translatewiki.net) +2. Morne Alberts from [Professional Wiki](https://professional.wiki/) +3. CosmicAlpha from [Professional Wiki](https://professional.wiki/) +4. Jeroen De Dauw from [Professional Wiki](https://professional.wiki/) +5. MPThLee + +Code contributions + +* Amir E. Aharoni +* translatewiki.net +* CosmicAlpha +* Morne Alberts +* MPThLee +* Jeroen De Dauw +* Sébastien Beyou +* Greg Rundlett +* Marijn van Wezel +* Meno25 +* Sophivorus +* Vedmaka +* Will Cohen + +## Upgrading + +No need to run "update.php" or any other migration scripts. + +**Get the new version via Composer:** + +* Step 1: if you are upgrading from SMW older than 4.0.0, ensure the SMW version in `composer.json` is `^4.1.1` +* Step 2: run composer in your MediaWiki directory: `composer update --no-dev --optimize-autoloader` + +**Get the new version via Git:** + +This is only for those that have installed SMW via Git. + +* Step 1: do a `git pull` in the SemanticMediaWiki directory +* Step 2: run `composer update --no-dev --optimize-autoloader` in the MediaWiki directory diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.2.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.2.md new file mode 100644 index 0000000..de8e1e6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.2.md @@ -0,0 +1,36 @@ +# Semantic MediaWiki 4.1.2 + +Released on July 29th, 2023. + +## Summary + +This is a [patch release](../RELEASE-POLICY.md). Thus it contains only bug fixes. No new features or breaking changes. + +This release improves compatibility with MediaWiki 1.39 and PHP 8.1. + +## Changes + +* Added compatibility with wikimedia/cdb 3.x, needed for MediaWiki 1.41 +* Fixed PHP 8.1 compatibility issue (thanks HamishSlater) +* Fixed change propagation issue (thanks Niklas Laxström) +* Fixed warning being spammed in the logs (thanks octfx) +* Fixed logging flag issue (thanks cicalese) +* Avoid unnecessary primary DB query (thanks Máté Szabó) +* Stop using PrevNextNavigationRenderer as it is deprecated in MediaWiki 1.39 (thanks Abijeet) +* Translation updates + +## Upgrading + +No need to run "update.php" or any other migration scripts. + +**Get the new version via Composer:** + +* Step 1: if you are upgrading from SMW older than 4.0.0, ensure the SMW version in `composer.json` is `^4.1.2` +* Step 2: run composer in your MediaWiki directory: `composer update --no-dev --optimize-autoloader` + +**Get the new version via Git:** + +This is only for those that have installed SMW via Git. + +* Step 1: do a `git pull` in the SemanticMediaWiki directory +* Step 2: run `composer update --no-dev --optimize-autoloader` in the MediaWiki directory diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.3.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.3.md new file mode 100644 index 0000000..5697cbe --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.1.3.md @@ -0,0 +1,99 @@ +# Semantic MediaWiki 4.1.3 + +Released on February 17th, 2023. + +## Summary + +This is a [patch release](../RELEASE-POLICY.md). Thus it contains only bug fixes. No new features or breaking changes. + +This release contains security patches and improves support for modern PHP and MediaWiki. +Upgrading is recommended for all users. + +## Breaking changes +* This version of SemanticMediaWiki requires Elasticsearch 7.10, with a change of configuration (see below) - this is only a problem if you enabled ElasticStore + +## Changes + +* Fixed several XSS issues +* Improved support for PHP 8.1 and above +* Improved support for MediaWiki 1.39 and above +* Various minor performance improvements, especially for multi-database setups +* Fixed Special:PageProperty (thanks thomas-topway-it) +* Improved compatibility with OpenSearch and recent versions of ElasticSearch +* Improved PostgreSQL compatibility +* Added ability to disable the upgrade key check via the `smwgIgnoreUpgradeKeyCheck` setting +* Improved various interface messages +* Translation updates + +## Contributors + +Top Contributors + +* [Niklas Laxström](https://github.com/Nikerabbit) from [TranslateWiki](https://translatewiki.net) +* [Jeroen De Dauw](https://EntropyWins.wtf) from [Professional Wiki](https://professional.wiki/) +* [Máté Szabó](https://github.com/mszabo-wikia) from Fandom + +Code Contributors + +* Máté Szabó +* Niklas Laxström +* Jeroen De Dauw +* Marijn van Wezel +* H. C. Kruse +* thomas-topway-it +* Bernhard Krabina +* Tomasz Tomalak +* paladox +* Abijeet +* Abijeet Patro +* C. Scott Ananian +* Jon Harald Søby +* Michael Erdmann +* Simon Stier +* Someone +* Winston Sung +* Youri vd Bogert +* Yvar +* Zoran Dori +* wgevaert +* Łukasz Harasimowicz +* 星河 + +## Upgrading + +No need to run "update.php" or any other migration scripts. + +**Get the new version via Composer:** + +* Step 1: if you are upgrading from SMW older than 4.0.0, ensure the SMW version in `composer.json` is `^4.1.3` +* Step 2: run composer in your MediaWiki directory: `composer update --no-dev --optimize-autoloader` + +**Get the new version via Git:** + +This is only for those that have installed SMW via Git. + +* Step 1: do a `git pull` in the SemanticMediaWiki directory +* Step 2: run `composer update --no-dev --optimize-autoloader` in the MediaWiki directory + +**Upgrading Elasticsearch:** +This version of SMW uses Elasticsearch 7.10.2 (if you have enabled it). If you are using Elasticsearch as a backend, then you need to perform the following changes: +* Step 1: Upgrade your version of Elasticsearch to 7.10.2 (if you are using docker that should work without any other action than changing the version number) +* Step 2: Make sure your version of the elasticsearch package is right, you might want to add it to the composer.local.json: `COMPOSER=composer.local.json composer require elasticsearch/elasticsearch "7.17.2"` +* Step 3: Add $smwgElasticsearchCredentials after $smwgElasticsearchEndpoints: + +``` +$smwgElasticsearchEndpoints = [ + [ + 'host' => $elasticSearchHost, + 'port' => 9200, + 'scheme' => 'http' + ] +]; + +$smwgElasticsearchCredentials = [ + 'user' => $elastic_user, + 'pass' => $elastic_password, +]; +``` + + diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.2.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.2.0.md new file mode 100644 index 0000000..3bf0fea --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-4.2.0.md @@ -0,0 +1,75 @@ +# Semantic MediaWiki 4.2.0 + +Released on July 18th, 2024. + +## Summary + +This is a [minor release](../RELEASE-POLICY.md). Thus, it contains no breaking changes, only bug fixes and new features. + +This release introduces the new faceted search feature, extends the "ask" and "askargs" API modules, improves +documentation of Elasticsearch integration, and provides other fixes. + +## Changes + +* Improved compatibility with MediaWiki 1.40 and 1.41 +* Improved compatibility with PHP 8.2 (not complete yet) +* Added faceted searching, which provides users with a simple interface (special page "FacetedSearch") to quickly narrow + down query results from a condition with the help of faceted views created from dependent properties and categories + ([#5631](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5631)) +* Fixed ask queries with a conjunction of negations failing when using the Elasticsearch backend + ([#5651](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5651)) +* Added the "source" parameter to set a query source for queries using the API-modules "ask" and "askargs" + ([#5633](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5633)) +* Improved handling of logos ([#5635](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5635)) +* Fixed error on special page "Ask" ([#5616](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5616)) +* Updated and improved documentation for the Elasticsearch backend +* Fixed property linking for languages with fallback languages ([#5530](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5530), [#5638](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5638)) +* Fixed footer sorting on table results ([#5617](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5617)) +* Translation updates + +## Contributors + +Top Contributors + +* Bertrand Gorge +* Niklas Laxström +* Mark A. Hershberger +* Jaider Andrade Ferreira +* Youri van den Bogert +* alistair3149 + +Code Contributors + +* James Hong Kong +* Bertrand Gorge +* Niklas Laxström +* Mark A. Hershberger +* Jaider Andrade Ferreira +* alistair3149 +* Yvar Nanlohij +* thomas-topway-it +* Robert Vogel +* Jeroen De Dauw +* Karsten Hoffmeyer +* Translatewiki.net + +## Upgrading + +**Note:** You need to run either "update.php" or "setupStore.php". Apart from that, no other script needs to be run. + +**Get the new version via Composer:** + +* Step 1: if you are upgrading from SMW older than 4.0.0, ensure the SMW version in `composer.json` is `^4.2.0` +* Step 2: run composer in your MediaWiki directory: `composer update --no-dev --optimize-autoloader` +* Step 3: run either MediaWiki's update.php or SemanticMediaWiki's + [setupStore.php maintenance script](https://www.semantic-mediawiki.org/wiki/Help:Maintenance_script_setupStore.php) + +**Get the new version via Git:** + +This is only for those who have installed SMW via Git. + +* Step 1: do a `git pull` in the SemanticMediaWiki directory +* Step 2: run `composer update --no-dev --optimize-autoloader` in the MediaWiki directory +* Step 3: run either MediaWiki's update.php or SemanticMediaWiki's + [setupStore.php maintenance script](https://www.semantic-mediawiki.org/wiki/Help:Maintenance_script_setupStore.php) + \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.0.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.0.0.md new file mode 100644 index 0000000..4b511ef --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.0.0.md @@ -0,0 +1,176 @@ +# Semantic MediaWiki 5.0.0 + +Released on March 10, 2025. + +## Summary + +This release mainly brings support for recent versions of MediaWiki and PHP. +Upgrading is recommended for anyone using MediaWiki 1.41 or later. + +## Compatibility + +* Added support for MediaWiki 1.42 and 1.43 +* Dropped support for MediaWiki older than 1.39 +* Improved compatibility with PHP 8.3 and above +* Dropped support for PHP older than 8.1 + +For more detailed information, see the [compatibility matrix](../COMPATIBILITY.md#compatibility). + +## Highlights + +### User Interface Changes + +Some user interface changes are deployed to make user-facing front-end components more intuitive and +mobile-friendly by using [Codex](https://doc.wikimedia.org/codex/main/) from Wikimedia Foundation: + +* Start using Codex Design tokens and improve various styles ([#5786](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5786)) +* Rewrite Special:Browse and its factbox ([#5788](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5788)) +* Style SMW tabs similar to Codex ([#5997](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5997)) +* Use new Factbox component at the bottom of the page ([#5804](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5804)) +* Minor visual improvement to Factbox ([#5845](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5845)) +* Minor cleanups on tab styles ([#5991](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5991)) +* Use semantically correct heading and drop custom heading styles ([#5992](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5992)) + +### Performance + +* Use SVGs for logos ([#5756](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5756)) +* Convert base64 images into actual files ([#5761](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5761)) +* Clean up tooltip-related ResourceLoader modules ([#5762](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5762)) +* Minor clean up to SMW Tippy styles ([#5769](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5769)) +* Clean up single-use ResourceLoader modules ([#5777](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5777)) + +## New Features and Enhancements + +* Support additional formatting options on the `table`/`broadtable` result format (`|+width=`, `|+height=`, `|+link=` and `|+thclass=`) ([#5739](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5739)) +* Allow RDF link in the head element to be disabled ([#5776](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/5776)) +* Update Schema.org vocabulary from version 14 to 28 ([Commit cc5a1db](https://github.com/SemanticMediaWiki/SemanticMediaWiki/commit/cc5a1db96f78d5509950707c20648aa20e524481)), fix in Skos vocabulary ([Commit 7740dd6](https://github.com/SemanticMediaWiki/SemanticMediaWiki/commit/7740dd615f4063607b0e6121641ad853160b9c30)) + +## Breaking Changes + +- [#6021](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/6021) ChangePropagationDispatchJob: Don't presume job will be run on same server + + The param 'dataFile' and 'checkSum' have been dropped in ChangePropagationDispatchJob. No longer is a temp file created, instead the contents is supplied + in the 'data' param. + +- [#6044](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/6044) Remove deprecated class alias + +The following class aliases were removed as they were deprecated: + +* \SMW\Localizer +* \SMW\Message +* \SMW\Lang\Lang +* \SMWSerializer +* \SMWTurtleSerializer +* \SMWRDFXMLSerializer +* SMWRDFResultPrinter +* SMWEmbeddedResultPrinter +* SMWDSVResultPrinter +* SMWAggregatablePrinter +* SMW\PropertyAnnotator +* SMW\PropertySpecificationLookup +* SMW\PropertyRestrictionExaminer +* SMWResultArray +* SMWQueryResult +* \SMW\ApplicationFactory +* \SMWSql3SmwIds +* SMW\DeferredCallableUpdate +* SMW\DeferredTransactionalCallableUpdate +* SMW\InTextAnnotationParser +* SMW\UrlEncoder +* SMW\QueryResultPrinter +* SMWIResultPrinter +* SMW\ExportPrinter +* SMW\ResultPrinter +* SMWResultPrinter +* SMW\FileExportPrinter +* SMW\ListResultPrinter +* SMWQueryParser +* SMW\SQLStore\CompositePropertyTableDiffIterator +* SMW\DBConnectionProvider +* SMWPropertyValue +* SMWStringValue +* \SMW\MediaWiki\Database +* SMWDIString +* SMWStore +* SMWUpdateJob +* SMWRefreshJob +* SMWSemanticData +* SMWDIWikiPage +* SMWDIProperty +* SMWDISerializer +* SMWDataValueFactory +* SMWDataItemException +* SMWSQLStore3Table +* SMWDIConcept +* SMWTableResultPrinter +* SMWExportPrinter +* SMWCategoryResultPrinter +* SMWListResultPrinter +* SMWSparqlStore +* SMWSparqlDatabase4Store +* SMWSparqlDatabaseVirtuoso +* SMWSparqlDatabase +* SMWSQLStore3 +* SMWDescription +* SMWThingDescription +* SMWClassDescription +* SMWConceptDescription +* SMWNamespaceDescription +* SMWValueDescription +* SMWConjunction +* SMWDisjunction +* SMWSomeProperty +* SMWPrintRequest +* SMW\SQLStore\PropertiesCollector +* SMW\SQLStore\UnusedPropertiesCollector +* SMWExpElement +* SMWExpResource +* SMWExpNsResource +* SMWExpLiteral +* SMWSQLStore3QueryEngine +* SMW\ParserParameterFormatter +* SMW\ParameterFormatterFactory +* SMWRequestOptions +* SMWStringCondition +* SMW\Hash +* SMWBoolValue +* SMW\FormatFactory +* SMW\SubobjectParserFunction +* SMW\RecurringEventsParserFunction +* SMW\SQLStore\TableDefinition +* SMWContainerSemanticData + +SMWSearch alias was kept. + +## Upgrading + +Be advised that the [SMWSearch](https://www.semantic-mediawiki.org/wiki/Help:SMWSearch) feature (and so the [SEARCH_FORM_SCHEMA](https://www.semantic-mediawiki.org/wiki/Help:Schema/Type/SEARCH_FORM_SCHEMA) feature) is not working yet. See issue [#5782](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/5782). If you use those features, change the MediaWiki [$wgSearchType](https://www.mediawiki.org/wiki/Manual:$wgSearchType) parameter to something other than `SMWSearch`. + +If you use the [ElasticStore](https://www.semantic-mediawiki.org/wiki/Help:ElasticStore) or the [SPARQLStore](https://www.semantic-mediawiki.org/wiki/Help:SPARQLStore) feature, make sure you have the `$smwgDefaultStore` set to `SMW\Elastic\ElasticStore` or `SMW\SPARQLStore\SPARQLStore` (the aliases `SMWElasticStore` and `SMWSparqlStore` were removed). + +There is no need to run the "update.php" maintenance script or any of the rebuild data scripts (but it is still advisable to do so to make [table optimizations](https://www.semantic-mediawiki.org/wiki/Database/Table_optimization) on the database). + +## Contributors + +* translatewiki.net +* paladox +* alistair3149 ([Professional Wiki](https://professional.wiki/)) +* Marko Ilic ([gesinn.it](https://gesinn.it)) +* Sébastien Beyou ([Wiki Valley](https://wiki-valley.com)) +* Alexander Gesinn ([gesinn.it](https://gesinn.it)) +* Jeroen De Dauw ([Professional Wiki](https://professional.wiki/)) +* Karsten Hoffmeyer ([Professional Wiki](https://professional.wiki/)) +* Robert Vogel ([Hallo Welt!](https://hallowelt.com/)) +* Simon Stier +* Yvar ([ArchiXL](https://www.archixl.nl)) +* Alexander Mashin +* Ferdinand Bachmann +* Youri vd Bogert ([ArchiXL](https://www.archixl.nl)) +* dependabot[bot] +* thomas-topway-it ([KM-A](https://km-a.net/)) +* jaideraf +* Bernhard Krabina ([KM-A](https://km-a.net/)) + +## See Also + +* [Semantic MediaWiki 5 Released](https://professional.wiki/en/news/semantic-mediawiki-5-released) blog post diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.0.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.0.1.md new file mode 100644 index 0000000..a54346b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.0.1.md @@ -0,0 +1,31 @@ +# Semantic MediaWiki 5.0.1 + +Released on April 14th, 2025. + +This is a [patch release](../RELEASE-POLICY.md). Thus, it contains only bug fixes, no new features, and no breaking changes. + +Like SMW 5.0.0, this version is compatible with MediaWiki 1.39 up to 1.43 and PHP 8.1 up to 8.4. +For more detailed information, see the [compatibility matrix](../COMPATIBILITY.md#compatibility). + +## Upgrading + +No need to run "update.php" or any other migration scripts. + +**Get the new version via Composer:** + +* Step 1: if you are upgrading from SMW older than 5.0.0, ensure the SMW version in `composer.local.json` is `^5.0.1` +* Step 2: run composer in your MediaWiki directory: `composer update --no-dev --optimize-autoloader` + +**Get the new version via Git:** + +This is only for those who have installed SMW via Git. + +* Step 1: do a `git pull` in the SemanticMediaWiki directory +* Step 2: run `composer update --no-dev --optimize-autoloader` in the MediaWiki directory + +## Changes + +* Fixed title handling for pages with namespace-like prefixes +* Fixed broken code references to `SMW\Message` +* Fixed issue with original parameter in change propagation jobs +* Fixed previewing edits with a factbox diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.0.2.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.0.2.md new file mode 100644 index 0000000..c9d0bdc --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.0.2.md @@ -0,0 +1,29 @@ +# Semantic MediaWiki 5.0.2 + +Released on May 24th, 2025. + +This is a [patch release](../RELEASE-POLICY.md). Thus, it contains only bug fixes, no new features, and no breaking changes. + +Like SMW 5.0.0, this version is compatible with MediaWiki 1.39 up to 1.43 and PHP 8.1 up to 8.4. +For more detailed information, see the [compatibility matrix](../COMPATIBILITY.md#compatibility). + +## Upgrading + +No need to run "update.php" or any other migration scripts. + +**Get the new version via Composer:** + +* Step 1: if you are upgrading from SMW older than 5.0.0, ensure the SMW version in `composer.local.json` is `^5.0.2` +* Step 2: run composer in your MediaWiki directory: `composer update --no-dev --optimize-autoloader` + +**Get the new version via Git:** + +This is only for those who have installed SMW via Git. + +* Step 1: do a `git pull` in the SemanticMediaWiki directory +* Step 2: run `composer update --no-dev --optimize-autoloader` in the MediaWiki directory + +## Changes + +* Improved escaping +* Made footer logo borderless on MediaWiki 1.43 and above to match MediaWiki's own logo diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.1.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.1.0.md new file mode 100644 index 0000000..9febe0b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-5.1.0.md @@ -0,0 +1,38 @@ +# Semantic MediaWiki 5.1.0 + +Released on July 24, 2025. + +## Summary + +This is a [minor release](../RELEASE-POLICY.md). Thus, it contains no breaking changes, only new features and fixes. + +Like SMW 5.0.0, this version is compatible with MediaWiki 1.39 up to 1.43 and PHP 8.1 up to 8.4. +For more detailed information, see the [compatibility matrix](../COMPATIBILITY.md#compatibility). + +SMW 5.1.0 brings two new configuration settings and enhances API outputs by including inverse properties. +While this version also improves compatibility with MediaWiki 1.44, various issues remain, so this version +is known to not yet support MediaWiki 1.44. We recommend SMW users stay on MediaWiki 1.43 LTS for now. + +## Upgrading + +No need to run "update.php" or any other migration scripts. + +**Get the new version via Composer:** + +* Step 1: if you are upgrading from SMW older than 5.0.0, ensure the SMW version in `composer.local.json` is `^5.1.0` +* Step 2: run composer in your MediaWiki directory: `composer update --no-dev --optimize-autoloader` + +**Get the new version via Git:** + +This is only for those who have installed SMW via Git. + +* Step 1: do a `git pull` in the SemanticMediaWiki directory +* Step 2: run `composer update --no-dev --optimize-autoloader` in the MediaWiki directory + +## Changes + +* Added `smwgSetParserCacheTimestamp` setting to allow disabling invalidation of the parser cache (by [Professional Wiki]) +* Added `smwgSetParserCacheKeys` setting to give control over how the parser cache key is built (by [Professional Wiki]) +* Added support for serializing inverse (incoming) properties in API output. The API output now contains a `direction` key (`direct` or `inverse`) for each property (by Gesinn.it) + +[Professional Wiki]: https://professional.wiki diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-6.0.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-6.0.0.md new file mode 100644 index 0000000..8c90b9c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-6.0.0.md @@ -0,0 +1,43 @@ +# Semantic MediaWiki 6.0.0 + +Released on August 12, 2025. + +## Summary + +This release mainly brings support for recent versions of MediaWiki. +Upgrading is recommended for anyone using MediaWiki 1.43 or later. + +## Compatibility + +* Added support for MediaWiki 1.43.2+ and 1.44 +* Dropped support for MediaWiki older than 1.43 + +For more detailed information, see the [compatibility matrix](../COMPATIBILITY.md#compatibility). + +## Upgrading + +No need to run "update.php" or any other migration scripts. + +**Get the new version via Composer:** + +* Step 1: ensure the SMW version in `composer.local.json` is `^6.0.0` +* Step 2: run composer in your MediaWiki directory: `composer update --no-dev --optimize-autoloader` + +**Get the new version via Git:** + +This is only for those who have installed SMW via Git. + +* Step 1: do a `git pull` in the SemanticMediaWiki directory +* Step 2: run `composer update --no-dev --optimize-autoloader` in the MediaWiki directory + +## Changes + +* BREAKING CHANGE: Reverted "Support additional formatting options in ask queries" +* Use MediaWiki file backend for ingest (by Marijn van Wezel) +* Added footer icon spacing (by [Professional Wiki]) +* Fixed compatability issues with MediaWiki 1.43.2+, 1.44 (by Paladox and [Professional Wiki]) +* Fixed DB query issues such as `RuntimeException: Identifier must not contain quote, dot or null characters` (by huaj1ng) +* Fixed deprecation message when running `update.php` (by emwiemaikel) +* Translation update + +[Professional Wiki]: https://professional.wiki \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-6.0.1.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-6.0.1.md new file mode 100644 index 0000000..938a9ff --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-6.0.1.md @@ -0,0 +1,32 @@ +# Semantic MediaWiki 6.0.1 + +Released on August 26th, 2025. + +This is a [patch release](../RELEASE-POLICY.md). Thus, it contains only bug fixes, no new features, and no breaking changes. + +Like SMW 6.0.0, this version is compatible with MediaWiki 1.43 up to 1.44 and PHP 8.1 up to 8.4. +For more detailed information, see the [compatibility matrix](../COMPATIBILITY.md#compatibility). + +## Changes + +* Fixed fatal error when using Factbox in some scenarios ("[Call to a member function resetParseStartTime() on null](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/6204)") +* Fixed MediaWiki 1.44 compatibility issues: + * [FeedItem import error in FeedExportPrinter](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/6205) + * [Title import error when indexing Elasticsearch](https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/6215) +* Fixed error "[$mOutput must not be accessed before initialization](https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/6120)" + +## Upgrading + +No need to run "update.php" or any other migration scripts. + +**Get the new version via Composer:** + +* Step 1: if you are upgrading from SMW older than 6.0.0, ensure the SMW version in `composer.local.json` is `^6.0.1` +* Step 2: run composer in your MediaWiki directory: `composer update --no-dev --optimize-autoloader` + +**Get the new version via Git:** + +This is only for those who have installed SMW via Git. + +* Step 1: do a `git pull` in the SemanticMediaWiki directory +* Step 2: run `composer update --no-dev --optimize-autoloader` in the MediaWiki directory diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-old.md b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-old.md new file mode 100644 index 0000000..25c3381 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/releasenotes/RELEASE-NOTES-old.md @@ -0,0 +1,723 @@ +These are the release notes of SMW up to version 1.5.6. +For version 1.6 and later, see the dedicated files in this directory. + +== SMW 1.5.6 == + +* Automatic refresh of pages after parsing their semantic data. +* Fixed several bugs including non-functional concept caching, + correct internationalization support for categories and concepts + in queries and types display on Special:Types for MW >= 1.18. + +== SMW 1.5.5 == + +* Support for Turtle syntax (e.g. use "syntax=turtle" as a parameter to + when calling Special:ExportRDF. +* New query format "rdf" to export query results to RDF; the "syntax" + parameter can be set to "rdfxml" or "turtle" to specify a syntax. +* Fixed several bugs, including whitespace problems in queries using the + list format, an issue with large offset values and DatatypeProperties + being declared as ObjectProperties. +* More modular export code (split one file into 3), simplifies + manipulation and maintenance. + +== SMW 1.5.4 == + +* Fixed several bugs, including problems with #declare, the extra options + on Special:Ask and the style of the factbox and tables when using MW 1.17. +* Various style and documentation improvements and translation updates. + +== SMW 1.5.3 == + +* Compatibility with MediaWiki 1.17 +* Added << and >> comparators for strict comparisons. Also added ≤ and ≥ for + non-strict comparisons. And introduced $smwStrictComparators setting that + allows changing the behavior of < and > to doing strict comparisons. +* Various style and documentation improvements and translation updates. + +== SMW 1.5.2 == + +* 'Printouts' textarea in Special:Ask now has autocompletion on property + names. +* SMW now has it's own copy of the jQuery and jQuery UI libraries. +* Added a number of hooks to allow further customization by extensions. +* 'Semantic' extension type that can be used by extensions to SMW to be + grouped together on Special:Version and other pages listing extensions. +* Various bugfixes, style and documentation improvements and translation updates. + +== SMW 1.5.1 == + +* Added query comparator "!~" that works like the negation of "~", i.e. that + retrieves exactly those values to which the provided pattern (with * and ?) + does not match. +* Updated OWL/RDF export to include more data (modification dates, and page + namespaces). Changed export ontology to no longer use OWL AnnoationProperties + since OWL 2 DL supports property values also for classes/properties. +* Improvements in code style and structure, following general MediaWiki + conventions. Most notably, the file to include for loading SMW now is + SemanticMediaWiki.php in the base directory (including the old Settings.php + will still work). +* Preparation of future "SMWLight" release for wikis that want to enable users + to add property values to pages, but which do not want to include complex + query features. +* Added a nmber of hooks to improve compatibility with extensions. +* Various bugfixes, and translation updates. + +== SMW 1.5.0 == + +* The former multi-valued/n-ary properties are now supported by a dedicated + datatype Record. Wikis that use the old style of these properties need to + update affected property pages as described at + http://semantic-mediawiki.org/wiki/SMW_1.5.0 +* The Type:Geographic_coordinates has been moved from SMW to the SemanticMaps + extension. Wikis that use this datatype need to install this extension to get + it back. +* The "like" comparator ~ in inline queries is now enabled by default. To use + the former setting, use $smwgQComparators = '<|>|!'; in your LocalSettings.php. +* A new datatype, "Telephone number", has been introduced for validating phone + numbers based on RFC 3966. Only global phone numbers are accepted, and no + vanity numbers (those containing letters) are allowed. Use Type:String if + you want to store more general strings as telephone numbers. +* Support for additional parameters for ?printouts in inline queries, specified + by |+parameter=value after the printout. Currently supported are + * limit: set the maximum number of values for this printout + * order: order values ascending or descending + * align: right/center/left alignment for printouts in tables + * index: directly address one value of a multi-valued (n-ary) property +* Support for inverse properties: use "-" in front of property names anywhere to + refer to the inverse direction of a property. Works in browsing interfaces, + queries, and query output directives. In queries only for properties of Type:Page. +* New configuration options $smwgUseCategoryHierarchy and $smwgCategoriesAsInstances + to configure how MediaWiki categories should be interpreted by SMW. +* Compatibility with new MediaWiki skin "Vector" and with MediaWiki 1.16. +* Removed support for backwards compatibility to SMW <1.0 ($smwgSMWBetaCompatible). +* The page Special:Ask was overhauled to include inputs for entering values + for the selected format's parameters, and to use Ajax where possible +* To that end, each format's query printer now includes a getParameters() + function that supplies the name and attributes of each the format's parameters +* "before" and "after" hooks for updateData() and deleteSubject() were added +* A hook was added for deleteSemanticData() as well + +== SMW 1.4.3 == + +See http://semantic-mediawiki.org/wiki/SMW_1.4.3 + +* A new query format, 'category', that displays values in the style of a + MediaWiki category page +* A new 'columns' parameter for the 'ol' and 'ul' formats +* The 'csv' format now prints a header row by default +* The "::~" comparator in queries can now also be used for properties of type + Geographical coordinate, to find points within a certain distance +* Using "-" as an output format for query printouts, or leaving the formatting + string empty now leads to printout values being returned as plain, unformatted + values. Recall that the general format for printouts in #ask is as follows: + ?propertyname # format = label +* New special property "Has improper value for" can be used to track input errors + (links pages where error happened to properties for which improper data was given). +* New configuration parameter $smwgMaxNonExpNumber to set the maximal number that + SMW will normally display without using scientific exp notation. Defaults to + 1000000000000000. +* New configuration parameter $smwgMaxPropertyValues to control number of values + that are shown for each page in the listing on Property pages. Defaults to 3. +* Now a set of stores can be added, e.g. virtual stores, and then the new #ask + parameter "source" is used to rout to a specific store. +* Labels for inverse properties can be used to improve the output of the Browse + special page. +* The #ask parameter "headers" can now be given the value "plain" to get query + results that show the printout label (e.g. property name) but without a link. +* Special:PageProperty now shows all values of a property when omitting the subject. +* Numerous bugfixes + +== SMW 1.4.2 == + +See http://semantic-mediawiki.org/wiki/SMW_1.4.2 + +* Improved performance. Significantly improved memory usage on common + operations. +* Initial support for running SMW on PostgreSQL (testing needed). +* The query formats 'vcard' and 'icalendar' have been moved to the Semantic + Result Formats extension to make the SMW core more light-weight +* SMW_refreshData.php now supports parameter --page to specify one or more + pages to be updated (instead of using ID ranges) +* Various bugfixes +* Extended translations + +== SMW 1.4.1 == + +See http://semantic-mediawiki.org/wiki/SMW_1.4.1 + +* Improved parsing support for Type:Date, fixing some open issues +* Various bugfixes +* Extended translations + +== SMW 1.4.0 == + +See http://semantic-mediawiki.org/wiki/SMW_1.4.0 + +* Easier installation, upgrade, repair: + Special:SMWAdmin now has a control for refreshing the wiki data online. +* Better Type:Date + ** much larger range of dates, covering all of human history + ** internationalisation, support for localised date formats in input + ** support for single year numbers in dates + ** incomplete dates handled properly +* Query for page modification date using Property:Modification_date +* Full integration of "special properties" such as Property:Has_type + ** can be queried in #ask, and printed in printouts + ** usable in all browsing interfaces + ** display uses of properties on property page +* Improved parsing process + ** avoid data loss in unusual circumstances + ** much better compatibility with other parser extensions +* Shorter and cleaner code +* Extended translations +* Many bugfixes + +== Semantic MediaWiki 1.3 == + +See http://semantic-mediawiki.org/wiki/SMW_1.3 + +* New design of Special:Browse: more concise and less cluttered +* Fuzzy search on Special:SearchByProperty: if an exact value is not found + or yields only few results, pages with close-by values are also shown. +* Better result browsing on concept pages. Such pages now look like category + pages and show results in columns. +* New mechanism for pre-computing concepts for very fast result display even + fomr complicated queries. Relevant for wikis with large amounts of data. + Details are documented at + http://semantic-mediawiki.org/wiki/Help:Concept_caching +* Extended translations, support for aliases for special pages (translated + names used in URLs). +* Various bugfixes and internal improvements for performance and robustness. + +== Semantic MediaWiki 1.2.2 == + +Minor release with bugfixes: +* in rare cases undelete would create errors on pages +* inverse links for binary properties were displayed wrongly +* some additional checks to make parsing more reliable + +== Semantic MediaWiki 1.2.1 == + +See http://semantic-mediawiki.org/wiki/SMW_1.2.1 + +* New sub-property display for property pages +* Improved number parsing, admitting arbitrary spaces in numbers + (required for French) +* Extended translations +* Update job generation actually works now +* Query format "csv" to export data as file of comma-separated values +* Prevent crashes for very long property values (due to PHP PCRE) +* Various other bugfixes + + +== Semantic MediaWiki 1.2 == + +See http://semantic-mediawiki.org/wiki/SMW_1.2 + +* New SMW storage backend (SMWSQLStore2) + ** faster for queries and page display/rendering + ** full equality support built-in, no performance impact + ** support for disjunctions in queries (keyword "OR") +* vCard export for query results +* Improved semantic query syntax and processing + ** shortcut query syntax #show for displaying properties of + single pages, e.g. {{#show: Berlin | ?population}} + ** property chains like [[property1.property2::value]] + ** more detailed control of which query features to support + (see setting $smwgQFeatures in SMW_Settings.php) +* Support for custom sortkey to control alphabetic sorting of + all pages, using MediaWiki's {{DEFAULTSORTKEY: custom key}} +* Support for semantic interwiki links (e.g. [[property::meta:Test]]) +* Stored queries on Concept: pages (concepts as "dynamic categories"), + see http://semantic-mediawiki.org/wiki/Help:Concepts +* Automated updates: changes in templates and property definitions + are automatically applied to affected pages (after some time) +* Extended maintenance scripts + ** delete an existing (now unused) SMW store with SMW_setup --delete + ** select SMW storage engine to use for scripts with option -b + ** SMW_dumpRDF now supports restriction to concepts or concepts+categories +* SMW <1.0 features disabled by default (remove obsolete features), + can be re-enabled with $smwgSMWBetaCompatible. +* Compatible with Semantic Forms 1.2.3 and MediaWiki 1.13 (current devel + version) + + +== Semantic MediaWiki 1.1.2 == + +* Security update to avoid vulnerabilities on sites that use PHP + superglobals + +== Semantic MediaWiki 1.1.1 == + +* Improved iCalendar support: more efficient processing, better heuristic + for giving dates, formatting bugfixes +* Bugfix for Special:SearchByProperty (form-based search failed) +* Minor bugfixes for RSS generation +* Bugfix for Special_Ask in MediaWiki 1.11 with template formatting +* Maintenance scripts now accept the MW_INSTALL_PATH environment variable + +== Semantic MediaWiki 1.1 == + +* Support for formatted results on Special:Ask. "Further results" links + from inline queries now preserve format. +* New iCalendar export for inline queries (format=icalendar) +* Query results can now be sorted by more than one property (just separate + property names with "," in sort parameter) +* Initial support (beta) for synching external RDF stores with SMW. + This also provides support for wiki-based SPARQL query services, see + http://semantic-mediawiki.org/wiki/Help:SPARQL_endpoint +* More robust link generation code; even long query texts and links + that contain very special characters are built properly. +* Extended translations. Completely new Arab translation. +* New SMW registry http://semantic-mediawiki.org/wiki/Special:SMWRegistry + to replace hand-crafted list of "sites using SMW". +* Various bugfixes. For example: + ** Enumerated properties (allows value) for Type:Page works now. + ** Page moves are handled more reliably + +== Semantic MediaWiki 1.0.1 == + +* Extended translations, new Italian translation +* minor bugfixes, fixed RSS links for long description texts + +== Changes in SMW1.0 as compared to SMW0.7 == + +* Simplified semantic annotations: just one kind of annotation ("Property"). +* Significant speedup (both server and network load substantially reduced, + faster RDF export, more efficient query result formatting). +* Prettier and easier to understand interfaces: + ** New tooltips for warnings and additional information. + ** Simplified factbox layout, with all properties in alphabetic order. + ** Inline warnings to simplify trouble shooting with annotations. + ** Improved, more helpful and informative warning and error messages. + ** Highlighting for built-in elements. E.g. built-in types are visually + distinguished from arbitrary types; useful as visual feedback. + ** Error/warning reporting for (inline) queries. +* More powerful output formatting for semantic querying: + ** new {{#ask:...}} parser function syntax for inline queries, fully + compatible with MediaWiki templates, template parameters, and parser + functions of other extension + ** more readable inline query structure in #ask parser function, + printouts separated from query + ** semantic RSS feeds making feeds from query results via "format=rss" + ** new printout format "?Category:Name" for #ask + ** option to hide main column by setting "mainlabel=-", and reinserting + via print request "?" (only for #ask) +* More expressivity for semantic querying: + ** support for subproperties, + ** improved equality resolution (redirects), + ** support for disjunctions, + ** inequality check for datavalues ("[[property::!value]]") + ** optional pattern matching for string values ("[[property::~Semant*]]") + ** automatic sorting on sort-parameter (no additional condition needed) +* New/improved datatypes: + ** Type:Page for explicitly specifying properties that are "relations" + ** better media support in Type:Page: special treatment of Image: and Media: + ** Type:Number as universal replacement for Type:Integer and Type:Float + ** Type:URL as universal replacement for old Type:URL and Type:URI + ** Type:Geographic coordinates completely rewritten. More input formats + supported, more liberal parsing to accept most inputs + ** special property "allows value" works for all types + ** display units are now easier to select via property "display units" + ** Improved data display: URL-links and tooltips work for queries results + and on special pages +* Improved special pages: + ** simpler interface for Special:Ask, hide query when using "further results" link + ** hints and warning for property usage/declaration in Special:Properties + ** extra information and warnings for types on Special:Types + ** Special:SemanticStatistics as faster replacement for earlier "ExtendedStatistics" +* Better internationalisation: + ** updates in all translation files + ** new translations to Dutch, Chinese (tw/ch), Korean (beta) + ** alias strings for all SMW elements; English labels are allowed in all + languages, names of old SMW elements still work as aliases for their + replacements. +* New experimental n-ary properties, allowing property values to consist of + a list of entries. +* Ontology import re-enabled (simple annotation import) +* Maintenance script SMW_refreshData now can rebuild all SMW data structures, fixing + even exotic database problems on most sites. +* New maintenance script for announcing site to Semantic Web crawlers. +* Support for upcoming MediaWiki 1.12 +* Improved APIs and various new hooks to simplify the life of SMW extension developers. +* Many bugfixes. + +Other changes for SMW1.0 include: +* Type:Enum became obsolete, since all types now suppport "allows value", but it + remains an alias for Type:String. +* Some configuration options for LocalSettings.php have changed. Read INSTALL + for details on how to upgrade from your old installation. + + +== Semantic MediaWiki post 1.0RC3 == + +* Support for dynamic, query-generated RSS-feeds via query format "rss". +* Optional query feature for pattern matching in Type:String property values. +* Correct dynamic sorting of result tables, even for dates and numerical values. +* Thumbnail images when displaying property values from Image namespace. +* Simplified use of "sort" parameter in queries. +* Support for upcoming MediaWiki 1.12 (major parser changes). +* More efficient link generation in query results. Link all query results by + default now. +* Maintenance script SMW_refreshData now can rebuild all SMW data structures, + fixing even exotic database problems on most sites. +* New maintenance script for announcing site to Semantic Web crawlers. +* Various bugfixes. + +== Semantic MediaWiki 1.0RC3 == + +* New method for integrating inline queries via #ask parser function, separation of + query and printout requests, full compatibility with templates. +* New layout for Special:Ask to reflect #ask structure. +* New printout option: "?Category:Name" to ask for membership in that category. +* Re-enabled service links (e.g. use [[provides service::online maps]] on any page of + a property to Type:Geographic coordinates). +* Re-enabled Type:Boolean. +* Prototype translation for Korean (still alpha). +* Various minor bugfixes. + +== Semantic MediaWiki 1.0RC2 == + +* Experimental Postgres support. +* More liberal parsing for geographic coordinates, most user inputs accepted now. +* Improved URL datatype: better linking behavior, tolerant towards Unicode-URLs. +* Significantly improved performance for RDF export. +* Complete translations for Fr, Zh-tw, and Zh-ch added. +* Various minor bugfixes. + +== Semantic MediaWiki 1.0RC1 == + +* Simplified semantic annotations: just one kind of annotation ("Property"). +* Significant speedup (both server and network load substantially reduced). +* Prettier and easier to understand interfaces: + ** New tooltips that work on both normal and special pages. + ** Simplified factbox layout, with all properties in alphabetic order. + ** Inline warnings to simplify trouble shooting with annotations. + ** Improved, more helpful and informative warning and error messages. + ** Highlighting for built-in elements. E.g. built-in types are visually + distinguished from arbitrary types; useful as visual feedback. + ** Error/warning reporting for (inline) queries. +* Alias strings for all SMW elements. English labels are allowed in all + languages, names of old SMW elements still work as aliases for their + replacements. +* More expressivity for semantic querying: + ** support for subproperties, + ** improved equality resolution (redirects), + ** support for disjunctions, + ** inequality check for datavalues ("[[property::!value]]") +* New/improved datatypes: + ** Type:Page for explicitly specifying properties that are "relations" + ** Type:Number as universal replacement for Type:Integer and Type:Float + ** Type:URL as universal replacement for old Type:URL and Type:URI + ** Type:Geographic coordinates completely rewritten. More input formats + supported now (e.g. coordinates without "," separating Lat and Long) + ** special property "allows value" works for all types + ** display units are now easier to select via property "display units" + ** Improved data display: linked URLs and tooltips work for queries and + special pages +* Improved maintenance special pages: + ** Hints and warning for property usage/declaration in Special:Properties + ** Extra information and warnings for types on Special:Types + ** Special:SemanticStatistics as faster replacement for earlier "ExtendedStatistics" +* New experimental n-ary properties, allowing property values to consist of + a list of entries. +* Ontology import re-enabled (simple annotation import) +* Dutch translation added (by Siebrand Mazeland) +* Improved APIs and various new hooks to simplify the life of SMW extension developers. +* Many bugfixes. + +Other changes for the RC1 include: +* No more support for Type:Boolean. Will be re-enabled later. +* Type:Enum became obsolete, since all types now suppport "allows value", but it + remains an alias for Type:String. +* Service links are not working in this Release Candidate yet, especially coordinate + values do not link to maps yet. This will reappear before SMW1.0 final. + + +== Semantic MediaWiki 0.7 == + +* New browsing interface for semantic data: Special:Browse +* Improved simple searching interfaces, making the old Special:Searchtriple + obsolete by various new interlinked special pages. +* New formatting options for inline queries: +** Template-based formatting for formats "list" and "template" +** Transclusion of result articles with format "embedded" +** Counting query results with format count. +* New datatype for enumerated string values (Type:Enum). +* Pages of attributes and relations now list all uses of these properties. +* Pages of types now list all attributes using a type. +* New Special:WantedRelations showing relations that are used but have no page. +* Improved support for arbitrary symbols in string values, including wiki links + and HTML entities (now correct in RDF). +* Improved headers for query tables, with sort icon and link to attribute/relation + separated. +* Added maintenance script to rebuild semantic data, thus fixing any inconsistencies + in the semantic database that may have occurred earlier or due to text-only imports + of pages. +* Translations to further languages, including Hebrew (right-to-left). +* New cleaner storage implementation, allowing to run MediaWiki parsertests with the + option $smwgDefaultStore = SMW_STORE_TESTING; in LocalSettings.php. +* MediaWiki-1.10-Ready ;-) +* Simplified installation (no more manual patching with MediaWiki 1.10). +* Many bugfixes. + +== Semantic MediaWiki 0.6 == + +* New Special:Ask for directly browsing query results and for testing queries. +* New output format "timeline" for inline queries that deal with dates. Available + parameters are: timelinestart (name of start date attribute), timelineend (name + of end date attribute, if any), tiemlinesize (CSS-encoded height), timelinebands + (comma-separated list of bands such as DAY, WEEK, MONTH, YEAR, ...), and + timelineposition (one of start, end, today, middle). +* Complete RDF export is now possible with a maintenance script, which can e.g. be + run periodically on a server to create RDF files. +* New "service links" feature: any attribute can provide configurable links to + online services. As a special case, the map-services of geo-coordinates are now + fully configurable. +* Inline queries now link to life search for further results if not all results + were shown inline. +* The formatting code for inline queries was rewritten to become more powerful. + For instance, multi-property outputs in list format will never produce empty + parentheses now. +* RDF-export code is cleaner and some further OWL DL incompatibilities are caught. +* RDF-export now can generate browsable RDF (with backlinks) even for Category + pages. +* Improved headers for sorting tables. Sort icon now visible even if no text is + shown in header. +* Many bugfixes. + +== Semantic MediaWiki 0.5 == + +* Customised datatypes for unit conversion: it is now possible to create customised + linear unit conversions by appropriate statements on type articles. This also + enables full localisation of all units of measurement. +* Customized display of units: every attribute can now decide which units to display + in factbox and query results. Internally, values are still normalised, but users + can adjust the view to the most common description of some attribute. +* Support for importing vocabularies from external ontologies. For instance, elements + of the wiki can now be mapped to the FOAF ontology during export. The import is + controlled by whitelist-like message articles. +* New attribute datatypes for URLs and URIs, some of which can be exported in RDF as + ObjectProperties. A blacklist is used to prevent technically problematic URIs from + being used there (e.g. most don't want to use OWL language elements as data). +* New attribute datatype for temperature, since this cannot be defined by a linear + custom unit conversion. +* Improved Special:Relations and Special:Attributes, including a quicklink to searching + occurrences of some annotation. +* Unit support for inline queries. Desired output unit can be adjusted through query. +* Improved code layout, using object-orientation features of PHP5. +* Many bugfixes. + +== Semantic MediaWiki 0.4.3.2 == + +This fixes another small bug that prevented the limit parameter in queries to work +properly. + +== Semantic MediaWiki 0.4.3.1 == + +This fixes a small but critical bug that prevented queries for non-numeric attribute +values to work properly. + +== Semantic MediaWiki 0.4.3 == + +Semantic MediaWiki 0.4.3 is an intermediate release that greatly improves the +performance and features of inline queries. It also includes some major code +cleanups and various bugfixes. + +An updated documentation of the current inline queries is (soon) to be found at +http://semantic-mediawiki.org/wiki/Help:Inline_queries + +== Semantic MediaWiki 0.4 == + +Semantic MediaWiki 0.4 includes the following new features: + +* Support for inline queries: it is now possible to queries in + articles, the answers of which are included into the displayed page. + Conjunctions and nesting of queries is supported. Datatype queries + for values above or below some threshold are possible. Outputs can be + displayed in many different formats, including bulleted and numbered + lists, tables with intercative (JScript) sorting (credits go to + Stuart Langridge for www.kryogenix.org/code/browser/sorttable/), and + plain text. See http://semantic-mediawiki.org/wiki/Help:Inline_queries + for documentation. +* Improved output for Special:Relations and Special:Attributes: usage of + relations and attributes is now counted +* Improved ontology import feature, allowing to import ontologies and to + update existing pages with new ontological information +* Experimental support for date/time datatype +* More datatypes with units: mass and time duration +* Support for EXP-notation with numbers, as e.g. 2.345e13. Improved number + formatting in infobox. +* Configurable infobox: infobox can be hidden if empty, or switched off + completely. This also works around a bug with MediaWiki galeries. +* Prototype version of Special:Types, showing all available datatypes with + their names in the current language setting. +* "[[:located in::Paris]]" will now be rendered as "located in [[Paris]]" +* More efficient storage: changed database layout, indexes for fast search +* Code cleaned up, new style guidelines +* Bugfixes, bugfixes, and some more bugfixes + +Semantic MediaWiki 0.4 has not been tested on MediaWiki below 1.6.1 and might +fail to operate correctly in this case. Some functions explicitly use code +that was introduced in 1.6. + +== Semantic MediaWiki 0.3 == + +Changes by mak (0.3, 06 Apr 2006): + +* Compatibility updates for MediaWiki 1.6 + +Changes by denny/mak (0.3, 25 Mar 2006): + +* Internal: improved management of special properties +* RDF export: OWL conformant export of all available content data, including category information +* RDF export: recursive export, "streaming" +* UI: further internationalization, internationalized float number format (decimal separator) +* UI: new infobox section for recognized special properties +* new Specials to show all relations/attibutes +* new experimental Special to import data from existing OWL/RDF ontologies +* new special property "equivalent URI" that allows to map wiki concepts to URIs in other ontologies + +Changes by kai/mak (0.3preview, 15 Mar 2006): + +* Internal: new internal storage management; cleaner, more flexible, and more efficient +* Internal: new internal type registration API +* Internal: new internal management for special properties (e.g. 'has type') +* Internationalization: almost complete; namespaces, special properties (e.g. 'has type'), datatype labels +* RDF export: support for multiple mimetypes (rdf+xml and xml); needed for Piggybank +* RDF export: support for bulk export +* RDF export: XSD datatypes and correct instance classification (rdf:type) +* UI: extended Special:SMWAdmin to convert data from old internal datatable to new format +* UI: duplicate attribute values eliminated in infobox +* UI: types can switch off quicksearch links +* UI: more human-oriented error mesages ;-) +* UI: service links for infobox and search +* new datatype for geographic coordinates, accepting many kinds of coordinate inputs, and providing links to standard mapsources +* Simple semantic search supports imprecise search again + +Changes by mak (0.2c, 9 Mar 2006): + +* added basic language support functionality +* improved installation process (SMW_LocalSettings.php, simpler patching for Setup.php) + +Changes by mak (0.2c, 1 Mar 2006): + +* RDF Export enabled +* more CSS and an icon to show RDF download link on pages + +Changes by kai/mak (0.2c, Feb 2006): + +* Added new custom stylesheet and JScript (kai/mak) +* New JScript tooltips (kai) +* New style for infobox search items (mak) + +Changes by mak (0.2c, Feb 2006): + +* Added new Special:SMWAdmin that allows relatively painless upgrade + from versions <=0.2 where no namespaces were used. +* Added support for moving pages with its stored triples. +* BUGFIX: triples in articles with SQL-hostile symbols (e.g. ') are + now working. + +== Semantic MediaWiki 0.2b == + +Changes by mak (0.2b, Jan 2006): +* Changed directory structure for more clarity, easier installation + and upgrade. +* Now using custom namespaces for Relations, Attributes, and Types, + and their talks. +* Semantic features can be switched on or off for each namespace + individually. +* Registered extension for MediaWiki's "Special:Version". +* BUGFIX: Configuration now takes fixed servername to use in storing + URIs. Before, different access methods (e.g. direct IP vs. servername) + generated different URIs. +* BUGFIX: Attributes that could not be parsed now do not generate + triples with empty object in our database. + +Changes by mak (0.2a, 4 Dec 2005): +* Attribute values are now correctly stored and retrieved. +* Special SearchTriple greatly enhanced, such that queries for + attributes become possible (including unit conversion). +* Links from attributes in infobox to the new search form. +* Major code cleanup: SMW_AttributeStore.php now is called + SMW_SemanticData.php and managemes all types of semantic + data, including printout and storage. SMW_Hooks.php was freed + of all code with similar purpose. Look-up of attribute types + was moved from SemanticData to Datatype. + +Changes by mak (0.1b, 1 Dec 2005): +* Reworked internal data representation. All information now is + properly encoded in URIs and decoded for display. This is an + important prerequisite for storing attributes and auxilliary + triples, which otherwise could not be distinguished from the + relational information. +* New Special SearchTriple to replace the current SearchSemantic, + which is currently only half functional since it believes that + the database contains only simple names for articles, but not + full URIs. +* Minor adjustments in handling of namespaces: namespaced aritcles + now properly work as subjects and are displayed with namespace in + in the infobox. + +Changes by mak (0.1b, 19 Nov 2005): + +* New type management; attributes can now be declared by creating + relations of type "has type" inside their articles (Attribute:X). + Possible targets are the builtin types (Type:String, Type:Geographic + length, etc.). +* New internal method SMWGetTriples for directly retrieving triples + from the storage. Accepts subject, predicate, object pairs, where + any two can be left out. +* Improved layout for infoboxes. + +Changes by mak (0.1b, 13 Nov 2005): + +* added support for separator "," in data numbers, +* added tooltips for unit conversion. + +Changes by mak (0.1b, 17 Oct 2005): + +* added attribute support [[attribute name:=value|alternative text]]; + currently, parsing these within the article works, including an + info box at the bottom; however, assignment from attributes to + datatypes is still hardcoded and attribute-annotations are neither + stored as triples nor are they supported in search, +* added basic type support for STRING, INTEGER, and FLOAT, +* added framework for unit conversion and first unit support: unit + conversion is achieved by callback functions, so that adding types + for new units boils down to writing a single unit conversion function, +* code split into several files for easier colaboration of developers, +* new naming convention "SMW"-prefix for all top level code elements of + the extension, +* moved main storage methods to SMW_Storage.php, this should simplify + the conversion to another storage backend (triplestore), +* moved stripping of semantic relations to SMW_Stripsemantics.php; + if this feature is desired, this file needs to be updated slightly + (also to include semantic attributes) and its methods connected to + their appropriate hooks as done in 0.1 + +Changes by mak (0.1a, 4 Oct 2005): + +* moved parsing process to ParserAfterStrip to support ; it + has to be done even later to support template inclusion properly, +* changed process of storing/retrieving: no more stripping of semantic + relations before saving -- the annotations now appear exactly where + the user has put them, keeping them easier to read and maintain, +* parse only once: saving is based on the relations that were retrieved + during the earlier call of parse(); for this to work, saving needs to + be deferred -- it is currently done at ArticleSaveComplete [should + there be a dedicated hook for deferred saving?], +* enabled removal of semantic links on article deletion, +* changed layout of semantic links factsheet, including some neat grouping + feature. + +== Semantic MediaWiki 0.1 == + +This is a pre-alpha version of the Semantic MediaWiki extensions. +It includes: + +* support for typed links [[link type::link target|link label]], +* rendering of fact sheet on semantic relations at article bottom, +* Special:SearchSemantic (alpha), featuring autocompletion for + link types. diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/README.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/README.md new file mode 100644 index 0000000..49f2a62 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/README.md @@ -0,0 +1,34 @@ +This document collects technical resources to help improve the understanding of "How Semantic MediaWiki works". + +## Guides + +* [Programmer's guide](https://www.semantic-mediawiki.org/wiki/Programmer%27s_guide) +* [Architecture guide](https://www.semantic-mediawiki.org/wiki/Architecture_guide) +* [Developer hub](https://www.semantic-mediawiki.org/wiki/Developer_hub) and [Coding conventions](https://www.semantic-mediawiki.org/wiki/Coding_conventions) +* [Examples (code snippets)](/docs/examples/README.md) + +### Migration guide + +- [2.5.x to 3.0.0](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/technical/migration-guide-3.0.md) contains information about the migration from 2.x to 3.x + +## Overview + +- [maintenance](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/maintenance/README.md) +- res + - [suggester](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/res/smw/suggester/README.md) on how to register additional tokens or context objects +- src + - [Importer](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Importer/README.md) contains a summary about the process and technical background of the content importer + - [Lang](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Lang/README.md) + - [Serializers](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/technical/doc.serializers.md) contains information about the Semantic MediaWiki serializers + - [Schema](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Schema/README.md) contains information about schemata provided by Semantic MediaWiki + - [Services](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Services/README.md) contains information about the `ServicesFactory` and related classes + - MediaWiki + - [API](api.md) provides an overview for available API modules + - [Hooks](hooks.md) provided by Semantic MediaWiki + - [Search](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/Search/README.md) `Special:Search` integration + - SQLStore ( [Overview](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SQLStore/README.md), [QueryEngine](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SQLStore/QueryEngine/README.md)) + - SPARQLStore ([Overview](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SPARQLStore/README.md)) + - ElasticStore ([Overview](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Elastic/README.md)) +- tests + - [Unit](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/tests/README.md) + - Integration ([JSONScript](https://github.com/SemanticMediaWiki/SemanticMediaWiki/tree/master/tests/phpunit/Integration/JSONScript)) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/api.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/api.md new file mode 100644 index 0000000..c5ca49d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/api.md @@ -0,0 +1,175 @@ +This file contains details about [Semantic MediaWiki's API][smwapi] for external use with a description +of available interfaces. For more details on MediaWiki's WebAPI, it is recommended to read this [website][mwapi]. + +## api.php?action=ask +The `Ask API` allows you to do ask queries against Semantic MediaWiki using the MediaWiki API and get results back serialized in one of the formats it supports. + +The ask module supports one parameter, query, which takes the same string you'd feed into an `#ask` parser function, but urlencoded. + +> api.php?action=ask&query=[[Modification date::%2B]]|%3FModification date|sort%3DModification date|order%3Ddesc&format=jsonfm + +## api.php?action=askargs +The `Askargs API` module aims to take arguments in un-serialized form, so with as little ask-specific syntax as possible. It supports 3 arguments: + +* `conditions`: The query conditions, ie the requirements for a subject to be included +* `printouts`: The query printouts, ie the properties to show per subject +* `parameters`: The query parameters, ie all non-condition and non-printout arguments + +> api.php?action=askargs&conditions=Modification date::%2B&printouts=Modification date¶meters=|sort%3DModification date|order%3Ddesc&format=jsonfm + +#### Output serialization +```php +{ + "query-continue-offset": 50, + "query": { + "printrequests": [ + { + "label": "", + "typeid": "_wpg", + "mode": 2, + "format": false + }, + { + "label": "Modification date", + "typeid": "_dat", + "mode": 1, + "format": "" + } + ], + "results": { + "Main Page": { + "printouts": { + "Modification date": [ + "1381456128" + ] + }, + "fulltext": "Main Page", + "fullurl": "http:\/\/localhost:8080\/mw\/index.php\/Main_Page", + "namespace": 0, + "exists": true + }, + ... + }, + "meta": { + "hash": "a9abdb34024fa8735f6b044305a48619", + "count": 50, + "offset": 0 + } + } +} +``` + +## api.php?action=smwinfo +An interface to access statistical information about the properties, values etc.. + +> api.php?action=smwinfo&format=json&info=proppagecount|propcount + +The following parameters are available and can be concatenated using the "|" character. +* `proppagecount`: The total number of properties registered with a page. +* `declaredpropcount`: The total number of properties with a datatype assigned. +* `usedpropcount`: The total number of properties with at least one values assigned. +* `propcount`: The total number of property values assigned. +* `errorcount`: The total number of property values invalidly assigned. +* `querycount`: The total number of queries. +* `querysize`: The total size of all queries. +* `formatcount`: The query formats and their respective total usage count. +* `subobjectcount`: The total number of subobjects. +* `conceptcount`: The total number of concepts. + +#### Output serialization + +```php +{ + "info": { + "proppagecount": 40, + "formatcount": { + "table": 14, + "list": 3, + "broadtable": 1 + } + } +} +``` +The parameter "formatcount" will output an array of used formats together with its count information. + +## api.php?action=browsebysubject +An interface to browse facts (the equivalent of `Special:Browse`) of a subject (wikipage) including special properties and subobjects. + +> api.php?action=browsebysubject&subject=Main%20Page +> api.php?action=browsebysubject&subject=Main%20Page&subobject=_QUERYa0856d9fbd9e495af0963ecc75fcef14 + +#### Output serialization +```php +{ + "query": { + "subject": "Main_Page#0##", + "data": [ + { + "property": "Foo", + "dataitem": [ + { + "type": 2, + "item": "Bar" + } + ] + } + ... + ], + "sobj": [ + { + "subject": "Main_Page#0##_QUERYa0856d9fbd9e495af0963ecc75fcef14", + "data": [ + { + "property": "_ASKDE", + "dataitem": [ + { + "type": 1, + "item": "1" + } + ] + }, + ... + ] + ... + } + ], + "serializer": "SMW\Serializers\SemanticDataSerializer", + "version": 0.1 + } +} +``` + +## api.php?action=browsebyproperty +An interface to browse properties (the equivalent of `Special:Properties`). + +> api.php?action=browsebyproperty +> api.php?action=browsebyproperty&limit=100&format=json&property=name + +#### Output serialization + +```php +{ + "xmlns:Foaf": "http://xmlns.com/foaf/0.1/", + "query": { + "Foaf:name": { + "label": "Foaf:name", + "isUserDefined": true, + "usageCount": 2 + }, + "Has_common_name": { + "label": "Has common name", + "isUserDefined": true, + "usageCount": 1 + } + }, + "version": 0.1, + "meta": { + "limit": 100, + "count": 2, + "isCached": true + } +} +``` + +[mwapi]: https://www.mediawiki.org/wiki/API:Main_page "API:Main_page" +[smwapi]: https://www.semantic-mediawiki.org/wiki/Help:API "Help:API" diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/doc.serializers.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/doc.serializers.md new file mode 100644 index 0000000..5a39e70 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/doc.serializers.md @@ -0,0 +1,133 @@ +This document contains information about Semantic MediaWiki serializers. + +## Components + +### Serializer and Deserializer +Interfaces provided by the [Serialization extension][serialization] which describes specific serialize/deserialize public methods. + +### SerializerFactory +A factory class that assigns registered serializers to an object and identifies an unserializer based on the invoked array. A serialized record has a reference to the generator (serializer) class which will automatically be used during unserialization. Each record includes a version number to compare the data model used and enable a consistency check before an attempt to unserialize a record. + +```php +$foo = new Foo( ... ); +$serialized = SerializerFactory::serialize( $foo ); +$unserialized = SerializerFactory::deserialize( $serialized ); +``` + +### SemanticDataSerializer +Implements the Serializer interface for the SMW\SemanticData object. + +#### Data model +```php +"subject": -> Subject serialization, +"data": [ + { + "property": -> Property serialization, + "dataitem": [ + { + "type": -> DataItemType, + "item": -> DataItem serialization + } + ] + } +] +"sobj": [ + { + "subject": ..., + "data": [ + { + "property": ..., + "dataitem": [ + { + "type": ..., + "item": ... + } + ] + }, + }, +], +"serializer": -> Class of the generator and entry point for the un-serializer, +"version": -> Number to compare structural integrity between serialization and un-serialization +``` +#### Example +For a page called "Foo" that contains [[Has property::Bar]], {{#subobject:|Has subobjects=Bam}}, {{#ask:[[Has subobjects::Bam]]}}, the Serializer will output: + +```php +"subject": "Foo#0##", +"data": [ + { + "property": "Has_property", + "dataitem": [ + { + "type": 9, + "item": "Bar#0##" + } + ] + }, + { + "property": "_ASK", + "dataitem": [ + { + "type": 9, + "item": "Foo#0##_QUERYc8606da8f325fc05aa8e8b958821c3b4" + } + ] + }, + ... + { + "property": "_SOBJ", + "dataitem": [ + { + "type": 9, + "item": "Foo#0##_fc4b104aabf80eb06429e946aa8f7070" + } + ] + } +], +"sobj": [ + { + "subject": "Foo#0##_QUERYc8606da8f325fc05aa8e8b958821c3b4", + "data": [ + { + "property": "_ASKDE", + "dataitem": [ + { + "type": 1, + "item": "1" + } + ] + }, + }, + ... + { + "subject": "Foo#0##_fc4b104aabf80eb06429e946aa8f7070", + "data": [ + { + "property": "Has_subobjects", + "dataitem": [ + { + "type": 9, + "item": "Bam#0##" + } + ] + }, + { + "property": "_SKEY", + "dataitem": [ + { + "type": 2, + "item": "Foo" + } + ] + } + ] + } +], +"serializer": "SMW\\Serializers\\SemanticDataSerializer", +"version": 0.1 +``` + +### QueryResultSerializer +Implements the SerializerInterface for the \SMW\Query\QueryResult object. + +[serialization]: [https://github.com/wikimedia/mediawiki-extensions-Serialization] diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/doxygen.php b/mediawiki/extensions/SemanticMediaWiki/docs/technical/doxygen.php new file mode 100644 index 0000000..f75d24b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/doxygen.php @@ -0,0 +1,196 @@ +getHookContainer()->register( 'SMW::Admin::RegisterTaskHandlers', function( TaskHandlerRegistry $taskHandlerRegistry, Store $store, $outputFormatter, $user ) { + + // Instance of TaskHandler + // $taskHandlerRegistry->registerTaskHandler( new FooTaskHandler() ); + + return true; +} ); +``` + +## See also + +- See the [`ElasticFactory.php`][ElasticFactory.php] for an implementation example + +[TaskHandlerRegistry.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/Specials/Admin/TaskHandlerRegistry.php +[ElasticFactory.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Elastic/ElasticFactory.php \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.browse.afterdatalookupcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.browse.afterdatalookupcomplete.md new file mode 100644 index 0000000..6c91a87 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.browse.afterdatalookupcomplete.md @@ -0,0 +1,18 @@ +* Since: 2.3 +* Description: Hook to extend the HTML with data displayed on `Special:Browse` +* Reference class: [`HtmlBuilder.php`][HtmlBuilder.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\Store; +use SMW\SemanticData; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Browse::AfterDataLookupComplete', function( Store $store, SemanticData $semanticData, &$html, &$extraModules ) { + + return true; +} ); +``` + +[HtmlBuilder.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/Specials/Browse/HtmlBuilder.php \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.browse.afterincomingpropertieslookupcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.browse.afterincomingpropertieslookupcomplete.md new file mode 100644 index 0000000..577640b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.browse.afterincomingpropertieslookupcomplete.md @@ -0,0 +1,23 @@ +* Since: 2.3 +* Description: Hook to extend the incoming properties display for `Special:Browse` +* Reference class: [`HtmlBuilder.php`][HtmlBuilder.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\Store; +use SMW\SemanticData; +use SMW\RequestOptions + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Browse::AfterIncomingPropertiesLookupComplete', function( Store $store, SemanticData $semanticData, RequestOptions $requestOptions ) { + + return true; +} ); +``` + +## See also + +- For a usage example, see the [`SemanticCite`](https://github.com/SemanticMediaWiki/SemanticCite) extension + +[HtmlBuilder.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/Specials/Browse/HtmlBuilder.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.browse.beforeincomingpropertyvaluesfurtherlinkcreate.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.browse.beforeincomingpropertyvaluesfurtherlinkcreate.md new file mode 100644 index 0000000..b15a19b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.browse.beforeincomingpropertyvaluesfurtherlinkcreate.md @@ -0,0 +1,24 @@ +* Since: 2.3 +* Description: Hook to replace the standard `SearchByProperty` with a custom link in `Special:Browse` to an extended list of results (return `false` to replace the link) +* Reference class: [`HtmlBuilder.php`][HtmlBuilder.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\DIProperty; +use SMW\DIWikiPage; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Browse::BeforeIncomingPropertyValuesFurtherLinkCreate', function( DIProperty $property, DIWikiPage $subject, &$propertyValue ) { + + // return `false` to replace the link + + return true; +} ); +``` + +## See also + +- For a usage example, see the [`SemanticCite`](https://github.com/SemanticMediaWiki/SemanticCite) extension + +[HtmlBuilder.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/Specials/Browse/HtmlBuilder.php \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.constraint.initconstraints.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.constraint.initconstraints.md new file mode 100644 index 0000000..c624be5 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.constraint.initconstraints.md @@ -0,0 +1,25 @@ +## SMW::Constraint::initConstraints + +* Since: 3.1 +* Description: Hook to allow adding custom constraint checks for a `custom_constraint`. +* Reference class: [`ConstraintRegistry.php`][ConstraintRegistry.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Constraint::initConstraints', function( $constraintRegistry ) { + + return true; +} ); +``` + +[ConstraintRegistry.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Constraint/ConstraintRegistry.php + + +## See also + +- [register.custom.constraint.md][register.custom.constraint] + +[register.custom.constraint]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/register.custom.constraint.md diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.datatype.inittypes.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.datatype.inittypes.md new file mode 100644 index 0000000..d89d9f5 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.datatype.inittypes.md @@ -0,0 +1,24 @@ +* Since: 1.9 +* Description: Hook to add additional [DataType][datamodel.datatype] support (`smwInitDatatypes` was deprecated with 1.9) +* Reference class: [`DataTypeRegistry.php`][DataTypeRegistry.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\DataTypeRegistry; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::DataType::initTypes', function( DataTypeRegistry $dataTypeRegistry ) { + + return true; +} ); +``` + +## See also + +- [datamodel.datatype.md][datamodel.datatype] +- [register.custom.datatype.md][custom.datatype] + +[DataTypeRegistry.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/DataTypeRegistry.php +[custom.datatype]: https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/register.custom.datatype.md +[datamodel.datatype]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/architecture/datamodel.datatype.md \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.event.registereventlisteners.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.event.registereventlisteners.md new file mode 100644 index 0000000..0104197 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.event.registereventlisteners.md @@ -0,0 +1,19 @@ +* Since: 3.1 +* Description: Hook to register additional event listeners. +* Reference class: [`EventListenerRegistry.php`][EventListenerRegistry.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use Onoi\EventListener\EventListener; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Event::RegisterEventListeners', function( EventListener $eventListener ) { + + // $eventListener->registerCallback( 'FooEvent' , [ $this, 'onFooEvent' ] ); + + return true; +} ); +``` + +[EventListenerRegistry.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/EventListenerRegistry.php \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.exporter.controller.addexpdata.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.exporter.controller.addexpdata.md new file mode 100644 index 0000000..a6735a0 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.exporter.controller.addexpdata.md @@ -0,0 +1,18 @@ +* Since: 3.0 +* Description: Hook allows to add additional RDF data for a selected subject (`smwAddToRDFExport` was deprecated with 3.0) +* Reference class: `SMWExportController` + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\DIWikiPage; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Exporter::Controller::AddExpData', function( DIWikiPage $subject, &$expDataList, $hasRecursionDepth, $withBacklinks ) { + + // $expData = new ExpData( ... ); + // $expDataList[] = $expData; + + return true; +} ); +``` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.fileupload.beforeupdate.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.fileupload.beforeupdate.md new file mode 100644 index 0000000..ba20f4f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.fileupload.beforeupdate.md @@ -0,0 +1,17 @@ +* Since: 2.4 +* Description: Hook to add extra annotations on a `FileUpload` event before the `Store` update is triggered +* Reference class: [`FileUpload.php`][FileUpload.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\SemanticData; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::FileUpload::BeforeUpdate', function( $filePage, SemanticData $semanticData ) { + + return true; +} ); +``` + +[FileUpload.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/Hooks/FileUpload.php \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.getpreferences.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.getpreferences.md new file mode 100644 index 0000000..a95b0ab --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.getpreferences.md @@ -0,0 +1,17 @@ +* Since: 3.0 +* Description: Hook allows to add extra preferences that are ordered on the Semantic MediaWiki user preference tab. +* Reference class: [`GetPreferences.php`][GetPreferences.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use User; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::GetPreferences', function( User $user, &$preferences ) { + + return true; +} ); +``` + +[GetPreferences.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/Hooks/GetPreferences.php \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.grouppermissions.beforeinitializationcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.grouppermissions.beforeinitializationcomplete.md new file mode 100644 index 0000000..f3d6dcf --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.grouppermissions.beforeinitializationcomplete.md @@ -0,0 +1,24 @@ +## SMW::GroupPermissions::BeforeInitializationComplete + +* Since: 3.2 +* Description: Hook to provide a possibility the modify Semantic MediaWiki's permissions settings before the initialization is completed. +* Reference class: [`GroupPermissions.php`][GroupPermissions.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::GroupPermissions::BeforeInitializationComplete', function( &$permissions ) { + + // Assignments have the form of: + // $permissions['smw_group_x'] = [ 'right_x' => true, 'right_y' => true ]; + + // Rights added by Semantic MediaWiki are listed in the + // `GroupPermissions` class + + return true; +} ); +``` + +[GroupPermissions.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/GroupPermissions.php \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.job.afterupdatedispatcherjobcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.job.afterupdatedispatcherjobcomplete.md new file mode 100644 index 0000000..8db27cc --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.job.afterupdatedispatcherjobcomplete.md @@ -0,0 +1,20 @@ +* Since: 2.5 +* Description: Hook allows to add extra jobs after `UpdateDispatcherJob` has been processed. +* Reference class: [`UpdateDispatcherJob.php`][UpdateDispatcherJob.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\MediaWiki\Jobs\UpdateDispatcherJob; + +\MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Job::AfterUpdateDispatcherJobComplete', function( UpdateDispatcherJob $job ) { + + // Find related dependencies + $title = $job->getTitle(); + + return true; +} ); +``` + +[UpdateDispatcherJob.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/Jobs/UpdateDispatcherJob.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.listener.registerpropertychangelisteners.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.listener.registerpropertychangelisteners.md new file mode 100644 index 0000000..05e80f0 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.listener.registerpropertychangelisteners.md @@ -0,0 +1,71 @@ +## SMW::Listener::ChangeListener::RegisterPropertyChangeListeners + +* Since: 3.2 +* Description: Hook to allow adding custom listeners to watch property changes as they appear during a data update. +* Reference class: [`PropertyChangeListener.php`][PropertyChangeListener.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\Listener\ChangeListener\ChangeListeners\PropertyChangeListener; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Listener::ChangeListener::RegisterPropertyChangeListeners', function( PropertyChangeListener $propertyChangeListener ) { + + return true; +} ); +``` + +### Example + +```php +use MediaWiki\MediaWikiServices; +use SMW\Listener\ChangeListener\ChangeRecord; +use SMW\Listener\ChangeListener\ChangeListeners\PropertyChangeListener; +use SMW\DIProperty; + +class ActOnPropertyChange { + + /** + * @param PropertyChangeListener $propertyChangeListener + */ + public function registerPropertyChangeListener( PropertyChangeListener $propertyChangeListener ) { + + $propertyChangeListener->addListenerCallback( + new DIProperty( 'PropertyFoo' ), + [ $this, 'onChange' ] + ); + + $propertyChangeListener->addListenerCallback( + new DIProperty( 'PropertyBar' ), + [ $this, 'onChange' ] + ); + } + + /** + * @param DIProperty $property + * @param ChangeRecord $changeRecord + */ + public function onChange( DIProperty $property, ChangeRecord $changeRecord ) { + + if ( $property->getKey() === 'PropertyFoo' ) { + foreach ( $changeRecord as $record ) { + ... + } + } + + if ( $property->getKey() === 'PropertyBar' ) { + foreach ( $changeRecord as $record ) { + ... + } + } + } +} + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Listener::ChangeListener::RegisterPropertyChangeListeners', function( PropertyChangeListener $propertyChangeListener ) { + $actOnPropertyChange = new ActOnPropertyChange(); + $actOnPropertyChange->registerPropertyChangeListener( $propertyChangeListener ); +} ); +``` + +[PropertyChangeListener.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Listener/ChangeListener/ChangeListeners/PropertyChangeListener.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.maintenance.afterupdateentitycollationcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.maintenance.afterupdateentitycollationcomplete.md new file mode 100644 index 0000000..8af6247 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.maintenance.afterupdateentitycollationcomplete.md @@ -0,0 +1,25 @@ +## SMW::Maintenance::AfterUpdateEntityCollationComplete + +* Since: 3.1 +* Description: Hook to allow to run other updates after the `updateEntityCollection.php` script has finished processing the update of entity collation changes +* Reference class: [`updateEntityCollation.php`][updateEntityCollation.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\Store; +use Onoi\MessageReporter\MessageReporter; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Maintenance::AfterUpdateEntityCollationComplete', function( Store $store, MessageReporter $messageReporter ) { + + return true; +} ); +``` + +## See also + +- See the [`ElasticFactory.php`][ElasticFactory.php] for an implementation example + +[updateEntityCollation.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/maintenance/updateEntityCollation.php +[ElasticFactory.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Elastic/ElasticFactory.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.parser.afterlinksprocessingcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.parser.afterlinksprocessingcomplete.md new file mode 100644 index 0000000..a785499 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.parser.afterlinksprocessingcomplete.md @@ -0,0 +1,26 @@ +## SMW::Parser::AfterLinksProcessingComplete + +* Since: 3.1 +* Description: Hook to add additional annotation parsing after `InTextAnnotationParser` has finished the processing of standard annotation links (e.g. `[[...::...]]`) +* Reference class: [`InTextAnnotationParser.php`][InTextAnnotationParser.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\Parser\AnnotationProcessor; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Parser::AfterLinksProcessingComplete', function( &$text, AnnotationProcessor $annotationProcessor ) { + + return true; +} ); +``` +## See also + + +- [`hook.parser.afterlinksprocessingcomplete.md`][hook.parser.afterlinksprocessingcomplete.md] to provide an example how the hook can be used to register a # hash tag parser + +[PropertyRegistry.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/PropertyRegistry.php +[hook.parser.afterlinksprocessingcomplete.md]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/hook.parser.afterlinksprocessingcomplete.md + +[InTextAnnotationParser.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Parser/InTextAnnotationParser.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.parser.beforemagicwordsfinder.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.parser.beforemagicwordsfinder.md new file mode 100644 index 0000000..df1aaeb --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.parser.beforemagicwordsfinder.md @@ -0,0 +1,20 @@ +* Since: 2.2 +* Description: Hook to extend the magic words list that the `InTextAnnotationParser` should inspect on a given text section +* Reference class: [`InTextAnnotationParser.php`][InTextAnnotationParser.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\SQLStore\SQLStore; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Parser::BeforeMagicWordsFinder', function( array &$magicWords ) { + + return true; +} ); +``` +## See also + +- See the [`SemanticBreadcrumbLinks`](https://github.com/SemanticMediaWiki/SemanticBreadcrumbLinks) extension for how the hook can be used + +[InTextAnnotationParser.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Parser/InTextAnnotationParser.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.parser.parseraftertidypropertyannotationcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.parser.parseraftertidypropertyannotationcomplete.md new file mode 100644 index 0000000..ecd765c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.parser.parseraftertidypropertyannotationcomplete.md @@ -0,0 +1,24 @@ +## SMW::Parser::ParserAfterTidyPropertyAnnotationComplete + +* Since: 3.2 +* Description: Provides a method to add additional `PropertyAnnotator` as part of the `ParserAfterTidy` after default annotators have been executed +* Reference class: [`ParserAfterTidy.php`][ParserAfterTidy.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Parser::ParserAfterTidyPropertyAnnotationComplete', function( $propertyAnnotator, $parserOutput ) { + + $fooAnnotator = new FooAnnotator( + $propertyAnnotator + ); + + $fooAnnotator->addAnnotation(); + + return true; +} ); +``` + +[ParserAfterTidy.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/Hooks/ParserAfterTidy.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.property.initproperties.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.property.initproperties.md new file mode 100644 index 0000000..52c8467 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.property.initproperties.md @@ -0,0 +1,22 @@ +* Since: 2.1 +* Description: Hook to add additional predefined properties (`smwInitProperties` was deprecated with 2.1) +* Reference class: [`PropertyRegistry.php`][PropertyRegistry.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\PropertyRegistry; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Property::initProperties', function( PropertyRegistry $propertyRegistry ) { + + return true; +} ); +``` + +## See also + +- [`hook.property.initproperties.md`][hook.property.initproperties.md] + +[PropertyRegistry.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/PropertyRegistry.php +[hook.property.initproperties.md]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/hook.property.initproperties.md diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.resultformat.overridedefaultformat.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.resultformat.overridedefaultformat.md new file mode 100644 index 0000000..164657f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.resultformat.overridedefaultformat.md @@ -0,0 +1,16 @@ +* Since: 3.1 +* Description: Hook to override SMWs implementation of default result format handling. Replaces the `SMWResultFormat` hook. +* Reference class: [`ResultFormat.php`][ResultFormat.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; + +\MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::ResultFormat::OverrideDefaultFormat', function( &$format, $printRequests ) { + + return true; +} ); +``` + +[ResultFormat.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Query/ResultFormat.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.changefile.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.changefile.md new file mode 100644 index 0000000..c501c7a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.changefile.md @@ -0,0 +1,24 @@ +* Since: 3.1 +* Description: Hook allows to forcibly change the file version used. +* Reference class: [`RevisionGuard.php`][RevisionGuard.php] + +If you do alter a file, please log the event and make it visible to a user (or administrator) that it was changed. + +### Signature + +```php +use MediaWiki\MediaWikiServices; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::RevisionGuard::ChangeFile', function( $title, &$file ) { + + // $file = ...; + + return true; +} ); +``` + +## See also + +- See the [`SemanticApprovedRevs`](https://github.com/SemanticMediaWiki/SemanticApprovedRevs) extension for how to use the hook + +[RevisionGuard.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/RevisionGuard.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.changerevision.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.changerevision.md new file mode 100644 index 0000000..e767528 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.changerevision.md @@ -0,0 +1,26 @@ +* Since: 3.1 +* Description: Hook allows to forcibly change a revision used during content parsing as in case of the `UpdateJob` execution or when running `rebuildData.php`. +* Reference class: [`RevisionGuard.php`][RevisionGuard.php] + +If you do alter a revision, please log the event and make it visible to a user (or administrator) that it was changed. + +### Signature + +```php +use MediaWiki\MediaWikiServices; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::RevisionGuard::ChangeRevision', function( $title, &$revision ) { + + // Set a revision + // $revisionLookup = \MediaWiki\MediaWikiServices::getInstance()->getRevisionLookup(); + // $revision = $revisionLookup->getRevisionById( $id ); + + return true; +} ); +``` + +## See also + +- See the [`SemanticApprovedRevs`](https://github.com/SemanticMediaWiki/SemanticApprovedRevs) extension for how to use the hook + +[RevisionGuard.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/RevisionGuard.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.changerevisionid.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.changerevisionid.md new file mode 100644 index 0000000..92bea7d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.changerevisionid.md @@ -0,0 +1,23 @@ +* Since: 3.1 +* Description: Hook allows to forcibly change the revision ID as in case of the `Factbox` when building the content. +* Reference class: [`RevisionGuard.php`][RevisionGuard.php] + +If you do alter a revision, please log the event and make it visible to a user (or administrator) that it was changed. + +### Signature + +```php +use MediaWiki\MediaWikiServices; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::RevisionGuard::ChangeRevisionID', function( $title, &$latestRevID ) { + + // Set a revision ID + // $latestRevID = 42; +} ); +``` + +## See also + +- See the [`SemanticApprovedRevs`](https://github.com/SemanticMediaWiki/SemanticApprovedRevs) extension for how to use the hook + +[RevisionGuard.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/RevisionGuard.php \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.isapprovedrevision.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.isapprovedrevision.md new file mode 100644 index 0000000..7570796 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.revisionguard.isapprovedrevision.md @@ -0,0 +1,23 @@ +* Since: 3.1 +* Description: Hook to define whether a revision is approved or needs to be suppressed. For example, the `latestRevID` contains an ID that is not the revision that is approved an should not be used for the `SemanticData` representation during an update. +* Reference class: [`RevisionGuard.php`][RevisionGuard.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::RevisionGuard::IsApprovedRevision', function( $title, $latestRevID ) { + + // If you need to decline an update (aka is not approved) + // return false; + + return true; +} ); +``` + +## See also + +- See the [`SemanticApprovedRevs`](https://github.com/SemanticMediaWiki/SemanticApprovedRevs) extension for how to use the hook + +[RevisionGuard.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/RevisionGuard.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.schema.registerschematypes.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.schema.registerschematypes.md new file mode 100644 index 0000000..4565c05 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.schema.registerschematypes.md @@ -0,0 +1,27 @@ +* Since: 3.2 +* Description: Hook allows to register schema types +* Reference class: [`SchemaTypes.php`][SchemaTypes.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\Schema\SchemaTypes; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Schema::RegisterSchemaTypes', function( SchemaTypes $schemaTypes ) { + + $params = [ + 'group' => FOO_GROUP, + 'validation_schema' => $schemaTypes->withDir( 'foo-schema.v1.json' ), + 'type_description' => 'smw-schema-description-foo-schema', + 'change_propagation' => [ '_FOO_SCHEMA' ], + 'usage_lookup' => '_FOO_SCHEMA' + ]; + + $schemaTypes->registerSchemaType( 'FOO_SCHEMA', $params ); + + return true; +} ); +``` + +[SchemaTypes.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Schema/SchemaTypes.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.settings.beforeinitializationcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.settings.beforeinitializationcomplete.md new file mode 100644 index 0000000..cfe0a14 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.settings.beforeinitializationcomplete.md @@ -0,0 +1,19 @@ +* Since: 3.1 +* Description: Hook to provide a possibility the modify Semantic MediaWiki's encapsulated configuration settings before the initialization is completed. +* Reference class: [`Settings.php`][Settings.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Settings::BeforeInitializationComplete', function( &$configuration ) { + + // Extend the configuration of `smwgNamespacesWithSemanticLinks` + $configuration['smwgNamespacesWithSemanticLinks'][NS_MAIN] = true + + return true; +} ); +``` + +[Settings.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Settings.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.setup.afterinitializationcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.setup.afterinitializationcomplete.md new file mode 100644 index 0000000..557b176 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.setup.afterinitializationcomplete.md @@ -0,0 +1,23 @@ +## SMW::Setup::AfterInitializationComplete + +* Since: 3.0 +* Description: Hook allows to modify global configuration after initialization of Semantic MediaWiki is completed. +* Reference class: [`Setup.php`][Setup.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Setup::AfterInitializationComplete', function( &$vars ) { + + // #2565 + // It is suggested to use `SMW::GroupPermissions::BeforeInitializationComplete` for + // the following case: + unset( $vars['wgGroupPermissions']['smwcurator'] ); + + return true; +} ); +``` + +[Setup.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/includes/Setup.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.addcustomfixedpropertytables.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.addcustomfixedpropertytables.md new file mode 100644 index 0000000..a5005b5 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.addcustomfixedpropertytables.md @@ -0,0 +1,20 @@ +* Since: 2.3 +* Description: Hook to add fixed property table definitions +* Reference class: [`PropertyTableDefinitionBuilder.php`][PropertyTableDefinitionBuilder.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::SQLStore::AddCustomFixedPropertyTables', function( array &$customFixedProperties, &$propertyTablePrefix ) { + + return true; +} ); +``` + +## See also + +- For a usage example, see the [`SemanticCite`](https://github.com/SemanticMediaWiki/SemanticCite) or [`SemanticExtraSpecialProperties`](https://github.com/SemanticMediaWiki/SemanticExtraSpecialProperties) extension + +[PropertyTableDefinitionBuilder.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SQLStore/PropertyTableDefinitionBuilder.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.afterdataupdatecomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.afterdataupdatecomplete.md new file mode 100644 index 0000000..65dedff --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.afterdataupdatecomplete.md @@ -0,0 +1,20 @@ +* Since: 2.3 +* Description: Hook to process information after an update has been completed. Further provides `ChangeOp` to identify entities that have been added/removed during the update. (`SMWSQLStore3::updateDataAfter` was deprecated with 2.3) +* Reference class: [`SQLStoreUpdater.php`][SQLStoreUpdater.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\SQLStore\SQLStore; +use SMW\SemanticData; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::SQLStore::AfterDataUpdateComplete', function( SQLStore $store, SemanticData $semanticData, $changeOp ) { + + return true; +} ); +``` + +## See also + +[SQLStoreUpdater.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SQLStore/SQLStoreUpdater.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.afterdeletesubjectcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.afterdeletesubjectcomplete.md new file mode 100644 index 0000000..f44d3e1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.afterdeletesubjectcomplete.md @@ -0,0 +1,15 @@ +* Since: 2.1 +* Description: Hook is called after the deletion of a subject is completed +* Reference class: `SMW_SQLStore3_Writers.php` + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\SQLStore\SQLStore; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::SQLStore::AfterDeleteSubjectComplete', function( SQLStore $store, $title ) { + + return true; +} ); +``` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforechangetitlecomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforechangetitlecomplete.md new file mode 100644 index 0000000..57d1b95 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforechangetitlecomplete.md @@ -0,0 +1,15 @@ +* Since: 2.1 +* Description: Hook is called before change to a subject is completed +* Reference class: `SMW_SQLStore3_Writers.php` + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\SQLStore\SQLStore; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::SQLStore::BeforeChangeTitleComplete', function( SQLStore $store, $oldTitle, $newTitle, $pageId, $redirectId ) { + + return true; +} ); +``` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforedatarebuildjobinserts.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforedatarebuildjobinserts.md new file mode 100644 index 0000000..c466163 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforedatarebuildjobinserts.md @@ -0,0 +1,17 @@ +* Since: 2.3 +* Description: Hook to add update jobs while running the rebuild process. (`smwRefreshDataJobs` was deprecated with 2.3) +* Reference class: [`Rebuilder.php`][Rebuilder.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\SQLStore\SQLStore; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::SQLStore::BeforeDataRebuildJobInsert', function( SQLStore $store, array &$jobs ) { + + return true; +} ); +``` + +[Rebuilder.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SQLStore/Rebuilder/Rebuilder.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforedataupdatecomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforedataupdatecomplete.md new file mode 100644 index 0000000..8174378 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforedataupdatecomplete.md @@ -0,0 +1,18 @@ +* Since: 3.1 +* Description: Hook to extend the `SemanticData` object before the update is completed. (`SMWSQLStore3::updateDataBefore` was deprecated with 3.1) +* Reference class: [`SQLStoreUpdater.php`][SQLStoreUpdater.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\SQLStore\SQLStore; +use SMW\SemanticData; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::SQLStore::BeforeDataUpdateComplete', function( SQLStore $store, SemanticData $semanticData ) { + + return true; +} ); +``` + +[SQLStoreUpdater.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SQLStore/SQLStoreUpdater.php \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforedeletesubjectcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforedeletesubjectcomplete.md new file mode 100644 index 0000000..c20eb75 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.beforedeletesubjectcomplete.md @@ -0,0 +1,15 @@ +* Since: 2.1 +* Description: Hook is called before the deletion of a subject is completed +* Reference class: `SMW_SQLStore3_Writers.php` + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\SQLStore\SQLStore; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::SQLStore::BeforeDeleteSubjectComplete', function( SQLStore $store, $title ) { + + return true; +} ); +``` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.entityreferencecleanupcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.entityreferencecleanupcomplete.md new file mode 100644 index 0000000..daae804 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.entityreferencecleanupcomplete.md @@ -0,0 +1,22 @@ +* Since: 3.0 +* Description: Hook to process information about an entity where the clean-up has been finalized. +* Reference class: [`PropertyTableIdReferenceDisposer.php`][PropertyTableIdReferenceDisposer.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\Store; +use SMW\DIWikiPage; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::SQLStore::EntityReferenceCleanUpComplete', function( Store $store, $id, DIWikiPage $subject, $isRedirect ) { + + return true; +} ); +``` + +## See also + +- For a usage example, see the [`SemanticCite`](https://github.com/SemanticMediaWiki/SemanticCite) or [`SemanticExtraSpecialProperties`](https://github.com/SemanticMediaWiki/SemanticExtraSpecialProperties) extension + +[PropertyTableIdReferenceDisposer.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SQLStore/PropertyTableIdReferenceDisposer.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.installer.aftercreatetablescomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.installer.aftercreatetablescomplete.md new file mode 100644 index 0000000..609d411 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.installer.aftercreatetablescomplete.md @@ -0,0 +1,26 @@ +## SMW::SQLStore::Installer::AfterCreateTablesComplete + +* Since: 2.5 +* Description: Hook allows to add extra tables after the creation process as been finalized. +* Reference class: [`Installer.php`][Installer.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\SQLStore\TableBuilder; +use Onoi\MessageReporter\MessageReporter; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::SQLStore::Installer::AfterCreateTablesComplete', function( TableBuilder $tableBuilder, MessageReporter $messageReporter ) { + + // Output details on the activity + $messageReporter->reportMessage( '...' ); + + // See documentation in the available TableBuilder interface + $tableBuilder->create( ... ); + + return true; +} ); +``` + +[Installer.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SQLStore/Installer.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.installer.afterdroptablescomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.installer.afterdroptablescomplete.md new file mode 100644 index 0000000..e4183df --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.installer.afterdroptablescomplete.md @@ -0,0 +1,26 @@ +## SMW::SQLStore::Installer::AfterDropTablesComplete + +* Since: 2.5 +* Description: Hook allows to remove extra tables after the drop process as been finalized. +* Reference class: [`Installer.php`][Installer.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\SQLStore\TableBuilder; +use Onoi\MessageReporter\MessageReporter; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::SQLStore::Installer::AfterDropTablesComplete', function( TableBuilder $tableBuilder, MessageReporter $messageReporter ) { + + // Output details on the activity + $messageReporter->reportMessage( '...' ); + + // See documentation in the available TableBuilder interface + $tableBuilder->drop( ... ); + + return true; +} ); +``` + +[Installer.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SQLStore/Installer.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.installer.beforecreatetablescomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.installer.beforecreatetablescomplete.md new file mode 100644 index 0000000..264f4dc --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.sqlstore.installer.beforecreatetablescomplete.md @@ -0,0 +1,25 @@ +## SMW::SQLStore::Installer::BeforeCreateTablesComplete + +* Since: 3.1 +* Description: Hook to add additional table indices. +* Reference class: [`Installer.php`][Installer.php] + +When using this hook, please make sure you understand the implications of modifying the standard table definition (e.g add auxiliary indices) which are not part of the core declaration and may alter performance expectations. + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use Onoi\MessageReporter\MessageReporter; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::SQLStore::Installer::BeforeCreateTablesComplete', function( array $tables, $messageReporter ) { + + // Modify the table definitions +} ); +``` + +## See also + +- [`hook.sqlstore.installer.beforecreatetablescomplete`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/hook.sqlstore.installer.beforecreatetablescomplete.md) contains an example on how to modify table definitions (e.g. adding additional indices) + +[Installer.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SQLStore/Installer.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.afterdataupdatecomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.afterdataupdatecomplete.md new file mode 100644 index 0000000..43a6e35 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.afterdataupdatecomplete.md @@ -0,0 +1,18 @@ +* Since: 3.1 +* Description: Hook to process information after an update has been completed. (`SMWStore::updateDataAfter` was deprecated with 3.1) +* Reference class: [`Store.php`][Store.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\Store; +use SMW\SemanticData; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Store::AfterDataUpdateComplete', function( Store $store, SemanticData $semanticData ) { + + return true; +} ); +``` + +[Store.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Store.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.afterqueryresultlookupcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.afterqueryresultlookupcomplete.md new file mode 100644 index 0000000..594a1ac --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.afterqueryresultlookupcomplete.md @@ -0,0 +1,18 @@ +* Since: 2.1 +* Description: Hook to manipulate a `QueryResult` after the selection process +* Reference class: `SMW_SQLStore3.php` + +### Signature + +```php +use MediaWiki\MediaWikiServices; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Store::AfterQueryResultLookupComplete', function( $store, &$queryResult ) { + + return true; +} ); +``` + +## See also + +- [`hook.store.afterqueryresultlookupcomplete.md`](https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/examples/hook.store.afterqueryresultlookupcomplete.md) diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.beforedataupdatecomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.beforedataupdatecomplete.md new file mode 100644 index 0000000..21e412d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.beforedataupdatecomplete.md @@ -0,0 +1,18 @@ +* Since: 3.1 +* Description: Hook to extend the `SemanticData` object before the update is completed. (`SMWStore::updateDataBefore` was deprecated with 3.1) +* Reference class: [`Store.php`][Store.php] + +### Signature + +```php +use MediaWiki\MediaWikiServices; +use SMW\Store; +use SMW\SemanticData; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Store::BeforeDataUpdateComplete', function( Store $store, SemanticData $semanticData ) { + + return true; +} ); +``` + +[Store.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Store.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.beforequeryresultlookupcomplete.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.beforequeryresultlookupcomplete.md new file mode 100644 index 0000000..9f0dd7b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/hooks/hook.store.beforequeryresultlookupcomplete.md @@ -0,0 +1,18 @@ +* Since: 2.1 +* Description: Hook to return a `QueryResult` object before the standard selection process is started and allows to suppress the standard selection process completely by returning `false`. +* Reference class: `SMW_SQLStore3.php` + +### Signature + +```php +use MediaWiki\MediaWikiServices; + +MediaWikiServices::getInstance()->getHookContainer()->register( 'SMW::Store::BeforeQueryResultLookupComplete', function( $store, $query, &$queryResult, $queryEngine ) { + + // Allow default processing + return true; + + // Stop further processing + return false; +} ); +``` diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/jobs/job.smw.elasticFileIngest.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/jobs/job.smw.elasticFileIngest.md new file mode 100644 index 0000000..03a7bd4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/jobs/job.smw.elasticFileIngest.md @@ -0,0 +1,10 @@ +## smw.elasticFileIngest + +* Description: The job is responsible for sending a file ingest request for a particular file page to the Elasticsearch cluster, and once completed, retrieves `File attachment` annotation information and stores them in Semantic MediaWiki. +* Reference class: [`FileIngestJob.php`][FileIngestJob.php] + +## Notes + +Due to size and memory consumption requirements by Elasticsearch and Tika, file content ingestion happens exclusively in the background via the command line (`waitOnCommandLine`). Only after the job has been executed successfully will the file content and additional annotations be accessible and available as indexed (searchable) content. + +[FileIngestJob.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/Elastic/Indexer/Jobs/FileIngestJob.php diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/jobs/job.smw.entityIdDisposer.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/jobs/job.smw.entityIdDisposer.md new file mode 100644 index 0000000..de2d159 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/jobs/job.smw.entityIdDisposer.md @@ -0,0 +1,27 @@ +## smw.entityIdDisposer + +* Description: The job is responsible for removing all [outdated entities][outdated-entities] from the `ID_TABLE` with the help of the [`PropertyTableIdReferenceDisposer.php`][PropertyTableIdReferenceDisposer.php] (removes all remaining references from other tables for a particular ID). +* Reference class: [`EntityIdDisposerJob.php`][EntityIdDisposerJob.php] + +## Usage + +

    +use SMW\Services\ServicesFactory;
    +
    +$jobFactory = ServicesFactory::getInstance()->newJobFactory();
    +
    +$entityIdDisposerJob = $jobFactory->newEntityIdDisposerJob(
    +	$title,
    +	$parameters
    +);
    +
    +$entityIdDisposerJob->insert();
    +
    + +## Notes + +The job is expected to be executed only when called from the command line (`waitOnCommandLine`) to avoid having the MediaWiki scheduler to dispatch the job while running on GET requests. + +[EntityIdDisposerJob.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/MediaWiki/Jobs/EntityIdDisposerJob.php +[PropertyTableIdReferenceDisposer.php]:https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/src/SQLStore/PropertyTableIdReferenceDisposer.php +[outdated-entities]: https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/jsduck.categories.json b/mediawiki/extensions/SemanticMediaWiki/docs/technical/jsduck.categories.json new file mode 100644 index 0000000..ee64421 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/jsduck.categories.json @@ -0,0 +1,83 @@ +[ + { + "name": "General", + "groups": [ + { + "name": "Instance", + "classes": ["smw"] + } + ] + }, + { + "name": "DataModel", + "groups": [ + { + "name": "Factory", + "classes": [ + "smw.Data" + ] + }, + { + "name": "General", + "classes": [ + "smw.dataItem*", + "smw.dataValue*" + ] + } + ] + }, + { + "name": "Api", + "groups": [ + { + "name": "General", + "classes": ["smw.Api*"] + }, + { + "name": "Query", + "classes": ["smw.Query*"] + } + ] + }, + { + "name": "Utilities", + "groups": [ + { + "name": "General", + "classes": ["smw.util*"] + }, + { + "name": "Support", + "classes": ["smw.setting*","smw.async*"] + }, + { + "name": "Formats", + "classes": ["smw.formats*"] + } + ] + }, + { + "name": "Test", + "groups": [ + { + "name": "QUnit", + "classes": ["QUnit", "QUnit.assert"] + } + ] + }, + { + "name": "Upstream", + "groups": [ + { + "name": "jQuery", + "classes": ["jQuery", "jQuery.Event", "jQuery.Promise", "jQuery.Deferred", "jQuery.jqXHR", "QUnit"] + }, + { + "name": "JavaScript", + "classes": [ + "Array", "Boolean", "Date", "Function", "Number", "Object", "RegExp", "String" + ] + } + ] + } +] \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/jsduck.json b/mediawiki/extensions/SemanticMediaWiki/docs/technical/jsduck.json new file mode 100644 index 0000000..824916d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/jsduck.json @@ -0,0 +1,11 @@ +{ + "--title": "Semantic MediaWiki Code Documentation", + "--categories": "../docs/jsduck.categories.json", + "--warnings": ["-no_doc"], + "--builtin-classes": true, + "--external": "HTMLDocument,Window", + "--":[ + "../resources/docs", + "../resources/smw" + ] +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/docs/technical/migration-guide-3.0.md b/mediawiki/extensions/SemanticMediaWiki/docs/technical/migration-guide-3.0.md new file mode 100644 index 0000000..f22675f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/docs/technical/migration-guide-3.0.md @@ -0,0 +1,71 @@ +# Migration guide + +This document contains migration information both for users and administratiors as well as developers when upgrading from Semantic MediaWiki 2.5.x to Semantic MediaWiki 3.0.x. Please consult the respective RELEASE-NOTES when upgrading from an earlier version of Semantic MediaWiki. + +## Users and administrators + +### List formats (incl. list, ol, ul, template) + +* Wrapped components of the `list` format in HTML elements +* Added class attributes to HTML elements of `list`, `ol` and `ul` formats to facilitate styling +* Added `plainlist`format +* `template` format becomes alias of the `plainlist` format +* `template` parameter is used when present, even if format is not `template` +* Standardized parameters to templates: All standard parameters start with a `#` +* Dedicated separators for values, properties and result "rows": `sep`, `propsep`, `valuesep` +* Removed final list separator (", and") +* Removed `?` as prefix for template arguments +* Removed `template arguments` parameter +* Removed `columns` parameter + +For details also see the [change description.](https://gist.github.com/s7eph4n/277e7804fe04954df7d1e15ae874b0d0) + +### Maintenance scripts + +- If you are still using maintenance scripts starting with the `SMW_` prefix you must now migrate to the new maintenance script names. See the help pages on [maintenance scrips](https://www.semantic-mediawiki.org/wiki/Help:Maintenance_scripts) for further information. + +### Resources export + +- Resources are now being exported as Internationalized Resource Identifiers (IRI). + This means that the URIs are now being exported using Universal Coded Character Set (UCS) instead of American Standard Code for Information Interchange (ASCII). See the help page on configuration parameter [`$smwgExportResourcesAsIri`](https://www.semantic-mediawiki.org/wiki/Help:$smwgExportResourcesAsIri) for further information. + +## Developers + +### Removed classes and methods + +- Removed `DIProperty::findPropertyID`, deprecated since 2.1, use PropertyRegistry::findPropertyIdByLabel +- Removed `DIProperty::getPredefinedPropertyTypeId`, deprecated since 2.1, use PropertyRegistry::getPropertyValueTypeById +- Removed `DIProperty::findPropertyLabel`, deprecated since 2.1, use PropertyRegistry::findPropertyLabelById +- Removed `DIProperty::registerProperty`, deprecated since 2.1, use PropertyRegistry::registerProperty +- Removed `DIProperty::registerPropertyAlias`, deprecated since 2.1, use PropertyRegistry::registerPropertyAlias +- Deprecated `PropertyValue::makeUserProperty`, use DataValueFactory::getInstance()->newPropertyValueByLabel; +- Removed `PropertyValue::makeProperty`, use DataValueFactory + +### Result formats + +- Removed `RequestContext` from the `ResultPrinter` class; If for some reason someone requires access to the `RequestContext` then it is suggested to use `RequestContext::getMain()`. + +### Hooks + +- Renamed `smwAddToRDFExport` to `SMW::Exporter::Controller::AddExpData` + +### Store + +- `Store::getPropertySubjects` is to return an `Iterator` hence an `array` type check should be avoided and if necessary +use `iterator_to_array` to transform a result instance into a standard array + +#### Register predefined property + +
    +\Hooks::register( 'SMW::Property::initProperties', function( $propertyRegistry ) {
    +
    +	$propertyRegistry->registerProperty( '__FOO', '_txt', 'Foo' );
    +
    +	$propertyRegistry->registerPropertyDescriptionByMsgKey(
    +		'__FOO',
    +		'a-mediawiki-msg-key-with-a-description'
    +	);
    +
    +	return true;
    +} );
    +
    diff --git a/mediawiki/extensions/SemanticMediaWiki/extension.json b/mediawiki/extensions/SemanticMediaWiki/extension.json new file mode 100644 index 0000000..8aecde0 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/extension.json @@ -0,0 +1,130 @@ +{ + "name": "SemanticMediaWiki", + "version": "6.0.1", + "author": [ + "[https://korrekt.org Markus Krötzsch]", + "[https://EntropyWins.wtf/mediawiki Jeroen De Dauw]", + "James Hong Kong", + "[https://Professional.Wiki Professional Wiki]", + "[https://www.semantic-mediawiki.org/wiki/Contributors ...]" + ], + "url": "https://www.semantic-mediawiki.org", + "descriptionmsg": "smw-desc", + "namemsg": "smw-title", + "license-name": "GPL-2.0-or-later", + "type": "semantic", + "requires": { + "MediaWiki": ">= 1.43" + }, + "MessagesDirs": { + "SemanticMediaWiki": [ + "i18n" + ] + }, + "AutoloadNamespaces": { + "SMW\\": "src/", + "SMW\\Maintenance": "maintenance/", + "Onoi\\Tesa\\": "Tesa/src/" + }, + "Hooks": { + "CanonicalNamespaces": "SMW\\MediaWiki\\Hooks::onCanonicalNamespaces", + "ApiMain::moduleManager": "SMW\\MediaWiki\\Hooks::onApiModuleManager" + }, + "AutoloadClasses": { + "SemanticMediaWiki": "includes/SemanticMediaWiki.php", + "SMWElasticStore": "src/Elastic/ElasticStore.php", + "SMWSearch": "src/MediaWiki/Search/ExtendedSearchEngine.php" + }, + "callback": "SemanticMediaWiki::initExtension", + "ExtensionFunctions": [ + "SemanticMediaWiki::onExtensionFunction" + ], + "ExtensionMessagesFiles": { + "SemanticMediaWikiAlias": "i18n/extra/SemanticMediaWiki.alias.php", + "SemanticMediaWikiMagic": "i18n/extra/SemanticMediaWiki.magic.php" + }, + "ContentHandlers": { + "smw/schema": "SMW\\MediaWiki\\Content\\SchemaContentHandler" + }, + "QUnitTestModule": { + "ext.smw.tests": { + "scripts": [ + "tests/qunit/smw/ext.smw.test.js", + "tests/qunit/smw/data/ext.smw.dataItem.wikiPage.test.js", + "tests/qunit/smw/data/ext.smw.dataItem.uri.test.js", + "tests/qunit/smw/data/ext.smw.dataItem.time.test.js", + "tests/qunit/smw/data/ext.smw.dataItem.property.test.js", + "tests/qunit/smw/data/ext.smw.dataItem.unknown.test.js", + "tests/qunit/smw/data/ext.smw.dataItem.number.test.js", + "tests/qunit/smw/data/ext.smw.dataItem.text.test.js", + "tests/qunit/smw/data/ext.smw.dataValue.quantity.test.js", + "tests/qunit/smw/data/ext.smw.data.test.js", + "tests/qunit/smw/api/ext.smw.api.test.js", + "tests/qunit/smw/query/ext.smw.query.test.js" + ], + "dependencies": [ + "ext.smw", + "ext.smw.tooltip", + "ext.smw.query", + "ext.smw.data", + "ext.smw.api" + ], + "position": "top", + "localBasePath": "", + "remoteExtPath": "SemanticMediaWiki" + } + }, + "SpecialPages": { + "ExportRDF": "SMWSpecialOWLExport", + "SMWAdmin": "SMW\\MediaWiki\\Specials\\SpecialAdmin", + "PendingTaskList": "SMW\\MediaWiki\\Specials\\SpecialPendingTaskList", + "Ask": "SMW\\MediaWiki\\Specials\\SpecialAsk", + "FacetedSearch": "SMW\\MediaWiki\\Specials\\SpecialFacetedSearch", + "Browse": "SMW\\MediaWiki\\Specials\\SpecialBrowse", + "Concepts": "SMW\\SpecialConcepts", + "PageProperty": "SMW\\MediaWiki\\Specials\\SpecialPageProperty", + "SearchByProperty": "SMW\\MediaWiki\\Specials\\SpecialSearchByProperty", + "PropertyLabelSimilarity": "SMW\\MediaWiki\\Specials\\SpecialPropertyLabelSimilarity", + "ProcessingErrorList": "SMW\\MediaWiki\\Specials\\SpecialProcessingErrorList", + "MissingRedirectAnnotations": "SMW\\MediaWiki\\Specials\\SpecialMissingRedirectAnnotations", + "ConstraintErrorList": "SMW\\MediaWiki\\Specials\\SpecialConstraintErrorList", + "Types": "SMWSpecialTypes", + "URIResolver": "SMW\\MediaWiki\\Specials\\SpecialURIResolver", + "Properties": "SMW\\SpecialProperties", + "UnusedProperties": "SMW\\SpecialUnusedProperties", + "WantedProperties": "SMW\\SpecialWantedProperties" + }, + "JobClasses": { + "smw.update": "SMW\\MediaWiki\\Jobs\\UpdateJob", + "smw.refresh": "SMW\\MediaWiki\\Jobs\\RefreshJob", + "smw.updateDispatcher": "SMW\\MediaWiki\\Jobs\\UpdateDispatcherJob", + "smw.fulltextSearchTableUpdate": "SMW\\MediaWiki\\Jobs\\FulltextSearchTableUpdateJob", + "smw.entityIdDisposer": "SMW\\MediaWiki\\Jobs\\EntityIdDisposerJob", + "smw.propertyStatisticsRebuild": "SMW\\MediaWiki\\Jobs\\PropertyStatisticsRebuildJob", + "smw.fulltextSearchTableRebuild": "SMW\\MediaWiki\\Jobs\\FulltextSearchTableRebuildJob", + "smw.changePropagationDispatch": "SMW\\MediaWiki\\Jobs\\ChangePropagationDispatchJob", + "smw.changePropagationUpdate": "SMW\\MediaWiki\\Jobs\\ChangePropagationUpdateJob", + "smw.changePropagationClassUpdate": "SMW\\MediaWiki\\Jobs\\ChangePropagationClassUpdateJob", + "smw.deferredConstraintCheckUpdateJob": "SMW\\MediaWiki\\Jobs\\DeferredConstraintCheckUpdateJob", + "smw.elasticIndexerRecovery": "SMW\\Elastic\\Jobs\\IndexerRecoveryJob", + "smw.elasticFileIngest": "SMW\\Elastic\\Jobs\\FileIngestJob", + "smw.parserCachePurgeJob": "SMW\\MediaWiki\\Jobs\\ParserCachePurgeJob", + "SMW\\UpdateJob": "SMW\\MediaWiki\\Jobs\\UpdateJob", + "SMW\\RefreshJob": "SMW\\MediaWiki\\Jobs\\RefreshJob", + "SMW\\UpdateDispatcherJob": "SMW\\MediaWiki\\Jobs\\UpdateDispatcherJob", + "SMW\\FulltextSearchTableUpdateJob": "SMW\\MediaWiki\\Jobs\\FulltextSearchTableUpdateJob", + "SMW\\EntityIdDisposerJob": "SMW\\MediaWiki\\Jobs\\EntityIdDisposerJob", + "SMW\\PropertyStatisticsRebuildJob": "SMW\\MediaWiki\\Jobs\\PropertyStatisticsRebuildJob", + "SMW\\FulltextSearchTableRebuildJob": "SMW\\MediaWiki\\Jobs\\FulltextSearchTableRebuildJob", + "SMW\\ChangePropagationDispatchJob": "SMW\\MediaWiki\\Jobs\\ChangePropagationDispatchJob", + "SMW\\ChangePropagationUpdateJob": "SMW\\MediaWiki\\Jobs\\ChangePropagationUpdateJob", + "SMW\\ChangePropagationClassUpdateJob": "SMW\\MediaWiki\\Jobs\\ChangePropagationClassUpdateJob", + "SMWUpdateJob'": "SMW\\MediaWiki\\Jobs\\UpdateJob", + "SMWRefreshJob": "SMW\\MediaWiki\\Jobs\\RefreshJob" + }, + "DefaultUserOptions": { + "smw-prefs-general-options-show-entity-issue-panel": true + }, + "load_composer_autoloader": true, + "manifest_version": 2 +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ace.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ace.json new file mode 100644 index 0000000..cefc510 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ace.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Si Gam Acèh" + ] + }, + "smw-categories": "Dapeuta kawan", + "browse": "Rawôn wiki", + "smw-livepreview-loading": "Pumasoë...", + "smw-listingcontinuesabbrev": "samb." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ady-cyrl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ady-cyrl.json new file mode 100644 index 0000000..fb4842c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ady-cyrl.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Bedynokue.nart", + "Inyzh", + "SamGamgee" + ] + }, + "smw-categories": "Категориехэр", + "browse": "НэкIубгъомэ ашъхьырыплъ", + "smw-listingcontinuesabbrev": "пэубл." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/aeb-latn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/aeb-latn.json new file mode 100644 index 0000000..82611fa --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/aeb-latn.json @@ -0,0 +1,9 @@ +{ + "@metadata": { + "authors": [ + "Csisc" + ] + }, + "smw-categories": "Katēgorīyēt", + "browse": "Navīgī il-wīkī" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/af.json b/mediawiki/extensions/SemanticMediaWiki/i18n/af.json new file mode 100644 index 0000000..cf2f795 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/af.json @@ -0,0 +1,127 @@ +{ + "@metadata": { + "authors": [ + "Arnobarnard", + "Biggs ZA", + "Joris Darlington Quarshie", + "Naudefj", + "Rooiratel" + ] + }, + "smw_finallistconjunct": ", en", + "smw_isspecprop": "Hierdie eienskap is 'n spesiale eienskap van hierdie wiki.", + "smw_printername_template": "Sjabloon", + "smw_parseerror": "Die gegewe waarde is onverstaanbaar.", + "smw_manytypes": "Meer as een tipe gedefinieer vir eienskap.", + "smw_emptystring": "Leë stringe word nie aanvaar nie.", + "smw_true_words": "waar,w,ja,j", + "smw_false_words": "vals,v,nee,n", + "smw_nofloat": "\"$1\" is nie 'n nommer nie.", + "smw_nodatetime": "Die datum \"$1\" kon nie verwerk word nie.", + "smw_emptysubquery": "'n Sub-navraag het geen geldige kondisie.", + "smw_exportrdf_submit": "Eksporteer", + "smw-categories": "Kategorieë", + "smw_propertyhardlyused": "Hierdie eienskap word skaars gebruik in hierdie wiki!", + "smw-special-wantedproperties-filter-none": "Geen", + "smw-unusedproperty-template": "$1 van tipe $2", + "smw-wantedproperty-template": "$1 ($2 gebruike)", + "smw_purge": "Verfris", + "types": "Tipes", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Navraag|Navrae}}", + "smw_ask_sortby": "Sorteer volgens kolom (optioneel)", + "smw_ask_ascorder": "Toenemend", + "smw_ask_descorder": "Afnemend", + "smw-ask-order-rand": "Lukraak", + "smw_ask_submit": "Vind resultate", + "smw_ask_editquery": "Wysig navraag", + "smw_ask_hidequery": "Versteek navraag", + "smw_ask_help": "Navraag hulp", + "smw_ask_queryhead": "Voorwaarde", + "smw_ask_printhead": "Addisionele uitdrukke (optioneel)", + "smw_ask_defaultformat": "standaard", + "smw-ask-result": "Uitslag", + "smw-ask-empty": "Leeg", + "searchbyproperty": "Soek volgens eienskap", + "smw_sbv_property": "Eienskap:", + "smw_sbv_value": "Waarde:", + "smw_sbv_submit": "Vind resultate", + "browse": "Blaai deur wiki", + "smw_browse_go": "Laat waai", + "pendingtasklist": "Lys van hangende take", + "smw_pp_from": "Vanaf bladsy", + "smw_pp_type": "Eienskap", + "smw_pp_submit": "Vind resultate", + "smw_result_prev": "Vorige", + "smw_result_next": "Volgende", + "smw_result_results": "Resultate", + "smw_result_noresults": "Geen resultate.", + "smw-admin-deprecation-notice-title-notice": "Afgedateerde instellings", + "smw-admin-deprecation-notice-title-notice-explanation": " Afgedankte instellings toon instellings wat opgespoor is om op hierdie wiki gebruik te word en wat beplan word om in 'n toekomstige weergawe verwyder of verander te word.", + "smw-admin-deprecation-notice-title-replacement-explanation": " Instellings wat vervang of hernoem is bevat instellings wat hernoem is of andersins gewysig is, en dit word aanbeveel om die naam of formaat daarvan dadelik op te dateer.", + "smw-admin-deprecation-notice-title-removal-explanation": " Instellings wat verwyder is identifiseer instellings wat in 'n vorige weergawe verwyder is, maar is opgespoor om op hierdie wiki gebruik te word.", + "smw-admin-deprecation-notice-section-legend": "legende", + "smw_unknowntype": "Onondersteunde tipe \"$1\" gedefinieer vir eienskap.", + "smw-admin-iddispose-title": "ID wegdoening", + "smw-admin-objectid": "ID:", + "smw-admin-tab-alerts": "Alert", + "smw-admin-alerts-tab-deprecationnotices": "Kennisgewings van waardevermindering", + "smw-admin-alerts-tab-maintenancealerts": "Onderhoudswaarskuwings", + "smw-admin-alerts-section-intro": "Hierdie afdeling toon waarskuwings en kennisgewings wat verband hou met instellings, bedrywighede en ander aktiwiteite wat geklassifiseer is om aandag te vra van 'n administrateur of gebruiker met bewilligde regte.", + "smw-admin-maintenancealerts-section-intro": "Die volgende waarskuwings en kennisgewings moet opgelos word, en hoewel dit nie noodsaaklik is nie, word verwag dat dit die stelsel- en bedryfsinhoud kan verbeter.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Tabeloptimalisering", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "Die stelsel het gevind dat die laaste [https://www.semantic-mediawiki.org/wiki/Table_optimization tabeloptimalisering] $2 dae gelede uitgevoer is (rekord vanaf $1) wat die instandhoudingsdrempel van $3 dae oorskry. Soos in die dokumentasie genoem, sal die uitvoering van optimalisering die navraagbeplanner toelaat om beter besluite oor navrae te neem, daarom word voorgestel om die tabeloptimalisering op 'n gereelde basis uit te voer.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Verouderde entiteite", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "Die stelsel het $1 getel [https://www.semantic-mediawiki.org/wiki/Outdated_entities verouderde entiteite] en het 'n kritieke vlak van onbewaakte instandhouding bereik deur die drempel van $2 te oorskry. Dit word aanbeveel om die [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php ] instandhoudingsskrip uit te voer.", + "smw-admin-maintenance-script-description-setupstore": "Stel die stoor- en navraag-agterkant op soos gedefinieër in LocalSettings.php .", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "Gooi verouderde entiteite en navrae-skakels weg.", + "smw-admin-maintenance-script-description-runimport": "Bevolk en voer outo-ontdekte inhoud in van [https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $ smwgImportFileDirs].", + "smw-livepreview-loading": "Laai tans…", + "smw-property-predefined-inst": "\"$1\" is 'n interne vooraf gedefinieerde eienskap wat kategorie-inligting stoor onafhanklik van MediaWiki en word verskaf deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-unit": "\"$1\" is 'n verklarende vooraf gedefinieerde eienskap om vertooneenhede vir numeriese getikte eienskappe te definieer en word voorsien deur [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-unit": "Met 'n komma-geskeide lys kan eenhede of formate beskryf word wat vir die vertoning gebruik kan word.", + "smw-property-predefined-conv": "\"$1\" is 'n verklarende vooraf gedefinieerde eienskap om die omskakelingsfaktor vir een of ander eenheid van 'n fisiese hoeveelheid te definieer en word voorsien deur [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-serv": "\"$1\" is 'n verklarende vooraf gedefinieerde eiendom om diensskakels na 'n eiendom toe te voeg en word verskaf deur [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-redi": "\"$1\" is 'n interne vooraf gedefinieerde eienskap om aansture aan te teken en word verskaf deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-subp": "\"$1\" is 'n verklarende voorafbepaalde eienskap om te definieer dat 'n eiendom 'n [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of subproperty of] is en dit word verskaf deur [https: //www.semantic- mediawiki.org/wiki/Help:Special_properties Semantiese MediaWiki].", + "smw-property-predefined-subc": "\"$1\" is 'n vooraf gedefinieerde eienskap om te definieer dat 'n kategorie 'n [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of subcategorie van] 'n ander is en word verskaf deur [https: //www.semantic-mediawiki .org / wiki / Help: Special_properties Semantiese MediaWiki].", + "smw-property-predefined-conc": "\"$1\" is 'n interne vooraf gedefinieerde eienskap om 'n gepaardgaande konsep te definieer en word verskaf deur [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-err-type": "\"$1\" is 'n vooraf gedefinieerde eienskap om 'n groep of klas van [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors verwerkingsfoute] te identifiseer en word verskaf deur [https: //www.semantic-mediawiki. org / wiki / Help: Special_properties Semantic MediaWiki].", + "smw-property-predefined-skey": "\"$1\" is 'n interne vooraf gedefinieerde eienskap om 'n soortverwysing te hou en word verskaf deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pplb": "\"$1\" is 'n verklarende voorafbepaalde eienskap om 'n [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label voorkeur-eiendomsetiket te spesifiseer] en word verskaf deur [https://www.semantic-mediawiki.org/ wiki / Help: Special_properties Semantic MediaWiki].", + "smw-property-predefined-chgpro": "\"$1\" is 'n voorafbepaalde eienskap om inligting te bevat [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation Change propagation] en word verskaf deur [https://www.semantic-mediawiki.org/wiki/ Help: Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-link": "en word voorsien deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-format-schema": "en word voorsien deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-profile-schema": "en word voorsien deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans": "en word voorsien deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-source": "en word voorsien deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-group": "en word voorsien deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cont-len": "\"$1\" is 'n voorafbepaalde eienskap om inligting oor die lengte te stoor en word verskaf deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-len": "Dit word gebruik in verband met die [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en die [https://www.semantic-mediawiki.org/Attachment_processor aanhegselsverwerker]) om inligting oor die lengte te versamel en te stoor opgeneem uit 'n ingeneemde lêer (indien voorsien).", + "smw-property-predefined-cont-lang": "\"$1\" is 'n voorafbepaalde eienskap om taalinligting te stoor en word verskaf deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-lang": "Dit word gebruik in verband met die [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en die [https://www.semantic-mediawiki.org/Attachment_processor-aanhangselverwerker]) om taalinligting te versamel en op te slaan opgeneem uit 'n ingeneemde lêer (indien voorsien).", + "smw-property-predefined-cont-title": "\"$1\" is 'n vooraf gedefinieerde eienskap om titelinligting te stoor en word verskaf deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-title": "Dit word gebruik in verband met die [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en die [https://www.semantic-mediawiki.org/Attachment_processor-aanhangselverwerker]) om titelinligting te versamel en te stoor opgeneem uit 'n ingeneemde lêer (indien voorsien).", + "smw-property-predefined-cont-author": "\"$1\" is 'n voorafbepaalde eienskap om outeurinligting te stoor en word verskaf deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-author": "Dit word gebruik in verband met die [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en die [https://www.semantic-mediawiki.org/Attachment_processor-aanhangerverwerkingsprogram]) om outeursinligting te versamel en op te slaan opgeneem uit 'n ingeneemde lêer (indien voorsien).", + "smw-property-predefined-cont-date": "\"$1\" is 'n voorafbepaalde eienskap om datuminligting te stoor en word verskaf deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-date": "Dit word gebruik in verband met die [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en die [https://www.semantic-mediawiki.org/Attachment_processor-aanhegselsverwerker]) om inligting te versamel en te stoor opgeneem uit 'n ingeneemde lêer (indien voorsien).", + "smw-property-predefined-cont-type": "\"$1\" is 'n vooraf gedefinieerde eienskap om inligting oor lêertipes te stoor en word verskaf deur [https://www.semantic-mediawiki.org/wiki/Hulp:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-type": "Dit word gebruik in verband met die [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en die [https://www.semantic-mediawiki.org/Attachment_processor aanhegtingsverwerker]) om inligting te versamel en te stoor opgeneem uit 'n ingeneemde lêer (indien voorsien).", + "smw-property-predefined-cont-keyw": "\"$1\" is 'n vooraf gedefinieerde eienskap om sleutelwoorde voor te stel en word verskaf deur [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-keyw": "Dit word gebruik in verband met die [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en die [https://www.semantic-mediawiki.org/Attachment_processor-aanhangerverwerkingsprogram]) om sleutelwoorde wat opgespoor is, te versamel en te stoor vanaf 'n ingeneemde lêer (indien voorsien).", + "smw-property-predefined-file-attch": "\"$1\" is 'n vooraf gedefinieerde eienskap om 'n houer voor te stel wat inligting oor aanhangsels stoor en word verskaf deur [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-file-attch": "Dit word gebruik in verband met die [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en die [https://www.semantic-mediawiki.org/Attachment_processor-aanhangerverwerkingsprogram]) om alle inhoudsspesifieke inligting te versamel herwinbaar vanaf 'n ingeneemde lêer (indien voorsien).", + "smw-schema-type": "Skema tipe", + "smw-install-incomplete-intro": "Die {{PLURAL:$1|installasie|opgradering}} van [https://www.semantic-mediawiki.org Semantic MediaWiki] het $2 {{PLURAL:$2|taak|take}} geklassifiseer as onvolledig of [[Special:PendingTaskList|pending]] en vereis aandag van 'n administrateur of gebruiker met voldoende regte. Die {{PLURAL:$2|taak|take}} moet eers voltooi word voordat gebruikers voortgaan om inhoud te skep of te verander om teenstrydige data te voorkom.", + "smw-install-incomplete-intro-note": "Hierdie boodskap sal verdwyn nadat alle relevante take opgelos is.", + "smw-pendingtasks-intro-empty": "Geen take is geklassifiseer as hangende, onvolledig of uitstaande in verband met Semantic MediaWiki nie.", + "smw-pendingtasks-intro": "Hierdie bladsy bevat inligting oor take wat geklassifiseer is as hangende, onvolledig of uitstaande in verband met Semantic MediaWiki.", + "smw-pendingtasks-setup-no-tasks-intro": "Die installasie (of opgradering) is voltooi, tans is daar geen hangende of uitstaande take nie.", + "smw-pendingtasks-tab-setup": "Stel op", + "smw-populatehashfield-incomplete": "Die smw_hash -populasie is tydens die opstelling oorgeslaan; die [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] -skrif is nodig om uitgevoer te word.", + "smw-elastic-rebuildelasticindex-run-incomplete": "Die ElasticStore is gekies as [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore standaardwinkel], maar die uitbreiding kon nog geen rekord vind dat die [https: / /www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php buildElasticIndex.php] script is uitgevoer, voer asseblief die script uit soos voorgeskryf.", + "smw-pendingtasks-setup-intro": "Die {{PLURAL:$1|installasie|opgradering}} van Semantic MediaWiki het die volgende take geklassifiseer as [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade onvolledig] en daar word van 'n administrateur (of gebruiker met voldoende regte) verwag om hierdie take op te los voordat gebruikers voortgaan om inhoud te skep of te verander. Die {{PLURAL:$1|installasie|opgradering}} van Semantic MediaWiki het die die volgende take te volg as [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade onvolledig] en daar word van 'n administrateur (of gebruiker met voldoende regte) verwag om hierdie take op te los voordat gebruikers voortgaan om inhoud te skep of te verander.", + "smw-pendingtasks-setup-tasks": "take", + "smw-listingcontinuesabbrev": "vervolg", + "smw-showingresults": "Hier volg {{PLURAL:$1|'''1''' resultaat|'''$1''' resultate}} vanaf #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/aln.json b/mediawiki/extensions/SemanticMediaWiki/i18n/aln.json new file mode 100644 index 0000000..ed6a102 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/aln.json @@ -0,0 +1,48 @@ +{ + "@metadata": { + "authors": [ + "Cradel", + "Mdupont" + ] + }, + "smw_isspecprop": "Kjo pronë është një veti të veçantë në këtë wiki.", + "smw_concept_description": "Përshkrimi i konceptit \"$1\"", + "smw_no_concept_namespace": "Konceptet mund të përcaktohet në faqet në Konceptin: hapësira.", + "smw_multiple_concepts": "Çdo faqe koncept mund të ketë vetëm një përkufizim koncept.", + "smw_concept_cache_miss": "Koncepti \"$1\" nuk mund të përdoret në këtë moment, që nga konfigurimi Wiki kërkon që ajo të jetë llogaritur off-line. Nëse problemi nuk zhduken pas disa kohë, pyesni administratorin e faqes tuaj për të bërë këtë koncept në dispozicion.", + "smw_noinvannot": "Vlerat nuk mund të vendoset në pronat e anasjelltas.", + "smw_baduri": "URI e formës \"$1\" nuk lejohen.", + "smw_printername_count": "Rezultatet Count", + "smw_printername_csv": "eksport CSV", + "smw_printername_debug": "query Debug (për ekspertët)", + "smw_printername_embedded": "Embed faqe Përmbajtja", + "smw_printername_json": "eksport JSON", + "smw_printername_list": "Listë", + "smw_printername_ol": "Renditje", + "smw_printername_ul": "Itemization", + "smw_printername_table": "Tryezë", + "smw_printername_broadtable": "Tabela Broad", + "smw_printername_template": "Shabllon", + "smw-paramdesc-limit": "Numri maksimal i rezultateve të kthehen", + "smw-paramdesc-headers": "Afisho e titullit / emrat e pronës", + "smw-paramdesc-mainlabel": "Etiketë për të dhënë për emrin kryesore faqe", + "smw-paramdesc-link": "Show vlerat si link", + "smw-paramdesc-intro": "Teksti që do shfaqet para se rezultatet e pyetjes, nëse ka ndonjë", + "smw-paramdesc-outro": "Teksti që do shfaqet pas rezultatet e pyetjes, nëse ka ndonjë", + "smw-paramdesc-default": "Teksti që do shfaqet në qoftë se nuk ka rezultate query", + "smw-paramdesc-sep": "Ndarës për vlerat e", + "smw-paramdesc-template": "Emri i një template me të cilin për të shfaqur shkresat e", + "smw-paramdesc-columns": "Numri i rreshtave në të cilat për të shfaqur rezultate (default është $1)", + "smw-paramdesc-embedformat": "HTML tag përdoret për të definuar tituj", + "smw-paramdesc-embedonly": "Afisho nuk ka tituj", + "smw-paramdesc-searchlabel": "Teksti në lidhje me rezultatet e", + "smw_iq_disabled": "pyetje Semantic kanë qenë të paaftë për këtë wiki.", + "smw_iq_moreresults": "Rezultatet e ... më tej", + "smw_parseerror": "Vlera e dhënë nuk është kuptuar.", + "smw_notitle": "\"$1\" nuk mund të përdoret si një emër faqe në këtë wiki.", + "smw_wrong_namespace": "Vetëm faqet në hapësirën \"$1\" lejohen këtu.", + "smw-categories": "Kategori", + "smw_unknowntype": "Lloj i pasuportuar \"$1\" të përcaktuara për pronën.", + "smw-listingcontinuesabbrev": "vazh.", + "smw-showingresults": "Mâ poshtë {{PLURAL:$1|tregohet '''1''' rezultat|tregohen '''$1''' rezultate}} që nisin me #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/am.json b/mediawiki/extensions/SemanticMediaWiki/i18n/am.json new file mode 100644 index 0000000..adfdc62 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/am.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "Codex Sinaiticus", + "Teferra" + ] + }, + "smw-categories": "ምድቦች", + "smw_result_next": "ቀጥሎ", + "smw-livepreview-loading": "በመጫን ላይ ነው...", + "smw-listingcontinuesabbrev": "(ተቀጥሏል)", + "smw-showingresults": "ከ ቁ.#$2 ጀምሮ እስከ $1 ውጤቶች ድረስ ከዚህ በታች ይታያሉ።" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/an.json b/mediawiki/extensions/SemanticMediaWiki/i18n/an.json new file mode 100644 index 0000000..53b5dc4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/an.json @@ -0,0 +1,17 @@ +{ + "@metadata": { + "authors": [ + "Fitoschido", + "Juanpabl", + "Willtron" + ] + }, + "smw_printername_template": "Plantilla", + "smw_nodatetime": "No s'ha entendito a calendata \"$1\".", + "smw-categories": "Categorías", + "browse": "Explorar o wiki", + "smw-livepreview-loading": "Cargando…", + "smw-help": "Aduya", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "Contino se bi {{PLURAL:$1|amuestra '''1''' resultau|amuestran '''$1''' resultaus}} prencipiando por o numero '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ang.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ang.json new file mode 100644 index 0000000..78b9a2e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ang.json @@ -0,0 +1,20 @@ +{ + "@metadata": { + "authors": [ + "Gott wisst", + "Heahwrita", + "Hogweard" + ] + }, + "smw-categories": "Floccas", + "browse": "Sec geond wiki", + "smw-loading": "Hladende...", + "smw-fetching": "Feccend...", + "smw-preparing": "Dæftend...", + "smw-expand": "Brǣde", + "smw-copy": "Biwrītan", + "smw-jsonview-expand-title": "Aþenaþ þe JSON ansyn", + "smw-jsonview-collapse-title": "Tofealleþ þa JSON ansyn", + "smw-listingcontinuesabbrev": "mā", + "smw-showingresults": "Ywð herunder swa fela swa {{PLURAL:$1|1 gefundennesse|$1 gefundennessa}}, and #$2 is seo forme." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/anp.json b/mediawiki/extensions/SemanticMediaWiki/i18n/anp.json new file mode 100644 index 0000000..0ffa6f8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/anp.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Angpradesh", + "Proabscorp!" + ] + }, + "smw-categories": "श्रेणी", + "browse": "विकि देखौ", + "smw-admin-tab-alerts": "चेतावनी सिनी", + "smw-listingcontinuesabbrev": "जारी." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ar.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ar.json new file mode 100644 index 0000000..891bf6a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ar.json @@ -0,0 +1,1033 @@ +{ + "@metadata": { + "authors": [ + "20عبد العزيز", + "AA800", + "Alaa", + "Cigaryno", + "Kassem7899", + "Kghbln", + "Mahmoud Zouari mahmoudzouari@yahoo.fr http://www.cri.ensmp.fr", + "McDutchie", + "Meno25", + "Mido", + "Mohammed Qays", + "Moud hosny", + "NEHAOUA", + "OsamaK", + "Ouda", + "Tala Ali", + "Uwe", + "Yasser Yousssef", + "أحمد", + "أحمد غربية Ahmad Gharbeia ", + "الهميان", + "ديفيد", + "روخو", + "محمد أحمد عبد الفتاح" + ] + }, + "smw-desc": "تقرّب الويكي إلى كلٍّ من النّظم الحاسوبية ''و'' البشر ([https://www.semantic-mediawiki.org/wiki/Help:User_manual دليل المستخدم])", + "smw-error": "خطأ", + "smw-upgrade-error": "تم تثبيت وتمكين ميدياويكي الدلالي لكنه يفتقد إلى [https://www.semantic-mediawiki.org/wiki/Help:Upgrade مفتاح ترقية] مناسب.", + "smw-upgrade-release": "أصدر", + "smw-upgrade-progress": "التقدم", + "smw-upgrade-progress-explain": "يصعب التنبؤ بتقدير وقت الانتهاء من الترقية حيث أنه يعتمد على حجم مستودع البيانات والأجهزة المتاحة ويمكن أن يستغرق لحظة حتى يكتمل الويكي الأكبر. \n\nيُرجَى الاتصال بإداريك المحلي للحصول على مزيد من المعلومات حول التقدم.", + "smw-upgrade-progress-create-tables": "إنشاء (أو تحديث) الجداول والمؤشرات...", + "smw-upgrade-progress-post-creation": "تشغيل مهام إنشاء المنشور...", + "smw-upgrade-progress-table-optimization": "تحسينات جدول التشغيل...", + "smw-upgrade-progress-supplement-jobs": "إضافة وظائف تكميلية...", + "smw-upgrade-error-title": "خطأ في ميدياويكي الدلالي", + "smw-upgrade-error-why-title": "لماذا أرى هذه الصفحة؟", + "smw-upgrade-error-why-explain": "لقد تغير هيكل قاعدة البيانات الداخلية في ميدياويكي ويتطلب بعض التعديلات لكي تعمل بكامل طاقتها، يمكن أن يكون هناك العديد من الأسباب بما فيها: \n* تمت إضافة خصائص مرممة إضافية (يتطلب إعداد جدول إضافي) \n* تحتوي الترقية على بعض التغييرات على الجداول أو الفهارس التي تقوم بإجراء اعتراض إلزامي قبل الوصول إلى البيانات\n* التغييرات في محرك التخزين أو الاستعلام", + "smw-upgrade-error-how-title": "كيف أقوم بإصلاح هذا الخطأ؟", + "smw-upgrade-error-how-explain-admin": "يجب على الإداري (أو أي شخص لديه صلاحية الإداري) أن يدير إما سكريبت صيانة [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] ميدياويكي أو [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] ميدياويكي الدلالي.", + "smw-upgrade-error-how-explain-links": "يمكنك أيضا الرجوع إلى الصفحات التالية للحصول على مزيد من المساعدة:\n* تعليمات [https://www.semantic-mediawiki.org/wiki/Help:Installation التثبيت]\n* صفحة المساعدة [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting استكشاف الأخطاء وإصلاحها]", + "smw-extensionload-error-why-title": "لماذا أرى هذه الصفحة؟", + "smw-extensionload-error-why-explain": "لم يتم تحميل الامتداد باستخدام enableSemantics وبدلا من ذلك تم تمكينه بوسائل أخرى مثل استخدام wfLoadExtension( 'SemanticMediaWiki' ) مباشرةً.", + "smw-extensionload-error-how-title": "كيف يمكنني إصلاح هذا الخطأ؟", + "smw-extensionload-error-how-explain": "لتمكين الامتداد وتجنب المشكلات المتعلقة بإعلانات النطاقات والتكوينات المعلقة؛ من الضروري استخدام enableSemantics والتي ستضمن تعيين المتغيرات المطلوبة قبل تحميل الامتداد عبر ExtensionRegistry. \n\nيُرجًى إلقاء نظرة على صفحة المساعدة [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics تمكين الدلالات] للمزيد من المساعدة.", + "smw-upgrade-maintenance-title": "صيانة ميدياويكي الدلالي", + "smw-upgrade-maintenance-why-title": "لماذا أرى هذه الصفحة؟", + "smw-upgrade-maintenance-note": "يخضع النظام حاليا [https://www.semantic-mediawiki.org/wiki/Help:Upgrade لترقية] امتداد [https://www.semantic-mediawiki.org/ ميدياويكي الدلالي] مع مستودع بياناته ونود أن نطلب منك صبرك وأن تسمح باستمرار الصيانة قبل أن يصبح من الممكن الوصول إلى الويكي مرة أخرى.", + "smw-upgrade-maintenance-explain": "تحاول الإضافة تقليل التأثير ووقت التوقف عن العمل من خلال إرجاء معظم مهام الصيانة الخاصة بها إلى ما بعد update.php ولكن يلزم إجراء بعض التغييرات المتعلقة بقاعدة البيانات أولا لتفادي عدم تناسق البيانات، يمكن أن تشمل: \n* تغيير هياكل الجدول مثل إضافة حقول جديدة أو تعديلها \n* تغيير أو إضافة مؤشرات الجدول \n* تشغيل تحسينات الجدول (عند التمكين)", + "smw-semantics-not-enabled": "لم يتم تمكين وظائف ميدياويكي الدلالي لهذا الويكي.", + "smw_viewasrdf": "تلقيمة RDF", + "smw_finallistconjunct": " و", + "smw-factbox-head": "...المزيد عن \"$1\"", + "smw-factbox-facts": "حقائق", + "smw-factbox-facts-help": "يعرض البيانات والحقائق التي تم إنشاؤها بواسطة مستخدم", + "smw-factbox-attachments": "المرفقات", + "smw-factbox-attachments-value-unknown": "غ/م", + "smw-factbox-attachments-is-local": "محلي", + "smw-factbox-attachments-help": "يعرض المرفقات المتاحة", + "smw-factbox-facts-derived": "حقائق مشتقة", + "smw-factbox-facts-derived-help": "يعرض الحقائق التي تم استخلاصها من القواعد أو بمساعدة تقنيات التفكير الأخرى", + "smw_isspecprop": "هذه خصيصة مميَّزة في هذه الويكي.", + "smw-concept-cache-header": "استخدام ذاكرة التخزين المؤقت", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count مخبأ مفهوم] يحتوي على {{PLURAL:$1|كيان '''واحد'''|'''$1''' كيانات}} ($2).", + "smw-concept-no-cache": "لا يوجد مخبأ متاح.", + "smw_concept_description": "وصف المفهوم \"$1\"", + "smw_no_concept_namespace": "المفاهيم لا يمكن تعريفها إلا في الصفحات ضمن مفهوم : نطاق التسمية", + "smw_multiple_concepts": "كل صفحة مفهوم لا يمكن أن تضم أكثر من تعريف مفهوم واحد.", + "smw_concept_cache_miss": "المبدأ \"$1\" لا يمكن استخدامه حاليا إذ أن كيفية ضبط الويكي تقضي بتعطيلها. إذا لم تنته المشكلة بعد برهة، فسَل إداري الموقع ليتيح هذا المبدأ.", + "smw_noinvannot": "لا يمكن تعيين قيم لخصائص معكوسة.", + "version-semantic": "ملحقات دلالية", + "smw_baduri": "المسارات في الصيغة \"$1\" غير مسموح بها هنا.", + "smw_csv_link": "سي إس في", + "smw_dsv_link": "دي إس في", + "smw_json_link": "جسون", + "smw_rdf_link": "آر دي إف", + "smw_printername_count": "عدّ النتائج", + "smw_printername_csv": "تصدير في صيغة CSV", + "smw_printername_dsv": "تصدير في صيغة DSV", + "smw_printername_debug": "استعلام صيانة (للخبراء)", + "smw_printername_embedded": "تضمين محتويات الصفحة", + "smw_printername_json": "تصدير في صيغة JSON", + "smw_printername_list": "قائمة", + "smw_printername_plainlist": "قائمة عادية", + "smw_printername_ol": "عناصر مُرقَّمة", + "smw_printername_ul": "عناصر مسرودة", + "smw_printername_table": "جدول", + "smw_printername_broadtable": "جدول عريض", + "smw_printername_template": "قالب", + "smw_printername_templatefile": "ملف قالب", + "smw_printername_rdf": "تصدير في صيغة RDF", + "smw_printername_category": "تصنيف", + "validator-type-class-SMWParamSource": "نصّ", + "smw-paramdesc-limit": "العدد الأقصى للنتائج المُرجعة", + "smw-paramdesc-offset": "إزاحة النتيجة الأولى", + "smw-paramdesc-headers": "اعرض العناوين/أسماء الخصائص", + "smw-paramdesc-mainlabel": "العنوان الذي سيُعيّن للصفحة الرئيسية", + "smw-paramdesc-link": "أظهر القيم كروابط", + "smw-paramdesc-intro": "النّصّ المعروض قبل نتائج الاستعلام (إنْ وُجدت)", + "smw-paramdesc-outro": "النّصّ المعروض بعد نتائج الاستعلام (إنْ وُجدت)", + "smw-paramdesc-default": "النّصّ المعروض إذا لم توجد نتائج للاستعلام", + "smw-paramdesc-sep": "الفاصل بين النتائج", + "smw-paramdesc-propsep": "الفاصل بين خصائص إدخال النتيجة", + "smw-paramdesc-valuesep": "الفاصل بين قيم خاصية نتيجة", + "smw-paramdesc-showsep": "أظهر الفاصلة في رأس ملف CSV على النحو (\"sep=<الرمز>\")", + "smw-paramdesc-distribution": "بدلاً من عرض كل القيم، اسرد عدد مرات ورودها.", + "smw-paramdesc-distributionsort": "رتّب توزيعات القيم حسب عدد مرات ورودها.", + "smw-paramdesc-distributionlimit": "حدّ توزيع القيم بتواتر بعض القيم لا كلّها.", + "smw-paramdesc-aggregation": "حدد ما يجب أن يرتبط به التجميع", + "smw-paramdesc-template": "اسم القالب المستخدم لعرض المخرجات به", + "smw-paramdesc-columns": "عدد الأعمدة لعرض النتائج بها", + "smw-paramdesc-userparam": "قيمة تُمرَّر في كل استدعاء قالب إذا كان القالب سيُستخدَم.", + "smw-paramdesc-class": "فئة CSS إضافية لتعيين للقائمة", + "smw-paramdesc-introtemplate": "اسم قالب يُعرض قبل نتائج الاستعلام، إنْ وُجِدَت.", + "smw-paramdesc-outrotemplate": "اسم قالب يُعرض بعد نتائج الاستعلام، إنْ وُجِدَت.", + "smw-paramdesc-embedformat": "وسم HTML المستخدم لتعريف الترويسة", + "smw-paramdesc-embedonly": "لا تظهر الترويسات", + "smw-paramdesc-table-class": "فئة CSS إضافية تُعيَّن للجدول", + "smw-paramdesc-table-transpose": "عرض رؤوس الجدول عموديا والنتائج أفقيا", + "smw-paramdesc-rdfsyntax": "نَحوُ RDF المُستَخدم", + "smw-paramdesc-csv-sep": "تحديد فاصل الأعمدة", + "smw-paramdesc-csv-valuesep": "تحديد فاصل قيمة", + "smw-paramdesc-csv-merge": "دمج الصفوف وقيم العمود مع معرف موضوع متطابق (يُعرَف أيضا باسم العمود الأول)", + "smw-paramdesc-csv-bom": "إضافة بوم (حرف لإشارة إنديانيس) في الجزء العلوي من ملف الإخراج", + "smw-paramdesc-dsv-separator": "الفاصلة المُستَخدَمة", + "smw-paramdesc-dsv-filename": "اسم ملف DSV", + "smw-paramdesc-filename": "الاسم للملف المستخرج", + "smw-smwdoc-description": "يعرض جدولا يضمّ كل المعامِلات التي يمكن استخدامها مع صيغة النتائج المختارة مع قيمها المبدئية و وصفها.", + "smw-smwdoc-default-no-parameter-list": "لا يوفر تنسيق النتيجة هذا وسائط تنسيق محددة.", + "smw-smwdoc-par-format": "صيغة النتائج التي تُعرض تفاصيل معامِلاتها.", + "smw-smwdoc-par-parameters": "أي المعاملات تُعرَض. \"specific\" تعني الخاصة بالصيغة المختارة و \"base\" تعني المشتركة بين كل الصيغ و \"all\" تعني كلّها.", + "smw-paramdesc-sort": "الخصيصة التي تُرتّب عليها نتائج الاستعلام", + "smw-paramdesc-order": "رتبة ترتيب الاستعلام", + "smw-paramdesc-searchlabel": "نص مواصلة عرض النتائج", + "smw-paramdesc-named_args": "المعاملات الممررة بأسمائها إلى القالب", + "smw-paramdesc-template-arguments": "لتعيين كيفية تمرير الوسائط المسماة إلى القالب", + "smw-paramdesc-import-annotation": "يجب نسخ بيانات مشروحة إضافية أثناء تحليل موضوع ما", + "smw-paramdesc-export": "خيار التصدير", + "smw-paramdesc-prettyprint": "مخرجات تجميلية لإدخال مسافات و سطور فارغة", + "smw-paramdesc-json-unescape": "الإخراج لاحتواء شرطات مائلة غير منفذة وأحرف يونيكود متعددة البايت", + "smw-paramdesc-json-type": "نوع التسلسل", + "smw-paramdesc-source": "مصدر بديل للاستعلام", + "smw-paramdesc-jsonsyntax": "نحوُ JSON المُستَخدَم", + "smw-printername-feed": "تلقيمات Atom و RSS", + "smw-paramdesc-feedtype": "نوع التلقيمة", + "smw-paramdesc-feedtitle": "نصُّ عنوان التلقيمة", + "smw-paramdesc-feeddescription": "نصُّ وصف التلقيمة", + "smw-paramdesc-feedpagecontent": "محتوى الصفحة المعروض مع التلقيمة", + "smw-label-feed-link": "آر إس إس", + "smw-label-feed-description": "تلقيمة $2 $1", + "smw-paramdesc-mimetype": "نوع الوسائط (نوع MIME) لملف الإخراج", + "smw_iq_disabled": "الاستعلامات الدلالية مُعطّلة في هذه الويكي.", + "smw_iq_moreresults": "…مزيد من النتائج", + "smw_parseerror": "القيمة المعطاة لم يتم فهمها.", + "smw_decseparator": "٫", + "smw_kiloseparator": "،", + "smw_notitle": "\"$1\" لا يمكن أن يكون اسم صفحة في هذه الويكي.", + "smw_noproperty": "\"$1\" لا يمكن أن يكون اسم خصيصة في هذه الويكي.", + "smw_wrong_namespace": "وحدها الصفحات في النطاق \"$1\" مسموح بها هنا.", + "smw_manytypes": "عُرّف أكثر من نوع بيانات للخصيصة ذاتها.", + "smw_emptystring": "النصوص الفارغة غير مقبولة.", + "smw_notinenum": "\"$1\" ليست في قائمة ($2) [[Property:Allows value|للقيم المسموح بها]] للخاصية \"$3\".", + "smw-datavalue-constraint-error-allows-value-list": "\"$1\" ليست ضمن القائمة ($2) [[Property:Allows value|القيم المسموح بها]] للخاصية \"$3\".", + "smw-datavalue-constraint-error-allows-value-range": "\"$1\" ليست ضمن نطاق \"$2\" المحدد بواسطة قيد [[Property:Allows value|القيم المسموح بها]] للخاصية \"$3\".", + "smw-constraint-error": "مشكلة قيد", + "smw-constraint-error-suggestions": "يُرجَى التحقق من الانتهاكات والخواص المدرجة مع قيمها المشروحة لضمان تلبية جميع متطلبات القيد.", + "smw-constraint-error-limit": "ستتضمن القائمة $1 انتهاكات بحد أقصى.", + "smw_noboolean": "\"$1\" لم يُتعرّف عليها كقيمة منطقية (صواب/بطلان).", + "smw_true_words": "صواب،ص،نعم،ن", + "smw_false_words": "بطلان،ب،لا،ل", + "smw_nofloat": "ليس عددا \"$1\".", + "smw_infinite": "الأرقام الكبيرة مثل \"$1\" غير مدعومة.", + "smw_unitnotallowed": "\"$1\" ليس مُعرَّفا كوحدة قياس صحيحة لهذه الخصيصة.", + "smw_nounitsdeclared": "لم تُعرّف لهذه الخصيصة وحدات قياس.", + "smw_novalues": "لم تُعيّن أي قِيَم.", + "smw_nodatetime": "التاريخ \"$1\" لم يتم فهمه.", + "smw_toomanyclosing": "يبدو أن \"$1\" ترد كثيرا للغاية في الاستعلام.", + "smw_noclosingbrackets": "بعض استخدامات \"[[\" في الاستعلام لم تُغلَق بوضع \"]]\" مقابلة.", + "smw_misplacedsymbol": "الرمز \"$1\" استُخدِم في موضع لا يفيد فيه.", + "smw_unexpectedpart": "الجزء \"$1\" من الاستعلام لم يفهم.\nالنتائج قد لا تكون كالمتوقعة.", + "smw_emptysubquery": "يوجد استعلام فرعي بلا شرط صحيح.", + "smw_misplacedsubquery": "استُخدِم استعلام فرعي في موضع غير مسموح فيه بالاستعلامات الفرعية.", + "smw_valuesubquery": "الاستعلامات الفرعية غير مدعومة لقيم الخصيصة \"$1\".", + "smw_badqueryatom": "جزء ما \"[[…]]\" من الاستعلام لم يتم فهمه.", + "smw_propvalueproblem": "قيمة الخصيصة \"$1\" لم يتم فهمها.", + "smw_noqueryfeature": "تفصيلة ما في الاستعلام ليست مدعومة في هذه الويكي فأغفِل جزء من الاستعلام ($1).", + "smw_noconjunctions": "الوصل في الاستعلامات غير مدعوم في هذه الويكي فأُغفِل جزء من الاستعلام ($1).", + "smw_nodisjunctions": "المفارق في الاستعلامات ليست مدعومة في هذه الويكي فأُغفِل جزء من الاستعلام $1.", + "smw_querytoolarge": "{{PLURAL:$2|شروط الاستعلام}} التالية لم يمكن أخذها في الاعتبار بسبب قيود من الويكي على حجم أو عمق الاستعلام: $1.", + "smw_notemplategiven": "أدخل قيمة للمعامل \"template\" لكي تعمل صيغة الاستعلام هذه.", + "smw_db_sparqlqueryproblem": "تعذّر إيجاد نتيجة للاستعلام من قاعدة بيانات SPARQL. هذه العطل قد يكون مؤقتا أو قد يدّل على علّة في برمجية قاعدة البيانات.", + "smw_db_sparqlqueryincomplete": "الإجابة على هذا الاستعلام اتّضح أنها صعبة للغاية و قد تم إغفالها. بعض النتائج قد تكون ناقصة. استخدم استعلاما أبسط لو أمكن.", + "smw_type_header": "الخصائص من النوع \"$1\"", + "smw_typearticlecount": "التالية {{PLURAL:$1||خصيصة واحدة|خصيصتان|$1 خصائص|$1 خصيصة}} من هذا النوع.", + "smw_attribute_header": "الصفحات التي تستخدم الخصيصة \"$1\"", + "smw_attributearticlecount": "التالية {{PLURAL:$1||الصفحة التي لها|الصفحتان اللتان لهما|الصفحات التي لها}} هذه الخصيصة.", + "smw-propertylist-subproperty-header": "خصائص فرعية", + "smw-propertylist-redirect-header": "مرادفات", + "smw-propertylist-error-header": "صفحات بمهام غير لائقة", + "smw-propertylist-count": "عرض $1 {{PLURAL:$1|كيان|كيانات}} مرتبط.", + "smw-propertylist-count-with-restricted-note": "عرض $1 {{PLURAL:$1|كيان|كيانات}} مرتبط (يتوفر المزيد ولكن يقتصر العرض على \"$2\").", + "smw-propertylist-count-more-available": "عرض $1 {{PLURAL:$1|كيان|كيانات}} مرتبط (يتوفر المزيد)", + "specialpages-group-smw_group": "سيمانتيك ميدياويكي", + "specialpages-group-smw_group-maintenance": "صيانة", + "specialpages-group-smw_group-properties-concepts-types": "الخصائص والمفاهيم والأنواع", + "specialpages-group-smw_group-search": "التصفح والبحث", + "exportrdf": "تصدير الصفحات إلى RDF", + "smw_exportrdf_docu": " هذه الصفحة تتيح لك الحصول على بيانات من صفحة في صيغة RDF.\nلتصدير صفحات، أدخل عناوينها في حقل النص أدناه، عنوانا واحدا في السطر.", + "smw_exportrdf_recursive": "صدّر كل الصفحات ذات الصلة على نحو عودي.\nلاحظ أن النتيجة قد تكون كبيرة.", + "smw_exportrdf_backlinks": "كذلك صدّر كل الصفحات التي تشير إلى صفحات تم تصديرها.\nهذا يولد RDF قابلا للتصفح.", + "smw_exportrdf_lastdate": "لا تصدّر الصفحات التي لم تتغير منذ لحظة معينة في الزمن.", + "smw_exportrdf_submit": "صدّر", + "uriresolver": "حال_المسارات", + "properties": "الخصائص", + "smw-categories": "تصنيفات", + "smw_properties_docu": "الخصائص التالية مستخدمة في هذه الويكي.", + "smw_property_template": "$1 من نوع $2 ({{PLURAL:$3|مرة|مرّتان|$3 مرات}})", + "smw_propertylackspage": "كل خصيصة يجب أن توصف بصفحة!", + "smw_propertylackstype": "لم يحدد نوع لهذه الخصيصة (افتُرِضَ النوع $1 مؤقتا).", + "smw_propertyhardlyused": "هذه الخصيصة تكاد لا تُستخدم في الويكي!", + "smw-property-name-invalid": "الخصيصة $1 لا يمكن استخدامها (اسم الخصيصة غير صحيح).", + "smw-property-name-reserved": "تم إدراج \"$1\" كاسم محجوز ولا يجب استخدامه كخاصية، قد تحتوي صفحة [https://www.semantic-mediawiki.org/wiki/Help:Property_naming صفحة المساعدة] التالية على معلومات عن سبب حجز هذا الاسم.", + "smw-sp-property-searchform": "عرض الخصائص التي تحتوي على:", + "smw-sp-property-searchform-inputinfo": "الإدخال حساس لحالة الأحرف، و عندما يستخدم كمرشّح فإنّ الخصائص التي تتطابق مع الشرط وحدها تُعرض.", + "smw-special-property-searchform": "عرض الخصائص التي تحتوي على:", + "smw-special-property-searchform-inputinfo": "الإدخال حساس لحالة الأحرف وعند استخدامه لتصفية، يتم عرض الخصائص التي تتناسب مع الحالة فقط.", + "smw-special-property-searchform-options": "خيارات", + "smw-special-wantedproperties-filter-label": "مرشح:", + "smw-special-wantedproperties-filter-none": "لا شيء", + "smw-special-wantedproperties-filter-unapproved": "غير موافق عليها", + "smw-special-wantedproperties-filter-unapproved-desc": "خيار التصفية المستخدم في اتصال مع وضع السلطة.", + "concepts": "المفاهيم", + "smw-special-concept-docu": "يمكن عدّ [https://www.semantic-mediawiki.org/wiki/Help:Concepts المفهوم] تصنيفا ديناميًّا، أي تعدادًا لمجموعة من الصفحات لم يُنشّأ يدويا، بل تُولّده ميدياويكي الدلالية من وصف استعلام مُعطى.", + "smw-special-concept-header": "قائمة مفاهيم", + "smw-special-concept-count": "{{PLURAL:$1|المفهوم|المفهومان|$1 المفاهيم}} التالية {{PLURAL:$1|مسرود|مسرودان|مسرودة}}", + "smw-special-concept-empty": "لا توجد مفاهيم.", + "unusedproperties": "خصائص غير مستخدمة", + "smw-unusedproperties-docu": "تسرد هذه الصفحة [https://www.semantic-mediawiki.org/wiki/Unused_properties الخصائص غير المستخدمة] التي تم تعريفها على الرغم من عدم استفادة صفحات أخرى منها، للحصول على عرض متباين; انظر الصفحات الخاصة [[Special:Properties|كل الخصائص]] أو [[Special:WantedProperties|خصائص مطلوبة]].", + "smw-unusedproperty-template": "$1 من نوع $2", + "wantedproperties": "خصائص مطلوبة", + "smw-wantedproperties-docu": "تسرد هذه الصفحة [https://www.semantic-mediawiki.org/wiki/Wanted_properties خصائص مطلوبة] مستخدمة في الويكي ولكن لا توجد صفحات تصفها، للحصول على عرض متباين; انظر الصفحات الخاصة [[Special:Properties|كل الخصائص]] أو [[Special:UnusedProperties|خصائص غير مستخدمة]].", + "smw-wantedproperty-template": "$1 ({{PLURAL:$2|استخدام|استخدامان|$2 استخدامات}})", + "smw-special-wantedproperties-docu": "تسرد هذه الصفحة [https://www.semantic-mediawiki.org/wiki/Wanted_properties الخصائص المطلوبة] المستخدمة في الويكي ولكن ليست لديها صفحة تصفها، للحصول على عرض متباين; انظر الصفحات الخاصة [[Special:Properties|كل الخصائص]] أو[[Special:UnusedProperties|خصائص غير مستخدمة]].", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|استخدام|استخدامات}})", + "smw_purge": "أنعش", + "smw-purge-update-dependencies": "يقوم ميدياويكي الدلالي بتطهير الصفحة الحالية بسبب بعض التبعيات القديمة التي اكتشفها والتي تتطلب تحديثا.", + "smw-purge-failed": "حاول ميدياويكي الدلالي تطهير الصفحة لكنه فشل", + "types": "الأنواع", + "smw_types_docu": "قائمة [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes أنواع البيانات المتاحة] بكل [https://www.semantic-mediawiki.org/wiki/Help: نوع] يمثل مجموعة فريدة من السمات لوصف قيمة من حيث التخزين وعرض الخصائص التي هي وراثية إلى الخاصية المعينة.", + "smw-special-types-no-such-type": "\"$1\" غير معروف أو لم يتم تحديده كنوع بيانات صحيح.", + "smw-statistics": "إحصائيات دلالية", + "smw-statistics-cached": "إحصاءات دلالية (مخزنة)", + "smw-statistics-entities-total": "الكيانات (إجمالي)", + "smw-statistics-entities-total-info": "عدد صفوف تقديري للكيانات. يشمل الخصائص، المبادىء، أو أي تمثيل كائن مسجل آخر يتطلب تعيين معرف.", + "smw-statistics-property-instance": "{{PLURAL:$1|قيمة|قيمتان|قيمة}} لخصائص (الإجمالي)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|خصيصة|خصيصتان|$1 خصائص}}]] (الإجمالي)", + "smw-statistics-property-total-info": "إجمالي الخصائص المسجلة.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|خصيصة|خصيصتان|$1 خصائص}} (الإجمالي)", + "smw-statistics-property-used": "{{PLURAL:$1|خاصية|خصائص}} (مستخدمة مع قيمة واحدة على الأقل)", + "smw-statistics-property-page": "{{PLURAL:$1|خصيصة|خصيصتان|$1 خصائص}} (موصوفة بصفحات)", + "smw-statistics-property-page-info": "عدد الخصائص التي لها صفحة ووصف مخصص.", + "smw-statistics-property-type": "{{PLURAL:$1|خصيصة|خصيصتان|$1 خصائص}} (معيّن لها نوع بيانات)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|استعلام|استعلامات}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|استعلام|استعلامان|$1 استعلامات}}]] (مدمج، إجمالي)", + "smw-statistics-query-format": "صيغة $1", + "smw-statistics-query-size": "حجم الاستعلام", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|مفهوما|مفهومان|$1 مفهوما}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|مفهوما|مفهومان|$1 مفهوما}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|كيانا فرعيا|كيانان فرعيان|$1 كيانا فرعيا}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|كائن فرعي|كائنات فرعية}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|نوع بيانات|نوعي بيانات|$1 نوع بيانات}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|قيمة خاصية|قيم خواص}} ([[Special:ProcessingErrorList|{{PLURAL:$1|شرح غير مناسب|شروح غير مناسبة}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|قيمة خاصية|قيم خواص}} ({{PLURAL:$1|شرح مناسب|شروح مناسبة}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|كيان قديم|كيانات قديمة}}]", + "smw-statistics-delete-count-info": "ينبغي التخلص من الكيانات التي تم وضع علامة عليها للإزالة بشكل منتظم باستخدام نصوص الصيانة المقدمة.", + "smw_uri_doc": "ينفذ محلل URI العثور على [ $1 W3C TAG على httpRange-14].\nويضمن تسليم تمثيل RDF (للأجهزة) أو صفحة wiki (للبشر) اعتمادًا على الطلب.", + "ask": "بحث دلالي", + "smw-ask-help": "يحتوي هذا القسم على بعض الروابط للمساعدة في شرح كيفية استخدام صيغة #ask .\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages تحديد الصفحات] يصف كيفية تحديد الصفحات وبناء الشروط\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators عوامل البحث] تسرد عوامل البحث المتاحة بما في ذلك تلك الخاصة باستعلامات النطاق والبدلات\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information عرض المعلومات] يوضح استخدام عبارات الطباعة وخيارات التنسيق", + "smw_ask_sortby": "الترتيب حسب العمود (اختياري)", + "smw_ask_ascorder": "تصاعدي", + "smw_ask_descorder": "تنازلي", + "smw-ask-order-rand": "عشوائي", + "smw_ask_submit": "جِد نتائجًا", + "smw_ask_editquery": "[تعديل الاستعلام]", + "smw_add_sortcondition": "[أضف شرط ترتيب]", + "smw-ask-sort-add-action": "أضف شرط الفرز", + "smw_ask_hidequery": "إخفاء استعلام (عرض مدمج)", + "smw_ask_help": "مساعدة في الاستعلامات", + "smw_ask_queryhead": "شرط", + "smw_ask_printhead": "اختيار النسخة المطبوعة", + "smw_ask_printdesc": "(أدخل اسم خصيصة واحدة في كل سطر)", + "smw_ask_format_as": "أخرجه في صيغة:", + "smw_ask_defaultformat": "المبدئية", + "smw_ask_otheroptions": "خيارات أخرى", + "smw-ask-otheroptions-info": "يضمّ هذا القسم خيارات لتعديل شكل مخرجات البيانات. وصف المعاملات تمكن مطالعته بالتحويم فوق كل منها.", + "smw-ask-otheroptions-collapsed-info": "انقر علامة + لمطالعة كل الخيارات المتاحة", + "smw_ask_show_embed": "اعرض رموز التضمين", + "smw_ask_hide_embed": "أخفِ رموز التضمين", + "smw_ask_embed_instr": "لتضمين هذا الاستعلام في صفحة ويكي استخدم الرموز التالية.", + "smw-ask-delete": "إزالة", + "smw-ask-sorting": "الترتيب", + "smw-ask-options": "خيارات", + "smw-ask-options-sort": "خيارات الفرز", + "smw-ask-format-options": "التنسيق والخيارات", + "smw-ask-parameters": "وسائط", + "smw-ask-search": "بحث", + "smw-ask-debug": "تصحيح", + "smw-ask-debug-desc": "يولد معلومات تصحيح الاستعلام", + "smw-ask-no-cache": "تعطيل ذاكرة التخزين المؤقت للاستعلام", + "smw-ask-no-cache-desc": "النتائج بدون ذاكرة التخزين المؤقت للاستعلام", + "smw-ask-result": "النتيجة", + "smw-ask-empty": "محو جميع الإدخالات", + "smw-ask-download-link-desc": "تحميل النتائج الاستعلام بصيغة $1", + "smw-ask-format": "الصيغة", + "smw-ask-format-selection-help": "المساعدة في التنسيق المحدد: $1", + "smw-ask-condition-change-info": "تم تغيير الحالة ويحتاج محرك البحث إلى إعادة تشغيل الاستعلام لإنتاج نتائج تتوافق مع المتطلبات الجديدة.", + "smw-ask-input-assistance": "مساعدة الإدخال", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance مساعدة الإدخال] يتم توفيرها للطباعة، والفرز، وحقل الشرط، يتطلب حقل الشرط استخدام إحدى البادئات التالية:", + "smw-ask-condition-input-assistance-property": "p: لجلب اقتراحات خاصية (على سبيل المثال [[p:Has ...)", + "smw-ask-condition-input-assistance-category": "c: لجلب اقتراحات تصنيف", + "smw-ask-condition-input-assistance-concept": "con: لجلب اقتراحات مفهوم", + "smw-ask-format-change-info": "تم تعديل الصيغة وهي مطلوبة لتنفيذ الاستعلام مرة أخرى لمطابقة الوسائط وخيارات التصور الجديدة.", + "smw-ask-format-export-info": "الصيغة المحددة هي صيغة التصدير التي ليس لها تمثيل مرئي وبالتالي يتم توفير النتائج فقط كتنزيل.", + "smw-ask-query-search-info": "الاستعلام $1 was تم الرد عليه من قبل {{PLURAL:$3|1=$2 (من ذاكرة التخزين المؤقت)|$2 (من ذاكرة التخزين المؤقت)|$2}} في $4 {{PLURAL:$4|ثانية|ثواني}}.", + "smw-ask-extra-query-log": "سجل الاستعلام", + "smw-ask-extra-other": "أخرى", + "searchbyproperty": "البحث بالخصائص", + "processingerrorlist": "قائمة معالجة الخطأ", + "constrainterrorlist": "قائمة خطأ القيد", + "propertylabelsimilarity": "تقرير تشابه تسمية الخواص", + "missingredirectannotations": "تفتقد التعليقات التوضيحية للتحويلات", + "smw-processingerrorlist-intro": "توفر القائمة التالية نظرة عامة حول [https://www.semantic-mediawiki.org/wiki/Processing_errors معالجة الأخطاء] التي ظهرت في اتصال ب[https://www.semantic-mediawiki.org/ ميدياويكي الدلالي]، من المستحسن مراقبة هذه القائمة على أساس منتظم، وتصحيح شروح القيمة غير الصالحة.", + "smw-constrainterrorlist-intro": "توفر القائمة التالية نظرة عامة حول [https://www.semantic-mediawiki.org/wiki/Constraint_errors أخطاء القيد] التي ظهرت فيما يتعلق [https://www.semantic-mediawiki.org/ ميدياويكي الدلالي]، يُوصَى بمراقبة هذه القائمة بشكل منتظم وتصحيح التعليقات التوضيحية للقيم غير الصالحة.", + "smw-missingredirects-intro": "سيعرض القسم التالي الصفحات التي تفتقد تعليقات [https://www.semantic-mediawiki.org/wiki/Redirects تحويلات] في ميدياويكي الدلالي (من خلال المقارنة مع المعلومات المخزنة في ميدياويكي) واستعادة تلك التعليقات إما يدويا [https://www.semantic-mediawiki.org/wiki/Help:Purge تطهير] الصفحة أو تشغيل سكريبت الصيانة rebuildData.php (مع خيار --redirects).", + "smw-missingredirects-list": "الصفحات التي تحتوي على تعليقات توضيحية مفقودة", + "smw-missingredirects-list-intro": "عرض $1 {{PLURAL:$1|صفحة|صفحات}} مع عدم وجود توضيحات للتحويلات.", + "smw-missingredirects-noresult": "لم يتم العثور على تعليقات توضيحية مفقودة للتحويلات.", + "smw_sbv_docu": "البحث عن كل الصفحات ذات خصيصة معينة بقيمتها.", + "smw_sbv_novalue": "أدخل قيمة صحيحة للخصيصة، أو اعرض كل قيم الخصيصة \"$1\"", + "smw_sbv_displayresultfuzzy": "كل الصفحات ذات الخصيصة \"$1\" بالقيمة \"$2\".\nبما أنه وجد عدد قليل من النتائج فإن القيم المقاربة معروضة كذلك.", + "smw_sbv_property": "الخصيصة:", + "smw_sbv_value": "القيمة:", + "smw_sbv_submit": "جِد نتائجًا", + "browse": "تصفّح الويكي", + "smw_browselink": "تصفّح الخصائص", + "smw_browse_article": "أدخل اسم صفحة لبدء التصفح منها.", + "smw_browse_go": "اذهب", + "smw_browse_show_incoming": "عرض الخصائص الواردة", + "smw_browse_hide_incoming": "إخفاء الخصائص الواردة", + "smw_browse_no_outgoing": "هذه الصفحة ليست بها خصائص.", + "smw_browse_no_incoming": "لا خصائص تربط إلى هذه الصفحة.", + "smw-browse-from-backend": "يجري حاليًا استرجاع المعلومات من الواجهة الخلفية.", + "smw-browse-intro": "توفر هذه الصفحة تفاصيل حول نموذج موضوع أو كيان، يُرجَى إدخال اسم كائن ليتم تفتيشه.", + "smw-browse-invalid-subject": "التحقق من هذا الموضوع عاد مع الخطأ \"$1\" .", + "smw-browse-api-subject-serialization-invalid": "هذا الموضوع به صيغة تسلسل غير صالحة.", + "smw-browse-js-disabled": "يُشتبه في أن JavaScript معطل أو غير متاح. نوصي باستخدام متصفح يدعمه. تتم مناقشة الخيارات الأخرى في صفحة معلمات تكوين [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi ].", + "smw-browse-show-group": "عرض المجموعات", + "smw-browse-hide-group": "إخفاء المجموعات", + "smw-noscript": "تتطلب هذه الصفحة أو الإجراء تشغيل JavaScript. يُرجى تمكين JavaScript في متصفحك أو استخدام متصفح يدعمه، حتى يمكن توفير الوظيفة حسب الطلب. لمزيد من المساعدة، يُرجى إلقاء نظرة على صفحة المساعدة [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript].", + "smw_inverse_label_default": "$1 من", + "smw_inverse_label_property": "عنوان الخصيصة العكسية", + "pageproperty": "البحث في خصائص صفحة", + "pendingtasklist": "قائمة المهام المعلقة", + "smw_pp_docu": "إما أن تدخل صفحة أو خاصية، أو خاصية فقط لاسترداد جميع القيم المحددة.", + "smw_pp_from": "من صفحة:", + "smw_pp_type": "الخصيصة:", + "smw_pp_submit": "جِد نتائجًا", + "smw-prev": "{{PLURAL:$1|$1}} السابقة", + "smw-next": "{{PLURAL:$1|$1}} التالية", + "smw_result_prev": "السابق", + "smw_result_next": "اللاحق", + "smw_result_results": "النتائج", + "smw_result_noresults": "لا توجد نتائج.", + "smwadmin": "لوحة المعلومات (ميدياويكي الدلالي)", + "smw-admin-statistics-job-title": "إحصاءات العمل", + "smw-admin-statistics-job-docu": "تعرض إحصائيات الوظائف معلومات حول وظائف Semantic MediaWiki المجدولة التي لم يتم تنفيذها بعد. قد يكون عدد الوظائف غير دقيق إلى حد ما أو يحتوي على محاولات فاشلة. يرجى الرجوع إلى [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue manual] لمزيد من المعلومات.", + "smw-admin-statistics-querycache-title": "استعلام الذاكرة المخبأة", + "smw-admin-statistics-querycache-disabled": "لم يتم تفعيل [https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] على هذه الويكي، وبالتالي لا تتوفر أي إحصائيات.", + "smw-admin-statistics-querycache-legend": "إحصائيات ذاكرة التخزين المؤقت هي احتواء البيانات التراكمية المؤقتة وكذلك البيانات المشتقة بما في ذلك: \n* \"يخطئ\" كمجموع محاولات لاسترداد البيانات من ذاكرة التخزين المؤقت مع ردود غير قابلة للتحقيق، مما اضطر مستودع مباشر (دب، أو مخزن ثلاثي إلخ) للاسترجاع \n* \"حذف\" الإجمالي كمية عمليات إخلاء ذاكرة التخزين المؤقت (إما من خلال التطهير أو الاستعلام التبعية) \n*\" الزيارات \"يحتوي على كمية استرجاع ذاكرة التخزين المؤقت من إما جزءا لا يتجزأ من (الاستعلامات المسماه من داخل صفحة ويكي) أو غير المضمنة (إذا تم تمكينها، يتم طلبها بواسطة صفحات مثل المصادر Special:Ask أو API) \n* \"ميديانرتريفالريسبونزيتيمي\" هي قيمة توجيهية لوقت الاستجابة الوسيط (في ثانية) لطلبات الاسترجاع المخزنة مؤقتا وغير المخزنة مؤقتا خلال الفترة الزمنية لعملية التجميع \n* \"نوكاش\" يشير إلى كمية أي طلبات محاولة (الحد = 0 استعلام، خيار 'لا توجد ذاكرة تخزين مؤقت' إلخ) لاسترداد النتائج من ذاكرة التخزين المؤقت", + "smw-admin-statistics-section-explain": "يوفر القسم إحصائيات إضافية للإداريين.", + "smw-admin-statistics-semanticdata-overview": "نظرة عامة", + "smw-admin-permission-missing": "الوصول إلى هذه الصفحة قد تم حظره بسبب صلاحيات مفقودة; يُرجَى الرجوع إلى صفحة المساعدة [https://www.semantic-mediawiki.org/wiki/Help:Permissions صلاحيات] لمزيد من التفاصيل حول الإعدادات اللازمة.", + "smw-admin-setupsuccess": "تم تنصيب محرك تخزين", + "smw_smwadmin_return": "ارجع إلى $1", + "smw_smwadmin_updatestarted": "إجراء تحديث البيانات الدلالية قد بدأ.\nكل البيانات المخزنة ستجري إعادة بنائها أو إصلاحها حسب الحاجة.\nيمكنك متابعة تطور التحديث على هذه الصفحة الخاصة.", + "smw_smwadmin_updatenotstarted": "توجد بالفعل عملية تحديث جارية.\nلا تبدأ غيرها.", + "smw_smwadmin_updatestopped": "كل عمليات التحديث الجارية تم إيقافها", + "smw_smwadmin_updatenotstopped": "لوقف عملية التحديث الجارية يجب عليك التأشير في الصندوق للتوكيد.", + "smw-admin-docu": "هذه الصفحة الخاصة تساعدك خلال تنصيب وترقية وصيانة واستخدام < href=\"https://www.semantic-mediawiki.org\">ميدياويكي الدلالية\nوتوفر أيضًا المزيد من الوظائف والمهام الإدارية وكذلك إحصاءات.\nتذكر أن تحفظ احتياطيا البيانات القيمة قبل إجراء وظائف إدارية", + "smw-admin-environment": "بيئة البرمجيات", + "smw-admin-db": "إعداد قاعدة البيانات", + "smw-admin-db-preparation": "تهيئة الجدول مستمرة وربما تستغرق ثانية قبل عرض نتائج بانتظار الحجم والتحسينات الممكنة للجدول.", + "smw-admin-dbdocu": "يتطلب ميدياويكي الدلالي بنية قاعدة البيانات الخاصة به (وهي مستقلة عن ميدياويكي وبالتالي لا تؤثر على بقية تثبيت ميدياويكي) من أجل تخزين البيانات الدلالية. \nيمكن تنفيذ وظيفة الإعداد هذه عدة مرات دون إلحاق أي ضرر، ولكنها مطلوبة مرة واحدة فقط عند التثبيت أو الترقية.", + "smw-admin-permissionswarn": "إذا فشلت العملية بأخطاء SQL، مستخدم قاعدة البيانات المستخدمة من قبل الويكي الخاص بك (تحقق من ملف \"LocalSettings.php\" الخاص بك) ربما ليست لديه صلاحيات كافية;\nامنح هذا المستخدم صلاحيات إضافية لإنشاء الجداول وحذفها أو إدخال تسجيل الدخول لجذر قاعدة البيانات مؤقتا في ملف \"LocalSettings.php\"، أو استخدام كود الصيانة setupStore.php، والذي يمكنه استخدام بيانات الاعتماد من إداري.", + "smw-admin-dbbutton": "تهيئة أو ترقية الجداول", + "smw-admin-announce": "أعلن عن هذه الويكي", + "smw-admin-announce-text": "إذا الويكي الخاص بك عامًا، يمكنك تسجيله على WikiApiary،\nويكي تتبع الويكي.", + "smw-admin-deprecation-notice-title": "إشعارات الانتقاص", + "smw-admin-deprecation-notice-docu": "القسم التالي يحتوي على الإعدادات التي تم إيقافها أو إزالتها ولكن تم الكشف عنها لتكون نشطة في هذا الويكي، من المتوقع أن أي إصدار مستقبلي سيزيل الدعم لهذه التكوينات.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] تم إهماله وستتم إزالته في $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] سيزيل (أو يستبدل) {{PLURAL:$2|الخيار التالي|الخيارات التالية}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 يتم إهماله وستتم إزالته في $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] تم استبداله ب[https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] أُستبدل بـ $2", + "smw-admin-deprecation-notice-config-replacement-option": "{{PLURAL:$2|خيار|خيارات}} [https://www.semantic-mediawiki.org/wiki/Help:$1 $1] :", + "smw-admin-deprecation-notice-config-replacement-option-list": "يتم استبدال $1 بـ$2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] أُزيل في $2", + "smw-admin-deprecation-notice-title-notice": "التغييرات القادمة", + "smw-admin-deprecation-notice-title-notice-explanation": "تم اكتشاف الإعدادات التالية ليتم استخدامها على هذا الويكي ومن المقرر إزالتها أو تغييرها في إصدار مستقبلي.", + "smw-admin-deprecation-notice-title-replacement": "الإعدادات التي تم استبدالها أو إعادة تسميتها", + "smw-admin-deprecation-notice-title-replacement-explanation": "يحتوي القسم التالي على الإعدادات التي تمت إعادة تسميتها أو تعديلها بطريقة أخرى، ويُوصَى بتحديث اسمها أو تنسيقها فورا.", + "smw-admin-deprecation-notice-title-removal": "تمت إزالة الإعدادات", + "smw-admin-deprecation-notice-title-removal-explanation": "تمت إزالة الإعدادات المدرجة في إصدار سابق ولكن تم اكتشافها حتى الآن لاستخدامها على هذا الويكي.", + "smw-admin-deprecation-notice-section-legend": "عنوان تفسيري", + "smw-smwadmin-refresh-title": "إصلاح وتحديث البيانات", + "smw_smwadmin_datarefresh": "إعادة بناء البيانات", + "smw_smwadmin_datarefreshdocu": "من الممكن استرجاع كل بيانات ميدياويكي الدلالية بناء على المحتويات الحالية للويكي.\nقد يكون هذا مفيدا لإصلاح البيانات المعطوبة أو لتحديث البيانات في حال تغيّرت الصيغة الداخلية بسبب ترقية برمجية.\nالتحديث يتم إجراؤه صفحة بصفحة ولن يتم لحظيا.\nالتالي يعرض ما إذا كان التحديث يجري و يسمح لك ببدء أو وقف التحديثات (إلا لو كانت هذه الوظيفة قد عطّلها مدير الموقع).", + "smw_smwadmin_datarefreshprogress": "يوجد تحديث جارٍ بالفعل.\nمن الطبيعي أن تتقدم عمليات التحديث ببطء بما أنها تجري على البيانات بكميات صغيرة كل مرة يستخدم فيها شخص ما الويكي.\nلإتمام التحديث سريعا يمكنك تشغيل سكربت صيانة ميدياويكي runJobs.php (استخدم الخيار --maxjobs 1000 لتحديد عدد التحديثات المجراة في كل دفعة).\nالتقدم التقديري للتحديث الحالي:", + "smw_smwadmin_datarefreshbutton": "إعادة بناء بيانات الجدول الزمني", + "smw_smwadmin_datarefreshstop": "أوقف هذا التحديث", + "smw_smwadmin_datarefreshstopconfirm": "نعم، أنا {{GENDER:$1|متأكد|متأكدة}}.", + "smw-admin-job-scheduler-note": "يتم تنفيذ المهام (التي تم تمكينها) في هذا القسم من خلال قائمة انتظار المهام لتجنب حالات توقف تام أثناء تنفيذها، [https://www.mediawiki.org/wiki/Manual:Job_queue قائمة انتظار المهام] هي المسئولة عن المعالجة ومن الأهمية بمكان أن سكريبت الصيانة runJobs.php لديه سعة مناسبة (راجع أيضا وسيط التكوين $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "التخلص من الكيانات التي عفا عليها الزمن", + "smw-admin-outdateddisposal-intro": "بعض الأنشطة (تغيير نوع الخاصية، أو إزالة صفحات الويكي، أو تصحيح قيم خاطئة) ينتج في [https://www.semantic-mediawiki.org/wiki/Outdated_entities الكيانات التي عفا عليها الزمن] وتُقترَح إزالتها بشكل دوري لتحرير مساحة الجدول المرتبط.", + "smw-admin-outdateddisposal-active": "لقد تمت جدولة مهمة التخلص من الكيانات القديمة.", + "smw-admin-outdateddisposal-button": "التخلص من الجدول الزمني", + "smw-admin-feature-disabled": "تم تعطيل هذه الميزة في هذا الويكي; يرجى الرجوع إلى صفحة المساعدة الإعدادات settings أو اتصل بإداري النظام.", + "smw-admin-propertystatistics-title": "إعادة بناء إحصاءات الخاصية", + "smw-admin-propertystatistics-intro": "يعيد بناء إحصائيات استخدام الخاصية بأكملها بما فيها التحديثات ويصحح [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count عدد استخدام] الخصائص.", + "smw-admin-propertystatistics-active": "تمت جدولة مهمة إعادة بناء إحصائيات الخاصية.", + "smw-admin-propertystatistics-button": "إعادة بناء إحصاءات الجدول الزمني", + "smw-admin-fulltext-title": "بحث إعادة بناء النص الكامل", + "smw-admin-fulltext-intro": "إعادة إنشاء فهرس البحث من جداول الخصائص مع تمكين [https://www.semantic-mediawiki.org/wiki/Full-text البحث عن النص الكامل]، التغييرات التي تطرأ على قواعد الفهرس (ستوبوردز المتغيرة، ستيمر الجديدة إلخ) و/أو الجدول المضاف أو المتبدل حديثا يتطلب تشغيل هذه المهمة مرة أخرى.", + "smw-admin-fulltext-active": "تمت جدولة مهمة إعادة بناء البحث عن نص كامل.", + "smw-admin-fulltext-button": "إعادة بناء جدولة النص الكامل", + "smw-admin-support": "الحصول على دعم", + "smw-admin-supportdocu": "يتم توفير موارد مختلفة لمساعدتك في حالة حدوث مشاكل:", + "smw-admin-installfile": "لو واجهتك مشاكل مع تنصيبتك فابدأ بمراجعة الإرشادات في https://github.com/SemanticMediaWiki/SemanticMediaWiki/blob/master/docs/INSTALL.md\">INSTALL file and the صفحة التثبيت.", + "smw-admin-smwhomepage": "وثائق الاستخدام الكاملة لميدياويكي الدلالية موجودة في semantic-mediawiki.org.", + "smw-admin-bugsreport": "الأخطاء يمكن الإبلاغ عنها في ، ، توفر صفحة الإبلاغ عن الأخطاء بعض الإرشادات حول كيفية كتابة تقرير مشكلة فعال.", + "smw-admin-questions": "إذا كانت لديك أسئلة أو اقتراحات أخرى، فقم بالانضمام إلى المناقشة في قائمة بريد مستخدم ميدياويكي الدلالي.", + "smw-admin-other-functions": "وظائف أخرى", + "smw-admin-statistics-extra": "الدوال الإحصائية", + "smw-admin-statistics": "إحصاءات", + "smw-admin-supplementary-section-title": "وظائف إضافية", + "smw-admin-supplementary-section-subtitle": "الوظائف الأساسية المدعومة", + "smw-admin-supplementary-section-intro": "يوفر هذا القسم وظائف إضافية خارج نطاقأنشطة الصيانة ومن الممكن أن تكون بعض الوظائف المسردة (انظر [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions التوثيق]) مقيدة أو غير متاحة وبالتالي لا يمكن الوصول إليها في هذا الويكي.", + "smw-admin-supplementary-settings-title": "إعدادات التكوين", + "smw-admin-supplementary-settings-intro": "$1 يسرد الإعدادات المستخدمة في ميدياويكي الدلالي", + "smw-admin-main-title": "ميدياويكي الدلالي » $1", + "smw-admin-supplementary-operational-statistics-title": "الإحصاءات التشغيلية", + "smw-admin-supplementary-operational-statistics-short-title": "الإحصاءات التشغيلية", + "smw-admin-supplementary-operational-statistics-intro": "يعرض مجموعة ممتدة من $1", + "smw-admin-supplementary-idlookup-title": "البحث عن الكيانات والتخلص منها", + "smw-admin-supplementary-idlookup-short-title": "البحث عن الكيانات والتخلص منها", + "smw-admin-supplementary-idlookup-intro": "يدعم وظيفة $1 بسيطة", + "smw-admin-supplementary-duplookup-title": "بحث كيانات مكررة", + "smw-admin-supplementary-duplookup-intro": "$1 للعثور على الكيانات المصنفة على أنها مكررة في مصفوفة الجداول المختارة", + "smw-admin-supplementary-duplookup-docu": "تعرض هذه الصفحة مدخلات من الجداول المحددة التي تم تصنيفها على أنها [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities مكررة]، يجب أن تحدث إدخالات مكررة (على سبيل المثال) فقط في حالات نادرة من المحتمل حدوثها بسبب تحديث تم إنهاؤه أو تضمين استرجاع غير ناجح.", + "smw-admin-supplementary-operational-statistics-cache-title": "إحصائيات ذاكرة التخزين المؤقت", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 يعرض مجموعة محددة من الإحصائيات متعلقة بذاكرة التخزين المؤقت", + "smw-admin-supplementary-operational-table-statistics-title": "إحصائيات الجدول", + "smw-admin-supplementary-operational-table-statistics-short-title": "إحصائيات الجدول", + "smw-admin-supplementary-operational-table-statistics-intro": "ينشئ $1 لمجموعة محددة من الجداول", + "smw-admin-supplementary-operational-table-statistics-explain": "يحتوي هذا القسم على إحصائيات محددة للجدول لمساعدة الإداريين وقيم البيانات على اتخاذ قرارات مستنيرة بشأن هذه الحالة لنهاية العملية ومحرك التخزين.", + "smw-admin-supplementary-operational-table-statistics-legend": "توضح وسيلة الإيضاح بعض المفاتيح المستخدمة لإحصائيات الجدول وتتضمن:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count إجمالي عدد الصفوف في الجدول", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id آخر معرف مستخدم حاليًا\n* duplicate_count عدد التكرارات الموجودة في جدول المعرفات (انظر أيضًا [[Special:SemanticMediaWiki/duplicate-lookup|بحث عن الكيانات المكررة]])\n* rows.rev_count عدد الصفوف التي تم تعيين revision_id لها مما يشير إلى ارتباط مباشر بصفحة ويكي\n* rows.smw_namespace_group_by_count عدد الصفوف المجمعة لمساحات الأسماء المستخدمة في الجدول\n* rows.smw_proptable_hash.query_match_count عدد الكائنات الفرعية للاستعلام مع مرجع جدول مطابق\n* rows.smw_proptable_hash.query_null_count عدد الكائنات الفرعية للاستعلام بدون مرجع جدول (مرجع عائم غير مرتبط)", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent نسبة المصطلحات الفريدة (يشير معدل النسبة المئوية المنخفض إلى أن المصطلحات المتكررة تشغل محتوى الجدول والفهرس)\n* rows.terms_occurrence.single_occurrence_total_count عدد المصطلحات التي تظهر مرة واحدة فقط\n* rows.terms_occurrence.multi_occurrence_total_count عدد المصطلحات التي تظهر أكثر من مرة", + "smw-admin-supplementary-elastic-title": "إلاستيك سيرش", + "smw-admin-supplementary-elastic-version-info": "معلومات الإصدار", + "smw-admin-supplementary-elastic-section-subtitle": "إلاستيك سيرش", + "smw-admin-supplementary-elastic-intro": "$1 يعرض تفاصيل عن إعدادات وإحصائيات الفهرس", + "smw-admin-supplementary-elastic-docu": "تحتوي هذه الصفحة على معلومات حول الإعدادات والتعيينات والصحة وإحصائيات الفهرس المتعلقة بمجموعة البحث المرن المرتبطة بميدياويكي الدلالي و[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "الوظائف المدعومة", + "smw-admin-supplementary-elastic-settings-title": "إعدادات", + "smw-admin-supplementary-elastic-settings-intro": "تُستخدَم $1 بواسطة البحث المرن لإدارة فهارس ميدياكيكي الدلالي", + "smw-admin-supplementary-elastic-mappings-title": "التعيينات", + "smw-admin-supplementary-elastic-mappings-intro": "$1 لسرد الفهارس وتعيينات الحقل", + "smw-admin-supplementary-elastic-mappings-docu": "تحتوي هذه الصفحة على تفاصيل تعيين الحقول المستخدمة مع الفهرس الحالي، من المستحسن مراقبة الخرائط المرتبطة بـindex.mapping.total_fields.limit (يحدد الحد الأقصى المسموح به لعدد الحقول في الفهرس).", + "smw-admin-supplementary-elastic-mappings-docu-extra": "property_fields يشير إلى عدد حقول القلب المفهرسة بينما nested_fields يشير إلى عدد تراكمي للحقول الإضافية المضافة إلى حقل قلب من أجل دعم أنماط بحث هيكلي محددة.", + "smw-admin-supplementary-elastic-mappings-summary": "الملخص", + "smw-admin-supplementary-elastic-mappings-fields": "خريطة الحقول", + "smw-admin-supplementary-elastic-nodes-title": "العقد", + "smw-admin-supplementary-elastic-nodes-intro": "يعرض $1 إحصائيات العقدة", + "smw-admin-supplementary-elastic-indices-title": "الفهارس", + "smw-admin-supplementary-elastic-indices-intro": "يقدم $1 نظرة عامة على الفهارس المتاحة وإحصاءاتها", + "smw-admin-supplementary-elastic-statistics-title": "الإحصاءات", + "smw-admin-supplementary-elastic-statistics-intro": "يعرض $1 مستوى الفهرس", + "smw-admin-supplementary-elastic-statistics-docu": "تقدم هذه الصفحة إحصاءات حول إحصائيات الفهارس الخاصة بالعمليات المختلفة التي تحدث على مستوى الفهرس، حيث يتم تجميع الإحصائيات المرتجعة مع المجموعات التمهيدية والإجمالية، تحتوي صفحة [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html صفحة المساعدة] على وصف مفصل لإحصاءات الفهارس المتاحة.", + "smw-admin-supplementary-elastic-status-replication": "حالة النسخ المتماثل", + "smw-admin-supplementary-elastic-status-last-active-replication": "آخر عملية نسخ متماثل نشطة: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "فاصل التحديث: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "تراكم وظيفة الاسترداد: $1 (تقدير)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "تراكم مهام الاستيعاب (الملف): $1 (تقدير)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "تم قفل النسخ المتماثل: $1 (إعادة البناء قيد التقدم)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "مراقبة التكرار (نشط): $1", + "smw-admin-supplementary-elastic-replication-header-title": "حالة النسخ المتماثل", + "smw-admin-supplementary-elastic-replication-function-title": "استنساخ", + "smw-admin-supplementary-elastic-replication-intro": "$1 عرض معلومات حول النسخ المتماثل الفاشلة", + "smw-admin-supplementary-elastic-replication-docu": "توفر هذه الصفحة معلومات حول [https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring حالة النسخ المتماثل] للكيانات التي تم الإبلاغ عن احتوائها على مشكلات في مجموعة إلاستيك سيرش، يُوصَى بمراجعة الكيانات المدرجة في القائمة وتطهير المحتوى من أجل تأكيد أنها كانت مشكلة مؤقتة.", + "smw-admin-supplementary-elastic-replication-files-docu": "تجدر الإشارة إلى أنه بالنسبة لقائمة الملفات، يلزم تنفيذ المهمة [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion استيعاب الملف] أولا ويجب أن تنتهي من معالجتها.", + "smw-admin-supplementary-elastic-replication-files": "ملفات", + "smw-admin-supplementary-elastic-replication-pages": "صفحات", + "smw-admin-supplementary-elastic-endpoints": "نقاط النهاية", + "smw-admin-supplementary-elastic-config": "الضبط", + "smw-admin-supplementary-elastic-no-connection": "'''يتعذر''' على الويكي حاليا إنشاء اتصال بمجموعة إلاستيك سيرش؛ يُرجَى الاتصال بإداري الويكي للتحقيق في المشكلة لأنه يعطل قدرة النظام على البحث والاستعلام.", + "smw-list-count": "تحتوي القائمة على $1 {{PLURAL:$1|إدخال واحد|إدخالات}}.", + "smw-property-label-uniqueness": "تمت مطابقة التصنيف \"$1\" مع تمثيل خاصية أخرى واحدة على الأقل، يُرجَى الرجوع إلى [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness صفحة المساعدة] حول كيفية حل هذه المشكلة.", + "smw-property-label-similarity-title": "تقرير تشابه تسمية الخواص", + "smw-property-label-similarity-intro": "$1 يحسب تشابهات تسميات الخواص الموجودة", + "smw-property-label-similarity-threshold": "عتبة:", + "smw-property-label-similarity-type": "عرض معرف النوع", + "smw-property-label-similarity-noresult": "لم يتم العثور على نتائج الخيارات المحددة.", + "smw-property-label-similarity-docu": "تقارن هذه الصفحات [https://www.semantic-mediawiki.org/wiki/Property_similarity مسافة التشابه] (يجب عدم الخلط بينها وبين التشابه الدلالي أو المعجمي) بين تسميات الخواص والإبلاغ عنها إذا تجاوزت الحد، قد يساعد التقرير في تصفية الخصائص التي تحتوي على أخطاء إملائية أو مكافئة والتي تمثل نفس المفهوم (راجع الصفحة الخاصة [[Special:Properties|خواص]] للمساعدة في توضيح مفهوم واستخدام الخصائص المبلغ عنها)، يمكن ضبط الحد لتوسيع أو تضييق المسافة المستخدمة في المطابقة التقريبية، يتم استخدام [[Property:$1|$1]] لإعفاء الخصائص من التحليل.", + "smw-admin-operational-statistics": "تحتوي هذه الصفحة على إحصاءات تشغيلية تم جمعها في أو من المهام ذات الصلة بميدياويكي الدلالي، يمكن الاطلاع على قائمة طويلة بالإحصاءات المحددة [[Special:Statistics|هنا]].", + "smw_adminlinks_datastructure": "هيكل البيانات", + "smw_adminlinks_displayingdata": "عرض البيانات", + "smw_adminlinks_inlinequerieshelp": "المساعدة المضمنة للاستعلامات", + "smw-page-indicator-usage-count": "[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count عدد الاستخدام] المقدر: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "{{PLURAL:$1|مستخدم|نظام}} حدد خاصية", + "smw-property-indicator-last-count-update": "عدد الاستخدام المقدر\nآخر تحديث: $1", + "smw-concept-indicator-cache-update": "عدد ذاكرة التخزين المؤقت\nآخر تحديث: $1", + "smw-createproperty-isproperty": "هذه خاصية من نوع $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1||القيمة المسموح بها لهذه الخصيصة هي|القيمتان المسموح بهما لهذه الخصيصة هما|القيم المسموح بها لهذه الخصيصة هي}}:", + "smw-paramdesc-category-delim": "الفاصلة", + "smw-paramdesc-category-template": "قالب يستخدم لتنسيق العناصر به", + "smw-paramdesc-category-userparam": "معامل يمرر إلى القالب", + "smw-info-par-message": "رسالة لعرضها", + "smw-info-par-icon": "أيقونة تظهر، إما \"info\" أو \"warning\".", + "prefs-smw": "ميدياويكي الدلالية", + "prefs-general-options": "خيارات عامة", + "prefs-extended-search-options": "بحث موسع", + "prefs-ask-options": "البحث الدلالي", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ ميدياويكي الدلالي] والإضافات المرتبطة توفر تفضيلات فردية لمجموعة من الميزات والوظائف المحددة، تتوفر قائمة بالإعدادات الفردية مع وصفها وخصائصها على [https://www.semantic-mediawiki.org/wiki/Help:User_preferences صفحة المساعدة].", + "smw-prefs-ask-options-tooltip-display": "اعرض نص المعامل كبالون تلميحة #ask [[Special:Ask|query builder]]", + "smw-prefs-ask-options-compact-view-basic": "تمكين العرض المضغوط الأساسي", + "smw-prefs-help-ask-options-compact-view-basic": "في حالة التمكين ، تعرض مجموعة من الروابط في عرض خاص:سؤال المضغوط.", + "smw-prefs-general-options-time-correction": "تمكين تصحيح الوقت لصفحات خاصة باستخدام تفضيل [[Special:Preferences#mw-prefsection-rendering|تعويض الوقت]] المحلي.", + "smw-prefs-general-options-jobqueue-watchlist": "عرض قائمة انتظار قائمة مراقبة الوظائف في شريطي الشخصي", + "smw-prefs-help-general-options-jobqueue-watchlist": "في حالة التمكين، يعرض [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist قائمة] انتظار المهام المحددة مع أحجام قوائم انتظارهم المقدرة.", + "smw-prefs-general-options-disable-editpage-info": "تعطيل النص التمهيدي في صفحة التعديل", + "smw-prefs-general-options-disable-search-info": "تعطيل معلومات دعم بناء الجملة في صفحة البحث القياسية", + "smw-prefs-general-options-suggester-textinput": "تمكين مساعدة المدخلات لاقتراحات الكيانات الدلالية", + "smw-prefs-help-general-options-suggester-textinput": "في حالة التمكين، يسمح باستخدام [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance مساعدة المدخلات] للبحث عن الخصائص والمفاهيم والتصنيفات من سياق المدخلات.", + "smw-ui-tooltip-title-property": "الخصيصة", + "smw-ui-tooltip-title-quantity": "تحويل الوحدة", + "smw-ui-tooltip-title-info": "معلومات", + "smw-ui-tooltip-title-service": "وصلات خدمية", + "smw-ui-tooltip-title-warning": "تحذير", + "smw-ui-tooltip-title-error": "خطأ", + "smw-ui-tooltip-title-parameter": "معامل", + "smw-ui-tooltip-title-event": "حدث", + "smw-ui-tooltip-title-note": "ملاحظة", + "smw-ui-tooltip-title-legend": "مفتاح الشكل", + "smw-ui-tooltip-title-reference": "مرجع", + "smw_unknowntype": "نوع هذه الخاصية \"$1\" غير صالح", + "smw-concept-cache-text": "المفهوم لديه ما مجموعه $1 {{PLURAL:$1|صفحة|صفحات}}، وكان آخر تحديث $3، $2.", + "smw_concept_header": "صفحات المفهوم \"$1\"", + "smw_conceptarticlecount": "عرض {{PLURAL:$1||صفحة واحدة تنتمي|صفحتين تنتميان|$1 صفحات تنتمي|$1 صفحة تنتمي}} أسفله.", + "smw-qp-empty-data": "لا يمكن عرض البيانات المطلوبة لأن بعض معايير الاختيار غير كافية.", + "right-smw-admin": "الوصول للمهام الإدارية (ميدياويكي الدلالي)", + "right-smw-patternedit": "تحرير الوصول إلى الحفاظ على التعبيرات النمطية والأنماط المسموح بها (ميدياويكي الدلالي)", + "right-smw-pageedit": "تحرير الوصول للصفحات المشروحة هل التحرير محمي (ميدياويكي الدلالي)", + "restriction-level-smw-pageedit": "محمية (المستخدمون المؤهلون فقط)", + "action-smw-patternedit": "تعديل التعابير النمطية المستخدمة من قبل ميدياويكي الدلالي", + "action-smw-pageedit": "تحرير الصفحات المشروحة بهل التحرير محمي (ميدياويكي الدلالي)", + "group-smwadministrator": "الإداريون (ميدياويكي الدلالي)", + "group-smwadministrator-member": "{{GENDER:$1|إداري (ميدياويكي الدلالي)}}", + "grouppage-smwadministrator": "{{ns:project}}:الإداريون (ميدياويكي الدلالي)", + "group-smwcurator": "القيمون (ميدياويكي الدلالي)", + "group-smwcurator-member": "{{GENDER:$1|قيمون (ميدياويكي الدلالي)}}", + "grouppage-smwcurator": "{{ns:project}}:قيمون (ميدياويكي الدلالي)", + "group-smweditor": "المحررون (ميدياويكي الدلالية)", + "action-smw-admin": "الوصول للمهام الإدارية في ميدياويكي الدلالي", + "action-smw-ruleedit": "تحرير صفحات القاعدة (ميدياويكي الدلالي)", + "smw-property-predefined-default": "\"$1\" هي خاصية محددة مسبقا $2.", + "smw-property-predefined-common": "هذه الخاصية سبق نشرها (معروفة أيضًا باسم [https://www.semantic-mediawiki.org/wiki/Help:Special_properties خاصية خاصة])، وتأتي مع امتيازات إدارية إضافية ولكن يمكن استخدامها تمامًا مثل أية [https://www.semantic-mediawiki.org/wiki/Property خاصية معرفة من قبل المستخدم].", + "smw-property-predefined-ask": "\"$1\" هي خاصية معرفة مسبقًا تمثل المعلومات الوصفية (في شكل [https://www.semantic-mediawiki.org/wiki/Subobject كائن فرعي]) حول استعلامات فردية ويتم توفيرها من قبل [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-asksi": "\"$1\" هي خاصية معرفة مسبقًا تجمع عددًا من الشروط المستخدمة في استعلام ويتم توفيرها من قبل [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-askde": "\"$1\" هي خاصية معرفة مسبقًا تخبر بشأن عمق الاستعلام ويتم توفيرها من قبل [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-long-askde": "عبارة عن قيمة رقمية يتم حسابها على أساس تعشيش الاستعلام الفرعي وسلاسل الخاصية وعناصر الوصف المتاحة مع تنفيذ استعلام مقيد بواسطة تكوين وسيط [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-property-predefined-askpa": "\"$1\" هي خاصية محددة مسبقًا تصف الوسائط التي تؤثر على نتيجة الاستعلام ويتم توفيرها من قبل [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-long-askpa": "هو جزء من مجموعة الخصائص التي تحدد [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler الملف الشخصي للاستعلام].", + "smw-sp-properties-docu": "تسرد هذه الصفحة [https://www.semantic-mediawiki.org/wiki/Property الخصائص] وعدد استخداماتها المتاحة لهذا الويكي، للحصول على إحصاءات حديثة فمن المستحسن أن يتم تشغيل سكريبت الصيانة [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics إحصاءات الخاصية] على أساس منتظم، للاطلاع على عرض مختلف; راجع الصفحات الخاصة [[Special:UnusedProperties|خصائص غير مستخدمة]] أو [[Special:WantedProperties|مطلوبة]].", + "smw-sp-properties-cache-info": "تم استرداد البيانات المدرجة من [https://www.semantic-mediawiki.org/wiki/Caching النسخة المخبأة]، وكان آخر تحديث $1.", + "smw-sp-properties-header-label": "قائمة خصائص", + "smw-admin-settings-docu": "يعرض قائمة بكافة الإعدادات الافتراضية والمحلية ذات الصلة بيئة ميدياويكي الدلالية، للحصول على تفاصيل حول الإعدادات الفردية; يُرجىَ الرجوع إلى صفحة المساعدة [https://www.semantic-mediawiki.org/wiki/Help:Configuration تكوين].", + "smw-sp-admin-settings-button": "توليد قائمة إعدادات", + "smw-admin-idlookup-title": "ابحث عن", + "smw-admin-idlookup-docu": "يعرض هذا القسم التفاصيل الفنية عن كيان فردي (صفحة ويكي، كائن فرعي، خاصية، إلخ) في ميدياويكي الدلالي، يمكن أن يكون الإدخال معرفا رقميا أو قيمة سلسلة ليتطابق مع حقل البحث ذي الصلة، ومع ذلك، فإن أي مرجع معرف يتعلق بميدياويكي الدلالي وليس بصفحة أو معرف مراجعة ميدياويكي.", + "smw-admin-iddispose-title": "تصرف", + "smw-admin-iddispose-docu": "تجدر الإشارة إلى أن عملية التخلص غير مقيدة وستقوم بإزالة الكيان من محرك التخزين بجميع مراجعه في الجداول المعلقة، إذا تم تأكيدها، الرجاء تنفيذ هذه المهمة '''بحذر''' وفقط بعد الاطلاع على [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal التوثيق].", + "smw-admin-iddispose-done": "تمت إزالة المعرف \"$1\" من الواجهة الخلفية للتخزين.", + "smw-admin-iddispose-references": "المعرف \"$1\" {{PLURAL:$2|لا يحتوي على مرجع نشط|يحتوي على مرجع نشط واحد على الأقل}}:", + "smw-admin-iddispose-references-multiple": "قائمة المطابقات مع سجل مرجع نشط واحد على الأقل.", + "smw-admin-iddispose-no-references": "لم يتمكن البحث من مطابقة \"$1\" إلى إدخال جدول.", + "smw-admin-idlookup-input": "بحث:", + "smw-admin-objectid": "معرف:", + "smw-admin-tab-general": "نظرة عامة", + "smw-admin-tab-notices": "إشعارات انتقاص", + "smw-admin-tab-maintenance": "الصيانة", + "smw-admin-tab-supplement": "وظائف إضافية", + "smw-admin-tab-registry": "سجل", + "smw-admin-tab-alerts": "الإشعارات", + "smw-admin-alerts-tab-deprecationnotices": "إشعارات الانتقاص", + "smw-admin-alerts-tab-maintenancealerts": "إخطارات الصيانة", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "كيانات غير محدثة", + "smw-admin-maintenancealerts-invalidentities-alert-title": "عنوان غير صالح", + "smw-admin-deprecation-notice-section": "ميدياويكي الدلالي", + "smw-admin-configutation-tab-settings": "إعدادات", + "smw-admin-configutation-tab-namespaces": "النطاقات", + "smw-admin-maintenance-tab-tasks": "مهام", + "smw-admin-maintenance-tab-scripts": "سكريبتات الصيانة", + "smw-admin-maintenance-no-description": "بدون وصف.", + "smw-admin-maintenance-script-section-title": "قائمة سكريبتات الصيانة المتاحة", + "smw-admin-maintenance-script-section-intro": "تتطلب سكريبتات الصيانة التالية إداريا والوصول إلى سطر الأوامر لتتمكن من تنفيذ السكريبتات المدرجة.", + "smw-admin-maintenance-script-description-dumprdf": "تصدير RDF الثلاثي الحالي.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "يتم استخدام هذا السكريبت في إدارة مخابئ المفاهيم لميدياويكي الدلالي حيث يمكن إنشاء، وإزالة ، وتحديث ذاكرات مختارة.", + "smw-admin-maintenance-script-description-rebuilddata": "يعيد إنشاء جميع البيانات الدلالية في قاعدة البيانات، عن طريق ركوب الدراجات من خلال جميع الصفحات التي قد تحتوي على بيانات دلالية.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "يعيد إنشاء فهرس إلاستيك سيرش (للتركيبات التي تستخدم ElasticStore فقط)، عن طريق ركوب الدراجات من خلال جميع الكيانات التي لديها بيانات دلالية.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "ابحث عن الكيانات المفقودة في إلاستيك سيرش (فقط للتركيبات التي تستخدم ElasticStore) وجدولة مهام التحديث المناسبة.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "إعادة بناء فهرس البحث النصي الكامل SQLStore (للتثبيتات التي تم تمكين الإعداد فيها).", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "يعيد بناء إحصائيات الاستخدام لجميع كيانات الخواص.", + "smw-admin-maintenance-script-description-removeduplicateentities": "يزيل الكيانات المكررة الموجودة في الجداول المحددة التي لا تحتوي على مراجع نشطة.", + "smw-admin-maintenance-script-description-setupstore": "يقوم بإعداد خلفية التخزين المحددة في LocalSettings.php.", + "smw-admin-maintenance-script-description-updateentitycollation": "يحدث الحقل smw_sort في SQLStore (وفقا لإعداد [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation]).", + "smw-admin-maintenance-script-description-populatehashfield": "يعبئ حقل smw_hash للصفوف التي تفتقد إلى القيمة.", + "smw-admin-maintenance-script-description-purgeentitycache": "إزالة إدخالات ذاكرة التخزين المؤقت للكيانات المعروفة والبيانات المرتبطة بها.", + "smw-admin-maintenance-script-description-updatequerydependencies": "تحديث الاستعلامات وتبعيات الاستعلام (راجع الإعداد [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore]).", + "smw-admin-maintenance-script-section-update": "تحديث السكربتات", + "smw-admin-maintenance-script-section-rebuild": "إعادة بناء السكربتات", + "smw-livepreview-loading": "جارٍ التحميل...", + "smw-sp-searchbyproperty-description": "توفر هذه الصفحة [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces واجهة تصفح] بسيطة للعثور على كيانات تم وصفها بواسطة خاصية وقيمة مسماة، تتضمن واجهات البحث الأخرى المتاحة [[Special:PageProperty|صفحة بحث الخصائص]]، و[[Special:Ask|اطلب منشئ استعلام]].", + "smw-sp-searchbyproperty-resultlist-header": "قائمة النتائج", + "smw-sp-searchbyproperty-nonvaluequery": "قائمة القيم التي لديها الخاصية المعينة \"$1\".", + "smw-sp-searchbyproperty-valuequery": "قائمة الصفحات التي تحتوي على الخاصية \"$1\" مع القيمة \"$2\" المشروحة.", + "smw-datavalue-number-textnotallowed": "\"$1\" لا يمكن أن تُسنَد إلى نوع العدد المعلن بقيمة $2.", + "smw-datavalue-number-nullnotallowed": "\"$1\" عاد مع \"NULL\" غير المسموح به كرقم.", + "smw-editpage-annotation-enabled": "تدعم هذه الصفحة التعليقات التوضيحية الدلالية في النص (على سبيل المثال \"[[Is specified as::World Heritage Site]]\") لإنشاء محتوى منظم وقابل للاستعلام من قبل ميدياويكي الدلالي، للحصول على وصف شامل حول كيفية استخدام التعليقات التوضيحية أو وظيفة محلل #ask; يُرجَى إلقاء نظرة على صفحات المساعدة [https://www.semantic-mediawiki.org/wiki/Help:Getting_started الخطوات الأولى] أو [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation في النص annotation] أو [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries استعلامات مضمنة].", + "smw-editpage-annotation-disabled": "لم يتم تمكين هذه الصفحة للتعليقات التوضيحية في النص الدلالي بسبب قيود النطاق، يمكن العثور على التفاصيل حول كيفية تمكين النطاق في صفحة المساعدة الخاصة ب[https://www.semantic-mediawiki.org/wiki/Help:Configuration الإعدادات].", + "smw-editpage-property-annotation-enabled": "يمكن تمديد هذه الخاصية باستخدام شروح دلالية لتحديد نوع البيانات (على سبيل المثال \"[[Has type::Page]]\") أو غيرها من الإعلانات الداعمة (على سبيل المثال \"[[Subproperty of::dc:date]]\")، للحصول على وصف حول كيفية زيادة هذه الصفحة; راجع صفحة المساعدة [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration declaration of a property] or the [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes قائمة أنواع البيانات المتوفرة].", + "smw-editpage-property-annotation-disabled": "لا يمكن تمديد هذه الخاصية بتعليق توضيحي لنوع البيانات (على سبيل المثال \"[[Has type::Page]]\") كما هو محدد بالفعل (انظر صفحة المساعدة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties خصائص خاصة] لمزيد من المعلومات).", + "smw-editpage-concept-annotation-enabled": "يمكن تمديد هذا المفهوم باستخدام محلل دالة #concept، للحصول على وصف حول كيفية استخدام #concept; راجع صفحة المساعدة [https://www.semantic-mediawiki.org/wiki/Help:Concepts مفهوم].", + "smw-search-syntax-support": "مدخلات البحث يدعم استخدام [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search بناء جملة الاستعلام] الدلالي للمساعدة في مطابقة النتائج باستخدام ميدياويكي الدلالي.", + "smw-search-input-assistance": "يتم تمكين [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance مساعد المدخلات] أيضا لتسهيل الاختيار المسبق للخصائص والتصنيفات المتاحة.", + "smw-search-help-intro": "سيشير إدخال [[ ... ]] iإلى معالج الإدخال لاستخدام واجهة بحث الخلفية لميدياكي الدلالي، تجدر الإشارة إلى أن الجمع بين [[ ... ]] مع بحث نصي غير منظم مثل [[ ... ]] أو لوريم إيبسوم غير مدعوم.", + "smw-search-help-structured": "عمليات بحث منظمة:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] ([https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context كسياق تمت تصفيته])\n\n*[[Has text::~*lorem*]] (مع [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context سياق استعلام])", + "smw-search-help-proximity": "عمليات البحث عن قرب (خاصية غير معروفة، متوفرة '''فقط''' للجهات الخلفية التي توفر تكامل بحث عن نص كامل):\n\n*[[in:lorem ipsum]] (ابحث في كل الوثائق عن \"lorem\" و\"ipsum\" التي تمت فهرستها)\n\n* [[phrase:lorem ipsum]] (طابق \"لوريم إيبسوم\" كعبارة)", + "smw-search-help-ask": "ستوضح الروابط التالية كيفية استخدام صيغة #ask .\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages تحديد الصفحات] يصف كيفية تحديد الصفحات وبناء الشروط\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators عوامل البحث] تسرد عوامل البحث المتاحة بما في ذلك تلك الخاصة باستعلامات النطاق والبدلات", + "smw-search-input": "المدخلات والبحث", + "smw-search-help-input-assistance": "يتم توفير [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance مساعدة الإدخال] لحقل الإدخال ويتطلب استخدام إحدى البادئات التالية:\n\n*p: لتمكين اقتراحات الخاصية (مثل [[p:Has ...)\n\n*c: لتمكين اقتراحات التصنيفات\n\n*con: لتمكين اقتراحات المفهوم", + "smw-search-syntax": "بناء الجملة", + "smw-search-profile": "موسع", + "smw-search-profile-tooltip": "وظائف البحث فيما يتعلق بميدياويكي الدلالي", + "smw-search-profile-sort-best": "أفضل مطابقة", + "smw-search-profile-sort-recent": "الأحدث", + "smw-search-profile-sort-title": "العنوان", + "smw-search-profile-extended-help-intro": "[https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile الملف الشخصي الموسع] في خاص:بحث توفر الوصول إلى وظائف البحث الخاصة بميدياويكي الدلالي والواجهة الخلفية لاستعلامه المدعوم.", + "smw-search-profile-extended-help-sort": "يحدد تفضيل الفرز لعرض النتيجة به:", + "smw-search-profile-extended-help-sort-title": "* \"العنوان\" باستخدام عنوان الصفحة (أو عنوان العرض) كمعايير فرز", + "smw-search-profile-extended-help-sort-recent": "* ستعرض \"الأحدث\" أحدث الكيانات المعدلة أولا (سيتم منع الكيانات الفرعية لأن هذه الكيانات لا يتم تعليقها على [[Property:Modification date|تاريخ التعديل]])", + "smw-search-profile-extended-help-sort-best": "*\"أفضل تطابق\" سيتم ترتيب الكيانات حسب [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy الصلة] استنادا إلى النتائج التي توفرها الواجهة الخلفية", + "smw-search-profile-extended-help-form": "يتم توفير النماذج (إذا تمت صيانتها) لتتطابق مع حالات استخدام محددة عن طريق عرض حقول خصائص وقيم مختلفة لتضييق نطاق عملية الإدخال وتسهيل عملية متابعة طلب البحث للمستخدمين. (راجع $1)", + "smw-search-profile-extended-help-namespace": "سيتم إخفاء صندوق اختيار النطاق بمجرد تحديد نموذج ولكن يمكن جعله مرئيا بمساعدة الزر \"إظهار/إخفاء\".", + "smw-search-profile-extended-help-search-syntax": "يدعم حقل إدخال البحث استخدام الصيغة #ask لتعريف سياق بحث ميدياويكي دلالي معين، تشمل التعبيرات المفيدة ما يلي:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: للعثور على أي شيء يحتوي على \"...\" ويكون مفيدا بشكل خاص عندما يكون سياق البحث أو الخصائص المعنية غير معروفة (على سبيل المثال in:(lorem && ipsum) تعادل [[~~*lorem*]] && [[~~*ipsum*]]).", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: للعثور على أي شيء يحتوي على \"...\" بنفس الترتيب بالضبط", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: لمطابقة أي كيان مع خاصية \"...\" (على سبيل المثال has:(Foo && Bar) تعادل [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: لعدم تطابق أي كيان يتضمن \"...\"", + "smw-search-profile-extended-help-search-syntax-prefix": "* تكون البادئات المخصصة الإضافية متاحة ومحددة مثل: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* يتم حجز بعض التعبيرات مثل: $1", + "smw-search-profile-extended-help-search-syntax-note": "''بعض العمليات المسردة ليست مفيدة إلا فيما يتعلق بفهرس النص الكامل الممكَّن أو ElasticStore.''", + "smw-search-profile-extended-help-query": "تم استخدام $1 كاستعلام.", + "smw-search-profile-extended-help-query-link": "لمزيد من التفاصيل؛ يُرجَى استخدام $1.", + "smw-search-profile-extended-help-find-forms": "النماذج المتوفرة", + "smw-search-profile-extended-section-sort": "الترتيب حسب", + "smw-search-profile-extended-section-form": "نماذج", + "smw-search-profile-extended-section-search-syntax": "مدخلة البحث", + "smw-search-profile-extended-section-namespace": "النطاق", + "smw-search-profile-extended-section-query": "الاستعلام", + "smw-search-profile-link-caption-query": "منشئ الاستعلام", + "smw-search-show": "عرض", + "smw-search-hide": "إخفاء", + "log-name-smw": "سجل ميدياويكي الدلالي", + "log-show-hide-smw": "$1 سجل ميدياويكي الدلالي", + "logeventslist-smw-log": "سجل ميدياويكي الدلالي", + "log-description-smw": "أنشطة ل[https://www.semantic-mediawiki.org/wiki/Help:Logging enabled أنواع الأحداث] التي تم الإبلاغ عنها من قبل ميدياويكي الدلالي ومكوناته.", + "logentry-smw-maintenance": "أحداث الصيانة المتعلقة المنبعثة من ميدياويكي الدلالي", + "smw-datavalue-import-unknown-namespace": "نطاق الاستيراد \"$1\" غير معروف; يُرجَى التأكد من أن تفاصيل استيراد OWL متاحة عبر [[MediaWiki:Smw import $1]]", + "smw-datavalue-import-missing-namespace-uri": "غير قادر على العثور على مسار النطاق \"$1\" في [[MediaWiki:Smw import $1|$1 استيراد]].", + "smw-datavalue-import-missing-type": "لم يتم العثور على تعريف نوع ل\"$1\" في [[MediaWiki:Smw import $2|$2 استيراد]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|$1 استيراد]]", + "smw-datavalue-import-invalid-value": "\"$1\" ليس تنسيقا صالحا ويُتوقَّع أن يتألف من \"النطاق\":\"معرف\" (على سبيل المثال \"foaf:اسم\").", + "smw-datavalue-import-invalid-format": "من المتوقع تقسيم السلسلة \"$1\" إلى أربعة أجزاء ولكن لم يتم فهم الصيغة.", + "smw-property-predefined-impo": "\"$1\" هي خاصية محددة مسبقا تصف علاقة [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary المفردات المستوردة] ويتم توفيرها من قبل [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-type": "\"$1\" هي خاصية محددة مسبقا تصف[[Special:Types|نوع بيانات]] الخاصية ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-sobj": "\"$1\" عبارة عن خاصية محددة مسبقا تمثل [https://www.semantic-mediawiki.org/wiki/Help:Container بناء] حاوية ويتم توفيرها من قبل\n [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-long-sobj": "تسمح الحاوية بتجميع تخصيصات قيمة خواص مماثلة لتخصيصات صفحة ويكي عادية ولكن داخل حيز كيان مختلف بينما تكون مرتبطة بموضوع التضمين.", + "smw-property-predefined-errp": "\"$1\" عبارة عن خاصية محددة مسبقا تتتبع أخطاء الإدخال في التعليقات التوضيحية للقيمة غير المنتظمة ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-long-errp": "في معظم الحالات هو سبب عدم تطابق نوع أو [[Property:Allows value|قيمة]] تقييد.", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value \"$1\"] عبارة عن خاصية محددة مسبقا يمكنها تحديد قائمة بالقيم المسموح بها لتقييد تخصيصات القيمة لخاصية ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value \"$1\"] عبارة عن خاصية محددة مسبقا يمكنها تحديد مرجع لقائمة تحمل القيم المسموح بها لتقييد تخصيصات القيمة لخاصية ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-datavalue-property-restricted-annotation-use": "الخاصية \"$1\" لها مجال تطبيق مقيد ولا يمكن استخدامها كموقع تعليق توضيحي من قبل المستخدم.", + "smw-datavalue-property-restricted-declarative-use": "الخاصية \"$1\" هي خاصية إعلانية ولا يمكن استخدامها إلا على صفحة خاصية أو تصنيف.", + "smw-datavalue-property-create-restriction": "الخاصية \"$1\" غير موجودة، ويفتقد المستخدم الإذن \"$2\" (راجع [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode وضع السلطة]) لإنشاء أو إضافة تعليقات توضيحية إلى القيم مع خاصية غير معتمدة.", + "smw-datavalue-property-invalid-character": "\"$1\" تحتوي على الحرف \"$2\" مدرجا كجزء من تسمية الخاصية; وبالتالي تم تصنيفها على أنها غير صالحة.", + "smw-datavalue-property-invalid-chain": "لا يُسمَح باستخدام \"$1\" كسلسلة خاصية أثناء عملية التعليق التوضيحي.", + "smw-datavalue-restricted-use": "تم وضع علامة على داتافالو \"$1\" للاستخدام المقيد.", + "smw-datavalue-invalid-number": "\"$1\" لا يمكن تفسيره على أنه رقم.", + "smw-query-condition-circular": "تم اكتشاف حالة دائرية محتملة في \"$1\".", + "smw-query-condition-empty": "وصف الاستعلام يحتوي على شرط فارغ.", + "smw-types-list": "قائمة أنواع البيانات", + "smw-types-default": "\"$1\" نوع بيانات مدمج.", + "smw-types-help": "يمكن العثور على مزيد من المعلومات والأمثلة في [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 صفحة المساعدة هذه].", + "smw-type-anu": "\"$1\" هو بديل نوع البيانات [[Special:Types/URL|مسار]] ويُستخدَم في الغالب لإعلان تصدير \"owl:AnnotationProperty\".", + "smw-type-boo": "\"$1\" نوع بيانات أساسي لوصف قيمة صحيحة/خاطئة.", + "smw-type-cod": "\"$1\" بديل نوع البيانات [[Special:Types/Text|نص]] ليتم استخدامه للنصوص التقنية ذات الطول التعسفي، مثل قوائم رموز المصدر.", + "smw-type-geo": "\"$1\" هو نوع بيانات يصف المواقع الجغرافية ويتطلب تمديد [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"الخرائط\"] لتوفير وظيفة موسعة.", + "smw-type-tel": "\"$1\" هو نوع بيانات خاص لوصف أرقام الهاتف الدولية وفقا لـRFC 3966.", + "smw-type-txt": "\"$1\" نوع بيانات أساسي لوصف سلاسل الطول التعسفي.", + "smw-type-dat": "\"$1\" نوع بيانات أساسي لتمثيل النقاط في الوقت بصيغة موحدة.", + "smw-type-ema": "\"$1\" هو نوع بيانات خاص لتمثيل بريد إلكتروني.", + "smw-type-tem": "\"$1\" هو نوع بيانات رقمي خاص لتمثيل درجة حرارة.", + "smw-type-qty": "\"$1\" هو نوع بيانات لوصف الكميات ذات التمثيل الرقمي ووحدة القياس.", + "smw-type-rec": "\"$1\" هو نوع بيانات حاوية يحدد قائمة بالخصائص المكتوبة بترتيب ثابت.", + "smw-type-extra-tem": "يتضمن مخطط التحويل وحدات مدعومة مثل كلفن وسيلزيوس وفهرنهايت ورانكين.", + "smw-type-tab-properties": "الخصائص", + "smw-type-tab-types": "الأنواع", + "smw-type-tab-type-ids": "اكتب المعرفات", + "smw-type-tab-errors": "أخطاء", + "smw-type-primitive": "أساسي", + "smw-type-contextual": "قريني", + "smw-type-compound": "مركب", + "smw-type-container": "حاوية", + "smw-type-no-group": "غير مصنف", + "smw-special-pageproperty-description": "توفر هذه الصفحة واجهة تصفح للعثور على جميع قيم خاصية وصفحة معينة، تتضمن واجهات البحث الأخرى المتاحة [[Special:SearchByProperty|بحث الخاصية]]، و[[Special:Ask|اطلب باني استعلام]].", + "smw-property-predefined-errc": "\"$1\" عبارة عن خاصية محددة مسبقا يوفرها [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] وتمثل الأخطاء التي ظهرت فيما يتعلق بتعليقات أو معالجة مدخلات قيمة غير صحيحة.", + "smw-property-predefined-long-errc": "يتم جمع الأخطاء في [https://www.semantic-mediawiki.org/wiki/Help:Container حاوية] التي قد تتضمن مرجعا إلى الخاصية التي تسببت في التناقض.", + "smw-property-predefined-errt": "\"$1\" عبارة عن خاصية محددة مسبقا تحتوي على وصف نصي لخطأ ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-subobject-parser-invalid-naming-scheme": "يحتوي الكائن الفرعي المعرف من قبل المستخدم على نظام تسمية غير صالح، يتم تخصيص تدوين النقطة ($1) المستخدم في الأحرف الخمسة الأولى للإضافات، يمكنك تعيين [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier معرف مسمى].", + "smw-datavalue-record-invalid-property-declaration": "يحتوي تعريف السجل على الخاصية \"$1\" التي يتم الإعلان عنها في حد ذاتها كنوع سجل وذلك غير مسموح به.", + "smw-property-predefined-mdat": "\"$1\" خاصية محددة مسبقا تتوافق مع تاريخ آخر تعديل للموضوع ويتم توفيرها من خلال [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-cdat": "\"$1\" خاصية محددة مسبقا تتوافق مع تاريخ التنقيح الأول للموضوع ويتم توفيرها من خلال [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-newp": "\"$1\" خاصية محددة مسبقا تشير إلى ما إذا كان الموضوع جديدا أم لا، ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-ledt": "\"$1\" خاصية محددة مسبقا تحتوي على اسم الصفحة للمستخدم الذي أنشأ آخر مراجعة ويتم توفيره من قبل [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-mime": "\"$1\" خاصية محددة مسبقا تصف نوع MIME للملف المرفوع ويتم توفيره بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-media": "\"$1\" خاصية محددة مسبقا تصف نوع وسائط الملف المرفوع ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-askfo": "\"$1\" خاصية محددة مسبقا تحمل اسم صيغة النتيجة المستخدم في الاستعلام ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-askst": "\"$1\" هي خاصية محددة مسبقا تصف شروط الاستعلام كسلسلة ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-askdu": "\"$1\" خاصية محددة مسبقا تحتوي على قيمة زمنية (بالثواني) كانت مطلوبة لإكمال تنفيذ الاستعلام ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-asksc": "\"$1\" خاصية محددة مسبقا يقدمها [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] التي تحدد مصادر الاستعلام البديلة (مثل البعيد، المتحد).", + "smw-property-predefined-askco": "\"$1\" خاصية محددة مسبقا يقدمها [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] لوصف حالة الاستعلام أو مكوناته.", + "smw-property-predefined-long-askco": "يمثل الرقم أو الأرقام المعينة حالة مقننة داخلية يتم شرحها في [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler صفحة المساعدة].", + "smw-property-predefined-prec": "\"$1\" خاصية محددة مسبقا تصف [https://www.semantic-mediawiki.org/wiki/Help:Display_precision دقة العرض] (بالأرقام العشرية) لأنواع البيانات الرقمية.", + "smw-property-predefined-attch-link": "\"$1\" هي خاصية محددة مسبقا تجمع وصلات الملفات والملفات المضمنة الموجودة في الصفحة ويتم توفيرها من خلال [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-format-schema": "ويتم توفيرها من قبل [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-types-extra-geo-not-available": " لم يتم الكشف عن [https://www.semantic-mediawiki.org/wiki/Extension:Maps تمديد \"الخرائط\"] وبالتالي يقتصر \"$1\" على قدرته على العمل.", + "smw-datavalue-monolingual-dataitem-missing": "عنصر متوقع لبناء قيمة مجمع أحادي اللغة مفقود.", + "smw-datavalue-languagecode-missing": "بالنسبة للتعليق التوضيحي \"$1\"، لم يتمكن المحلل من تحديد رمز اللغة (أي \"foo@en\").", + "smw-datavalue-languagecode-invalid": "لم يتم التعرف على \"$1\" كرمز لغة مدعوم.", + "smw-property-predefined-lcode": "\"$1\" عبارة عن خاصية محددة مسبقا تمثل رمز لغة BCP47 مهيأ ويتم توفيره بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-type-mlt-rec": "\"$1\" هو [https://www.semantic-mediawiki.org/wiki/Help:Container حاوية] بيانات يربط قيمة نصية [[Property:Language code|رمز لغة]] خاص.", + "smw-types-extra-mlt-lcode": "نوع البيانات {{PLURAL:$2|يتطلب|لا يتطلب }} رمز لغة (أي أن {{PLURAL:$2|a value الشرح بدون رمز لغة غير مقبول|الشرح بدون رمز لغة غير مقبول}}).", + "smw-property-predefined-text": "\"$1\" خاصية محددة مسبقا تمثل نص الطول التعسفي ويتم توفيرها من قبل [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-pdesc": "\"$1\" خاصية محددة مسبقا تسمح بوصف خاصية في سياق لغة ويتم توفيرها من قبل [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-list": "\"$1\" خاصية محددة مسبقا لتحديد قائمة الخصائص المستخدمة خاصية من نوع [[Special:Types/Record|سجل]] ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-limitreport-intext-parsertime": "[SMW] وقت تحليل الشرح في النص", + "smw-limitreport-intext-postproctime": "[SMW] بعد وقت المعالجة", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|ثانية واحدة|ثانية}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|ثانية واحدة|ثانية}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] وقت تحديث المستودع (في تطهير الصفحة)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|ثانية واحدة|ثانية}}", + "smw_allows_pattern": "من المتوقع أن تحتوي هذه الصفحة على قائمة بالمراجع (متبوعة [https://ar.wikipedia.org/wiki/تعبير نمطي بتعبيرات نمطية]) يتم توفيرها بواسطة خاصية [[Property:Allows pattern|يسمح بنمط]] لتعديل هذه الصفحة; مطلوب إدخال حق smw-patternedit.", + "smw-datavalue-allows-pattern-mismatch": "تم تصنيف \"$1\" على أنه غير صالح بواسطة التعبير النمطي \"$2\".", + "smw-datavalue-allows-pattern-reference-unknown": "لا يمكن مطابقة مرجع النمط \"$1\" بإدخال في [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "لم يكن مرجع قائمة \"$1\" متطابقا مع [[MediaWiki:Smw allows list $1]] page.", + "smw-datavalue-allows-value-list-missing-marker": "محتوى قائمة \"$1\" يفتقد العناصر التي تحتوي على علامة قائمة *.", + "smw-datavalue-feature-not-supported": "الميزة \"$1\" غير مدعومة أو تم تعطيلها في موقع الويكي هذا.", + "smw-property-predefined-pvap": "\"$1\" خاصية محددة مسبقا يمكن أن تحدد [[MediaWiki:Smw allows pattern|مرجع نمط\n]] لتطبيق [https://en.wikipedia.org/wiki/تعبير_نمطي تعبير نمطي] مطابقة ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-dtitle": "\"$1\" خاصية محددة مسبقا يمكنها تعيين عنوان عرض مميز إلى كيان ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-pvuc": "\"$1\" خاصية محددة مسبقا يقدمها [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] لتقييد تخصيصات القيمة لكل مثيل لتكون فريدة (أو واحدة على الأكثر).", + "smw-property-predefined-long-pvuc": "يتحدد التفرد عندما لا تكون القيمتان متساويتين في تمثيلهما الحرفي، وسيُصنَّف أي انتهاك لهذا القيد على أنه خطأ.", + "smw-datavalue-constraint-uniqueness-violation": "الخاصية \"$1\" تسمح فقط بتخصيصات القيمة الفريدة و\"$2\" تم التعليق عليها بالفعل في الموضوع \"$3\".", + "smw-datavalue-constraint-uniqueness-violation-isknown": "تسمح الخاصية \"$1\" فقط بالتعليقات التوضيحية للقيمة الفريدة، حيث يحتوي \"$2\" على قيمة معينة، \"$3\" ينتهك قيود التفرد.", + "smw-datavalue-constraint-violation-non-negative-integer": "تحتوي الخاصية \"$1\" على قيد \"عدد صحيح غير سالب\" والقيمة \"$2\" تنتهك هذا المطلب.", + "smw-datavalue-constraint-violation-must-exists": "تحتوي الخاصية\"$1\" على القيد must_exists والقيمة ''$2'' تنتهك هذا المطلب.", + "smw-datavalue-constraint-violation-single-value": "تحتوي الخاصية \"[[Property:$1|$1]]\" على قيد single_value والقيمة \"$2\" تنتهك هذا المطلب.", + "smw-constraint-violation-class-mandatory-properties-constraint": "التصنيف \"[[:$1]]\" له قيد mandatory_properties تم تعيينه معين ويتطلب الخصائص الإلزامية التالية: $2", + "smw-property-predefined-boo": "\"$1\" هو [[Special:Types/Boolean|نوع]] وخاصية محددة مسبقا يقدمها [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] لتمثيل القيم المنطقية.", + "smw-property-predefined-num": "\"$1\" هو [[Special:Types/Boolean|نوع]] وخاصية محددة مسبقا يقدمها [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] لتمثيل القيم الرقمية.", + "smw-property-predefined-dat": "\"$1\" هو [[Special:Types/Boolean|نوع]] وخاصية محددة مسبقا يقدمها [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] لتمثيل قيم التاريخ.", + "smw-property-predefined-uri": "\"$1\" هو [[Special:Types/Boolean|نوع]] وخاصية محددة مسبقا يقدمها [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] لتمثيل قيم URI/URL.", + "smw-property-predefined-qty": "\"$1\" هو [[Special:Types/Boolean|نوع]] وخاصية محددة مسبقا يقدمها [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] لتمثيل القيم الكمية.", + "smw-datavalue-time-invalid-offset-zone-usage": "يحتوي \"$1\" على معرف إزاحة ومنطقة غير معتمد.", + "smw-datavalue-time-invalid-values": "تحتوي القيمة \"$1\" على معلومات غير قابلة للتفسير في شكل \"$2\".", + "smw-datavalue-time-invalid-date-components-common": "يحتوي \"$1\" على بعض المعلومات غير القابلة للتفسير.", + "smw-datavalue-time-invalid-date-components-dash": "\"$1\" يحتوي على شرطة خارجية أو حروف أخرى غير صالحة لتفسير التاريخ.", + "smw-datavalue-time-invalid-date-components-empty": "يحتوي \"$1\" على بعض المكونات الفارغة.", + "smw-datavalue-time-invalid-date-components-three": "\"$1\" يحتوي على أكثر من ثلاثة مكونات مطلوبة لتفسير التاريخ.", + "smw-datavalue-time-invalid-date-components-sequence": "يحتوي \"$1\" على تسلسل لا يمكن تفسيره مقابل مصفوفة مطابقة متاحة لمكونات التاريخ.", + "smw-datavalue-time-invalid-ampm": "يحتوي \"$1\" على \"$2\" كعنصر ساعة غير صالح لعقد مدته 12 ساعة.", + "smw-datavalue-time-invalid-jd": "يتعذر تفسير قيمة إدخال \"$1\" كمعرف صالح (التاريخ اليولياني) مع الإبلاغ عن \"$2\".", + "smw-datavalue-time-invalid-prehistoric": "يتعذر تفسير قيمة إدخال \"ما قبل التاريخ\" بقيمة $1، على سبيل المثال، بعد تحديد أكثر من سنة أو نموذج تقويم قد تعود نتائج غير متوقعة في سياق ما قبل التاريخ.", + "smw-datavalue-time-invalid": "يتعذر تفسير قيمة الإدخال \"$1\" كمكون تاريخ أو وقت صالح مع الإبلاغ عن \"$2\".", + "smw-datavalue-external-formatter-uri-missing-placeholder": "يفتقد URI المنسق العنصر النائب ''$1''.", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\" مسار غير صالح.", + "smw-datavalue-external-identifier-formatter-missing": "الخاصية تفتقد تعيين [[Property:External formatter uri|\"URI المنسق الخارجي\"]].", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "يتوقع المعرف الخارجي \"$1\" استبدال حقل متعدد لكن القيمة الحالية \"$2\" تفتقد إلى وسيط قيمة واحد على الأقل لتتوافق مع المتطلبات.", + "smw-datavalue-keyword-maximum-length": "تجاوزت الكلمة الرئيسية الحد الأقصى لطول {{PLURAL:$1|حرف|حروف}}..", + "smw-property-predefined-eid": "\"$1\" هو [[Special:Types/Boolean|نوع]] وخاصية محددة مسبقا يقدمها [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] لتمثيل المعرفات الخارجية.", + "smw-property-predefined-peid": "\"$1\" خاصية محددة مسبقا تحدد معرفا خارجيا ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-pefu": "\"$1\" خاصية محددة مسبقا يقدمها [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] للتحديد مورد خارجي به عنصر نائب.", + "smw-property-predefined-long-pefu": "من المتوقع أن يحتوي URI على عنصر نائب سيتم تعديله باستخدام قيمة [[Special:Types/External identifier|معرف خارجي]] لتكوين مرجع مرجعي صالح.", + "smw-type-eid": "\"$1\" هو بديل نوع البيانات [[Special:Types/Text|نص]] لوصف الموارد الخارجية (على أساس URI) ويتطلب خصائص معينة للإعلان عن [[Property:External formatter uri|URI المنسق الخارجي]].", + "smw-property-predefined-keyw": "\"$1\" خاصية و[[Special:Types/Keyword|نوع]] محددة مسبقا مقدمة من [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] تقوم بتطبيع النص ولها قيود طول الحرف.", + "smw-type-keyw": "\"$1\" هو بديل نوع البيانات [[Special:Types/Text|النص]] الذي يحتوي على طول حرف مقيد مع تمثيل محتوى عادي.", + "smw-datavalue-stripmarker-parse-error": "القيمة المعطاة \"$1\" تحتوي على [https://en.wikipedia.org/wiki/Help:Strip_markers علامات الشريط] وبالتالي فإنه لا يمكن تحليلها بما فيه الكفاية.", + "smw-datavalue-parse-error": "القيمة المعطاة \"$1\" لم يتم فهمها.", + "smw-datavalue-propertylist-invalid-property-key": "تحتوي قائمة الخاصية \"$1\" على مفتاح خاصية غير صالح \"$2\".", + "smw-datavalue-type-invalid-typeuri": "تعذر تحويل نوع \"$1\" إلى تمثيل URI صالح.", + "smw-datavalue-wikipage-missing-fragment-context": "لا يمكن استخدام قيمة إدخال صفحة الويكي \"$1\" بدون صفحة سياق.", + "smw-datavalue-wikipage-invalid-title": "تحتوي قيمة إدخال نوع الصفحة \"$1\" على أحرف غير صالحة أو غير مكتملة، وبالتالي يمكن أن تسبب نتائج غير متوقعة أثناء عملية استعلام أو تعليق توضيحي.", + "smw-datavalue-wikipage-property-invalid-title": "الخاصية \"$1\" (كنوع الصفحة) بقيمة الإدخال \"$2\" تحتوي على أحرف غير صالحة أو غير مكتملة وبالتالي يمكن أن تسبب نتائج غير متوقعة أثناء الاستعلام أو عملية التعليق التوضيحي.", + "smw-datavalue-wikipage-empty": "قيمة إدخال صفحة الويكي فارغة (على سبيل المثال [[SomeProperty::]]، [[]]) وبالتالي لا يمكن استخدامها كاسم أو كجزء من شرط الاستعلام.", + "smw-type-ref-rec": "\"$1\" هو نوع [https://www.semantic-mediawiki.org/wiki/Container الحاوية] الذي يسمح بتسجيل معلومات إضافية (مثل بيانات المصدر) حول تعيين قيمة.", + "smw-datavalue-reference-invalid-fields-definition": "يتوقع نوع [[Special:Types/Reference|المرجع]] قائمة بالخصائص التي سيتم الإعلان عنها باستخدام خاصية [mediawiki.org/wiki/Help:Special_property_Has_fields لديه حقول].", + "smw-parser-invalid-json-format": "عاد محلل JSON بـ\"$1\".", + "smw-property-preferred-label-language-combination-exists": "لا يمكن استخدام \"$1\" كعلامة مفضلة لأن اللغة \"$2\" تم تعيينها بالفعل للتسمية \"$3\".", + "smw-clipboard-copy-link": "نسخ الرابط إلى الحافظة", + "smw-property-userdefined-fixedtable": "تم تكوين \"$1\" [https://www.semantic-mediawiki.org/wiki/Fixed_properties كخاصية ثابتة] وأي تعديل في [https://www.semantic-mediawiki.org/wiki/Type_declaration إعلان نوعها] يتطلب إما تشغيل setupStore.php أو إكمال المهمة الخاصة [[Special:SemanticMediaWiki|\"\"تثبيت وترقية قاعدة البيانات\"]].", + "smw-data-lookup": "جاري جلب البيانات...", + "smw-data-lookup-with-wait": "تتم معالجة الطلب وقد يستغرق بعض الوقت.", + "smw-no-data-available": "لا تتوفر بيانات.", + "smw-property-req-violation-missing-fields": "الخاصية \"$1\" تفقد إعلان [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] لنوع \"$2\" هذا.", + "smw-property-req-violation-multiple-fields": "تحتوي الخاصية \" $1 \" على إعلانات متعددة (وبالتالي متنافسة) [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields ]، ومن المتوقع إعلان واحد فقط لهذا النوع \" $2 \".", + "smw-property-req-violation-missing-formatter-uri": "تفتقد الخاصية \"$1\" تفاصيل التصريح للنوع المشروح عن طريق عدم تحديد الخاصية URI المنسق الخارجي.", + "smw-property-req-violation-predefined-type": "الخاصية \"$1\" كخاصية معرفة مسبقا تحتوي على إعلان \"من نوع $2\" غير متوافق مع النوع الافتراضي لهذه الخاصية.", + "smw-property-req-violation-import-type": "تم الكشف عن إعلان نوع غير متوافق مع نوع معرف مسبقا من المفردات \"$1\" المستوردة، بشكل عام، ليس من الضروري الإعلان عن نوع لأن المعلومات يتم استرجاعها من تعريف الاستيراد.", + "smw-property-req-violation-change-propagation-locked-error": "تم تغيير الخاصية \"$1\" وتتطلب إعادة تقييم الكيانات المعينة باستخدام عملية [https://www.semantic-mediawiki.org/wiki/Change_propagation انتشار التغيير]، تمت حماية صفحة الخاصية حتى يتم استكمال تحديث المواصفات الأساسية لمنع انقطاع وسيط أو مواصفات متناقضة، قد تستغرق هذه العملية بعض الوقت قبل أن يتم إلغاء حماية الصفحة لأنها تعتمد على حجم وتواتر جدولة [https://www.mediawiki.org/wiki/Manual:Job_queue طابور العمل].", + "smw-property-req-violation-change-propagation-locked-warning": "تم تغيير الخاصية \"$1\" وتتطلب إعادة تقييم الكيانات المعينة باستخدام عملية [https://www.semantic-mediawiki.org/wiki/Change_propagation انتشار التغيير]، تمت حماية صفحة الخاصية حتى يتم استكمال تحديث المواصفات الأساسية لمنع انقطاع وسيط أو مواصفات متناقضة، قد تستغرق هذه العملية بعض الوقت قبل أن يتم إلغاء حماية الصفحة لأنها تعتمد على حجم وتواتر جدولة [https://www.mediawiki.org/wiki/Manual:Job_queue طابور العمل] ويُقترَح تأجيل التغييرات إلى الخاصية لمنع انقطاع وسيط أو مواصفات متناقضة.", + "smw-property-req-violation-change-propagation-pending": "تحديثات [https://www.semantic-mediawiki.org/wiki/Change_propagation انتشار التغيير] معلقة ($1 [https://www.mediawiki.org/wiki/Manual:Job_queue {{PLURAL:$1|وظيفة مقدرة|وظائة مقدرة}}]) ويُوصَى بالانتظار مع التعديلات على الخاصية حتى يتم الانتهاء من العملية لمنع انقطاع وسيط أو مواصفات متناقضة.", + "smw-property-req-violation-missing-maps-extension": "تعذر على ميدياويكي الدلالي اكتشاف ملحق [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"خرائط\"] الذي يعد متطلبا أساسيا للنوع المحدد ونتيجة لذلك يحد من وظائف (أي غير قادر على تخزين أو معالجة البيانات الجغرافية) هذه الخاصية.", + "smw-property-req-violation-type": "تحتوي الخاصية على مواصفات نوع منافسة قد تؤدي إلى تعليقات توضيحية ذات قيمة غير صالحة لذلك فمن المتوقع قيام أحد المستخدمين بتعيين نوع واحد مناسب.", + "smw-property-req-error-list": "تحتوي الخاصية على الأخطاء أو التحذيرات التالية:", + "smw-property-req-violation-parent-type": "تحتوي الخاصية \"$1\" والخاصية الأصلية المعينة \"$2\" على تعليقات توضيحية مختلفة في النوع.", + "smw-property-req-violation-forced-removal-annotated-type": "تم تمكين فرض [https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance الإرتباط الإجباري من نوع الأصل]، لا يطابق نوع التعليق التوضيحي لخاصية \"$1\" مع نوع الخاصية الأصلي \"$2\"، تم تغييره ليعكس هذا الشرط؛ يُوصَى بتعديل تعريف النوع في الصفحة بحيث تتم إزالة رسالة الخطأ والتنفيذ الإلزامي لهذه الخاصية.", + "smw-change-propagation-protection": "تمت حماية هذه الصفحة لمنع تعديل البيانات العرضي أثناء تشغيل تحديث [https://www.semantic-mediawiki.org/wiki/Change_propagation انتشار التغيير]، قد تستغرق العملية بعض الوقت قبل أن يتم إلغاء حماية الصفحة لأنها تعتمد على حجم وتواتر جدولة [https://www.mediawiki.org/wiki/Manual:Job_queue طابور العمل].", + "smw-category-change-propagation-locked-error": "تم تغيير التصنيف \"$1\" ويتطلب إعادة تقييم الكيانات المعينة باستخدام عملية [https://www.semantic-mediawiki.org/wiki/Change_propagation انتشار التغيير]، تمت حماية صفحة التصنيف حتى يتم استكمال تحديث المواصفات الأساسية لمنع انقطاع وسيط أو مواصفات متناقضة، قد تستغرق هذه العملية بعض الوقت قبل أن يتم إلغاء حماية الصفحة لأنها تعتمد على حجم وتواتر جدولة [https://www.mediawiki.org/wiki/Manual:Job_queue طابور العمل].", + "smw-category-change-propagation-locked-warning": "تم تغيير التصنيف \"$1\" ويتطلب إعادة تقييم الكيانات المعينة باستخدام عملية [https://www.semantic-mediawiki.org/wiki/Change_propagation انتشار التغيير]، تمت حماية صفحة التصنيف حتى يتم استكمال تحديث المواصفات الأساسية لمنع انقطاع وسيط أو مواصفات متناقضة، قد تستغرق هذه العملية بعض الوقت قبل أن يتم إلغاء حماية الصفحة لأنها تعتمد على حجم وتواتر جدولة [https://www.mediawiki.org/wiki/Manual:Job_queue طابور العمل] ويُقترَح تأجيل التغييرات إلى التصنيف لمنع انقطاع وسيط أو مواصفات متناقضة.", + "smw-category-change-propagation-pending": "تحديثات [https://www.semantic-mediawiki.org/wiki/Change_propagation انتشار التغيير] معلقة ($1 [https://www.mediawiki.org/wiki/Manual:Job_queue {{PLURAL:$1|وظيفة مقدرة|وظائة مقدرة}}]) ويُوصَى بالانتظار مع التعديلات على التصنيف حتى يتم الانتهاء من العملية لمنع انقطاع وسيط أو مواصفات متناقضة.", + "smw-category-invalid-value-assignment": "\"$1\" غير متعرف عليها كتصنيف أو شرح قيمة صحيح.", + "protect-level-smw-pageedit": "السماح للمستخدمين فقط بإذن تعديل الصفحة (ميدياويكي الدلالي)", + "smw-create-protection": "يقتصر إنشاء الخاصية \"$1\" على المستخدمين الذين لديهم الصلاحية المناسبة \"$2\" (أو [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups مجموعة المستخدمين]) أثناء تمكين [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode وضع السلطة].", + "smw-create-protection-exists": "تقتصر التغييرات على الخاصية \"$1\" على المستخدمين الذين لديهم الصلاحية المناسبة \"$2\" (أو [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups مجموعة المستخدمين]) أثناء تمكين [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode وضع السلطة].", + "smw-edit-protection": "هذه الصفحة [[Property:Is edit protected|محمية]] لمنع تعديل البيانات العرضي ولا يمكن تعديلها إلا بواسطة المستخدمين الذين لديهم الصلاحية المناسبة \"$1\" (أو [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups مجموعة المستخدمين]).", + "smw-edit-protection-disabled": "تم تعطيل حماية التعديل ولذلك لا يمكن استخدام \"$1\" لحماية صفحات الكيان من التعديل غير المصرح به.", + "smw-edit-protection-auto-update": "قام ميدياويكي الدلالي بتحديث حالة الحماية وفقا لخاصية \"محمية من التعديل\".", + "smw-edit-protection-enabled": "محمية من التعديل (ميدياويكي الدلالي)", + "smw-patternedit-protection": "هذه الصفحة محمية ولا يمكن تعديلها إلا بواسطة المستخدمين ذوي smw-patternedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions الصلاحية] المناسبة.", + "smw-property-predefined-edip": "\"$1\" خاصية محددة مسبقا يقدمها [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] للإشارة إلى ما إذا كان التحرير محمي أم لا", + "smw-property-predefined-long-edip": "في حين أن أي مستخدم مؤهل لإضافة هذه الخاصية إلى موضوع ما، يمكن فقط للمستخدم الذي لديه صلاحية مخصصة تعديل أو إلغاء الحماية لكيان بعد إضافته.", + "smw-query-reference-link-label": "مرجع الاستعلام", + "smw-format-datatable-emptytable": "لا تتوفر بيانات في الجدول", + "smw-format-datatable-info": "إظهار _START_ ل_END_ من _TOTAL_ إدخالات_TOTAL_", + "smw-format-datatable-infoempty": "عرض 0 إلى 0 من 0 إدخالات", + "smw-format-datatable-infofiltered": "(تمت تصفيتها من _MAX_ إجمالي الإدخالات)", + "smw-format-datatable-infothousands": "،", + "smw-format-datatable-lengthmenu": "إظهار إدخالات _MENU_", + "smw-format-datatable-loadingrecords": "جارٍ التحميل...", + "smw-format-datatable-processing": "تجري المعالجة...", + "smw-format-datatable-search": "بحث:", + "smw-format-datatable-zerorecords": "لم يتم العثور على سجلات مطابقة", + "smw-format-datatable-first": "الأول", + "smw-format-datatable-last": "الأخير", + "smw-format-datatable-next": "التالي", + "smw-format-datatable-previous": "السابق", + "smw-format-datatable-sortascending": ": تفعيل لفرز العمود تصاعديا", + "smw-format-datatable-sortdescending": ": تفعيل لفرز العمود تنازليا", + "smw-format-datatable-toolbar-export": "تصدير", + "smw-format-list-other-fields-open": " )", + "smw-format-list-other-fields-close": " )", + "smw-category-invalid-redirect-target": "يحتوي التصنيف \"$1\" على هدف تحويلة غير صالح إلى نطاق غير التصنيف.", + "smw-parser-function-expensive-execution-limit": "وصلت وظيفة المحلل إلى الحد الأقصى لعمليات التنفيذ المكلفة (انظر وسيط التكوين \n [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "ميدياويكي الدلالي يقوم بتحديث الصفحة الحالية على شرط معالجة بعض طلبات البحث المطلوبة.", + "apihelp-smwinfo-summary": "وحدة API لاسترداد المعلومات حول إحصاءات ميدياويكي الدلالي والمعلومات الوصفية الأخرى.", + "apihelp-ask-summary": "وحدة API لاستعلام ميدياويكي الدلالي باستخدام لغة الطلب.", + "apihelp-askargs-summary": "وحدة API لاستعلام ميدياويكي الدلالي باستخدام لغة الطلب كقائمة من الشروط والمطبوعات والوسائط.", + "apihelp-browsebyproperty-summary": "وحدة API لاسترداد المعلومات حول خاصية أو قائمة من الخصائص.", + "apihelp-browsebysubject-summary": "وحدة API لاسترداد المعلومات حول موضوع.", + "apihelp-smwtask-summary": "وحدة API لتنفيذ المهام ذات الصلة بميدياويكي الدلالي", + "apihelp-smwbrowse-summary": "وحدة API لدعم أنشطة التصفح لأنواع الكيانات المختلفة في ميدياويكي.", + "apihelp-ask-parameter-api-version": "تنسيق الإخراج:\n;2: تنسيق متوافق مع الإصدارات السابقة يستخدم {} لقائمة النتائج.\n;3:التنسيق التجريبي الذي يستخدم [] كقائمة نتائج.", + "apihelp-smwtask-param-task": "يحدد نوع المهمة", + "smw-api-invalid-parameters": "وسائط غير صالحة، \"$1\"", + "smw-parser-recursion-level-exceeded": "تم تجاوز مستوى التكرارات $1 أثناء عملية التحليل. يُقترح التحقق من صحة بنية القالب، أو إذا لزم الأمر تعديل معلمة التكوين $maxRecursionDepth .", + "smw-property-page-list-count": "إظهار $1 {{PLURAL:$1|صفحة|صفحات}} باستخدام هذه الخاصية.", + "smw-property-page-list-search-count": "إظهار $1 {{PLURAL:$1|صفحة|صفحات}} باستخدام هذه الخاصية بمطابقة قيمة $2.", + "smw-property-reserved-category": "تصنيف", + "smw-category": "التصنيف", + "smw-datavalue-uri-invalid-scheme": "لم يتم إدراج \"$1\" كمخطط URI صالح.", + "smw-datavalue-uri-invalid-authority-path-component": "\"$1\" تم التعرف عليه كمحتوي على مكون سلطة أو مسار غير صحيح \"$2\".", + "smw-browse-property-group-title": "مجموعة الخصائص", + "smw-browse-property-group-label": "تسمية مجموعة الخصائص", + "smw-browse-property-group-description": "وصف مجموعة الخصائص", + "smw-property-predefined-ppgr": "\"$1\" خاصية محددة مسبقا تحدد الكيانات (بشكل رئيسي التصنيفات) التي يتم استخدامها كمثال تجميع للخصائص ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-filter": "مرشح", + "smw-section-expand": "وسع هذا القسم", + "smw-section-collapse": "اطو هذا القسم", + "smw-ask-format-help-link": "صيغة [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "مساعدة", + "smw-cheat-sheet": "صحيفة الغش", + "smw-personal-jobqueue-watchlist": "قائمة مراقبة قائمة انتظار الوظائف", + "smw-personal-jobqueue-watchlist-explain": "تشير الأرقام إلى تقدير إدخالات قائمة انتظار العمل في انتظار التنفيذ.", + "smw-property-predefined-label-skey": "مفتاح الفرز", + "smw-processing": "تجري المعالجة...", + "smw-loading": "جارٍ التحميل...", + "smw-fetching": "جارٍ الإحضار...", + "smw-preparing": "جارٍ التجهيز...", + "smw-expand": "وسع", + "smw-collapse": "طي", + "smw-copy": "نسخ", + "smw-copy-clipboard-title": "ينسخ المحتوى إلى الحافظة", + "smw-jsonview-expand-title": "يوسع عرض JSON", + "smw-jsonview-collapse-title": "يطوي عرض JSON", + "smw-jsonview-search-label": "بحث:", + "smw-redirect-target-unresolvable": "الهدف غير قابل للحل بسبب \"$1\"", + "smw-types-title": "النوع: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "غير مسموح بتغيير نموذج محتوى [https://www.semantic-mediawiki.org/wiki/Help:Schema صفحة مخطط].", + "smw-schema-namespace-edit-protection": "هذه الصفحة محمية ولا يمكن تحريرها إلا بواسطة المستخدمين الذين لديهم [https://www.semantic-mediawiki.org/wiki/Help:Permissions صلاحية] smw-schemaedit المناسبة.", + "smw-schema-error-title": "{{PLURAL:$1|خطأ|أخطاء}} في التحقق", + "smw-schema-error-schema": "عثر مخطط التحقق '''$1''' على التناقضات التالية:", + "smw-schema-error-validation-file-inaccessible": "يتعذر الوصول إلى ملف التحقق من الصحة \"$1\".", + "smw-schema-error-violation": "[\"$1\"، \"$2\"]", + "smw-schema-error-type-missing": "يفتقد المحتوى إلى نوع لكي يتم التعرف عليه واستخدامه في [https://www.semantic-mediawiki.org/wiki/Help:Schema نطاق المخطط].", + "smw-schema-error-type-unknown": "النوع \"$1\" غير مسجل وبالتالي لا تستطيع استخدامه للمحتوى في [https://www.semantic-mediawiki.org/wiki/Help:Schema نطاق المخطط/مد].", + "smw-schema-error-json": "خطأ JSON: \"$1\"", + "smw-schema-error-input": "لقد وجد التحقق من صحة المدخلات المشكلات التالية، تجب معالجتها قبل حفظ المحتوى، قد تقدم صفحة [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling مساعدة المخطط] بعض النصائح حول كيفية إزالة التناقضات أو حل المشكلات المتعلقة بتنسيق الإدخال.", + "smw-schema-error-input-schema": "لقد وجد التحقق من الصحة '''$1''' التناقضات التالية وتجب معالجتها قبل حفظ المحتوى، قد تقدم صفحة [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling مساعدة المخطط] بعض النصائح حول كيفية إزالة التناقضات أو حل المشكلات المتعلقة بتنسيق الإدخال.", + "smw-schema-error-title-prefix": "يتطلب هذا النوع من المخطط أن يبدأ عنوان المخطط ببادئة \"$1\".", + "smw-schema-validation-error": "النوع \"$1\" غير مسجل ولا يمكن استخدامه للمحتوى في نطاق [https://www.semantic-mediawiki.org/wiki/Help:Schema المخطط/مد].", + "smw-schema-validation-schema-title": "مخطط JSON", + "smw-schema-summary-title": "الملخص", + "smw-schema-title": "مخطط", + "smw-schema-usage": "الاستخدام", + "smw-schema-type": "النوع", + "smw-schema-type-description": "اكتب الوصف", + "smw-schema-description": "وصف المخطط", + "smw-schema-description-link-format-schema": "نوع المخطط هذا يدعم تعريف الخصائص الخاصة بإنشاء وصلات حساسة للسياق فيما يتعلق بخاصية [[Property:Formatter schema|مخطط المنسق]].", + "smw-schema-description-search-form-schema": "يدعم نوع المخطط هذا تعريف نماذج المدخلات والخصائص لملف تعريف [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch extended search] حيث يحتوي على إرشادات حول كيفية إنشاء حقول الإدخال وتحديد النطاقات الافتراضية، أو بيان تعبيرات بادئة لطلب بحث.", + "smw-schema-description-property-profile-schema": "يدعم نوع المخطط هذا تعريف ملف شخصي لإعلان خصائص الخاصية المعينة وقيمها التوضيحية.", + "smw-schema-description-property-group-schema": "يدعم نوع المخطط هذا تعريف [https://www.semantic-mediawiki.org/wiki/Help:Property_group مجموعات الخواص] للمساعدة في بناء واجهة [https://www.semantic-mediawiki.org/wiki/Help:Special:Browse التصفح].", + "smw-schema-description-property-constraint-schema": "يدعم نوع المخطط هذا تعريف قواعد القيد لمثيل خاصية وكذلك تلك القيم المعينة لها.", + "smw-schema-description-class-constraint-schema": "يدعم نوع المخطط هذا تعريف قواعد القيد لمثيل فئة (تُعرَف أيضًا باسم التصنيف).", + "smw-schema-tag": "{{PLURAL:$1|وسم|وسوم}}", + "smw-property-predefined-constraint-schema": "\"$1\" هي خاصية محددة مسبقا تحدد مخطط القيد ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-schema-desc": "\"$1\" خاصية محددة مسبقا تقوم بتخزين وصف المخطط ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-schema-def": "\"$1\" خاصية محددة مسبقا تقوم بتخزين محتويات المخطط ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-schema-tag": "\"$1\" خاصية محددة مسبقا يقدمها [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي] لتحديد مجموعة من المخططات.", + "smw-property-predefined-long-schema-tag": "تصنيف يحدد مخططات ذات محتوى أو خصائص مشابهة.", + "smw-property-predefined-schema-type": "\"$1\" خاصية محددة مسبقا تصف نوعا للتمييز بين مجموعة من المخططات ويتم توفيرها بواسطة [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ميدياويكي الدلالي].", + "smw-property-predefined-long-schema-type": "يوفر كل [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type نوع] تفسيره الخاص لعناصر بناء الجملة وقواعد التطبيق ويمكن التعبير عنه بمساعدة [https://www.semantic-mediawiki.org/wiki/Help:Schema#validation مخطط التحقق].", + "smw-ask-title-keyword-type": "بحث بكلمة مفتاحية", + "smw-ask-message-keyword-type": "تطابق هذا البحث مع الشرط $1.", + "smw-remote-source-unavailable": "يتعذر الاتصال بالهدف \"$1\" البعيد.", + "smw-remote-source-disabled": "لقد عطل المصدر '''$1''' دعم الطلب عن بعد!", + "smw-remote-source-unmatched-id": "لا يطابق المصدر '''$1''' إصدارا من ميدياويكي الدلالي يمكنه دعم طلب بعيد.", + "smw-remote-request-note": "يتم جلب النتيجة من المصدر البعيد '''$1''' ومن المحتمل أن يحتوي المحتوى المُنشأ على معلومات غير متوفرة ضمن الويكي الحالي.", + "smw-remote-request-note-cached": "يتم '''التخزين المؤقت''' للنتيجة من المصدر البعيد '''$1''' ومن المحتمل أن يحتوي المحتوى المُنشأ على معلومات غير متوفرة ضمن الويكي الحالي.", + "smw-parameter-missing": "الوسيط \"$1\" مفقود.", + "smw-property-tab-usage": "الاستخدام", + "smw-property-tab-redirects": "مرادفات", + "smw-property-tab-subproperties": "خصائص فرعية", + "smw-property-tab-errors": "مهام غير مناسبة", + "smw-property-tab-constraint-schema": "مخطط القيد", + "smw-property-tab-constraint-schema-title": "مخطط القيد المجمع", + "smw-property-tab-specification": "... المزيد", + "smw-concept-tab-list": "قائمة", + "smw-concept-tab-errors": "أخطاء", + "smw-ask-tab-result": "النتيجة", + "smw-ask-tab-extra": "إضافات", + "smw-ask-tab-debug": "تصحيح", + "smw-ask-tab-code": "كود", + "smw-install-incomplete-tasks-title": "مهام الإدارة غير المكتملة", + "smw-install-incomplete-intro": "هناك $2 غير مكتمل أو [[Special:PendingTaskList|معلق]] {{PLURAL:$2| مهمة | مهام}} لإنهاء {{PLURAL:$1| تثبيت | ترقية}} من [https://www.semantic-mediawiki.org Semantic MediaWiki]. يمكن للمسؤول أو المستخدم الذي يتمتع بحقوق كافية إكمال {{PLURAL:$2| انها | هذه}}. يجب القيام بذلك قبل إضافة بيانات جديدة لتجنب التناقضات.", + "smw-updateentitycountmap-incomplete": "الحقل smw_countmap أضيف مؤخرا في إصدارة حديثة ويتطلب تشغيل السكربت [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php] script is لتتمكن وظائف النظام من النفاذ لمحتوى هذا الحقل.", + "smw-install-incomplete-populate-hash-field": "تم تخطي حقل smw_hash أثناء الإعداد. يجب تنفيذ البرنامج النصي [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] .", + "smw-install-incomplete-elasticstore-indexrebuild": "تم اختيار المتجر المرن [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore كمتجر افتراضي]، ومع ذلك لم يتمكن الملحق من العثور على أي سجل بتنفيذ السكريبت [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php]، يُرجَى تشغيل السكريبت حسب التعليمات.", + "smw-pendingtasks-setup-tasks": "المهام", + "smw-filter-count": "عدد المرشح", + "smw-es-replication-check": "فحص النسخ المتماثل (إلاستيك سيرش)", + "smw-es-replication-error": "قضية تكرار", + "smw-es-replication-file-ingest-error": "مسألة تناول الملف", + "smw-es-replication-error-missing-id": "مراقبة التكرار وجد أن المقالة \"$1\" (ID: $2) مفقودة من قاعدة بيانات Elasticsearch.", + "smw-es-replication-error-divergent-date": "مراقبة التكرار وجدت أن تاريخ تعديل المقالة \"$1\" (ID: $2) تظهر تعارضا.", + "smw-es-replication-error-divergent-date-detail": "تاريخ التعديل المشار إليه\n*إلاستيك سيرش: $1\n*قاعدة البيانات: $2", + "smw-es-replication-error-divergent-revision": "لقد وجدت مراقبة النسخ المتماثل أنه بالنسبة للمقالة \"$1\" (المعرف: $2)، تظهر المراجعة المرتبطة تباينا.", + "smw-es-replication-error-divergent-revision-detail": "*إلاستيك سيرش: $1\n*قاعدة البيانات: $2", + "smw-es-replication-error-maintenance-mode": "محرك النسخ المتماثل والبحث في [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode وضع الصيانة] إجراء تغييرات على الكيانات والصفحات غير مرئي على الفور ولذلك التكرار لا يظهر في نتائج الاستعلام.", + "smw-es-replication-error-no-connection": "مراقبة النسخ المتماثل غير قادرة على إجراء أية اختبارات لأنه لا يمكن تأسيس اتصال إلى كتلة إلاستيك سيرش.", + "smw-es-replication-error-bad-request-exception": "طرح معالج اتصال إلاستيك سيرش استثناء طلب سيئ (\"400 conflict http error\") يشير إلى مشكلة مستمرة أثناء طلبات النسخ المتماثل والبحث.", + "smw-es-replication-error-suggestions": "يوصى بتعديل أو إزالة كاش الصفحة لإزالة التعارض. لو استمرت المشكلة فتحقق من عنقود Elasticsearch نفسه (allocator, exceptions, disk space etc.).", + "smw-es-replication-error-suggestions-maintenance-mode": "يُقترَح الاتصال بإداري الويكي للتحقق مما إذا كانت [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild إعادة بناء الفهرس] قيد التقدم حاليا أو refresh_interval لم يتم ضبطه على القيمة الافتراضية المتوقعة.", + "smw-es-replication-error-suggestions-no-connection": "يُقترَح الاتصال بإداري الويكي والإبلاغ عن مشكلة \"عدم الاتصال\".", + "smw-es-replication-error-suggestions-exception": "يُرجَى التحقق من السجلات للحصول على معلومات حول حالة إلاستيك سيرش ومؤشراته ومشاكل التكوين المحتملة.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "وجد رصد النسخ المتماثل أن \"$1\" ينقصه تعليق [[Property:File attachment|ملف مرفق]] يشير إلى أن معالج استيعاب المحتوى لم يبدأ أو لم ينته.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "يُرجَى التأكد من جدولة وتنفيذ مهمة [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion استيعاب الملف] قبل إتاحة شرح وفهرس الملف.", + "smw-report": "أبلغ", + "smw-legend": "عنوان تفسيري", + "smw-datavalue-constraint-schema-category-invalid-type": "المخطط \"$1\" المشروح غير صالح لتصنيف؛ فهو يتطلب نوع \"$2\".", + "smw-datavalue-constraint-schema-property-invalid-type": "المخطط \"$1\" المشروح غير صالح لخاصية؛ فهو يتطلب نوع \"$2\".", + "smw-entity-examiner-associated-revision-mismatch": "مراجعة", + "smw-entity-examiner-deferred-fake": "مزيف", + "smw-indicator-revision-mismatch": "مراجعة", + "smw-facetedsearch-intro-tab-explore": "استكشف", + "smw-facetedsearch-intro-tab-search": "بحث", + "smw-facetedsearch-explore-intro": "حدد المجموعة وابدأ التصفح.", + "smw-facetedsearch-profile-options": "خيارات الملف الشخصي", + "smw-facetedsearch-size-options": "خيارات الصفحة", + "smw-facetedsearch-order-options": "خيارات الطلب", + "smw-facetedsearch-format-options": "خيارات العرض", + "smw-facetedsearch-format-table": "جدول", + "smw-facetedsearch-input-filter-placeholder": "ترشيح الطلبات حسب...", + "smw-facetedsearch-no-filters": "لا فلترة", + "smw-facetedsearch-no-filter-range": "لا يوجد نطاق تصفية.", + "smw-search-placeholder": "بحث...", + "smw-listingcontinuesabbrev": "(تابع)", + "smw-showingresults": "معروض بالأسفل {{PLURAL:$1|1 نتيجة}} بدءا من رقم $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/arc.json b/mediawiki/extensions/SemanticMediaWiki/i18n/arc.json new file mode 100644 index 0000000..e5cb99b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/arc.json @@ -0,0 +1,53 @@ +{ + "@metadata": { + "authors": [ + "Basharh" + ] + }, + "smw_finallistconjunct": ", ܘ", + "smw_printername_list": "ܡܟܬܒܘܬܐ", + "smw_printername_table": "ܠܘܚܝܬܐ", + "smw_printername_template": "ܩܠܒܐ", + "smw_printername_category": "ܣܕܪܐ", + "smw_iq_moreresults": "ܝܬܝܪ ܦܠܛ̈ܐ …", + "smw_true_words": "ܬܪܝܨܐ,ܬ,ܐܝܢ,ܐ", + "smw_false_words": "ܦܘܕܐ,ܦ,ܠܐ,ܠ", + "smw_nofloat": "\"$1\" ܠܐ ܐܝܬܝܗ ܡܢܝܢܐ.", + "smw_type_header": "ܕ̈ܝܠܝܬܐ ܕܐܕܫܐ \"$1\"", + "exportrdf": "ܐܦܩ ܦܐܬܬ̈ܐ ܠ RDF", + "smw_exportrdf_submit": "ܐܦܩ", + "properties": "ܕ̈ܝܠܝܬܐ", + "smw-categories": "ܣܕܪ̈ܐ", + "smw_properties_docu": "ܕ̈ܝܠܝܬܐ ܕܐܬܝܢ ܡܬܦܠܚܝܢ ܒܘܝܩܝ", + "smw_property_template": "$1 ܡܢ ܐܕܫܐ ܕ $2 ($3 {{PLURAL:$3|ܦܘܠܚܐ|ܦܘܠܚ̈ܐ}})", + "unusedproperties": "ܕ̈ܝܠܝܬܐ ܠܐ ܦܠܝܚܬ̈ܐ", + "smw-unusedproperty-template": "$1 ܡܢ ܐܕܫܐ ܕ $2", + "wantedproperties": "ܕ̈ܝܠܝܬܐ ܣܢܝܩܬ̈ܐ", + "smw_purge": "ܦܪܓܝ", + "types": "ܐܕܫ̈ܐ", + "ask": "ܒܨܝܐ ܕܣܝܡܐܢܛܝܩ (ܣܘ̈ܟܠܐ)", + "smw_ask_ascorder": "ܡܣܩܐܝܬ", + "smw_ask_descorder": "ܡܚܬܐܝܬ", + "smw_ask_otheroptions": "ܓܒܝܬ̈ܐ ܐܚܪ̈ܢܝܬܐ", + "searchbyproperty": "ܒܨܝܐ ܠܦܘܬ ܕ̈ܝܠܝܬܐ", + "smw_sbv_property": "ܕܝܠܝܬܐ:", + "smw_sbv_value": "ܛܝܡܐ:", + "smw_sbv_submit": "ܐܫܟܚ ܦܠܛ̈ܐ", + "browse": "ܦܐܬ ܘܝܩܝ", + "smw_browselink": "ܕ̈ܝܠܝܬܐ ܕܡܦܐܬܢܘܬܐ", + "smw_browse_article": "ܐܥܠ ܫܡܐ ܕܦܐܬܐ ܠܫܘܪܝ ܦܐܬܢܘܬܐ ܡܢܗ.", + "smw_browse_go": "ܙܠ", + "smw_browse_show_incoming": "ܚܘܝ ܕ̈ܝܠܝܬܐ ܕܐܣܝܪܝܢ ܠܗܪܟܐ", + "smw_browse_hide_incoming": "ܛܫܝ ܕ̈ܝܠܝܬܐ ܕܐܣܝܪܝܢ ܠܗܪܟܐ", + "smw_browse_no_outgoing": "ܦܐܬܐ ܗܕܐ ܠܝܬ ܠܗ ܕ̈ܝܠܝܬܐ.", + "smw_browse_no_incoming": "ܠܝܬ ܕ̈ܝܠܝܬܐ ܕܐܣܝܪܝܢ ܥܡ ܦܐܬܐ ܗܕܐ.", + "smw_inverse_label_default": "$1 ܡܢ", + "smw_pp_from": "ܡܢ ܦܐܬܐ", + "smw_pp_type": "ܕܝܠܝܬܐ", + "smw_result_prev": "ܕܩܕܡ", + "smw_result_next": "ܕܒܬܪ", + "smw_result_results": "ܦܠܛ̈ܐ", + "smw_result_noresults": "ܠܝܬ ܦܠܛ̈ܐ.", + "smw-listingcontinuesabbrev": "(ܫܘܠܡܐ)", + "smw-showingresults": "ܚܘܘܝܐ ܠܬܚܬ {{PLURAL:$1|'''1''' ܦܠܛܐ|'''$1''' ܦܠܛ̈ܐ}} ܫܪܐ ܡܢ ܡܢܝܢܐ '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/arq.json b/mediawiki/extensions/SemanticMediaWiki/i18n/arq.json new file mode 100644 index 0000000..034140d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/arq.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Bachounda", + "Oldstoneage" + ] + }, + "smw-categories": "تصنيفات", + "browse": "صفّح فل ويكي", + "smw-listingcontinuesabbrev": "يُتبع" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ary.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ary.json new file mode 100644 index 0000000..ebc5c06 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ary.json @@ -0,0 +1,22 @@ +{ + "@metadata": { + "authors": [ + "Abdeaitali", + "Ideophagous", + "Reda Benkhadra", + "SADIQUI" + ] + }, + "smw-categories": "تصنيفات", + "smw-ask-order-rand": "صفحة كيما كانت", + "browse": "تصفّح الويكي", + "smw_browse_go": "سير", + "pageproperty": "التقلاب ف مزيّات صفحة", + "smw-admin-supplementary-elastic-version-info": "نسخة", + "smw-admin-supplementary-elastic-config": "ريكلاج", + "smw-livepreview-loading": "tssna wa7d chwiya kaytcharja ....", + "smw-search-hide": "خبي", + "smw-help": "معاونة", + "smw-listingcontinuesabbrev": "لكمالة", + "smw-showingresults": "باينة لتحت {{PLURAL:$1|1 نتائج}} بادية برقم $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/arz.json b/mediawiki/extensions/SemanticMediaWiki/i18n/arz.json new file mode 100644 index 0000000..946e7d9 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/arz.json @@ -0,0 +1,189 @@ +{ + "@metadata": { + "authors": [ + "Ghaly", + "HitomiAkane", + "Jaideraf", + "Kghbln", + "Meno25", + "Ouda", + "Ramsis II", + "아라" + ] + }, + "smw-desc": "جعل الويكى الخاص بك أكثر قابليه للوصول - للآلات ''و'' البشر ([https://www.semantic-mediawiki.org/wiki/Help:User_manual توثيق على الإنترنت])", + "smw_viewasrdf": "تلقيم RDF", + "smw_finallistconjunct": "، و", + "smw_isspecprop": "هذه الخاصيه هى خاصيه خاصه فى هذا الويكى.", + "smw_concept_description": "وصف المبدأ \"$1\"", + "smw_no_concept_namespace": "المبادئ يمكن تعريفها فقط فى الصفحات فى نطاق Concept:", + "smw_multiple_concepts": "كل صفحه مبدأ يمكن أن تحتوى على تعريف مبدأ واحد.", + "smw_concept_cache_miss": "المبدأ \"$1\" لا يمكن استخدامه حاليا، بما أن ضبط الويكى يحتاجه إلى أن يتم حسابه خارجيا. لو أن المشكله لم تنته بعد بعض الوقت، سل إدارى موقعك ليجعل هذا المبدأ متوفرا.", + "smw_noinvannot": "القيم لا يمكن تعيينها لخصائص معكوسه.", + "smw_baduri": "URIs من النوع \"$1\" غير مسموح بها.", + "smw_csv_link": "سى فى إس", + "smw_printername_count": "عد النتائج", + "smw_printername_csv": "تصدير CSV", + "smw_printername_debug": "استعلام التصليح (للخبراء)", + "smw_printername_embedded": "تضمين محتويات الصفحة", + "smw_printername_json": "تصدير JSON", + "smw_printername_list": "قائمة", + "smw_printername_ol": "ترقيم", + "smw_printername_ul": "ترتيب فى عناصر", + "smw_printername_table": "جدول", + "smw_printername_broadtable": "جدول عريض", + "smw_printername_template": "قالب", + "smw-paramdesc-limit": "الرقم الأقصى للعناصر المُرجعة", + "smw-paramdesc-headers": "اعرض العناوين/أسماء الخصائص", + "smw-paramdesc-mainlabel": "العلامه للإعطاء لاسم الصفحه الرئيسية", + "smw-paramdesc-link": "أظهر القيم كوصلات", + "smw-paramdesc-intro": "النص للعرض قبل نتائج الاستعلام، لو كانت هناك أي", + "smw-paramdesc-outro": "النص المطلوب عرضه بعد نتائج الاستعلام، إن وُجدت", + "smw-paramdesc-default": "النص المطلوب عرضه إذا لم تتوفر نتائج للاستعلام", + "smw-paramdesc-sep": "فاصل القيم", + "smw-paramdesc-template": "اسم القالب لعرض الخرج به", + "smw-paramdesc-columns": "رقم الأعمده لعرض النتائج بها", + "smw-paramdesc-embedformat": "وسم HTML المستخدم لتعريف الترويسة", + "smw-paramdesc-embedonly": "لا تظهر الترويسات", + "smw-paramdesc-searchlabel": "نص وصله النتائج", + "smw_iq_disabled": "استعلامات السيمانتيك تم تعطيلها فى هذا الويكى.", + "smw_iq_moreresults": "… مزيد من النتائج", + "smw_parseerror": "القيمه المعطاه لم يتم فهمها.", + "smw_decseparator": ".", + "smw_kiloseparator": "،", + "smw_notitle": "\"$1\" لا يمكن أن تستخدم مثل هذا الاسم فى صفحه ويكى.", + "smw_wrong_namespace": "فقط الصفحات فى النطاق \"$1\" مسموح بها هنا.", + "smw_manytypes": "أكثر من نوع واحد لتعريف الخاصيه.", + "smw_emptystring": "السلاسل الفارغه غير مقبوله.", + "smw_notinenum": "\"$1\" ليس ضمن قائمه [[Property:Allows value|القيم الممكنه]] ($2) لهذه الخاصيه \"$3\".", + "smw_noboolean": "\"$1\" غير متعرف عليها كقيمه بووليان (صواب/خطأ).", + "smw_true_words": "صحيح،ص،نعم،ن", + "smw_false_words": "خطأ،خ،لا،ل", + "smw_nofloat": "ليس عددا \"$1\".", + "smw_infinite": "الأرقام الكبيره مثل \"$1\" غير مدعومه.", + "smw_nodatetime": "التاريخ \"$1\" لم يتم فهمه.", + "smw_toomanyclosing": "يبدو أنه هناك الكثير من \"$1\" فى الاستعلام.", + "smw_noclosingbrackets": "\"]]\" فى استعلامك لم تكن مغلقه باستخدام \"[[\" بعض استخدام", + "smw_misplacedsymbol": "الرمز \"$1\" تم استخدامه فى مكان حيث هو ليس مفيدا.", + "smw_unexpectedpart": "الجزء \"$1\" من الاستعلام لم يفهم.\nالنتائج قد لا تكون كما هو متوقع.", + "smw_emptysubquery": "بعض الاستعلامات الفرعيه ليس لها شرط صحيح.", + "smw_misplacedsubquery": "بعض الاستعلامات الفرعيه تم استخدمها فى مكان غير مسموح فيه بالاستعلامات الفرعيه.", + "smw_valuesubquery": "الاستعلامات الفرعيه غير مدعومه لقيم الخاصيه \"$1\".", + "smw_badqueryatom": "جزء ما \"[[…]]\" من الاستعلام لم يتم فهمه.", + "smw_propvalueproblem": "قيمه الخاصيه \"$1\" لم يتم فهمها.", + "smw_noqueryfeature": "ميزه استعلام ما لم يتم دعمها فى هذا الويكى وجزء من الاستعلام تم إسقاطه ($1).", + "smw_noconjunctions": "الوقوفات فى الاستعلامات غير مدعومه فى هذا الويكى وجزء من الاستعلام تم إسقاطه ($1).", + "smw_nodisjunctions": "المفارق فى استعلامات ليست مدعومه فى هذا الويكى وجزء من الاستعلام رفض $1.", + "smw_querytoolarge": "{{PLURAL:$2|شروط الاستفسار}} التاليه لم يمكن اعتبارها نتيجه لقيود الويكى فى حجم أو عمق الاستعلام: $1.", + "smw_notemplategiven": "وفر قيمه للمحدد \"template\" لتعمل صيغه الاستعلام هذه.", + "smw_type_header": "خصائص النوع \"$1\"", + "smw_typearticlecount": "عرض {{PLURAL:$1||خاصيه واحده تستخدم|خاصيتين تستخدمان|$1 خصائص تستخدم|$1 خاصيه تستخدم}} هذا النوع.", + "smw_attribute_header": "الصفحات التى تستخدم الخاصيه \"$1\"", + "smw_attributearticlecount": "عرض {{PLURAL:$1||الصفحه التى تستخدم|الصفحتين اللتين تستخدمان|الصفحات التى تستخدم}} هذه الخاصيه.", + "specialpages-group-smw_group": "سيمانتيك ميدياويكى", + "exportrdf": "آر دی‌ إف إلى صفحات تصدير", + "smw_exportrdf_docu": " هذه الصفحه تتيح لك الحصول على بيانات من صفحه فى شكل آر دی‌ إف.\nالتصدير إلى صفحات، أدخل العناوين فى مربع النص أدناه، عنوان واحد لكل سطر.", + "smw_exportrdf_recursive": "تصدير جميع الصفحات ذات الصله بشكل تكرارى.\nعلما أنه يمكن أن تكون النتيجه كبيرة!", + "smw_exportrdf_backlinks": "أيضا تصدير كل الصفحات التى تشير إلى الصفحات تم تصديرها.\nيولد آر دى إف قابل للتصفح.", + "smw_exportrdf_lastdate": "لا تصدر الصفحات التى لم تتغير منذ نقطه زمنيه محدده.", + "smw_exportrdf_submit": "تصدير", + "uriresolver": "محلل URI", + "properties": "الخصائص", + "smw-categories": "تصانيف", + "smw_properties_docu": "الخصائص التاليه تستخدم فى الويكى.", + "smw_property_template": "$1 من نوع $2 ({{PLURAL:$3|مرة|مرتين|$3 مرات}})", + "smw_propertylackspage": "جميع الخصائص ينبغى أن توصف بصفحة!", + "smw_propertylackstype": "لا نوع تم تحديده لهذه الخاصيه (افتراض النوع $1 حاليا).", + "smw_propertyhardlyused": "هذه الخاصيه لا تكاد تستخدم داخل الويكي!", + "unusedproperties": "خصائص غير مستخدمة", + "smw-unusedproperties-docu": "تسرد هذه الصفحة [https://www.semantic-mediawiki.org/wiki/Unused_properties الخصائص غير المستخدمة] التي تم تعريفها على الرغم من عدم استفادة صفحات أخرى منها، للحصول على عرض متباين; انظر الصفحات الخاصة [[Special:Properties|كل الخصائص]] أو [[Special:WantedProperties|خصائص مطلوبة]].", + "smw-unusedproperty-template": "$1 من نوع $2", + "wantedproperties": "خصائص مطلوبة", + "smw-wantedproperties-docu": "تسرد هذه الصفحة [https://www.semantic-mediawiki.org/wiki/Wanted_properties خصائص مطلوبة] مستخدمة في الويكي ولكن لا توجد صفحات تصفها، للحصول على عرض متباين; انظر الصفحات الخاصة [[Special:Properties|كل الخصائص]] أو [[Special:UnusedProperties|خصائص غير مستخدمة]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|استخدام|استخدام}})", + "smw_purge": "تحديث", + "types": "أنواع", + "smw_types_docu": "التالى قائمه بجميع أنواع البيانات التى يمكن أن تسند إلى الخصائص.\nكل نوع بيانات له صفحه حيث يمكن توفير معلومات إضافيه.", + "smw_uri_doc": "القرار URI بتطبق [$1 W3C TAG العثور على httpRange-14]. بيقفل إنه بيتم تسليم تمثيل RDF (للوحات) أو صفحة ويكي (للانسان) حسب الطلب.", + "ask": "بحث سيمانتيك", + "smw_ask_sortby": "الترتيب حسب العمود (اختياري)", + "smw_ask_ascorder": "تصاعدي", + "smw_ask_descorder": "تنازلي", + "smw_ask_submit": "جِد نتائجًا", + "smw_ask_editquery": "عدل الاستعلام", + "smw_add_sortcondition": "[أضف شرط ترتيب]", + "smw_ask_hidequery": "إخفاء الاستعلام", + "smw_ask_help": "مساعده الاستعلام", + "smw_ask_queryhead": "استعلام", + "smw_ask_printhead": "بيانات إضافيه للعرض", + "smw_ask_printdesc": "(أضف اسمًا مناسبًا واحدًا فى كل سطر)", + "smw_ask_format_as": "صياغه ك:", + "smw_ask_defaultformat": "افتراضي", + "smw_ask_otheroptions": "خيارات أخرى", + "smw_ask_show_embed": "عرض الكود المضمن", + "smw_ask_hide_embed": "إخفاء الكود المضمن", + "smw_ask_embed_instr": "لتضمين هذا الاستعلام فى صفحه ويكى، استخدم الكود أدناه", + "searchbyproperty": "البحث حسب الخصائص", + "smw_sbv_docu": "البحث عن كل الصفحات التى لها خصائص معينه وقيمة", + "smw_sbv_novalue": "أدخل قيمه صحيحه للخاصيه، أو انظر كل قيم الخصائص ل\"$1\"", + "smw_sbv_displayresultfuzzy": "قائمه بكل الصفحات التى لديها الخاصيه \"$1\" بالقيمه \"$2\".\nبما أنه كانت هناك فقط عده نتائج، فالقيم المقاربه معروضه أيضا.", + "smw_sbv_property": "خاصية:", + "smw_sbv_value": "قيمة:", + "smw_sbv_submit": "جِد نتائجًا", + "browse": "استعرض ويكى", + "smw_browselink": "خصائص التصفح", + "smw_browse_article": "أدخل اسم الصفحه لبدء التصفح منها.", + "smw_browse_go": "اذهب", + "smw_browse_show_incoming": "أظهر الخواص التى تصل هنا", + "smw_browse_hide_incoming": "أخفِ الخواص التى تصل هنا", + "smw_browse_no_outgoing": "هذه الصفحه ليس لديها خصائص.", + "smw_browse_no_incoming": "لا خصائص تصل إلى هذه الصفحه.", + "smw_inverse_label_default": "$1 من", + "smw_inverse_label_property": "اعكس علامه الخاصية", + "pageproperty": "بحث خصائص الصفحة", + "smw_pp_docu": "البحث عن جميع قيم خاصيه على صفحه معينه.\nأدخل صفحه وخاصيه.", + "smw_pp_from": "من صفحة", + "smw_pp_type": "الخاصية", + "smw_pp_submit": "جِد نتائجًا", + "smw_result_prev": "السابق", + "smw_result_next": "التالي", + "smw_result_results": "النتائج", + "smw_result_noresults": "لا توجد نتائج.", + "smwadmin": "وظائف إداريه لسيمانتيك ميدياويكي", + "smw-admin-setupsuccess": "تم تنصيب محرك التخزين بنجاح", + "smw_smwadmin_return": "أرجع إلى $1", + "smw_smwadmin_updatestarted": "عمليه تحديث جديده لتحديث بيانات سيمانتيك بدأت.\nكل البيانات المخزنه ستتم إعاده بنائها أو إصلاحها عند الحاجه.\nأنت يمكنك متابعه تطور التحديث على هذه الصفحه الخاصه.", + "smw_smwadmin_updatenotstarted": "يوجد بالفعل عمليه تحديث جاريه.\nلا تنشئ واحده أخرى.", + "smw_smwadmin_updatestopped": "كل عمليات التحديث الموجوده تم إيقافها", + "smw_smwadmin_updatenotstopped": "لوقف عمليه التحديث الجاريه، يجب عليك تفعيل الصندوق لتعبر عن أنك متأكد حقا.", + "smw-admin-docu": "هذه الصفحه الخاصه تساعدك خلال تنصيب وترقيه سيمانتيك ميدياويكي.\nتذكر أن تخزن احتياطيا البيانات القيمه قبل تنفيذ وظائف إداريه.", + "smw-admin-db": "تثبيت و تحديث قاعده البيانات", + "smw-admin-dbdocu": "سيمانتيك ميدياويكى يتطلب بعض الامتدادات لقاعده بيانات ميدياويكى حتى يخزن البيانات السيمانتيك.\nالوظيفه التاليه تؤكد أن قاعده بياناتك منصبه بشكل صحيح.\nالتغييرات المعموله فى هذه الخطوه لا تؤثر على بقيه قاعده بيانات ميدياويكى، ويمكن استرجاعها بسهوله فى حاله الرغبه فى ذلك.\nوظيفه التنصيب هذه يمكن تنفيذها عده مرات بدون عمل أى ضرر، لكنها مطلوبه مره واحده عند التنصيب أو الترقيه.", + "smw-admin-permissionswarn": "لو أن العمليه فشلت مع أخطاء SQL، فقاعده البيانات التى طبقها المستخدم بواسطه الويكى الخاص بك (تحقق من LocalSettings.php الخاص بك) على الأرجح لا تمتلك سماحات كافيه.\nإما أن تمنح هذا المستخدم سماحات إضافيه لإنشاء وحذف الجداول، مؤقتا أدخل تسجيل الدخول للroot الخاص بقاعده بياناتك فى LocalSettings.php، أو استخدم سكريبت الصيانه setupStore.php الذى يمكنه استخدام تأكيدات AdminSettings.php.", + "smw-admin-dbbutton": "جداول البدء أو الترقية", + "smw-admin-announce": "أعلن عن الويكى الخاص بك", + "smw_smwadmin_datarefresh": "إصلاح البيانات وتحديثها", + "smw_smwadmin_datarefreshdocu": "من الممكن استرجاع كل بيانات سيمانتيك ميدياويكى بناء على المحتويات الحاليه للويكى.\nهذا يمكن أن يكون مفيدا لإصلاح البيانات المكسوره أو لتحديث البيانات لو أن الصيغه الداخليه تغيرت بسبب ترقيه برنامج.\nالتحديث يتم تنفيذه صفحه بصفحه ولن يتم إكماله حالا.\nالتالى يعرض ما إذا كان التحديث يجرى ويسمح لك ببدء أو إنهاء التحديثات (إلا لو كانت هذه الخاصيه تم تعطيلها بواسطه إدارى الموقع).", + "smw_smwadmin_datarefreshprogress": "تحديث يجرى بالفعل.\nمن الطبيعى أن تتقدم عمليات التحديث ببطء فقط بما أنها تحدث البيانات فقط فى كميات صغيره كل مره مستخدم ما يصل إلى الويكى.\nللانتهاء من هذا التحديث سريعا، يمكنك تشغيل سكريبت صيانه ميدياويكى runJobs.php (استخدم الخيار --maxjobs 1000 لتحديد عدد التحديثات المعموله كل مرة).\nالتقدم المقدر للتحديث الحالي:", + "smw_smwadmin_datarefreshbutton": "أبدا تحديث البيانات", + "smw_smwadmin_datarefreshstop": "أوقف هذا التحديث", + "smw_smwadmin_datarefreshstopconfirm": "نعم، أنا {{GENDER:$1|متأكد}}", + "smw-admin-support": "أحصل على دعم", + "smw-admin-supportdocu": ":مصادر متعدده يمكن أن تساعده فى حاله مشاكل", + "smw-admin-installfile": "لو أنك تواجه مشاكل مع تنصيبك، ابدأ بالتحقق من الإرشادات فى ملف INSTALL.", + "smw-admin-smwhomepage": "وثائق المستخدم الكامله لسيمانتيك ميدياويكى موجوده فى semantic-mediawiki.org.", + "smw-admin-bugsreport": "العلل يمكن إبلاغها إلى ميديازيللا.", + "smw-admin-questions": "لو لديك أسئله أو اقتراحات أخرى، انضم إلى النقاش فى منتدى مستخدمى سيمانتيك ميدياويكي.", + "smw_adminlinks_datastructure": "هيكل البيانات", + "smw_adminlinks_displayingdata": "عرض البيانات", + "smw_adminlinks_inlinequerieshelp": "مساعده الاستعلامات الداخلية", + "smw-createproperty-isproperty": "هذه خاصية من نوع $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1||القيمة المسموح بها لهذه الخاصية هي|القيمتان المسموح بهما لهذه الخاصية هما|القيم المسموح بها لهذه الخاصية هي}}:", + "smw_unknowntype": "نوع غير مدعوم \"$1\" لتعريف الممتلكات.", + "smw_concept_header": "صفحات المبدأ \"$1\"", + "smw_conceptarticlecount": "عرض {{PLURAL:$1||صفحه واحده تنتمي|صفحتين تنتميان|$1 صفحات تنتمي|$1 صفحه تنتمي}} إلى هذا المبدأ.", + "smw-livepreview-loading": "تحميل…", + "smw-schema-tag": "{{PLURAL:$1|وسم|وسوم}}", + "smw-listingcontinuesabbrev": "متابعه", + "smw-showingresults": "الصفحه دى بتعرض {{PLURAL:$1|1 نتيجه}} من اول رقم $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/as.json b/mediawiki/extensions/SemanticMediaWiki/i18n/as.json new file mode 100644 index 0000000..d8cf41a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/as.json @@ -0,0 +1,19 @@ +{ + "@metadata": { + "authors": [ + "Chaipau", + "Gitartha.bordoloi", + "IKHazarika", + "Mohsin Ali" + ] + }, + "smw-upgrade-error-why-title": "মই এই পৃষ্ঠাখন কিয় দেখা পাওঁ?", + "smw-extensionload-error-why-title": "মই এই পৃষ্ঠাখন কিয় দেখা পাওঁ?", + "smw-upgrade-maintenance-why-title": "মই এই পৃষ্ঠাখন কিয় দেখা পাওঁ?", + "smw-categories": "শ্ৰেণী", + "browse": "ব্ৰাউজ ৱিকি", + "smw_result_results": "ফলাফল", + "smw-livepreview-loading": "ল'ড হৈ আছে…", + "smw-listingcontinuesabbrev": "আগলৈ", + "smw-showingresults": "তলত #'''$2'''ৰ পৰা {{PLURAL:$1|'''1''' ফলাফল|'''$1''' ফলাফল}} দেখুওৱা হৈছে।" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ast.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ast.json new file mode 100644 index 0000000..d7c2e75 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ast.json @@ -0,0 +1,653 @@ +{ + "@metadata": { + "authors": [ + "Esbardu", + "Fitoschido", + "Macofe", + "McDutchie", + "Tifinaghes", + "Xuacu", + "YoaR" + ] + }, + "smw-desc": "Facer la to wiki más accesible - pa les máquines ''y'' pa los humanos ([https://www.semantic-mediawiki.org/wiki/Help:User_manual documentación en llinia])", + "smw-semantics-not-enabled": "Nun s'activó la función de MediaWiki Semántica pa esta wiki.", + "smw_viewasrdf": "Canal RDF", + "smw_finallistconjunct": ", ⴷ", + "smw-factbox-head": "… más sobre «$1»", + "smw-factbox-facts": "Fechos", + "smw-factbox-facts-help": "Amosar les declaraciones y fechos que se crearon por un usuariu", + "smw-factbox-facts-derived": "Fechos derivaos", + "smw-factbox-facts-derived-help": "Amosar fechos que se derivaron de regles o cola ayuda d'otres técniques de razonamientu", + "smw_isspecprop": "Esta propiedá ye una propiedá especial nesta wiki.", + "smw-concept-cache-header": "Usu de la caché", + "smw-concept-cache-count": "La [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count caché de conceptos] contién {{PLURAL:$1|'''una''' entidá|'''$1''' entidaes}} ($2).", + "smw-concept-no-cache": "Nun hai caché disponible.", + "smw_concept_description": "Descripción del conceptu \"$1\"", + "smw_no_concept_namespace": "Los conceptos sólo puen definise nes páxines del espaciu de nomes Conceptu:.", + "smw_multiple_concepts": "Cada páxina de conceptu sólo pue tener una definición d'un conceptu.", + "smw_concept_cache_miss": "El conceptu \"$1\" nun pue usase de momentu, porque la configuración de la wiki requier que se calcule desconectáu. Si'l problema nun desapaez dempués d'un tiempu, pida al alministrador del sitiu que faiga disponible esti conceptu.", + "smw_noinvannot": "Nun pueden dase valores a propiedaes inverses.", + "version-semantic": "Estensiones semántiques", + "smw_baduri": "Les URIs de la forma «$1» nun tan permitíes.", + "smw_printername_count": "Resultaos del recuentu", + "smw_printername_csv": "Esportación a CSV", + "smw_printername_dsv": "Esportación a DSV", + "smw_printername_debug": "Consulta de depuración (pa espertos)", + "smw_printername_embedded": "Incrustar conteníu de páxina", + "smw_printername_json": "Esportación a JSON", + "smw_printername_list": "Llista", + "smw_printername_plainlist": "Llista simple", + "smw_printername_ol": "Enumeración", + "smw_printername_ul": "Itemización", + "smw_printername_table": "Tabla", + "smw_printername_broadtable": "Tabla ancha", + "smw_printername_template": "Plantía", + "smw_printername_templatefile": "Ficheru de plantía", + "smw_printername_rdf": "Esportación a RDF", + "smw_printername_category": "Categoría", + "validator-type-class-SMWParamSource": "testu", + "smw-paramdesc-limit": "El númberu máximu de resultaos a devolver", + "smw-paramdesc-offset": "El desplazamientu del primer resultáu", + "smw-paramdesc-headers": "Ver les cabeceres/nomes de propiedá", + "smw-paramdesc-mainlabel": "La etiqueta a dar al nome de la páxina principal", + "smw-paramdesc-link": "Ver los valores como enllaces", + "smw-paramdesc-intro": "El testu que s'amuesa antes de los resultaos de la consulta, si los hai", + "smw-paramdesc-outro": "El testu que s'amuesa dempués de los resultaos de la consulta, si los hai", + "smw-paramdesc-default": "El testu que s'amuesa si nun hai resultaos na consulta", + "smw-paramdesc-sep": "El separador ente resultancies", + "smw-paramdesc-propsep": "El separador ente les propiedaes d'una entrada de resultancia", + "smw-paramdesc-valuesep": "El separador ente los valores d'una propiedá d'un resultáu", + "smw-paramdesc-showsep": "Amosar el separador al principiu del ficheru CSV (\"sep=\")", + "smw-paramdesc-distribution": "En llugar d'amosar tolos valores, contar les veces qu'ocurren y amosales.", + "smw-paramdesc-distributionsort": "Ordenar la distribución de valores pol númberu d'ocurrencies.", + "smw-paramdesc-distributionlimit": "Llendar la distribución de valores a la cuenta d'algunos valores solamente.", + "smw-paramdesc-aggregation": "Especifica con qué tien de rellacionase'l conxuntu", + "smw-paramdesc-template": "El nome d'una plantía cola qu'amosar los llistaos", + "smw-paramdesc-columns": "El númberu de columnes p'amosar los resultaos", + "smw-paramdesc-userparam": "Un valor pasáu en cada llamada de plantía,si s'usa una plantía", + "smw-paramdesc-class": "Una clase CSS estra qu'establecer pa la tabla", + "smw-paramdesc-introtemplate": "El nome d'una plantía que s'amuesa antes de los resultaos de la consulta, si los hai", + "smw-paramdesc-outrotemplate": "El nome d'una plantía que s'amuesa dempués de los resultaos de la consulta, si los hai", + "smw-paramdesc-embedformat": "La etiqueta HTML que s'usa pa definir los encabezaos", + "smw-paramdesc-embedonly": "Nun amosar cabeceres", + "smw-paramdesc-table-class": "Una clase CSS estra qu'establecer pa la tabla", + "smw-paramdesc-table-transpose": "Ver les testeres de tabla en vertical y los resultaos n'horizontal", + "smw-paramdesc-rdfsyntax": "La sintaxis RDF a usar", + "smw-paramdesc-csv-sep": "Especifica un separador de columnes", + "smw-paramdesc-csv-valuesep": "Especifica un separador de valores", + "smw-paramdesc-csv-merge": "Mecer los valores de fileres y columnes col mesmu identificador de suxetu (aka primera columna)", + "smw-paramdesc-csv-bom": "Añadir un BOM (caráuter pa indicar la triba «endian») al principiu del ficheru de salida", + "smw-paramdesc-dsv-separator": "El separador a usar", + "smw-paramdesc-dsv-filename": "El nome del ficheru DSV", + "smw-paramdesc-filename": "El nome del ficheru de salida", + "smw-smwdoc-description": "Amuesa una tabla con tolos parámetros que se pueden usar pal formatu de resultaos especificáu xunto colos valores predeterminaos y les descripciones.", + "smw-smwdoc-default-no-parameter-list": "Esti formatu de resultáu nun ufre parámetros específicos de formatu.", + "smw-smwdoc-par-format": "El formatu de los resultaos pal qu'amosar la documentación de parámetros.", + "smw-smwdoc-par-parameters": "Qué parámetros amosar. \"specific\" pa los amestaos pol formatu, \"base\" pa los disponibles en tolos formatos y \"all\" pa ambos.", + "smw-paramdesc-sort": "Propiedá pola qu'ordenar la consulta", + "smw-paramdesc-order": "Orde d'ordenación de la consulta", + "smw-paramdesc-searchlabel": "Testu pa siguir la busca", + "smw-paramdesc-named_args": "Nome de los argumentos que se pasan a la plantía", + "smw-paramdesc-template-arguments": "Configura cómo se pasen los argumentos con nome a la plantía", + "smw-paramdesc-import-annotation": "Se copiaran otros datos anotaos más demientres l'análisis d'un tema", + "smw-paramdesc-export": "Opción d'esportación", + "smw-paramdesc-prettyprint": "Una salida con formatu axeitáu qu'amuesa más sangríes y llinies nueves", + "smw-paramdesc-json-unescape": "Salida pa contener barres sin escapar y carácteres Unicode multibyte", + "smw-paramdesc-json-type": "Tipu de serialización", + "smw-paramdesc-source": "Fonte alternativa de consulta", + "smw-paramdesc-jsonsyntax": "Sintaxis JSON a usar", + "smw-printername-feed": "Canal RSS y Atom", + "smw-paramdesc-feedtype": "Tipu de canal", + "smw-paramdesc-feedtitle": "El testu a usar como títulu de la canal", + "smw-paramdesc-feeddescription": "El testu a usar como descripción de la canal", + "smw-paramdesc-feedpagecontent": "Conteníu de la páxina que s'amosará cola canal", + "smw-label-feed-description": "Canal $2 $1", + "smw_iq_disabled": "Les consultes semántiques tan desactivaes nesta wiki.", + "smw_iq_moreresults": "… más resultaos", + "smw_parseerror": "Nun s'entendió el valor dau.", + "smw_notitle": "\"$1\" nun se pue usar como nome de páxina nesta wiki.", + "smw_noproperty": "\"$1\" nun se pue usar como nome de propiedá nesta wiki.", + "smw_wrong_namespace": "Equí sólo se permiten les páxines del espaciu de nomes \"$1\".", + "smw_manytypes": "Definiose más d'un tipu pa la propiedá.", + "smw_emptystring": "Nun s'aceuten les cadenes baleres.", + "smw_notinenum": "«$1» nun ta na llista ($2) de [[Property:Allows value|valores posibles]] de la propiedá «$3».", + "smw_noboolean": "«$1» nun ta reconocíu como valor booleanu (verdaderu/falsu).", + "smw_true_words": "verdaderu,v,si,s,true,t", + "smw_false_words": "falsu,false,f,non,n", + "smw_nofloat": "\"$1\" nun ye un númberu.", + "smw_infinite": "Nun hai sofitu pa númberos tán grandes como \"$1\".", + "smw_unitnotallowed": "\"$1\" nun ta declarada como unidá de midida válida pa esta propiedá.", + "smw_nounitsdeclared": "Nun se declaró nenguna unidá de midida pa esta propiedá.", + "smw_novalues": "Nun s'especificó nengún valor.", + "smw_nodatetime": "Nun s'entendió la data «$1».", + "smw_toomanyclosing": "Paez qu'hai demasiaes apaiciones de \"$1\" na consulta.", + "smw_noclosingbrackets": "Algún usu de \"[[\" na consulta nun ta zarráu coles \"]]\" correspondientes.", + "smw_misplacedsymbol": "El símbolu \"$1\" usose nun llugar onde nun ye útil.", + "smw_unexpectedpart": "La parte \"$1\" de la consulta nun s'entendió.\nLos resultaos podríen nun ser los esperaos.", + "smw_emptysubquery": "Alguna subconsulta nun tien una condición válida.", + "smw_misplacedsubquery": "Alguna subconsulta s'usó nun llugar onde nun se permiten les subconsultes.", + "smw_valuesubquery": "Nun hai sofitu de subconsultes pa los valores de la propiedá \"$1\".", + "smw_badqueryatom": "Una parte «[[…]]» de la consulta nun s'entendió.", + "smw_propvalueproblem": "El valor de la propiedá «$1» nun s'entendió.", + "smw_noqueryfeature": "Alguna carauterística de la consulta nun tien sofitu nesta wiki y parte de la consulta nun se tuvo en cuenta ($1).", + "smw_noconjunctions": "Les conxunciones nes consultes nun tienen sofitu nesta wiki y parte de la consulta nun se tuvo en cuenta ($1)", + "smw_nodisjunctions": "Les dixunciones nes consultes nun tienen sofitu nesta wiki y parte de la consulta nun se tuvo en cuenta ($1).", + "smw_querytoolarge": "{{PLURAL:$2|La siguiente condición|Les siguientes condiciones}} de consulta nun {{PLURAL:$2|pudo|pudieron}} considerase poles torgues de les wikis nel tamañu o fondura de les consultes: $1", + "smw_notemplategiven": "Dar un valor al parámetru \"plantía\" pa qu'esti formatu de consulta funcione.", + "smw_db_sparqlqueryproblem": "Nun pudieron algamase resultaos de la consulta de la base de datos SPARQL. Esti error pue ser temporal o indicar un error nel programa de la base de datos.", + "smw_db_sparqlqueryincomplete": "Resultó demasiao difícil responder la consulta y s'encaboxó. Pueden faltar algunos resultaos. Si ye posible, intente facer una consulta más cenciella.", + "smw_type_header": "Propiedaes de tipu \"$1\"", + "smw_typearticlecount": "Amosando $1 {{PLURAL:$1|propiedá qu'usa|propiedaes qu'usen}} esti tipu.", + "smw_attribute_header": "Páxines qu'usen la propiedá \"$1\"", + "smw_attributearticlecount": "Amosando $1 {{PLURAL:$1|páxina qu'usa|páxines qu'usen}} esta propiedá.", + "smw-propertylist-subproperty-header": "Subpropiedaes", + "smw-propertylist-redirect-header": "Sinónimos", + "smw-propertylist-error-header": "Páxines con atribuciones inapropiaes", + "smw-propertylist-count": "S'{{PLURAL:$1|amuesa $1 entidá rellacionada|amuesen $1 entidaes rellacionaes}}.", + "smw-propertylist-count-with-restricted-note": "S'{{PLURAL:$1|amuesa $1 entidá rellacionada|amuesen $1 entidaes rellacionaes}} (hai más disponibles, pero la salida ta llendada a «$2»).", + "smw-propertylist-count-more-available": "S'{{PLURAL:$1|amuesa $1 entidá rellacionada|amuesen $1 entidaes rellacionaes}} (hai más disponibles).", + "exportrdf": "Esportar les páxines a RDF", + "smw_exportrdf_docu": "Esta páxina permite algamar datos d'una páxina en formatu RDF.\nPa esportar les páxines, escriba los títulos nel cuadru de testu d'abaxo, un títulu por llinia.", + "smw_exportrdf_recursive": "Esportar recursivamente toles páxines rellacionaes.\n¡Tenga en cuenta que'l resultáu pue ser grande!", + "smw_exportrdf_backlinks": "Esportar tamién toles páxines que se refieren a les páxines esportaes.\nXenera un RDF navegable.", + "smw_exportrdf_lastdate": "Nun esportar les páxines que nun camudaron dende cierta data.", + "smw_exportrdf_submit": "Esportar", + "uriresolver": "URIResolver", + "properties": "Propiedaes", + "smw-categories": "Categoríes", + "smw_properties_docu": "Les siguientes propiedaes s'usen na wiki.", + "smw_property_template": "$1 de tipu $2 ($3 {{PLURAL:$3|usu|usos}})", + "smw_propertylackspage": "¡Toles propiedaes habríen de tar descrites por una páxina!", + "smw_propertylackstype": "Nun s'especificó nengún tipu pa esta propiedá (asumiendo tipu $1 de momentu).", + "smw_propertyhardlyused": "¡Esta propiedá apenes tien usu nesta wiki!", + "smw-property-name-invalid": "Nun se pue usar la propiedá $1 (nome de propiedá inválidu).", + "smw-property-name-reserved": "«$1» marcóse como nome acutáu y nun tendría d'utilizase como propiedá. La siguiente [https://www.semantic-mediawiki.org/wiki/Help:Property_naming páxina d'ayuda] podría tener información sobre'l motivu pa qu'esti nome tea acutáu.", + "smw-sp-property-searchform": "Amosar les propiedaes que contengan:", + "smw-sp-property-searchform-inputinfo": "La entrada ye sensible a mayúscules y, cuando s'usa pa filtriar, namái apaecen les propiedaes que casen cola condición.", + "smw-special-property-searchform": "Amosar les propiedaes que contengan:", + "smw-special-property-searchform-inputinfo": "La entrada ye sensible a mayúscules y, cuando s'usa pa filtriar, namái apaecen les propiedaes que casen cola condición.", + "smw-special-property-searchform-options": "Opciones", + "smw-special-wantedproperties-filter-label": "Filtru:", + "smw-special-wantedproperties-filter-none": "Nengunu", + "smw-special-wantedproperties-filter-unapproved": "Ensin aprobar", + "smw-special-wantedproperties-filter-unapproved-desc": "Opción de filtru usada en conexón col módulu d'autoridá.", + "concepts": "Conceptos", + "smw-special-concept-docu": "Un [https://www.semantic-mediawiki.org/wiki/Help:Concepts conceptu] pue vese como una \"categoría dinámica\", esto ye, una coleición de páxines que nun tan creaes manualmente, sinón que se calculen por Semantic MediaWiki dende una descripción d'una consulta dada.", + "smw-special-concept-header": "Llista de conceptos", + "smw-special-concept-count": "{{PLURAL:$1|Ta llistáu el siguiente conceptu|Tan llistaos los siguientes $1 conceptos}}.", + "smw-special-concept-empty": "Nun s'alcontró nengún conceptu.", + "unusedproperties": "Propiedaes non usaes", + "smw-unusedproperties-docu": "Nesta páxina ta la llista de [https://www.semantic-mediawiki.org/wiki/Unused_properties propiedaes sin usu] que tán declaraes anque nenguna páxina fai usu d'elles. Pa una vista distinta, visita les páxines especiales de [[Special:Properties|propiedaes]] o [[Special:WantedProperties|propiedaes solicitaes]]", + "smw-unusedproperty-template": "$1 de tipu $2", + "wantedproperties": "Propiedaes deseaes", + "smw-wantedproperties-docu": "Nesta páxina ta la llista de [https://www.semantic-mediawiki.org/wiki/Wanted_properties propiedaes solicitaes] que tán declaraes anque nenguna páxina fai usu d'elles. Pa una vista distinta, visita les páxines especiales de [[Special:Properties|propiedaes]] o [[Special:UnusedProperties|propiedaes sin usu]]", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|usu|usos}})", + "smw-special-wantedproperties-docu": "Nesta páxina ta la llista de [https://www.semantic-mediawiki.org/wiki/Wanted_properties propiedaes solicitaes] que s'usen nesta wiki anque nenguna páxina les describe. Pa una vista distinta, visita les páxines especiales de [[Special:Properties|propiedaes]] o [[Special:UnusedProperties|propiedaes sin usu]]", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|usu|usos}})", + "smw_purge": "Refrescar", + "smw-purge-failed": "Semantic MediaWiki tentó purgar la páxina pero falló", + "types": "Tipos", + "smw_types_docu": "Llista de [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes tipos de datos disponibles] con cada [https://www.semantic-mediawiki.org/wiki/Help:Datatype tipu] que representa un conxuntu únicu d'atributos pa describir un valor en términos de carauterístiques d'almacenamientu y visualización que s'herieden pa una propiedá atribuyida.", + "smw-special-types-no-such-type": "«$1» ye desconocíu o nun s'especificó como tipu de datos válidu.", + "smw-statistics": "Estadístiques semántiques", + "smw-statistics-property-instance": "{{PLURAL:$1|Valor|Valores}} de propiedá (total)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Propiedá|Propiedaes}}]] (total)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Propiedá|Propiedaes}} (total)", + "smw-statistics-property-used": "{{PLURAL:$1|Propiedá|Propiedaes}} (úsase con un valor polo menos)", + "smw-statistics-property-page": "{{PLURAL:$1|Propiedá|Propiedaes}} ({{PLURAL:$1|rexistrada|rexistraes}} con una páxina)", + "smw-statistics-property-type": "{{PLURAL:$1|Propiedá|Propiedaes}} ({{PLURAL:$1|asociada|asociaes}} a un tipu de datos)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Consulta|Consultes}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Consulta|Consultes}}]] (incrustaes, totales)", + "smw-statistics-query-size": "Tamañu de la consulta", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Conceptu|Conceptos}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Conceptu|Conceptos}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Sub-oxetu|Sub-oxetos}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Suboxetu|Suboxetos}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Tipu|Tipos}} de datos]]", + "smw-statistics-error-count": "{{PLURAL:$1|Valor de propiedá|Valores de propiedá}} ([[Special:ProcessingErrorList|{{PLURAL:$1|anotación incorreuta|anotaciones incorreutes}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Valor de propiedá|Valores de propiedá}} ({{PLURAL:$1|anotación incorreuta|anotaciones incorreutes}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Entidá anticuada|Entidaes anticuaes}}]", + "smw_uri_doc": "El resolvedor d'URI encadarma [$1 W3C TAG finding on httpRange-14].\nS'encarga de metadatos que los humanos nun ven nos sitios web.", + "ask": "Gueta semántica", + "smw-ask-help": "Esta sección contién dellos enllaces p'ayudar a esplicar cómo utilizar la sintaxis #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selección de páxines] describe cómo escoyer páxines y construir condiciones.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Operadores de gueta] amuesa los operadores de gueta disponibles, incluyendo los de consulta d'intervalu y de caráuteres comodín.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Amuesa d'información] espon l'usu de les declaraciones de salida y les opciones de formatu.", + "smw_ask_sortby": "Ordenar por columna (opcional)", + "smw_ask_ascorder": "Ascendiente", + "smw_ask_descorder": "Descendiente", + "smw-ask-order-rand": "Al debalu", + "smw_ask_submit": "Alcontrar resultaos", + "smw_ask_editquery": "Editar consulta", + "smw_add_sortcondition": "[Añadir una condición d'ordenación]", + "smw-ask-sort-add-action": "Añadir una condición d'ordenación", + "smw_ask_hidequery": "Anubrir consulta (vista compacta)", + "smw_ask_help": "Ayuda pa consultes", + "smw_ask_queryhead": "Condición", + "smw_ask_printhead": "Selección de datos a imprimir", + "smw_ask_printdesc": "(añadir un nome de propiedá por llinia)", + "smw_ask_format_as": "Dar formatu de:", + "smw_ask_defaultformat": "predetermináu", + "smw_ask_otheroptions": "Otres opciones", + "smw-ask-otheroptions-info": "Esta seición contién opciones qu'alteren los formatos de salida. Les descripciones de los parámetros pueden vese pasando'l mur perriba d'ellos.", + "smw-ask-otheroptions-collapsed-info": "Use l'iconu «más» pa ver toles opciones disponibles", + "smw_ask_show_embed": "Amosar el códigu incrustáu", + "smw_ask_hide_embed": "Anubrir el códigu incrustáu", + "smw_ask_embed_instr": "Pa incrustar en llinia esta consulta nuna páxina wiki use'l códigu siguiente.", + "smw-ask-delete": "Desaniciar", + "smw-ask-sorting": "Ordenación", + "smw-ask-options": "Opciones", + "smw-ask-options-sort": "Opciones d'ordenación", + "smw-ask-format-options": "Formatu y opciones", + "smw-ask-parameters": "Parámetros", + "smw-ask-search": "Guetar", + "smw-ask-debug": "Depurar", + "smw-ask-debug-desc": "Xenera información pa la depuración de consultes", + "smw-ask-no-cache": "Desactivar la caxé de consultes", + "smw-ask-no-cache-desc": "Resultancies ensin caché de consulta", + "smw-ask-result": "Resultáu", + "smw-ask-empty": "Borrar toles entraes", + "smw-ask-download-link-desc": "Descargar les resultancies de la consulta en formatu $1", + "smw-ask-format": "Formatu", + "smw-ask-format-selection-help": "Ayuda pal formatu seleicionáu: $1", + "smw-ask-condition-change-info": "Alteróse la condición, ya'l buscador precisa executar otra vegada la consulta pa producir resultancies que casen colos requisitos nuevos.", + "smw-ask-input-assistance": "Asistencia d'entrada", + "smw-ask-condition-input-assistance": "Bríndase [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance asistencia d'entrada] pa los campos de salida, d'ordenación y de condición. El campu de condición rique emplegar dalgunu d'estos prefixos:", + "smw-ask-condition-input-assistance-property": "p: pa recibir suxerencies de propiedaes (p. ex., [[p:Has ...)", + "smw-ask-condition-input-assistance-category": "c: pa recibir suxerencies de categoríes", + "smw-ask-condition-input-assistance-concept": "con: pa recibir suxerencies de conceutos", + "smw-ask-format-change-info": "Cambió'l formatu y ríquese executar nuevamente la consulta pa que correspuenda colos nuevos parámetros y opciones de vista.", + "smw-ask-format-export-info": "El formatu d'esportación escoyíu ye unu que nun tien representación visual, por eso los resultaos sólo s'ufren como descarga.", + "smw-ask-query-search-info": "{{PLURAL:$3|1=$2 (de la caché) respondió|$2 (de la caché) respondieron|$2 respondió}} la consulta $1 en $4 {{PLURAL:$4|segundu|segundos}}.", + "searchbyproperty": "Buscar por propiedá", + "processingerrorlist": "Procesando la llista d'errores", + "propertylabelsimilarity": "Informe de semeyanza na etiqueta Propiedá", + "smw-processingerrorlist-intro": "La llista siguiente ufre una güeyada de los [https://www.semantic-mediawiki.org/wiki/Processing_errors errores de procesamientu] qu'apaecieron venceyaos con [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. Recoméndase vixilar esta llista de manera regular y correxir les anotaciones de valor inválidu.", + "smw_sbv_docu": "Buscar toles páxines que tienen una propiedá y valor daos.", + "smw_sbv_novalue": "Escribi un valor válidu pa la propiedá, o mira tolos valores de la propiedá pa «$1».", + "smw_sbv_displayresultfuzzy": "Llista de toles páxines que tienen la propiedá \"$1\" con valor \"$2\".\nComo namái hebo unos pocos resultaos, tamién s'amuesen los valores aproximaos.", + "smw_sbv_property": "Propiedá:", + "smw_sbv_value": "Valor:", + "smw_sbv_submit": "Alcontrar resultaos", + "browse": "Esplorar la wiki", + "smw_browselink": "Esplorar les propiedaes", + "smw_browse_article": "Escriba'l nome de la páxina dende la qu'empezar la navegación.", + "smw_browse_go": "Dir", + "smw_browse_show_incoming": "Ver les propiedaes entrantes", + "smw_browse_hide_incoming": "Tapecer les propiedaes entrantes", + "smw_browse_no_outgoing": "Esta páxina nun tien propiedaes.", + "smw_browse_no_incoming": "Nun hai propiedaes qu'enllacen a esta páxina.", + "smw-browse-from-backend": "Ta recuperándose la información del motor.", + "smw-browse-intro": "Esta páxina apurre detalles sobre una instancia d'asuntu o d'entidá, escribi'l nome d'un oxetu a inspeicionar.", + "smw-browse-invalid-subject": "La validación del asuntu devolvió l'error «$1».", + "smw-browse-api-subject-serialization-invalid": "L'asuntu tien un formatu de serialización inválidu.", + "smw-browse-js-disabled": "Albídrase que Javascript ta desactiváu o nun ta disponible, y recomendamos usar un navegador con encontu pal mesmu. Otres opciones discútense na páxina del parámetru de configuración [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Amosar grupos", + "smw-browse-hide-group": "Anubrir los grupos", + "smw-noscript": "Esta páxina o aición rique Javascript pa funcionar. Activa Javascript nel navegador, o utiliza un navegador con encontu, pa que pueda sirvise y proporcionase esta carauterística como se solicitó. Pa más información, consulta la páxina d'ayuda [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript].", + "smw_inverse_label_default": "$1 de", + "smw_inverse_label_property": "Etiqueta de propiedá inversa", + "pageproperty": "Gueta de propiedá de paxina", + "smw_pp_docu": "Escribe una páxina y propiedá,o sólo una propiedá pa llograr tolos valores venceyaos.", + "smw_pp_from": "De la páxina:", + "smw_pp_type": "Propiedá:", + "smw_pp_submit": "Alcontrar resultaos", + "smw_result_prev": "Anterior", + "smw_result_next": "Siguiente", + "smw_result_results": "Resultaos", + "smw_result_noresults": "Nun hai resultaos.", + "smwadmin": "Tableru (Semantic MediaWiki)", + "smw-admin-statistics-job-title": "Estadístiques de trabayos", + "smw-admin-statistics-job-docu": "Les estadístiques de trabayu amuesen información de los trabayos programaos de Semantic MediaWiki qu'entá nun s'executaron. El númberu de trabayos puede ser llixeramente inexautu o contener intentos fallíos, consulta esti [https://www.mediawiki.org/wiki/Manual:Job_queue manual] pa información detallada.", + "smw-admin-statistics-querycache-title": "Caché de consultes", + "smw-admin-statistics-querycache-disabled": "La [https://www.semantic-mediawiki.org/wiki/QueryCache Caché de consultes] nun s'activó nesta wiki y, darréu, nun hai estadístiques disponibles.", + "smw-admin-permission-missing": "Bloquióse l'accesu a esta páxina por falta de permisos; consulta la páxina d'ayuda sobro [https://www.semantic-mediawiki.org/wiki/Help:Permissions permisos] pa llograr detalles de la configuración necesaria.", + "smw-admin-setupsuccess": "Configuróse'l motor d'almacenamientu.", + "smw_smwadmin_return": "Tornar a $1.", + "smw_smwadmin_updatestarted": "Anicióse un nuevu procesu d'actualización pa refrescar los datos semánticos.\nTolos datos almacenaos se reconstruirán o repararán onde faiga falta.\nPues siguir el procesu d'actualización nesta páxina especial.", + "smw_smwadmin_updatenotstarted": "Yá ta executando un procesu d'actualización.\nNun se creará otru.", + "smw_smwadmin_updatestopped": "Pararon tolos procesos d'actualización esistentes.", + "smw_smwadmin_updatenotstopped": "Pa parar el procesu d'actualización n'execución, tienes d'activar el cuadru de marca pa indicar que daveres tas seguru.", + "smw-admin-docu": "Esta páxina especial ayudaráte demientres la instalación, anovamientu, mantenimientu y usu de Semantic MediaWiki y ufre tamién otres funciones y xeres alministratives, lo mesmo qu'estadístiques.\nRecuerda facer copia de seguridá de los datos importantes antes d'executar funciones alministratives.", + "smw-admin-environment": "Entornu de software", + "smw-admin-db": "Configuración de la base de datos", + "smw-admin-db-preparation": "Ta en cursu l'aniciu de la tabla y puede tardar un tiempu ata que s'amuesen les resultancies, dependiendo del tamañu de la tabla y de posibles optimizaciones de la mesma.", + "smw-admin-dbdocu": "Semantic MediaWiki rique una estructura de base de datos propia (y ye independiente de MediaWiki, polo que nun afeuta al restu de la instalación) pa poder almacenar los datos semánticos.\nEsta función de configuración pue executase múltiples veces ensin peligru, pero namái ye necesaria una vez na instalación o anovamientu.", + "smw-admin-permissionswarn": "Si la operación falla con errores SQL, probablemente l'usuariu de la base de datos qu'emplega la wiki (comprueba'l ficheru LocalSettings.php) nun tien permisos bastantes.\nO bien da-y a esti usuariu más permisos pa crear y desaniciar tables, o pon temporalmente los datos de conexón del usuariu root de la base de datos nel ficheru LocalSettings.php, o usa'l script de mantenimientu setupStore.php, que puede usar les credenciales d'un alministrador.", + "smw-admin-dbbutton": "Aniciar o anovar les tables", + "smw-admin-announce": "Anuncia la to wiki", + "smw-admin-announce-text": "Si la to wiki ye pública, puedes rexistrala en WikiApiary, la wiki de siguimientu wikis.", + "smw-admin-deprecation-notice-title": "Avisos d'obsolescencia", + "smw-admin-deprecation-notice-docu": "La siguiente sección contién axustes que se quedaron anticuaos o se desaniciaron, pero que detectóse que tán activos nesta wiki. Espérase que cualquier versión futura desanicie l'encontu d'estes configuraciones.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] ta anticuáu y va desaniciase na versión $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] desaniciará (o reemplazará) {{PLURAL:$2|la opción siguiente|les opciones siguientes}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 ta anticuáu y va desaniciase'n $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] sustituyóse por [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-option": "{{PLURAL:$2|Opción|Opciones}} de [https://www.semantic-mediawiki.org/wiki/Help:$1 $1]:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 ta trocándose por $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] desanicióse na versión $2", + "smw-admin-deprecation-notice-title-notice": "Próximos cambios", + "smw-admin-deprecation-notice-title-notice-explanation": "Detectóse qu'esta wiki usa les siguientes configuraciones que ta previsto desaniciar o camudar nuna versión futura.", + "smw-admin-deprecation-notice-title-replacement": "Opciones sustituyíes o cambiaes de nome", + "smw-admin-deprecation-notice-title-replacement-explanation": "La sección siguiente contien opciones que cambiaron el nome o recibieron otros cambeos. Encaméntase anovar darréu'l so nome o formatu.", + "smw-admin-deprecation-notice-title-removal": "Opciones desaniciaes", + "smw-admin-deprecation-notice-title-removal-explanation": "Les opciones siguientes desaniciáronse nuna versión anterior, pero detectóse qu'entá s'utilicen nesta wiki.", + "smw-smwadmin-refresh-title": "Reparación y anovamientu de los datos", + "smw_smwadmin_datarefresh": "Reconstrucción de los datos", + "smw_smwadmin_datarefreshdocu": "Ye posible restaurar tolos datos de Semantic MediaWiki basandose nel conteníu actual de la wiki.\nEsto pue ser afayadizo pa reparar datos rotos o pa refrescar os datos si'l formatu internu cambió por un anovamientu del software.\nEsti anovamientu executase páxina a páxina y nun se completará nel intre.\nLo siguiente amuesa si un anovamientu ta en cursu y permiti-y principialos o detenelos (esceuto si esta carauterística ta desactivada pol alministrador del sitiu).", + "smw_smwadmin_datarefreshprogress": "Yá hai una anovamientu en cursu.\nYe normal que l'anovamientu avance sólo de mou lentu, porque sólo refresca los datos en pequeños trozos cada vez qu'un usuariu entra na wiki.\nP'acabar esti anovamientu más rápido, pue llamar al script de mantenimientu de MediaWiki runJobs.php (use la opción --maxjobs 1000 para restrinxir el númberu d'anovamientos fechos nun llote).\nProgresu estimáu del anovamientu actual:", + "smw_smwadmin_datarefreshbutton": "Programar la reconstrucción de los datos", + "smw_smwadmin_datarefreshstop": "Detener esti anovamientu", + "smw_smwadmin_datarefreshstopconfirm": "Sí, toi {{GENDER:$1|seguru|segura}}.", + "smw-admin-job-scheduler-note": "Les xeres (que tán activaes) d'esta seición execútense usando la cola de trabayos pa evitar situaciones de bloquéu demientres la execución. La [https://www.mediawiki.org/wiki/Manual:Job_queue cola de trabayos] ye la responsable del procesamientu, y ye crítico que'l script de caltenimientu runJobs.php (ver tamién el parámetru de configuración $wgRunJobsAsync) tenga una capacidá afayadiza.", + "smw-admin-outdateddisposal-title": "Desaniciu d'entidaes anticuaes", + "smw-admin-outdateddisposal-intro": "Delles actividaes (un cambéu a un tipu de propiedá, el desaniciu de páxines wiki o la correición de valores d'error) van producir [https://www.semantic-mediawiki.org/wiki/Outdated_entities entidaes anticuaes] y suxerse desaniciales dacuando pa lliberar l'espaciu de tables venceyáu.", + "smw-admin-outdateddisposal-active": "Programóse un trabayu de desaniciu d'entidaes anticuaes.", + "smw-admin-outdateddisposal-button": "Programar un desaniciu", + "smw-admin-feature-disabled": "Esta carauterística ta desactivada nesta wiki, pa más información, consulta la páxina d'ayuda de configuración o comunícate col alministrador del sistema.", + "smw-admin-propertystatistics-title": "Reconstruir les estadístiques de la propiedá", + "smw-admin-propertystatistics-intro": "Reconstruye toles estadístiques d'usu de la propiedá y actualiza y corrixe la [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count cuenta d'usu] de propiedaes.", + "smw-admin-propertystatistics-active": "Programóse un trabayu de reconstrucción d'estadístiques de propiedaes.", + "smw-admin-propertystatistics-button": "Programar reconstrucción d'estadístiques", + "smw-admin-fulltext-title": "Reconstrucción de gueta de testu completu", + "smw-admin-fulltext-intro": "Reconstruye l'índiz de gueta dende les tables de propiedá con un tipu de datu activáu [https://@www.semantic-mediawiki.org/wiki/full-text gueta de testu completu]. Los cambeos nes normes d'índices (cambios nes palabres saltaes, nuevu algoritmu de radicales etc.) y/o una tabla nueva añadida o camudada riquen repetir esta xera.", + "smw-admin-fulltext-active": "Programóse un trabayu de reconstrucción de guetes de testu completu.", + "smw-admin-fulltext-button": "Programar reconstrucción de testu completu", + "smw-admin-support": "Algamar asistencia", + "smw-admin-supportdocu": "Úfrense dellos recursos p'ayudate si tienes problemes:", + "smw-admin-installfile": "Si alcuentres problemes cola instalación, principia revisando les indicaciones del ficheru INSTALL y la páxina d'instalación.", + "smw-admin-smwhomepage": "La documentación d'usuariu completa de Semantic MediaWiki ta en semantic-mediawiki.org.", + "smw-admin-bugsreport": "Pues informar de los errores nel siguimientu de problemes, la páxina de informe de fallos ufre dellos conseyos pa escribir un informe de fallos eficaz.", + "smw-admin-questions": "Si tienes más preguntes o suxerencies, xúntate a la conversación de la llista de corréu d'usuarios de Semantic MediaWiki.", + "smw-admin-other-functions": "Otres funciones", + "smw-admin-supplementary-section-title": "Funciones suplementaries", + "smw-admin-supplementary-section-subtitle": "Funciones centrales sofitaes", + "smw-admin-supplementary-section-intro": "Esta sección apurre otres funciones más allá del ámbitu de les actividaes de caltenimientu y ye posible que delles funciones qu'apaecen (ver la [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions documentación]) tean torgaes o nun tean disponibles y polo tanto sin accesu nesta wiki.", + "smw-admin-supplementary-settings-title": "Axustes de configuración", + "smw-admin-supplementary-settings-intro": "$1 xenera una llista de configuraciones que s'usen na MediaWiki Semántica", + "smw-admin-supplementary-operational-statistics-title": "Estadístiques operatives", + "smw-admin-supplementary-operational-statistics-intro": "Amuesa un conxuntu enantáu de $1", + "smw-admin-supplementary-idlookup-title": "Busca y desaniciu d'entidá", + "smw-admin-supplementary-idlookup-intro": "Sofita una función simple pa $1", + "smw-admin-supplementary-duplookup-title": "Busca d'entidaes duplicaes", + "smw-admin-supplementary-duplookup-intro": "$1 p'alcontrar entidaes que tán na categoría de los duplicaos de la tabla d'entidaes seleicionada", + "smw-admin-supplementary-duplookup-docu": "Esta páxina amuesa la llista d'entraes de la [https://www.semantic-mediawiki.org/wiki/Help:Entity_table tabla d'entidaes] que punxeron na categoría de duplicaes. Les entraes duplicaes solo tendríen d'asoceder (como muncho) en rares ocasiones potencialmente causaes por un procesu termináu mientres una actualización de la base de datos o una transaición de reversión fallida.", + "smw-admin-supplementary-operational-statistics-cache-title": "Estadístiques de la caché", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 amuesa estadístiques rellacionaes cola caché", + "smw-admin-supplementary-elastic-intro": "$1 informa sobro les preferencies y les estadístiques d'índices", + "smw-admin-supplementary-elastic-docu": "Esta páxina contién información sobro axustes, mapeos, salú y estadístiques d'índices rellacionaos con un cluster d'Elasticsearch que ta conectáu a Semantic MediaWiki ya'l so [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Funciones sofitaes", + "smw-admin-supplementary-elastic-settings-title": "Configuración", + "smw-admin-supplementary-elastic-settings-intro": "$1 usáu por Elasticsearch p'alministrar los índices de MediaWiki Semántica", + "smw-admin-supplementary-elastic-mappings-title": "Asignaciones", + "smw-admin-supplementary-elastic-mappings-intro": "$1 pa la llista d'índices y asihnaciones de campos", + "smw-admin-supplementary-elastic-mappings-docu": "Esta páxina contien detalles de la correspondencia de campos porque s'utilicen colos índices actuales. El resume de correspondencies tendría de controlase en conexón col index.mapping.total_fields.limit qu'especifica'l númberu máximu de campos nun índiz.", + "smw-admin-supplementary-elastic-mappings-summary": "Resume", + "smw-admin-supplementary-elastic-mappings-fields": "Correspondencies de campos", + "smw-admin-supplementary-elastic-nodes-title": "Nuedos", + "smw-admin-supplementary-elastic-nodes-intro": "$1 amuesa les de estadístiques de nuedos", + "smw-admin-supplementary-elastic-indices-title": "Índices", + "smw-admin-supplementary-elastic-indices-intro": "$1 ufre un resume de los índices disponibles y les sos estadístiques", + "smw-admin-supplementary-elastic-statistics-title": "Estadístiques", + "smw-admin-supplementary-elastic-statistics-intro": "$1 amuesa les estadístiques a nivel d'índiz", + "smw-admin-supplementary-elastic-statistics-docu": "Esta páxina apurre una visión de les estadístiques de los índices de les distintes operaciones que tán asocediendo a nivel d'índiz, les estadístiques devueltes combínense coles primaries y les totales. La [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html páxina d'ayuda] contién una descripción detallada de les estadístiques d'índices disponibles.", + "smw-admin-supplementary-elastic-status-replication": "Estáu de replicación", + "smw-admin-supplementary-elastic-status-last-active-replication": "Última replicación activa: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Intervalu d'enfrescáu: $1", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Replicación bloquiada: $1 (en procesu de reconstrucción)", + "smw-list-count": "La llista contién $1{{PLURAL:$1|entrada|entraes}}.", + "smw-property-label-uniqueness": "La etiqueta «$1» casa polo menos con otra representación de propiedá. Consulta la [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness páxina d'ayuda] pa saber cómo iguar esti problema.", + "smw-property-label-similarity-title": "Informe de semeyanza na etiqueta Propiedá", + "smw-property-label-similarity-intro": "$1 calcula la semeyanza de les etiquetes de propiedá qu'esisten", + "smw-property-label-similarity-threshold": "Estragal:", + "smw-property-label-similarity-type": "Amosar l'identificador de tipu", + "smw-property-label-similarity-noresult": "Nun s'atoparon resultancies pa les opciones escoyíes.", + "smw-property-label-similarity-docu": "Compara y informa de la [https://www.semantic-mediawiki.org/wiki/Property_similarity semeyanza sintáutica] (non la semeyanza semántica) ente dos etiquetes de propiedá, lo que puede ayudar a filtriar propiedaes mal escrites o equivalientes que representen el mesmu conceutu (visita la páxina especial [[Special:Properties|Propiedaes]] p'aclarar los conceutos y los usos de les propiedaes del informe). Puede afaese l'estragal p'aumentar o menguar la distancia de semeyanza. [[Property:$1|$1]] utilízase pa quitar propiedaes del analís.", + "smw-admin-operational-statistics": "Esta páxina contién estadístiques d'operación recoyíes en o dende funciones rellacionaes cola MediaWiki Semántica. Puedes alcontrar [[Special:Statistics|equí]] una llista enantada d'estadístiques específiques de la wiki.", + "smw_adminlinks_datastructure": "Estructura de datos", + "smw_adminlinks_displayingdata": "Visualización de los datos", + "smw_adminlinks_inlinequerieshelp": "Ayuda de les consultes en llinia", + "smw-page-indicator-usage-count": "[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count Númberu d'usos] albidráu: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "Propiedá definida pol {{PLURAL:$1|usuariu|sistema}}", + "smw-property-indicator-last-count-update": "Cuenta estimada d'usu\nAnovada por última vegada: $1", + "smw-concept-indicator-cache-update": "Cuenta de caché\nÚltima actualización: $1", + "smw-createproperty-isproperty": "Ye una propiedá de tipu $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|El valor permitíu|Los valores permitíos}} pa esta propiedá {{PLURAL:$1|ye|son}}:", + "smw-paramdesc-category-delim": "El delimitador", + "smw-paramdesc-category-template": "Una plantía cola que dar formatu a los elementos", + "smw-paramdesc-category-userparam": "Un parámetru pa pasar a la plantía", + "smw-info-par-message": "Mensaxe a amosar.", + "smw-info-par-icon": "Iconu a amosar; o \"info\" o bien \"warning\".", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Opciones xenerales", + "prefs-ask-options": "Opciones de gueta semántica", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] (y les estensiones rellacionaes) ufren una personalización individual pa delles funciones seleicionaes. Consulta la [https://www.semantic-mediawiki.org/wiki/Help:User_preferences páxina d'ayuda] pa ver una descripción detallada.", + "smw-prefs-ask-options-tooltip-display": "Amosar el testu del parámetru como información d'ayuda", + "smw-prefs-ask-options-compact-view-basic": "Activar vista compacta básica", + "smw-prefs-help-ask-options-compact-view-basic": "Si s'activa, amuesa un conxuntu amenorgáu d'enllaces na vista compacta de Special:Ask.", + "smw-prefs-general-options-time-correction": "Activar la correición horaria pa les páxines especiales usando la configuración llocal d'[[Special:Preferences#mw-prefsection-rendering|estaya horaria]]", + "smw-prefs-general-options-jobqueue-watchlist": "Amosar la llista de siguimientu de la cola de xeres na mio barra personal", + "smw-prefs-help-general-options-jobqueue-watchlist": "Si s'activa, amuesa una [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist llista de] xeres escoyíes pendientes xunto colos tamaños de cola albidraos.", + "smw-prefs-general-options-disable-editpage-info": "Desactivar el testu d'introducción de la páxina d'edición", + "smw-prefs-general-options-disable-search-info": "Desactivar la información d'ayuda de sintaxis na páxina estándar de busques", + "smw-prefs-general-options-suggester-textinput": "Activar l'ayuda d'entrada pa les entidaes semántiques", + "smw-ui-tooltip-title-property": "Propiedá", + "smw-ui-tooltip-title-quantity": "Conversión d'unidaes", + "smw-ui-tooltip-title-info": "Información", + "smw-ui-tooltip-title-service": "Enllaces de serviciu", + "smw-ui-tooltip-title-warning": "Avisu", + "smw-ui-tooltip-title-error": "Error", + "smw-ui-tooltip-title-parameter": "Parámetru", + "smw-ui-tooltip-title-event": "Actividá", + "smw-ui-tooltip-title-note": "Nota", + "smw-ui-tooltip-title-legend": "Lleenda", + "smw-ui-tooltip-title-reference": "Referencia", + "smw_unknowntype": "El tipu «$1» d'esta propiedá ye inválidu", + "smw-concept-cache-text": "El conceutu tien un total de $1 {{PLURAL:$1|páxina|páxines}}, y l'últimu anovamientu foi el $3 a les $2.", + "smw_concept_header": "Páxines del conceptu \"$1\"", + "smw_conceptarticlecount": "Abaxo {{PLURAL:$1|s'amuesa $1 páxina|s'amuesen $1 páxines}}.", + "smw-qp-empty-data": "Los datos solicitaos nun se pudieron amosar por unos criterios de seleición insuficientes.", + "right-smw-admin": "Entrar nes xeres alministratives (Semantic MediaWiki)", + "right-smw-patternedit": "Accesu d'edición pa caltener espresiones regulares y patrones permitíos (Semantic MediaWiki)", + "right-smw-pageedit": "Accesu d'edición pa páxines con anotación is edit protected (MediaWiki Semántica)", + "restriction-level-smw-pageedit": "protexida (sólo usuarios permitíos)", + "action-smw-patternedit": "editar les espresiones regulares qu'usa Semantic MediaWiki", + "action-smw-pageedit": "editar páxines cola anotación is edit protected (MediaWiki Semántica)", + "group-smwadministrator": "Alministradores (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|alministrador|alministradora}} (Semantic MediaWiki)", + "grouppage-smwadministrator": "{{ns:project}}:Alministradores (Semantic MediaWiki)", + "group-smwcurator": "Conservadores (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|conservador|conservadora}} (Semantic MediaWiki)", + "grouppage-smwcurator": "{{ns:project}}:Conservadores (Semantic MediaWiki)", + "action-smw-admin": "entrar nes xeres alministratives de Semantic MediaWiki", + "action-smw-ruleedit": "editar les páxines de regles (Semantic MediaWiki)", + "smw-property-predefined-default": "«$1» ye una propiedá predefinida.", + "smw-property-predefined-common": "Esta propiedá ta pre-desplegada (tamién conocida como [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propiedá especial]) y vien con otros privilexos alministrativos más, pero puede usase como cualquier otra [https://www.semantic-mediawiki.org/wiki/Property propiedá definida pol usuariu].", + "smw-property-predefined-ask": "«$1» ye una propiedá predefinida que representa meta-información (en forma de [https://www.semantic-mediawiki.org/wiki/Subobject suboxetu]) sobro consultes individuales y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksi": "«$1» ye una propiedá predefinida que recueye'l númberu de condiciones utilizaes n'una consulta y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askde": "«$1» ye una propiedá predefinida qu'informa sobre la fondura d'una consulta, y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askde": "Ye un valor numbéricu calculáu en base al añeramientu de subconsultes, cadenes de propiedaes, y elementos de descripción disponibles cola execución d'una consulta torgada pol parámetru de configuración [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-property-predefined-askpa": "«$1» ye una propiedá predefinida, que describe parámetros qu'inflúen na resultancia d'una consulta, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askpa": "Ye parte d'una colección de\npropiedaes qu'especifiquen un [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler perfil de consulta].", + "smw-sp-properties-docu": "Esta páxina amuesa les [https://www.semantic-mediawiki.org/wiki/Property propiedaes] y la cuenta d'usos disponible pa esta Wiki. Pa unes estadístiques actualizaes de cuentes recomiéndase executar el script de mantenimientu d'[https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics estadístiques de propiedá] de mou regular . Pa una vista diferenciada, mira les páxines especiales [[Special:UnusedProperties|propiedaes ensin usu]] o [[Special:WantedProperties|propiedaes buscaes]].", + "smw-sp-properties-cache-info": "Los datos de la llista recuperaronse de la [https://www.semantic-mediawiki.org/wiki/Caching cache], y anovaronse por última vez el $1.", + "smw-sp-properties-header-label": "Llista de propiedaes", + "smw-admin-settings-docu": "Amuesa la llista de tolos axustes predeterminaos y llocalizaos que tan rellacionaos col entornu de MediaWiki Semántica. Pa los detalles de los axustes individuales, consulta la páxina d'ayuda de la [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuración].", + "smw-sp-admin-settings-button": "Xenerar la llista d'axustes", + "smw-admin-idlookup-title": "Gueta", + "smw-admin-idlookup-docu": "Esta seición amuesa detalles téunicos sobro una entidá individual (páxina wiki, suboxetu, propiedá, etc.) en Semantic MediaWiki. La entrada puede ser un númberu ID o un valor de cadena que case col campu de gueta relevante, anque cualquier referencia ID ta rellacionada con Semantic MediaWiki y non col ID de páxina o de revisión de MediaWiki.", + "smw-admin-iddispose-title": "Desaniciu", + "smw-admin-iddispose-docu": "Repara en que la operación de desaniciu nun tien torga y desaniciará la entidá del motor d'almacenamientu xunto con toles referencies en tables pendientes, si se confirma. Fai esta xera con '''procuru''' y sólo después de consultar la [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal documentación].", + "smw-admin-iddispose-done": "Desanicióse la ID «$1» del motor d'almacenamientu.", + "smw-admin-iddispose-references": "ID «$1» {{PLURAL:$2|nun tien|tien polo menos}} una referencia activa:", + "smw-admin-iddispose-references-multiple": "Llista de correspondencies con polo menos un rexistru de referencia activu.", + "smw-admin-iddispose-no-references": "La gueta nun atopó «$1» en nenguna entrada de tabla.", + "smw-admin-idlookup-input": "Gueta:", + "smw-admin-objectid": "Identificador:", + "smw-admin-tab-general": "Supervisión", + "smw-admin-tab-notices": "Avisos de desusu", + "smw-admin-tab-supplement": "Funciones suplementaries", + "smw-admin-tab-registry": "Rexistru", + "smw-livepreview-loading": "Cargando...", + "smw-sp-searchbyproperty-description": "Esta páxina apurre una [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces interfaz de navegación] simple p'atopar entidaes descrites por una propiedá y un valor con nome. Otres interfaces de busca disponibles incluyen la [[Special:PageProperty|busca de propiedaes de páxina]] y el [[Special:Ask|constructor de consultes]].", + "smw-sp-searchbyproperty-resultlist-header": "Llista de resultaos", + "smw-sp-searchbyproperty-nonvaluequery": "Una llista de valores que tienen atribuída la propiedá «$1».", + "smw-sp-searchbyproperty-valuequery": "Una llista de páxines que tienen la propiedá \"$1\" col valor \"$2\" anotáu.", + "smw-datavalue-number-textnotallowed": "\"$1\" nun puede atribuise a un tipu de númberu declaráu con valor $2.", + "smw-datavalue-number-nullnotallowed": "«$1» devolvió un \"NULL\" que nun se permite como númberu.", + "smw-editpage-annotation-enabled": "Esta páxina almite anotaciones semántiques nel testu (p. ex. \"[[Is specified as::World Heritage Site]]\") pa construir conteníu estructuráu y consultable facilitáu por Semantic MediaWiki. Pa una descripción completa sobre cómo usar anotaciones o la función analizadora #ask, consulta les páxines d'ayuda [https://www.semantic-mediawiki.org/wiki/Help:Getting_started primeros pasos], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation anotaciones nel testu] o [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries consultes en llinia].", + "smw-editpage-annotation-disabled": "Esta páxina nun ta activada pa les anotaciones semántiques nel testu por torgues nel espaciu de nomes. Los detalles de como activar l'espaciu de nomes pueden alcontrase na páxina d'ayuda de la [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuración].", + "smw-editpage-property-annotation-enabled": "Esta propiedá puede estendese usando anotaciones semántiques pa especificar un tipu de datu (p. ex. \"[[Has type::Page]]\") o otres declaraciones d'asistencia (p. ex. \"[[Subproperty of::dc:date]]\"). Pa saber cómo aumentar esta páxina, consulta les páxines d'ayuda [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration declaración d'una propiedá] o la [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes llista de los tipos de datos disponibles].", + "smw-editpage-property-annotation-disabled": "Esta propiedá nun puede estendese con una anotación de tipu de datu (p. ex. \"[[Has type::Page]]\") porque yá ta predefinida (pa más información, consulta la páxina d'ayuda [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propiedaes especiales]).", + "smw-editpage-concept-annotation-enabled": "Esti conceptu puede ampliase usando la función d'analís #concept. Pa una descripción de como usar #concept, consulta la páxina d'ayuda [https://www.semantic-mediawiki.org/wiki/Help:Concepts conceptos].", + "smw-search-syntax-support": "La entrada de la gueta permite usar la [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search sintaxis de consulta] semántica p'atopar resultancies al usar Semantic MediaWiki.", + "smw-search-input-assistance": "El [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance asistente d'entrada] tamién ta activáu pa facilitar la pre-selección de les propiedaes y categoríes disponibles.", + "smw-search-input": "Entrada y gueta", + "smw-search-syntax": "Sintaxis", + "smw-search-profile": "Estendida", + "smw-search-profile-tooltip": "Funciones de gueta en conexón con Semantic MediaWiki", + "smw-search-profile-sort-recent": "Más nuevu", + "smw-search-profile-sort-title": "Títulu", + "smw-search-profile-extended-help-query": "Utilizóse $1 como consulta.", + "smw-search-profile-extended-help-find-forms": "formes disponibles", + "smw-search-profile-extended-section-sort": "Ordenar por", + "smw-search-profile-extended-section-form": "Formes", + "smw-search-profile-extended-section-namespace": "Espaciu de nomes", + "smw-search-profile-extended-section-query": "Consulta", + "log-name-smw": "Rexistru de MediaWiki Semántica", + "log-show-hide-smw": "$1 el rexistru de MediaWiki Semántica", + "logeventslist-smw-log": "Rexistru de MediaWiki Semántica", + "log-description-smw": "Actividaes de los [https://www.semantic-mediawiki.org/wiki/Help:Logging tipos d'actividá activaos] de los qu'informaron MediaWiki Semántica y los sos componentes.", + "logentry-smw-maintenance": "Actividaes rellacionaes col mantenimientu emitíes por MediaWiki Semántica", + "smw-datavalue-import-unknown-namespace": "L'espaciu de nomes d'importación «$1» ye desconocíu. Comprueba que los detalles d'importación de OWL tean disponibles al traviés de [[MediaWiki:Smw import $1]]", + "smw-datavalue-import-missing-namespace-uri": "Nun pudo alcontrase la URI del espaciu de nomes «$1» na [[MediaWiki:Smw import $1|importación de $1]].", + "smw-datavalue-import-missing-type": "Nun s'alcontró la definición de tipu pa «$1» na [[MediaWiki:Smw import $2|importación de $2]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|Importación de $1]]", + "smw-datavalue-import-invalid-value": "«$1» nun ye un formatu válidu, habría de tener el formatu «espaciu de nomes»:«identificador» (p.ex. «foaf:nome»).", + "smw-datavalue-import-invalid-format": "Esperábase que la cadena «$1» tuviera xebrada en cuatro partes, pero nun s'entendió'l so formatu.", + "smw-property-predefined-impo": "«$1» ye una propiedá predefinida que describe la rellación con un [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary vocabulariu importáu] y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-type": "«$1» ye una propiedá predefinida que describe'l [[Special:Types|tipu de datu]] d'una propiedá y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-sobj": "«$1» ye una propiedá predefinida que representa una construcción [https://www.semantic-mediawiki.org/wiki/Help:Container contenedor] y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-sobj": "El contenedor permite acumular pares propiedá-valor asemeyaes a les d'una páxina wiki normal pero dientro d'un espaciu d'entidaes distintu mentanto ta enllazáu al tema que lu incluye.", + "smw-property-predefined-errp": "«$1» ye una propiedá predefinida pa siguir los errores d'entrada por anotaciones de valores irregulares, y ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-errp": "Na mayoría de los casos ta provocao porque nun casen los tipos o pola torga d'un [[Property:Allows value|valor]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value «$1»] ye una propiedá predefinida que puede definir una llista de valores posibles pa torgar designaciones de valores pa una propiedá y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list «$1»] ye una propiedá predefinida que puede especificar una referencia a una llista que contién valores permitíos pa torgar designaciones de valores para una propiedá, y que ta proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-datavalue-property-restricted-annotation-use": "La propiedá «$1» tien un campu d'aplicación llindáu y nun puede utilizase como propiedá d'anotación polos usuarios.", + "smw-datavalue-property-restricted-declarative-use": "La propiedá «$1» ye declarativa y solo puede utilizase nes páxines de propiedá o de categoría.", + "smw-datavalue-property-create-restriction": "Nun esiste la propiedá «$1» y l'usuariu nun tien el permisu «$2» (consulta [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode mou d'autoridá]) pa crear o anotar valores con una propiedá nun aprobada.", + "smw-datavalue-property-invalid-character": "«$1» contién el caráuter «$2» d'una llista como parte de la etiqueta de propiedá y, poro, clasificóse como inválidu.", + "smw-datavalue-property-invalid-chain": "Nun se permite usar «$1» como cadena de propiedaes mientres el procesu d'anotación.", + "smw-datavalue-restricted-use": "Esti valor de datos marcóse pa usu acutáu. $1", + "smw-datavalue-invalid-number": "Nun puede interpretase «$1» como númberu.", + "smw-query-condition-circular": "Detectóse una posible condición circular en «$1».", + "smw-types-list": "Llista de tipos de datos", + "smw-types-default": "«$1» ye un tipu de datos integráu.", + "smw-types-help": "Hai más información y exemplos na [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 páxina d'ayuda].", + "smw-type-anu": "«$1» ye una variante del tipu de datos [[Special:Types/URL|URL]] que s'usa principalmente pa la declaración d'esportación de ''owl:AnnotationProperty''.", + "smw-type-boo": "«$1» ye un tipu de datu primitivu pa describir un valor verdadero/falso.", + "smw-type-cod": "«$1» ye una variante del tipu de datu [[Special:Types/Text|Testu]] pa usar en testos técnicos de llonxitú variable, como llistaos de códigu fonte.", + "smw-type-geo": "«$1» ye un tipu de datu que describe llugares xeográficos y rique la [https://www.semantic-mediawiki.org/wiki/Extension:Maps estensión «Mapes»].", + "smw-type-tel": "«$1» ye un tipu de datos especial pa describir númberos de teléfonu internacionales acordies con RFC 3966.", + "smw-type-txt": "«$1» ye un tipu de datos primitivu pa describir cadenes de testu de llonxitú arbitraria.", + "smw-type-dat": "«$1» ye un tipu de datos pa representar puntos nel tiempu nun formatu unificáu.", + "smw-property-predefined-errc": "«$1» ye una propiedá predefinida proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] que representa errores qu'apaecieron venceyaos a anotaciones de valores o procesamientu d'entraes inapropiaos.", + "smw-property-predefined-long-errc": "Los errores recuéyense nun [https://www.semantic-mediawiki.org/wiki/Help:Container contenedor] que puede incluir una referencia a la propiedá que causó'l desacuerdu.", + "smw-property-predefined-errt": "«$1» ye una propiedá predefinida que contién el testu de descripción d'un error y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-subobject-parser-invalid-naming-scheme": "Un suboxetu definíu pol usuariu tenía un esquema de nomes inválidu. Un nome con un puntu ($1) usáu nos cinco primeros caráuteres ta acutáu pa les estensiones. Puedes definir un [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier identificador con nome].", + "smw-datavalue-record-invalid-property-declaration": "La definición del rexistru contién la propiedá «$1» declarada ella mesma como de tipu rexistru, lo que nun ta permitío.", + "smw-property-predefined-mdat": "«$1» ye una propiedá predefinida que correspuende cola data del últimu cambiu d'un tema y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cdat": "«$1» ye una propiedá predefinida que correspuende cola data de la primera revisión d'un tema y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-newp": "«$1» ye una propiedá predefinida qu'indica si un tema ye nuevu o non y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-ledt": "«$1» ye una propiedá predefinida que contién el nome de páxina del usuariu que creó la última revisión y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-mime": "«$1» ye una propiedá predefinida que describe'l tipu MIME d'un ficheru xubíu y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-media": "«$1» ye una propiedá predefinida que describe'l tipu de multimedia d'un ficheru xubíu y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askfo": "«$1» ye una propiedá predefinida que contién el nome del formatu del resultáu usáu n'una consulta y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askst": "«$1» ye una propiedá predefinida que describe les condiciones d'una consulta como cadena y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askdu": "«$1» ye una propiedá predefinida que contién un valor de tiempu (en segundos) que la consulta necesitó pa completar la execución y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksc": "«$1» ye una propiedá predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], qu'identifica fontes alternatives de consultes (por casu, fontes remotes o federaes).", + "smw-property-predefined-prec": "\"$1\" ye una propiedá predefinida que describe una [https://www.semantic-mediawiki.org/wiki/Help:Display_precision precisión de representación] (en cifres decimales) pa tipos de datos numbéricos.", + "smw-types-extra-geo-not-available": "Nun se detectó la [https://www.semantic-mediawiki.org/wiki/Extension:Maps estensión «Mapes»] y, darréu, «$1» tien torgada la capacidá d'operar.", + "smw-datavalue-monolingual-dataitem-missing": "Falta un elementu esperáu pa construir un valor compuestu monollingüe.", + "smw-datavalue-languagecode-missing": "L'analizador nun pudo determinar el códigu de llingua (p.ex. \"fulanu@ast\") pa l'anotación «$1».", + "smw-datavalue-languagecode-invalid": "Nun se reconoció «$1» como códigu de llingua válidu.", + "smw-property-predefined-lcode": "«$1» ye una propiedá predefinida que representa un códigu de llingua en formatu BCP47 y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-type-mlt-rec": "«$1» ye un tipu de datos [https://@www.semantic-mediawiki.org/wiki/Help:Container contenedor] qu'asocia un valor de testu con un [[Property:Language code|códigu de llingua]] determináu.", + "smw-types-extra-mlt-lcode": "El tipu de datos {{PLURAL:$2|rique|nun rique}} un códigu de llingua (por casu, {{PLURAL:$2|nun s'acepta|s'acepta}} una anotación de valor sin un códigu de llingua).", + "smw-property-predefined-text": "«$1» ye una propiedá predefinida que representa testu de cualquier llargor y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pdesc": "\"$1\" ye una propiedá predefinida que permite describir una propiedá nel contestu d'una llingua, y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-list": "«$1» ye una propiedá predefinida pa definir una llista de propiedaes que s'usen con una propiedá de tipu [[Special:Types/Record|rexistru]] y que ta proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] Tiempu d'analís d'anotaciones nel testu", + "smw-limitreport-intext-postproctime": "[SMW] duración del pos-procesamientu", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|segundu|segundos}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|segundu|segundos}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Tiempu d'actualización del almacenamientu (na purga de páxines)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|segundu|segundos}}", + "smw_allows_pattern": "Espérase qu'esta páxina contenga una llista de referencies (siguía por [https://en.wikipedia.org/wiki/Regular_expression espresiones regulares]) pa que s'ufra pola propiedá [[Property:Allows pattern|Permite patrón]]. Pa editar esta páxina, ríquese'l permisu smw-patternedit.", + "smw-datavalue-allows-pattern-mismatch": "La espresión regular «$2» clasificó a «$1» como inválida.", + "smw-datavalue-allows-pattern-reference-unknown": "La referencia del patrón «$1» nun correspuende a nenguna entrada de [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "La referencia de llista «$1» nun correspuende con una páxina en [[MediaWiki:Smw allows list $1]].", + "smw-datavalue-allows-value-list-missing-marker": "Nel conteníu de la llista «$1» falten elementos con un marcador de llista *.", + "smw-datavalue-feature-not-supported": "La función «$1» nun tien encontu o se desactivó nesta wiki.", + "smw-datavalue-external-formatter-invalid-uri": "«$1» ye una URL inválida.", + "smw-datavalue-external-identifier-formatter-missing": "Falta atribuir una [[Property:External formatter uri|\"URI de formateador esternu\"]] a la propiedá.", + "smw-datavalue-parse-error": "Nun s'entendió el valor dau «$1».", + "smw-datavalue-propertylist-invalid-property-key": "La llista de propiedaes «$1» contenía una clave de propiedá non válida, «$2».", + "smw-parser-invalid-json-format": "L'analizador JSON devolvió «$1».", + "smw-property-preferred-label-language-combination-exists": "Nun puede utilizase «$1» como etiqueta preferida porque la llingua «$2» yá se venceyó a la etiqueta «$3».", + "smw-clipboard-copy-link": "Copiar l'enllaz al cartafueyu", + "smw-data-lookup": "Recuperando los datos...", + "smw-data-lookup-with-wait": "La solicitú ta procesándose y puede tardar un momentu.", + "smw-no-data-available": "Nun hai datos disponibles.", + "smw-property-req-violation-missing-fields": "A la propiedá «$1» fálten-y los detalles de declaración pal tipu «$2» anotáu al nun definir la propiedá Tien campos.", + "smw-edit-protection-enabled": "Protexíu contra ediciones (Semantic MediaWiki)", + "smw-patternedit-protection": "Esta páxina ta protexida y sólo pueden editala los usuarios que tengan los [https://www.semantic-mediawiki.org/wiki/Help:Permissions permisos] smw-patternedit afayadizos.", + "smw-query-reference-link-label": "Referencia de consulta", + "smw-format-datatable-emptytable": "Nun hai datos disponibles na tabla", + "smw-format-datatable-info": "Amosando de la _START_ a la _END_ de _TOTAL_ entraes", + "smw-format-datatable-infoempty": "Amosando de 0 a 0 de 0 entraes", + "smw-format-datatable-infofiltered": "(filtriaes d'un total de _MAX_ entraes)", + "smw-format-datatable-infothousands": ".", + "smw-format-datatable-lengthmenu": "Amosar _MENU_ entraes", + "smw-format-datatable-loadingrecords": "Cargando...", + "smw-format-datatable-processing": "Procesando...", + "smw-format-datatable-search": "Buscar:", + "smw-format-datatable-zerorecords": "Nun s'atoparon rexistros que concasen", + "smw-format-datatable-first": "Primer", + "smw-format-datatable-last": "Postrer", + "smw-format-datatable-next": "Siguiente", + "smw-format-datatable-previous": "Anterior", + "smw-format-datatable-sortascending": ": activar pa ordenar la columna de mou ascendiente", + "smw-format-datatable-sortdescending": ": activar pa ordenar la columna de mou descendiente", + "smw-format-datatable-toolbar-export": "Esportar", + "smw-category-invalid-redirect-target": "La categoría «$1» contién un destín de redireición inválidu a un espaciu de nomes que nun ye de categoría.", + "apihelp-ask-summary": "Módulu de la API pa consultar Semantic MediaWiki usando'l llinguaxe Ask.", + "apihelp-askargs-summary": "Módulu de la API pa consultar Semantic MediaWiki usando'l llinguaxe Ask como llista de condiciones, visualizaciones y parámetros.", + "apihelp-browsebyproperty-summary": "Módulu de la API pa recuperar información sobre dalguna propiedá o llista de propiedaes.", + "apihelp-browsebysubject-summary": "Módulu de la API pa recuperar información sobre dalguna tema.", + "apihelp-smwtask-summary": "Módulu de la API pa executar xeres rellacionaes con Semantic MediaWiki.", + "apihelp-smwbrowse-summary": "Módulu de la API pa encontu de les actividaes de navegación pa distintos tipos d'entidaes de Semantic MediaWiki.", + "smw-property-page-list-count": "Amosando $1 {{PLURAL:$1|páxina qu'usa|páxines qu'usen}} esta propiedá.", + "smw-property-page-list-search-count": "Amosando $1 {{PLURAL:$1|páxina qu'usa|páxines qu'usen}} esta propiedá con una correspondencia de valor «$2».", + "smw-property-reserved-category": "Categoría", + "smw-category": "Categoría", + "smw-datavalue-uri-invalid-scheme": "Nun s'incluyó «$1» nos esquemes d'URI válidos.", + "smw-browse-property-group-title": "Grupu de propiedaes", + "smw-browse-property-group-label": "Etiqueta de grupu de propiedaes", + "smw-browse-property-group-description": "Descripción de grupu de propiedaes", + "smw-section-expand": "Espander la sección", + "smw-section-collapse": "Contraer la sección", + "smw-ask-format-help-link": "Formatu [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Ayuda", + "smw-cheat-sheet": "Chuleta", + "smw-personal-jobqueue-watchlist": "Llista de siguimientu de cola de xeres", + "smw-property-predefined-label-skey": "Clave d'ordenación", + "smw-processing": "Procesando...", + "smw-redirect-target-unresolvable": "El destín nun puede resolvese pol motivu «$1»", + "smw-types-title": "Tipu: $1", + "smw-ask-title-keyword-type": "Busca de palabres clave", + "smw-ask-message-keyword-type": "Esta busca casa cola condición $1.", + "smw-remote-source-unavailable": "Nun pudo coneutase col destín remotu «$1».", + "smw-remote-source-disabled": "L'orixe '''$1''' desactivó l'encontu de solicitúes remotes.", + "smw-pendingtasks-setup-tasks": "Xeres", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "Abaxo s'{{PLURAL:$1|amuesa hasta un resultáu|amuesen $1 resultaos}}, principando por #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/avk.json b/mediawiki/extensions/SemanticMediaWiki/i18n/avk.json new file mode 100644 index 0000000..a811380 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/avk.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Axel xadolik" + ] + }, + "smw-categories": "Bulomeem", + "browse": "Exulera va wiki", + "smw-livepreview-loading": "Vajas…", + "smw-listingcontinuesabbrev": "loon", + "smw-showingresults": "Vlevefa nedira va {{PLURAL:$1|'''1''' trasiks|'''$1''' trasiks}} dem #'''$2''' toza." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/awa.json b/mediawiki/extensions/SemanticMediaWiki/i18n/awa.json new file mode 100644 index 0000000..d0fd954 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/awa.json @@ -0,0 +1,14 @@ +{ + "@metadata": { + "authors": [ + "1AnuraagPandey" + ] + }, + "smw-categories": "श्रेणी", + "smw_purge": "रिफ्रेश", + "browse": "विकि देखा जाय", + "smw_browselink": "खाश जानकारी", + "prefs-smw": "शब्दार्थगत मीडियाविकी", + "smw-listingcontinuesabbrev": "आगे.", + "smw-showingresults": "नीचे क्रमांक '''$2''' से सुरु कै कय सबसे ढेर '''$1''' परिणाम {{PLURAL:$1|देखाइ गा है}}।" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/az.json b/mediawiki/extensions/SemanticMediaWiki/i18n/az.json new file mode 100644 index 0000000..d22cfa4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/az.json @@ -0,0 +1,41 @@ +{ + "@metadata": { + "authors": [ + "Cekli829", + "Dağlı95", + "NMW03", + "Nemoralis", + "Neriman2003", + "Wertuose", + "Zpizza" + ] + }, + "smw_finallistconjunct": ", və", + "smw_printername_list": "Siyahı", + "smw_printername_table": "Cədvəl", + "smw_printername_template": "Şablon", + "smw-categories": "Kateqoriyalar", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Submüəssisə|Subobyektləri}}", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Property dəyəri|Әmlak dəyərlər}} ({{PLURAL:$1|Düzgün annotasiya|Düzgün notları}})", + "browse": "Vikiyə baxış", + "smw_result_results": "Nəticələr", + "smwadmin": "Semantik MediaWiki İdarəetmə Paneli", + "smw-admin-permission-missing": "İcazələrin olmaması səbəbindən bu səhifəyə giriş bloklanıb, lazımi parametrlər haqqında ətraflı məlumat üçün [https://www.semantic-mediawiki.org/wiki/Help:Permissions icazələr] yardım səhifəsinə müraciət edin.", + "smw-admin-docu": "Bu xüsusi səhifə Semantic MediaWikinin quraşdırılması, təkmilləşdirilməsi, texniki xidməti və istifadəsi zamanı sizə kömək edir və həmçinin əlavə inzibati funksiyalar və tapşırıqlar, habelə statistika təqdim edir.\nİnzibati funksiyaları yerinə yetirməzdən əvvəl önəmli məlumatların ehtiyat nüsxəsini çıxarmağı unutmayın.", + "smw-admin-db": "Məlumat bazasının quraşdırılması", + "smw-admin-dbdocu": "Semantik MediaWiki semantik məlumatları saxlamaq üçün öz verilənlər bazası strukturunu tələb edir (və MediaWiki-dən müstəqildir, buna görə də MediaWiki quraşdırılmasının qalan hissəsinə təsir etmir). quraşdırma və ya təkmilləşdirmə zamanı yalnız bir dəfə tələb olunur.", + "smw-admin-permissionswarn": "Əgər əməliyyat SQL xətaları ilə uğursuz olarsa, vikinizdə işlədilən verilənlər bazası istifadəçisinin (\"LocalSettings.php\" faylınızı yoxlayın) çox güman ki, lazımi icazəsi yoxdur.\nYa bu istifadəçiyə cədvəl yaratmaq və silmək üçün əlavə icazələr verin, müvəqqəti olaraq \"LocalSettings.php\" faylında verilənlər bazanızın kökünə daxil olun və ya inzibatçının etimadnaməsini istifadə edə bilən setupStore.php texniki xidmət skriptindən istifadə edin.", + "smw-admin-dbbutton": "Cədvəlləri işə sal və ya yüksəlt", + "smw_smwadmin_datarefresh": "Verilənlərin bərpası", + "smw-admin-bugsreport": "Səhvlər problem panelində bildirilə bilər, xətaların bildirilməsi səhifəsi effektiv xəta bildirişinin yazılması ilə bağlı bəzi təlimatlar təqdim edir.", + "smw-admin-idlookup-title": "Axtar", + "smw-admin-iddispose-title": "Utilizasiya", + "smw-livepreview-loading": "Yüklənir…", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|saniyə|saniyə}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|saniyə|saniyə}}", + "smw-help": "Kömək", + "smw-processing": "İşləyir...", + "smw-redirect-target-unresolvable": "Hədəf \"$1\" səbəbindən həll olunmayacaq", + "smw-listingcontinuesabbrev": "(davam)", + "smw-showingresults": "Aşağıda #$2 ilə başlayan {{PLURAL:$1|$1-ə qədər}} nəticə göstərilib." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/azb.json b/mediawiki/extensions/SemanticMediaWiki/i18n/azb.json new file mode 100644 index 0000000..488b565 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/azb.json @@ -0,0 +1,17 @@ +{ + "@metadata": { + "authors": [ + "Alp Er Tunqa", + "Amir a57", + "E THP", + "Ebrahimi-amir" + ] + }, + "smw-categories": "بؤلمه‌لر", + "browse": "ویکی یه باخیش", + "smw_browselink": "اوزللیکلری گؤزدن کئچیر", + "smw_browse_go": "گئت", + "smw-livepreview-loading": "یوکلنیر...", + "smw-listingcontinuesabbrev": "(قالانی)", + "smw-showingresults": "آشاغیدا نومره '''$2'''-دن باشلایان {{PLURAL:$1|'''بیر'''|'''$1'''}} سونوجا قدر گؤستریلیر." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ba.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ba.json new file mode 100644 index 0000000..9c9cefe --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ba.json @@ -0,0 +1,22 @@ +{ + "@metadata": { + "authors": [ + "Lizalizaufa", + "Roustammr", + "Айсар", + "Ансар", + "З. ӘЙЛЕ", + "Рустам Нурыев" + ] + }, + "smw-paramdesc-source": "Икенсе сығанаҡтан һоратыу", + "smw-categories": "Категориялар", + "smw_ask_editquery": "Һоратыуҙы мөхәррирләү", + "browse": "Вики күҙәтеү", + "smw_browselink": "Үҙенсәлектәрҙе ҡарарға", + "smw-admin-setupsuccess": "Һаҡлау системаһы ҡуйылды", + "smw-livepreview-loading": "Йөкләнә...", + "smw-format-datatable-toolbar-export": "Сығарырға", + "smw-listingcontinuesabbrev": "(дауамы)", + "smw-showingresults": "Түбәндә #$2 һөҙөмтәнән башлап {{PLURAL:$1|1 һөҙөмтә|$1 һөҙөмтәләр}} күрһәтелгән." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/bar.json b/mediawiki/extensions/SemanticMediaWiki/i18n/bar.json new file mode 100644 index 0000000..26026c7 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/bar.json @@ -0,0 +1,14 @@ +{ + "@metadata": { + "authors": [ + "Bua333", + "Mucalexx" + ] + }, + "smw-categories": "Kategorina", + "smw_purge": "Neich loon", + "browse": "Semantischs Browsen", + "smw_browselink": "D' Attributt åzoang", + "smw-livepreview-loading": "Loon ...", + "smw-listingcontinuesabbrev": "(Fortsetzung)" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/bcc.json b/mediawiki/extensions/SemanticMediaWiki/i18n/bcc.json new file mode 100644 index 0000000..20f7fad --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/bcc.json @@ -0,0 +1,17 @@ +{ + "@metadata": { + "authors": [ + "Baloch Afghanistan", + "Moshtank", + "Sultanselim baloch" + ] + }, + "smw-upgrade-error-why-title": "من چۏن کُت کہ اے ارور پݔش آتک؟", + "smw-upgrade-error-how-title": "چۏن اے ارورءَ شرّ بکنوں؟", + "smw_printername_category": "تهر", + "smw-categories": "تَھران", + "browse": "ویکیءِ چارگ", + "smw-livepreview-loading": "بییگئن...", + "smw-listingcontinuesabbrev": "دامدار.", + "smw-showingresults": "جهل پیش دارگنت تا {{PLURAL:$1|'''1'''نتیجه|'''$1''' نتایج}} شروع بنت گون #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/bcl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/bcl.json new file mode 100644 index 0000000..9d08c99 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/bcl.json @@ -0,0 +1,21 @@ +{ + "@metadata": { + "authors": [ + "Brazal.dang", + "Daramlagon", + "Geopoet", + "ShimunUfesoj" + ] + }, + "smw-upgrade-error-why-title": "Tano ko nahihiling an pahinang ini?", + "smw-upgrade-error-how-title": "Pano ko papakarayon ang nasala?", + "smw-extensionload-error-why-title": "Tano ko nahihiling an pahina na ni?", + "smw-extensionload-error-how-title": "Pano ko papakarayon ang nasala?", + "smw-upgrade-maintenance-why-title": "Tano ko nahihiling an pahina na ni?", + "smw-paramdesc-table-transpose": "Ipahiling an mga pamayuhan kan lamesa sa paaging patindog asin an mga resulta sa paaging pahigda", + "smw-categories": "Mga kategorya", + "browse": "Mag-browse sa wiki", + "smw-livepreview-loading": "Pigkakarga…", + "smw-listingcontinuesabbrev": "kasumpay", + "smw-showingresults": "Pigpapahiling sa babâ sagkod sa {{PLURAL:$1|'''1''' resulta|'''$1''' mga resulta}} poon sa #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/be-tarask.json b/mediawiki/extensions/SemanticMediaWiki/i18n/be-tarask.json new file mode 100644 index 0000000..059566c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/be-tarask.json @@ -0,0 +1,435 @@ +{ + "@metadata": { + "authors": [ + "EugeneZelenko", + "Jim-by", + "Nerogaf", + "Red Winged Duck", + "Renessaince", + "Wizardist", + "Zedlik", + "아라" + ] + }, + "smw-desc": "Робіць {{GRAMMAR:вінавальны|{{SITENAME}}}} больш зручнай для кампутараў ''і'' людзей ([https://www.semantic-mediawiki.org/wiki/Help:User_manual дакумэнтацыя])", + "smw-error": "Памылка", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Сэмантычная МэдыяВікі] была ўсталяваная і задзейнічаная, аднак адсутнічае неабходны [https://www.semantic-mediawiki.org/wiki/Help:Upgrade ключ абнаўленьня].", + "smw-upgrade-release": "Выданьне", + "smw-upgrade-progress": "Прагрэс", + "smw-upgrade-error-why-title": "Чаму я бачу гэтую старонку?", + "smw-upgrade-error-how-title": "Як мне выправіць гэтую памылку?", + "smw-upgrade-maintenance-title": "Абслугоўваньне » Сэмантычная МэдыяВікі", + "smw_viewasrdf": "RDF-крыніца", + "smw_finallistconjunct": " і", + "smw-factbox-head": "… болей пра «$1»", + "smw-factbox-facts": "Факты", + "smw-factbox-facts-derived": "Атрыманыя факты", + "smw_isspecprop": "Гэтая ўласьцівасьць зьяўляецца спэцыяльнай у {{GRAMMAR:месны|{{SITENAME}}}}.", + "smw-concept-cache-header": "Выкарыстаньне кэшу", + "smw-concept-no-cache": "Кэш адсутнічае.", + "smw_concept_description": "Апісаньне канцэпцыі «$1»", + "smw_no_concept_namespace": "Канцэпцыі могуць быць вызначаныя толькі на старонках прасторы назваў «Канцэпцыя:».", + "smw_multiple_concepts": "Кожная старонка канцэпцыі можа мець толькі адно вызначэньне канцэпцыі.", + "smw_concept_cache_miss": "Канцэпцыя «$1» ня можа быць выкарыстаная ў гэты момант, таму што канфігурацыя {{GRAMMAR:родны|{{SITENAME}}}} патрабуе, каб яна вылічалася аф-лайн. Калі гэта праблема ня зьнікне празь некаторы час, запытайце Вашага адміністратара сайта ўключыць гэтую канцэпцыю.", + "smw_noinvannot": "Значэньні ня можа быць прызначаныя ў адваротныя уласьцівасьці.", + "version-semantic": "Сэмантычныя пашырэньні", + "smw_baduri": "Спасылкі на форму «$1» не дазволеныя.", + "smw_printername_count": "Падлік вынікаў", + "smw_printername_csv": "экспарт у фармаце CSV", + "smw_printername_dsv": "Экспарт у фармат DSV", + "smw_printername_debug": "Запыт для наладкі (для экспэртаў)", + "smw_printername_embedded": "Устаўляць зьмест старонак", + "smw_printername_json": "экспарт у фармаце JSON", + "smw_printername_list": "Сьпіс", + "smw_printername_plainlist": "Звычайны сьпіс", + "smw_printername_ol": "Нумараваны сьпіс", + "smw_printername_ul": "Маркіраваны сьпіс", + "smw_printername_table": "Табліца", + "smw_printername_broadtable": "Шырокая табліца", + "smw_printername_template": "Шаблён", + "smw_printername_templatefile": "Файл шаблёну", + "smw_printername_rdf": "Экспарт у фармат RDF", + "smw_printername_category": "Катэгорыя", + "validator-type-class-SMWParamSource": "тэкст", + "smw-paramdesc-limit": "Максымальная колькасьць вынікаў для вяртаньня", + "smw-paramdesc-offset": "Адхіленьне першага выніку", + "smw-paramdesc-headers": "Паказваць назвы загалоўкаў/уласьцівасьцяў", + "smw-paramdesc-mainlabel": "Метка для назвы галоўнай старонкі", + "smw-paramdesc-link": "Паказваць значэньні як спасылкі", + "smw-paramdesc-intro": "Тэкст для паказу перад вынікамі запыту, калі яны ёсьць", + "smw-paramdesc-outro": "Тэкст для паказу пасьля вынікаў запыту, калі яны ёсьць", + "smw-paramdesc-default": "Тэкст для паказу ў выпадку адсутнасьці вынікаў", + "smw-paramdesc-sep": "Разьдзяляльнік вынікаў", + "smw-paramdesc-propsep": "Межнік паміж уласьцівасьцямі ў выніковым запісе", + "smw-paramdesc-distribution": "Замест адлюстраваньня ўсіх значэньняў падлічыць ужываньні і паказаць іх.", + "smw-paramdesc-distributionsort": "Адсартаваць разьмеркаваньне значэньняў паводле колькасьці ўжываньня.", + "smw-paramdesc-template": "Назва шаблёну, які будзе выкарыстоўвацца для вываду вынікаў", + "smw-paramdesc-columns": "Колькасьць слупкоў, у якіх будуць паказвацца вынікі", + "smw-paramdesc-userparam": "Значэньне, якое перадаецца ў кожны выклік шаблёну, калі ён выкарыстоўваецца", + "smw-paramdesc-class": "Дадатковая кляса CSS, каб задаць сьпіс табліцы", + "smw-paramdesc-introtemplate": "Назва шаблёну для паказу перад вынікамі запыту, калі яны ёсьць", + "smw-paramdesc-outrotemplate": "Назва шаблёну для паказу пасьля вынікаў запыту, калі яны ёсьць", + "smw-paramdesc-embedformat": "Тэг HTML, які выкарыстоўваецца для вызначэньня загалоўкаў", + "smw-paramdesc-embedonly": "Не паказваць загалоўкі", + "smw-paramdesc-table-class": "Дадатковая кляса CSS для табліцы", + "smw-paramdesc-rdfsyntax": "Сынтаксіс RDF для выкарыстаньня", + "smw-paramdesc-csv-sep": "Вызначае разьдзяляльнік слупкоў", + "smw-paramdesc-csv-valuesep": "Вызначае межнік значэньняў", + "smw-paramdesc-dsv-separator": "Разьдзяляльнік", + "smw-paramdesc-dsv-filename": "Назва DSV-файла", + "smw-paramdesc-filename": "Назва зыходнага файлу", + "smw-smwdoc-description": "Паказвае табліцу з усімі парамэтрамі, якія могуць ужывацца для выбранага фармату вынікаў разам з значэньнямі па змоўчваньні і апісаньнямі.", + "smw-smwdoc-default-no-parameter-list": "Гэты фармат выніку не забясьпечвае спэцыфічныя парамэтры.", + "smw-smwdoc-par-format": "Фармат вынікаў для паказу дакумэнтацыі пра парамэтры.", + "smw-paramdesc-sort": "Уласьцівасьць, паводле якой сартаваць запыт", + "smw-paramdesc-order": "Парадак сартаваньня запыту", + "smw-paramdesc-searchlabel": "Тэкст для працягу пошуку", + "smw-paramdesc-named_args": "Назвы аргумэнтаў, перададзеных у шаблён", + "smw-paramdesc-export": "Налады імпарту", + "smw-paramdesc-json-type": "Тып сэрыялізацыі", + "smw-paramdesc-source": "Альтэрнатыўная крыніца запыту", + "smw-paramdesc-jsonsyntax": "Сынтаксыс JSON для выкарыстаньня", + "smw-printername-feed": "Канал RSS і Atom", + "smw-paramdesc-feedtype": "Тып каналу", + "smw-paramdesc-feedtitle": "Тэкст, які будзе скарыстаны ў якасьці назвы каналу", + "smw-paramdesc-feeddescription": "Тэкст, які будзе скарыстаны ў якасьці апісаньня каналу", + "smw-paramdesc-feedpagecontent": "Зьмест старонкі, які будзе адлюстроўвацца на канале", + "smw-label-feed-description": "Канал $1 $2", + "smw-paramdesc-mimetype": "Тып мэдыя (MIME-тып) для зыходнага файлу", + "smw_iq_disabled": "Сэмантычныя запыты былі выключаны ў {{GRAMMAR:месны|{{SITENAME}}}}.", + "smw_iq_moreresults": "… наступныя вынікі", + "smw_parseerror": "Пададзенае значэньне не было распазнанае.", + "smw_notitle": "«$1» ня можа выкарыстоўвацца як назва старонкі ў {{GRAMMAR:месны|{{SITENAME}}}}.", + "smw_noproperty": "«$1» ня можа выкарыстоўвацца як уласьцівасьць старонкі ў {{GRAMMAR:месны|{{SITENAME}}}}.", + "smw_wrong_namespace": "Тут дазволены толькі старонкі з прасторы назваў «$1».", + "smw_manytypes": "Для ўласьцівасьці вызначана болей аднаго тыпу.", + "smw_emptystring": "Пустыя радкі не дазволены.", + "smw_notinenum": "«$1» не ўваходзіць у сьпіс ($2) [[Property:Allows value|дазволеных значэньняў]] для ўласьцівасьці «$3».", + "smw-datavalue-constraint-error-allows-value-list": "«$1» не ўваходзіць у сьпіс ($2) [[Property:Allows value|дазволеных значэньняў]] для ўласьцівасьці «$3».", + "smw-datavalue-constraint-error-allows-value-range": "«$1» не ўваходзіць у дыяпазон ($2), вызначаны [[Property:Allows value|дазволенымі значэньнямі]] для ўласьцівасьці «$3».", + "smw_noboolean": "«$1» не зьяўляецца лягічным значэньнем (праўда/няпраўда).", + "smw_true_words": "праўда,п,так,т", + "smw_false_words": "няпраўда,н,не", + "smw_nofloat": "«$1» не зьяўляецца лікам.", + "smw_infinite": "Лікі, большыя за «$1», не падтрымліваюцца.", + "smw_unitnotallowed": "«$1» не аб’яўленая як дапушчальная адзінка вымярэньняў для гэтай уласьцівасьці.", + "smw_nounitsdeclared": "Няма вызначаных адзінак вымярэньня для гэтай уласьцівасьці.", + "smw_novalues": "Значэньні не пазначаныя", + "smw_nodatetime": "Дата «$1» не была распазнаная.", + "smw_toomanyclosing": "Зашмат уваходжаньняў «$1» у запыце.", + "smw_noclosingbrackets": "Выкарыстаныя дужкі «[[» у Вашым запыце не былі зачынены адпаведнымі дужкамі «]]».", + "smw_misplacedsymbol": "Сымбаль «$1» быў выкарыстаны ў месцы, дзе ён ня мае сэнсу.", + "smw_unexpectedpart": "Частка запыту «$1» не была распазнаная.\nВынікі могуць быць нечаканымі.", + "smw_emptysubquery": "Нейкі падзапыт ня мае слушных умоваў.", + "smw_misplacedsubquery": "Нейкі падзапыт быў выкарыстаны ў месцы, дзе выкарыстаньне падзапытаў не дазволена.", + "smw_valuesubquery": "Падзапыты не падтрымліваюцца для значэньняў уласьцівасьці «$1».", + "smw_badqueryatom": "Частка запыту «[[…]]» не была распазнаная.", + "smw_propvalueproblem": "Значэньне ўласьцівасьці «$1» не было распазнанае.", + "smw_noqueryfeature": "Нейкая ўласьцівасьць не падтрымліваецца ў {{GRAMMAR:месны|{{SITENAME}}}}, і частка запыту была ігнараваная ($1).", + "smw_noconjunctions": "Злучэньні ў запытах не падтрымліваюцца ў {{GRAMMAR:месны|{{SITENAME}}}}, і частка запыту была ігнараваная ($1).", + "smw_nodisjunctions": "Падзяленьні ў запытах не падтрымліваюцца ў {{GRAMMAR:месны|{{SITENAME}}}}, і частка запыту была ігнараваная ($1).", + "smw_querytoolarge": "$2 {{PLURAL:$2|наступная ўмова запыту ня можа ўлічвацца|наступныя ўмовы запыту ня могуць улічвацца|наступных умоваў запыту ня могуць улічвацца}} праз абмежаваньні гэтай вікі на глыбіню і памер запыту: $1.", + "smw_notemplategiven": "Для выкананьня гэтага запыту, неабходна ўвесьці значэньне парамэтру «template».", + "smw_db_sparqlqueryproblem": "Немагчыма атрымаць вынік запыту да базы зьвестак SPARQL. Магчыма гэтая часовая памылка ці праблема праграмнага забесьпячэньня базы зьвестак.", + "smw_db_sparqlqueryincomplete": "Выкананьне запыту было перарванае, з-за таго, што ён зьяўляецца занадта складаным. Некаторыя вынікі могуць адсутнічаць. Калі магчыма, паспрабуйце спрасьціць запыт.", + "smw_type_header": "Уласьцівасьці тыпу «$1»", + "smw_typearticlecount": "{{PLURAL:$1|Паказаная $1 уласьцівасьць, якая выкарыстоўвае|Паказаныя $1 уласьцівасьці, якія выкарыстоўваюць|Паказаныя $1 уласьцівасьцяў, якія выкарыстоўваюць}} гэты тып.", + "smw_attribute_header": "Старонкі, якія выкарыстоўваюць уласьцівасьць «$1»", + "smw_attributearticlecount": "{{PLURAL:$1|Паказаная $1 старонка, якая выкарыстоўвае|Паказаныя $1 старонкі, якія выкарыстоўваюць|Паказаныя $1 старонак, якія выкарыстоўваюць}} гэтую ўласьцівасьць.", + "smw-propertylist-subproperty-header": "Падуласьцівасьці", + "smw-propertylist-redirect-header": "Сынонімы", + "smw-propertylist-error-header": "Старонкі зь няправільнымі прызначэньнямі", + "smw-propertylist-count": "{{PLURAL:$1|Паказаная|Паказаныя}} $1 {{PLURAL:$1|зьвязаная існасьць|зьвязаныя існасьці|зьвязаных існасьцяў}}.", + "smw-propertylist-count-with-restricted-note": "{{PLURAL:$1|Паказаная|Паказаныя}} $1 {{PLURAL:$1|зьвязаная існасьць|зьвязаныя існасьці|зьвязаных існасьцяў}} (іх болей, аднак адлюстраваньне абмежаванае «$2»).", + "smw-propertylist-count-more-available": "{{PLURAL:$1|Паказаная|Паказаныя}} $1 {{PLURAL:$1|зьвязаная існасьць|зьвязаныя існасьці|зьвязаных існасьцяў}} (іх болей).", + "specialpages-group-smw_group": "Сэмантычная MediaWiki", + "exportrdf": "Экспарт старонак у фармаце RDF", + "smw_exportrdf_docu": "Гэта старонка дазваляе Вам атрымліваць зьвесткі са старонкі ў фармаце RDF.\nКаб экспартаваць старонкі, увядзіце іх назвы ніжэй у тэкставым полі, па адной назьве на радок.", + "smw_exportrdf_recursive": "Рэкурсіўны экспарт усіх зьвязаных старонак.\nЗьвярніце ўвагу на тое, што вынік можа быць вялікім!", + "smw_exportrdf_backlinks": "Таксама экспартаваць усе старонкі, якія спасылаюцца на экспартаваныя старонкі.\nСтварае RDF з поўнай навігацыяй.", + "smw_exportrdf_lastdate": "Не экспартаваць старонкі, якія не зьмяняліся з пададзенага часу.", + "smw_exportrdf_submit": "Экспартаваць", + "uriresolver": "Пераўтваральнік URI", + "properties": "Уласьцівасьці", + "smw-categories": "Катэгорыі", + "smw_properties_docu": "Наступныя ўласьцівасьці выкарыстоўваюцца ў {{GRAMMAR:месны|{{SITENAME}}}}.", + "smw_property_template": "$1 тыпу $2 ($3 {{PLURAL:$3|выкарыстаньне|выкарыстаньні|выкарыстаньняў}})", + "smw_propertylackspage": "Усе ўласьцівасьці павінны мець старонку апісаньня!", + "smw_propertylackstype": "Для гэтай уласьцівасьці не пазначаны ніякі тып (пакуль будзе выкарыстоўвацца тып $1).", + "smw_propertyhardlyused": "Гэтая ўласьцівасьць наўрад ці выкарыстоўваецца ў {{GRAMMAR:месны|{{SITENAME}}}}!", + "smw-sp-property-searchform": "Адлюстраваць уласьцівасьці, якія ўтрымліваюць:", + "smw-special-property-searchform": "Выявіць уласьцівасьці, якія ўтрымліваюць:", + "smw-special-property-searchform-options": "Налады", + "smw-special-wantedproperties-filter-label": "Фільтар:", + "smw-special-wantedproperties-filter-none": "Няма", + "smw-special-wantedproperties-filter-unapproved": "Незацьверджана", + "unusedproperties": "Уласьцівасьці, якія не выкарыстоўваюцца", + "smw-unusedproperties-docu": "Гэтая старонка ўтрымлівае [https://www.semantic-mediawiki.org/wiki/Unused_properties неўжываныя ўласьцівасьці], якія былі аб’яўленыя, хаця ніводная старонка іх не выкарыстоўвае. Для дыфэрэнцаванага выгляду, глядзіце [[Special:Properties|агульную спэцыяльную старонку]] або [[Special:WantedProperties|старонку запатрабаваных уласьцівасьцяў]].", + "smw-unusedproperty-template": "$1 тыпу $2", + "wantedproperties": "Запатрабаваныя ўласьцівасьці", + "smw-wantedproperties-docu": "Гэтая старонка ўтрымлівае [https://www.semantic-mediawiki.org/wiki/Wanted_properties запатрабаваныя ўласьцівасьці], якія ўжываюцца ў вікі, але ня маюць старонкі з апісаньнем. Для дыфэрэнцаванага выгляду, глядзіце [[Special:Properties|агульную спэцыяльную старонку]] або [[Special:UnusedProperties|старонку неўжываных уласьцівасьцяў]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|выкарыстаньне|выкарыстаньні|выкарыстаньняў}})", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|выкарыстаньне|выкарыстаньні|выкарыстаньняў}})", + "smw_purge": "Абнавіць", + "types": "Тыпы", + "smw_types_docu": "Сьпіс [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes даступных тыпаў зьвестак], у якім кожны [https://www.semantic-mediawiki.org/wiki/Help:Datatype тып] зьяўляецца наборам атрыбутаў для апісаньня значэньняў з пункту гледжаньня захоўваньня і адлюстраваньня характарыстык, якія паходзяць ад прызначанай уласьцівасьці.", + "smw-statistics-property-instance": "{{PLURAL:$1|1=Значэньне|Значэньні|Значэньняў}} уласьцівасьці (агулам)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|1=Значэньне|Значэньні|Значэньняў}}]] (агулам)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|1=Уласьцівасьць|Уласьцівасьці|Уласьцівасьцяў}} (агулам)", + "smw-statistics-property-used": "{{PLURAL:$1|1=Уласьцівасьць|Уласьцівасьці}} ({{PLURAL:$1|1=ужытая|ужытыя}} з прынамсі адным значэньнем)", + "smw-statistics-property-page": "{{PLURAL:$1|1=Уласьцівасьць|Уласьцівасьці|Уласьцівасьцяў}} ({{PLURAL:$1|1=зарэгістраваная|зарэгістраваныя|зарэгістраваных}} са старонкай)", + "smw-statistics-property-type": "{{PLURAL:$1|1=Уласьцівасьць|Уласьцівасьці|Уласьцівасьцяў}} ({{PLURAL:$1|1=прысвоеная|прысвоеныя|прысвоеных}} тыпу зьвестак)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Запыт|Запыты|Запытаў}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|1=Запыт|Запыты}}]] (укладзеныя, усяго)", + "smw-statistics-query-size": "Памер запыту", + "smw-statistics-error-count": "{{PLURAL:$1|Значэньне ўласьцівасьці|Значэньні ўласьцівасьці|Значэньняў уласьцівасьці}} ([[Special:ProcessingErrorList|{{PLURAL:$1|няправільная анатацыя|няправільныя анатацыі}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Значэньне ўласьцівасьці|Значэньні ўласьцівасьці|Значэньняў уласьцівасьці}} ({{PLURAL:$1|няправільная анатацыя|няправільныя анатацыі}})", + "smw_uri_doc": "Пераўтваральнік URI ажыцьцяўляе [$1 пошук W3C TAG у httpRange-14].\nГэта забясьпечвае, што ў залежнасьці ад запыту выдаецца або прадстаўленьне RDF (для машынаў), або вікі-старонка (для людзей).", + "ask": "Сэмантычны пошук", + "smw_ask_sortby": "Сартаваць па слупку (неабавязкова)", + "smw_ask_ascorder": "Па павелічэньні", + "smw_ask_descorder": "Па зьмяншэньні", + "smw-ask-order-rand": "Выпадковы", + "smw_ask_submit": "Шукаць", + "smw_ask_editquery": "Рэдагаваць запыт", + "smw_add_sortcondition": "[Дадаць умовы сартаваньня]", + "smw-ask-sort-add-action": "Дадаць умовы сартаваньня", + "smw_ask_hidequery": "Схаваць запыт (кампактны выгляд)", + "smw_ask_help": "Дапамога па стварэньні запытаў", + "smw_ask_queryhead": "Умова", + "smw_ask_printhead": "Друкаваць абранае", + "smw_ask_printdesc": "(дадавайце адну назву ўласьцівасьці на радок)", + "smw_ask_format_as": "Фарматаваць як:", + "smw_ask_defaultformat": "дапомна", + "smw_ask_otheroptions": "Іншыя налады", + "smw_ask_show_embed": "Паказаць убудаваны код", + "smw_ask_hide_embed": "Схаваць убудаваны код", + "smw_ask_embed_instr": "Каб убудаваць гэты запыт у старонку, выкарыстоўвайце код пададзены ніжэй.", + "smw-ask-delete": "Выдаліць", + "smw-ask-sorting": "Сартаваньне", + "smw-ask-options": "Налады", + "smw-ask-options-sort": "Налады сартаваньня", + "smw-ask-format-options": "Фармат і налады", + "smw-ask-parameters": "Парамэтры", + "smw-ask-search": "Пошук", + "smw-ask-debug-desc": "Генэруе інфармацыю пра адладку запыту", + "smw-ask-no-cache": "Адлучыць кэш запыту", + "smw-ask-result": "Вынік", + "smw-ask-empty": "Прыбраць усе запісы", + "smw-ask-download-link-desc": "Запампаваць запыты вынікаў у фармаце $1", + "smw-ask-format": "Фармат", + "smw-ask-input-assistance": "Дапамога пры ўводзе", + "searchbyproperty": "Шукаць па ўласьцівасьці", + "processingerrorlist": "Сьпіс памылак апрацоўкі", + "propertylabelsimilarity": "Паведамленьне аб падобнасьці назваў уласьцівасьцяў", + "smw-processingerrorlist-intro": "Наступны сьпіс забясьпечвае агульны выгляд [https://www.semantic-mediawiki.org/wiki/Processing_errors памылак апрацоўваньня], якія ўзьніклі ў сувязі з [https://www.semantic-mediawiki.org/ Сэмантычнай MediaWiki]. Раіцца рэгулярна назіраць за гэтым сьпісам на звыклай аснове і выпраўляць нядзейсныя анатацыі значэньняў.", + "smw_sbv_docu": "Шукаць усе старонкі, якія ўтрымліваюць пададзеную ўласьцівасьць і значэньне.", + "smw_sbv_novalue": "Увядзіце значэньне для ўласьцівасьці, ці паглядзіце ўсе значэньні ўласьцівасьцяў для «$1».", + "smw_sbv_displayresultfuzzy": "Сьпіс усіх старонак, якія ўтрымліваюць уласьцівасьць «$1» са значэньнем «$2».\nЗ-за таго, што супала толькі некалькі вынікаў, паказаны старонкі, якія маюць блізкія значэньні.", + "smw_sbv_property": "Уласьцівасьць:", + "smw_sbv_value": "Значэньне:", + "smw_sbv_submit": "Знайсьці", + "browse": "Прагляд {{GRAMMAR:родны|{{SITENAME}}}}", + "smw_browselink": "Праглядзець уласьцівасьці", + "smw_browse_article": "Увядзіце назву старонкі для пачатку прагляду.", + "smw_browse_go": "Перайсьці", + "smw_browse_show_incoming": "Паказаць уласьцівасьці, якія спасылаюцца сюды", + "smw_browse_hide_incoming": "Схаваць уласьцівасьці, якія спасылаюцца сюды", + "smw_browse_no_outgoing": "Гэта старонка ня мае ўласьцівасьцяў.", + "smw_browse_no_incoming": "На гэту старонку не спасылаюцца ніякія ўласьцівасьці.", + "smw-browse-from-backend": "У сапраўдны час ідзе атрыманьне інфармацыі з сэрвэрнай прылады.", + "smw-browse-intro": "Дадзеная старонка прадастаўляе падрабязнасьці аб тэме або экзэмпляры сутнасьці, калі ласка, увядзіце назву аб'екту, які патрабуе праверкі.", + "smw-browse-invalid-subject": "Спраўджаньне суб’екта вярнула памылку «$1».", + "smw-browse-api-subject-serialization-invalid": "Суб’ект мае некарэктны фармат сэрыялізацыі.", + "smw-browse-show-group": "Адлюстраваць групы", + "smw-browse-hide-group": "Схаваць групы", + "smw_inverse_label_default": "$1 з", + "smw_inverse_label_property": "Паметка адваротнай уласьцівасьці", + "pageproperty": "Старонка пошуку ўласьцівасьцяў", + "smw_pp_docu": "Увядзіце старонку і ўласьцівасьць, ці толькі ўласьцівасьць, каб атрымаць усе пададзеныя значэньні.", + "smw_pp_from": "З старонкі:", + "smw_pp_type": "Уласьцівасьць:", + "smw_pp_submit": "Шукаць", + "smw_result_prev": "Папярэднія", + "smw_result_next": "Наступныя", + "smw_result_results": "Вынікі", + "smw_result_noresults": "Вынікаў няма.", + "smwadmin": "Панэль інструмэнтаў сэмантычнай MediaWiki", + "smw-admin-statistics-job-title": "Статыстыка заданьняў", + "smw-admin-statistics-querycache-title": "Кэш запытаў", + "smw-admin-setupsuccess": "Рухавік сховішча наладжаны.", + "smw_smwadmin_return": "Вярнуцца да $1", + "smw_smwadmin_updatestarted": "Быў распачаты новы працэс абнаўленьня сэмантычных зьвестак.\nУсе зьвесткі будуць пераўтвораны ці зьменены, калі гэта будзе неабходна.\nВы можаце назіраць за працэсам абнаўленьня на гэтай спэцыяльнай старонцы.", + "smw_smwadmin_updatenotstarted": "Працэс абнаўленьня ўжо распачаты.\nНовага не ствараем.", + "smw_smwadmin_updatestopped": "Усе працэсы абнаўленьня былі спыненыя.", + "smw_smwadmin_updatenotstopped": "Каб спыніць працэс абнаўленьня, пастаўце ў полі адзнаку дзеля пацьверджаньня вашых намераў.", + "smw-admin-docu": "Гэтая спэцыяльная старонка дапамагае вам падчас усталяваньня, абнаўленьня, абслугоўваньня і выкарыстаньня Semantic MediaWiki, а таксама забясьпечвае далейшыя адміністрацыйныя функцыі і задачы разам з статыстыкай.\nНе забывайце захоўваць каштоўныя зьвесткі перад выкананьнем адміністратарскіх функцыяў.", + "smw-admin-environment": "Абалонка праграмнага забесьпячэньня", + "smw-admin-db": "Наладка базы зьвестак", + "smw-admin-dbdocu": "Semantic MediaWiki патрабуе ўласную структуру базы зьвестак (яна залежыць ад MediaWiki і не ўплывае на астатнюю частку ўсталяваньня installation) для захоўваньня сэмантычных зьвестак.\nГэта ўсталёвачная функцыя можа быць выкананая некалькі разоў без аніякай шкоды, але для ўсталяваньня ці абнаўленьня дастаткова будзе аднаго разу.", + "smw-admin-permissionswarn": "Калі адбываюцца SQL-памылкі падчас выкананьня апэрацыі, гэта значыць, што рахунак базы зьвестак, які выкарыстоўвае вікі (праверце ваш файл «LocalSettings.php»), магчыма, ня мае адпаведных правоў.\nНадайце рахунку дадатковыя правы на стварэньне і выдаленьне табліцаў, часова ўвядзіце рахунак адміністратара базы зьвестак у файл «LocalSettings.php», ці карыстайцеся скрыптом падтрымкі setupStore.php, які можа выкарыстоўваць рахунак адміністратара.", + "smw-admin-dbbutton": "Усталяваць ці абнавіць табліцы", + "smw-admin-announce": "Анансуйце вашую вікі", + "smw-admin-deprecation-notice-title": "Паведамленьні аб старэньні", + "smw-admin-deprecation-notice-title-notice": "Састарэлыя налады", + "smw-admin-deprecation-notice-title-replacement": "Замененыя ці перайменаваныя налады", + "smw-admin-deprecation-notice-title-removal": "Прыбраныя налады", + "smw-smwadmin-refresh-title": "Выпраўленьне й абнаўленьне зьвестак", + "smw_smwadmin_datarefresh": "Перабудова зьвестак", + "smw_smwadmin_datarefreshdocu": "Існуе магчымасьць аднаўленьня ўсіх зьвестак Semantic MediaWiki на аснове цяперашняга зьместу {{GRAMMAR:родны|{{SITENAME}}}}.\nГэта можа быць карысным для аднаўленьня парушаных зьвестак ці абнаўленьня зьвестак, калі ўнутраны фармат зьмяняецца пры абнаўленьні праграмнага забесьпячэньня.\nАбнаўленьне будзе выконвацца старонка за старонкай і можа заняць пэўны час.\nНіжэй паказваецца інфармацыя, ці адбываецца абнаўленьне, якая дазваляе Вам пачынаць ці спыняць абнаўленьне (за выключэньнем выпадкаў, калі гэта магчымасьць забароненая адміністратарам сайта).", + "smw_smwadmin_datarefreshprogress": "Ідзе працэс абнаўленьня.\nГэта нармальна, што працэс абнаўленьня запавольваецца, і зьвесткі абнаўляюцца невялікімі кавалкамі.\nКаб скончыць абнаўленьне хутчэй, Вы можаце скарыстацца скрыптом падтрымкі МэдыяВікі runJobs.php (выкарыстоўвайце парамэтар --maxjobs 1000, каб абмежаваць колькасьць выкананых абнаўленьняў у адным пакеце).\nПрыкладны час сканчэньня цяперашняга абнаўленьня:", + "smw_smwadmin_datarefreshbutton": "Заплянаваць перабудову зьвестак", + "smw_smwadmin_datarefreshstop": "Спыніць гэта абнаўленьне", + "smw_smwadmin_datarefreshstopconfirm": "Так, я {{GENDER:$1|ўпэўнены|ўпэўненая}}.", + "smw-admin-outdateddisposal-title": "Ліквідацыя састарэлых сутнасьцяў", + "smw-admin-outdateddisposal-active": "Прызначана праца па ліквідацыі састарэлых аб'ектаў.", + "smw-admin-outdateddisposal-button": "Заплянаваць ліквідацыю", + "smw-admin-propertystatistics-title": "Перабудова статыстыкі ўласьцівасьці", + "smw-admin-propertystatistics-button": "Заплянаваць перабудову статыстыкі", + "smw-admin-fulltext-title": "Перабудова паўнатэкставага пошуку", + "smw-admin-fulltext-button": "Запланаваць паўнатэкставую перабудову", + "smw-admin-support": "Падтрымка", + "smw-admin-supportdocu": "Ёсьць розныя крыніцы, каб дапамагчы вам у выпадку праблемаў:", + "smw-admin-installfile": "Калі ўзьнікнуць праблемы з вашым усталяваньнем, пачніце з рэкамэндацыяў у файле INSTALL і на старонцы ўсталёўкі.", + "smw-admin-smwhomepage": "Поўная дакумэнтацыя Semantic MediaWiki знаходзіцца на semantic-mediawiki.org.", + "smw-admin-bugsreport": "Можна паведамляць пра памылкі ў сыстэму сачэньня за праблемамі, старонка паведамленьняў пра памылкі мае даведку пра тое, як напісаць эфэктыўную справаздачу пра праблему.", + "smw-admin-questions": "Калі вы маеце пытаньні ці прапановы, далучайцеся да дыскусіі ў паштовай рассылцы Semantic MediaWiki.", + "smw-admin-other-functions": "Іншыя функцыі", + "smw-admin-supplementary-section-title": "Дапаможныя функцыі", + "smw-admin-supplementary-section-subtitle": "Падтрыманыя функцыі ядра", + "smw-admin-supplementary-settings-title": "Канфігурацыя і налады", + "smw-admin-supplementary-settings-intro": "$1 паказвае парамэтры, якія вызначаюць паводзіны Сэмантычнай МэдыяВікі", + "smw-admin-supplementary-operational-statistics-title": "Апэрацыйная статыстыка", + "smw-admin-supplementary-operational-statistics-intro": "Паказвае пашыраны набор $1", + "smw-admin-supplementary-idlookup-title": "Пошук і вылучэньне сутнасьці", + "smw-admin-supplementary-idlookup-intro": "Падтрымлівае простую функцыю $1", + "smw-admin-supplementary-duplookup-title": "Дубляваны прагляд элемэнтаў", + "smw-admin-supplementary-duplookup-intro": "$1, каб знайсьці элемэнты, якія класыфікуюцца як дублікаты ў абранай матрыцы табліцаў", + "smw-admin-supplementary-operational-statistics-cache-title": "Статыстыка кэшу", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 паказвае абраны набор статыстыкі кэшу", + "smw-admin-supplementary-elastic-intro": "$1 паказвае падрабязнасьці пра налады і індэксную статыстыку", + "smw-admin-supplementary-elastic-functions": "Падтрымваныя функцыі", + "smw-admin-supplementary-elastic-settings-title": "Налады (індэксы)", + "smw-admin-supplementary-elastic-settings-intro": "$1 выкарыстоўваецца ''Elasticsearch'' для кіраваньня індэксамі ''Сэмантычнай МэдыяВікі''", + "smw-admin-supplementary-elastic-mappings-title": "Мапаваньні", + "smw-admin-supplementary-elastic-mappings-intro": "$1, каб адлюстраваць індэксы і месцазнаходжаньні палёў", + "smw-admin-supplementary-elastic-mappings-summary": "Зьмест", + "smw-admin-supplementary-elastic-nodes-intro": "$1 паказвае статыстыку вузла", + "smw-admin-supplementary-elastic-indices-title": "Індэксы", + "smw-admin-supplementary-elastic-indices-intro": "$1 забясьпечвае агляд даступных індэксаў і іх статыстыку", + "smw-admin-supplementary-elastic-statistics-title": "Статыстыка", + "smw-admin-supplementary-elastic-statistics-intro": "$1 паказвае статыстыку ўзроўню індэксу", + "smw-admin-supplementary-elastic-status-replication": "Стан рэплікацыі", + "smw-admin-supplementary-elastic-status-last-active-replication": "Апошняя актыўная рэплікацыя: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Прамежак абнаўленьня: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Затрымка ўзнаўленьня працы: $1 (ацэнка)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Назапашаны пратакол (файл) нявыкананай працы: $1 (ацэнка)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Рэплікацыя заблякавана: $1 (перабудова ў працэсе)", + "smw-list-count": "Сьпіс утрымлівае $1 {{PLURAL:$1|уваход|уваходы}}.", + "smw-property-label-similarity-title": "Справаздача аб падобнасьці назваў уласьцівасьцяў", + "smw-property-label-similarity-intro": "$1 вылічвае падобнасьці для існых назваў уласьцівасьцяў", + "smw-property-label-similarity-threshold": "Парог:", + "smw-property-label-similarity-type": "Адлюстраваць тып ідэнтыфікатару", + "smw-property-label-similarity-noresult": "Для абраных парамэтраў ня знойдзена вынікаў.", + "smw_adminlinks_datastructure": "Структура зьвестак", + "smw_adminlinks_displayingdata": "Паказ зьвестак", + "smw_adminlinks_inlinequerieshelp": "Дапамога па ўбудаваных запытах", + "smw-property-indicator-type-info": "Уласьцівасьць, вызначаная {{PLURAL:$1|ўдзельнікам|сыстэмай}}", + "smw-property-indicator-last-count-update": "Прыкладная колькасьць выкарыстоўваньняў\nАпошні раз абноўлена: $1", + "smw-concept-indicator-cache-update": "Лічыльнік кішэню\nАпошні раз абноўлены: $1", + "smw-createproperty-isproperty": "Гэта ўласьцівасьць тыпу $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|1=Дазволенае значэньне|Дазволеныя значэньні}} для гэтай уласьцівасьці:", + "smw-paramdesc-category-delim": "Межнік", + "smw-paramdesc-category-template": "Шаблён, з дапамогай якога фарматуюцца элэмэнты", + "smw-paramdesc-category-userparam": "Парамэтар для перадачы шаблёну", + "smw-info-par-message": "Паведамленьне для адлюстраваньня.", + "smw-info-par-icon": "Значак для адлюстраваньня «info» або «warning».", + "prefs-smw": "Сэмантычная MediaWiki", + "prefs-general-options": "Агульныя налады", + "prefs-ask-options": "Сэмантычны пошук", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] і зьвязаныя пашырэньні дазваляюць пэрсанальную наладку для групы абраных функцыяў. Сьпіс індывідуальных наладаў з апісаньнямі і характарыстыкамі даступны на гэтай [https://www.semantic-mediawiki.org/wiki/Help:User_preferences старонцы дапамогі].", + "smw-prefs-ask-options-tooltip-display": "Адлюстроўваць тэкст парамэтру у выглядзе інфармацыйнай падказкі на адмысловай старонцы [[Special:Ask|канструктара запытаў]].", + "smw-prefs-ask-options-compact-view-basic": "Дазволіць асноўны кампактны выгляд", + "smw-prefs-help-ask-options-compact-view-basic": "Калі ўключана, адлюстроўвае скарочаны набор спасылак на Special:Ask у сьціснутым фармаце", + "smw-prefs-general-options-jobqueue-watchlist": "Адлюстраваць сьпіс назіраньняў за чэргай задачаў на асабістым панэлю", + "smw-prefs-general-options-disable-editpage-info": "Адлучыць уступны тэкст на старонцы рэдагаваньня", + "smw-prefs-general-options-disable-search-info": "Адлучыць інфармацыю аб падтрымцы сынтаксысу на змоўчнай старонцы пошуку", + "smw-prefs-general-options-suggester-textinput": "Улучыць дапамогу для ўводу сэмантычных аб’ектаў", + "smw-ui-tooltip-title-property": "Уласьцівасьць", + "smw-ui-tooltip-title-quantity": "Канвэрсія адзінкі", + "smw-ui-tooltip-title-info": "Інфармацыя", + "smw-ui-tooltip-title-service": "Службовыя спасылкі", + "smw-ui-tooltip-title-warning": "Папярэджаньне", + "smw-ui-tooltip-title-error": "Памылка", + "smw-ui-tooltip-title-parameter": "Парамэтар", + "smw-ui-tooltip-title-event": "Падзея", + "smw-ui-tooltip-title-note": "Камэнтар", + "smw-ui-tooltip-title-legend": "Легенда", + "smw-ui-tooltip-title-reference": "Зноска", + "smw_unknowntype": "Тып «$1» гэтай уласьцівасьці зьяўляецца няслушным", + "smw-concept-cache-text": "Задумка мае $1 {{PLURAL:$1|старонку|старонкі|старонак}}, і была апошні раз абноўлена $3, $2.", + "smw_concept_header": "Старонкі канцэпцыі «$1»", + "smw_conceptarticlecount": "Ніжэй {{PLURAL:$1|паказаная $1 старонка|паказаныя $1 старонкі|паказаныя $1 старонак}}.", + "smw-qp-empty-data": "Запытаныя зьвесткі ня могуць быць адлюстраваныя ў сувязі зь недастатковасьцю крытэраў адбору.", + "right-smw-admin": "Доступ да адміністрацыйных задачаў (Сэмантычная MediaWiki)", + "restriction-level-smw-pageedit": "абаронена (толькі адпаведныя ўдзельнікі)", + "action-smw-patternedit": "рэдагаваць звычайныя выразы, якія выкарыстоўваюцца Сэмантычнай МэдыяВікі", + "smw-property-namespace-disabled": "Уласьцівасьць «[https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks прастора назваў]» адключаная, таму спроба прызначыць тып ці іншыя асаблівыя характарыстыкі для гэтай уласьцівасьці немагчымая.", + "smw-sp-properties-header-label": "Сьпіс уласьцівасьцяў", + "smw-admin-idlookup-title": "Шукаць паводле", + "smw-admin-iddispose-title": "Пазбаўленьне", + "smw-admin-idlookup-input": "Пошук:", + "smw-admin-objectid": "Ідэнтыфікатар:", + "smw-admin-tab-general": "Агляд", + "smw-admin-tab-notices": "Заўвагі аб састарэньні", + "smw-admin-tab-supplement": "Дадатковыя функцыі", + "smw-admin-tab-registry": "Рэестар", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Хібныя існасьці", + "smw-livepreview-loading": "Загрузка…", + "smw-sp-searchbyproperty-resultlist-header": "Сьпіс вынікаў", + "smw-search-syntax": "Сынтаксыс", + "smw-search-profile": "Пашырана", + "smw-search-profile-sort-recent": "Самыя нядаўнія", + "smw-search-profile-sort-title": "Назва", + "smw-search-profile-extended-help-sort-title": "* «Назва» з выкарыстаньнем назвы старонкі (ці назвы, абранай для паказу) як крытэр сартаваньня", + "smw-search-profile-extended-help-find-forms": "даступныя формы", + "smw-search-profile-extended-section-sort": "Сартаваць паводле", + "smw-search-profile-extended-section-form": "Формы", + "smw-search-profile-extended-section-search-syntax": "Пошук увахода", + "smw-search-profile-extended-section-namespace": "Прастора назваў", + "smw-search-profile-extended-section-query": "Запыт", + "smw-search-profile-link-caption-query": "будаўнік запытаў", + "smw-search-show": "Паказаць", + "smw-search-hide": "Схаваць", + "log-name-smw": "Журнал Сэмантычнай MediaWiki", + "log-show-hide-smw": "$1 летапіс Сэмантычнай МэдыяВікі", + "logeventslist-smw-log": "Летапіс Сэмантычнай Мэдыя Вікі", + "logentry-smw-maintenance": "Падзеі, зьвязаныя з падтрымкай, якія адбыліся ў Сэмантычнай МэдыяВікі", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|імпарт $1]]", + "smw-datavalue-restricted-use": "Значэньне зьвестак «$1» было пазначана для абмежаванага карыстаньня.", + "smw-datavalue-invalid-number": "«$1» ня можа быць інтэрпрэтавана як лічба.", + "smw-query-condition-circular": "Магчымая цыклічная ўмова была знойдзена ў «$1».", + "smw-query-condition-empty": "У апісаньні запыту існуе пустая ўмова.", + "smw-types-list": "Сьпіс тыпаў зьвестак", + "smw-types-default": "«$1» зьяўляецца ўбудаваным тыпам зьвестак.", + "smw-type-boo": "«$1» зьяўляецца звычайным тыпам зьвестак для апісаньня значэньня праўда/хлусьня.", + "smw-type-ema": "«$1» зьяўляецца тыпам зьвестак для прадастаўленьня адрасу элэктроннай пошты.", + "smw-type-tab-properties": "Уласьцівасьці", + "smw-type-tab-types": "Тыпы", + "smw-type-tab-errors": "Памылкі", + "smw-type-primitive": "Асноўная", + "smw-type-contextual": "Залежныя", + "smw-limitreport-intext-parsertime": "[SMW] Час разбору ўнутрытэкставай анатацыі", + "smw-limitreport-intext-postproctime": "[SMW] час пост-апрацоўкі", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|сэкунда|сэкундаў}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|сэкунда|сэкундаў}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|сэкунда|сэкунды|сэкундаў}}", + "smw-constraint-violation-class-mandatory-properties-constraint": "Абмежаваньне mandatory_properties зьвязанае з катэгорыяй «[[:$1]]» і патрабуе такіх абавязковых уласьцівасьцяў: $2", + "smw-datavalue-time-invalid-date-components-empty": "«$1» зьмяшчае некаторыя пустыя кампанэнты.", + "smw-datavalue-external-formatter-invalid-uri": "«$1» зьяўляецца няправільным URL-адрасам.", + "smw-datavalue-parse-error": "Дадзенае значэньне «$1» не было распазнанае.", + "smw-no-data-available": "Няма даступных зьвестак.", + "smw-es-replication-error-no-connection": "Сачэньне за паўтарэньнем ня можа выканаць праверкі, бо ня можа ўсталяваць сувязь з клястэрам Elasticsearch.", + "smw-listingcontinuesabbrev": " (працяг)", + "smw-showingresults": "Ніжэй {{PLURAL:$1|пададзены|пададзеныя}} да $1 {{PLURAL:$1|выніку|вынікаў}}, пачынаючы з #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/be.json b/mediawiki/extensions/SemanticMediaWiki/i18n/be.json new file mode 100644 index 0000000..ff1ff07 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/be.json @@ -0,0 +1,39 @@ +{ + "@metadata": { + "authors": [ + "Artsiom91", + "Maksim L.", + "Mechanizatar", + "No Sleep till Krupki", + "Plaga med", + "Тест", + "Чаховіч Уладзіслаў" + ] + }, + "smw_printername_template": "Шаблон", + "smw_printername_category": "Катэгорыя", + "validator-type-class-SMWParamSource": "тэкст", + "smw-paramdesc-limit": "Максімальная колькасць вынікаў", + "smw_querytoolarge": "$2 {{PLURAL:$2|наступная ўмова запыту не можа|наступныя ўмовы запыту не могуць|наступных умоваў запыту не могуць}} улічвацца праз абмежаванні гэтай вікі на глыбіню і памер запыту: $1.", + "smw_attributearticlecount": "{{PLURAL:$1|Паказваецца $1 старонка, якая выкарыстоўвае|Паказваюцца $1 старонкі, якія выкарыстоўваюць|Паказваюцца $1 старонак, якія выкарыстоўваюць}} гэту ўласцівасць.", + "properties": "Уласцівасці", + "smw-categories": "Катэгорыі", + "smw_purge": "Абнавіць", + "types": "Тыпы", + "smw_sbv_property": "Уласцівасць:", + "browse": "Праглядзець {{GRAMMAR:родны|{{SITENAME}}}}", + "smw_browselink": "Праглядзець уласцівасці", + "smw_pp_type": "Уласцівасць:", + "smw_smwadmin_updatestarted": "Быў распачаты новы працэс абнаўлення семантычных дадзеных.\nУсе дадзеныя будуць пераўтвораны ці зменены, калі гэта будзе неабходна.\nВы можаце назіраць за працэсам абнаўлення на гэтай спэцыяльнай старонцы.", + "smw_smwadmin_updatenotstarted": "Працэс абнаўлення ўжо запушчаны.\nНе ствараем яшчэ адзін.", + "smw_smwadmin_updatestopped": "Усе працэсы абнаўлення былі спыненыя.", + "smw_smwadmin_updatenotstopped": "Каб спыніць працэс абнаўлення, пастаўце ў полі адзнаку каб пацвердзіць.", + "smw-admin-permissionswarn": "Калі адбываюцца SQL-памылкі падчас выканання аперацыі, гэта значыць, што ўліковы запіс базы даных, які выкарыстоўвае ваша вікі, магчыма, не мае адпаведных правоў (праверце ваш файл «LocalSettings.php»). Надайце ўліковаму запісу дадатковыя правы на стварэнне і выдаленне табліц, часова ўвядзіце імя карыстальніка для адміністратара базы даных у файл «LocalSettings.php», або скарыстайцеся скрыптам падтрымкі setupStore.php, які можа выкарыстоўваць уліковыя даныя адміністратара.", + "smw-admin-supportdocu": "Розныя рэсурсы могуць дапамагчы вам у выпадку ўзнікнення праблемаў:", + "smw-admin-installfile": "Калі ўзнікнуць праблемы з вашым усталяваннем, пачніце з рэкамэндацыяў у файле INSTALL і на старонцы ўсталявання.", + "smw-ui-tooltip-title-property": "Уласцівасць", + "smw-livepreview-loading": "Счытваем…", + "smw-help": "Даведка", + "smw-listingcontinuesabbrev": "працяг", + "smw-showingresults": "Ніжэй {{PLURAL:$1|паказаны|паказаны|паказана|}} $1 {{PLURAL:$1|вынік|вынікі|вынікаў|}}, пачынаючы з нумара $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/bg.json b/mediawiki/extensions/SemanticMediaWiki/i18n/bg.json new file mode 100644 index 0000000..dfe2688 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/bg.json @@ -0,0 +1,173 @@ +{ + "@metadata": { + "authors": [ + "DCLXVI", + "Kareyac", + "StanProg", + "Ted Masters", + "Vlad5250", + "Vodnokon4e", + "පසිඳු කාවින්ද" + ] + }, + "smw-semantics-not-enabled": "Възможностите на Семантично МедияУики не са позволени на това уики.", + "smw_viewasrdf": "RDF емисия", + "smw_finallistconjunct": "и", + "smw-factbox-head": "... повече за „$1“", + "smw-factbox-facts": "Факти", + "smw_isspecprop": "Това свойство е специално за това уики.", + "smw-concept-cache-header": "Използване на кеша", + "smw_concept_description": "Описание на концепция „$1“", + "version-semantic": "Семантични разширения", + "smw_printername_list": "Списък", + "smw_printername_template": "Шаблон", + "smw_printername_category": "Категория", + "validator-type-class-SMWParamSource": "текст", + "smw-paramdesc-link": "Показване на стойностите като връзки", + "smw-paramdesc-sep": "Разделителят за резултатите", + "smw_iq_disabled": "Семантичните заявки са изключени в това уики.", + "smw_notitle": "„$1“ не може да се използва като име на страница в това уики.", + "smw_noproperty": "„$1“ не може да се използва като име на свойство в това уики.", + "smw_wrong_namespace": "Тук са позволени само страници от именното пространство „$1“.", + "smw_manytypes": "За свойството е дефиниран повече от един тип.", + "smw_emptystring": "Празните низове са неприемливи.", + "smw_nofloat": "„$1“ не е число.", + "smw_novalues": "Няма зададени стойности.", + "smw_type_header": "Свойства от тип „$1“", + "smw-propertylist-subproperty-header": "Подсвойства", + "smw-propertylist-redirect-header": "Синоними", + "specialpages-group-smw_group": "Семантично МедияУики", + "exportrdf": "Изнасяне на страниците към RDF", + "smw_exportrdf_docu": "Тази страница позволява да се извлекат данните от страница в RDF формат.\nЗа изнасяне на страници, въведете заглавията в текстовата кутия по-долу (по едно заглавие на ред).", + "smw_exportrdf_recursive": "Рекурсивно изнасяне на всички свързани страници.\nОбърнете внимание, че резултатът може да е огромен!", + "smw_exportrdf_lastdate": "Без изнасяне на страници, които не са променяни от посоченото време.", + "smw_exportrdf_submit": "Изнасяне", + "properties": "Свойства", + "smw-categories": "Категории", + "smw_property_template": "$1 от типа $2 ($3 {{PLURAL:$3|употреба|употреби}})", + "smw-special-property-searchform-options": "Настройки", + "smw-special-wantedproperties-filter-label": "Филтър:", + "smw-special-wantedproperties-filter-none": "Никакво", + "smw-special-wantedproperties-filter-unapproved": "Неодобрени", + "concepts": "Концепции", + "smw-special-concept-header": "Списък на концепции", + "smw-special-concept-empty": "Няма намерени концепции.", + "unusedproperties": "Неизползвани свойства", + "smw-unusedproperty-template": "$1 от типа $2", + "wantedproperties": "Желани свойства", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|използване|използвания}})", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|използване|използвания}})", + "smw_purge": "Опресняване", + "types": "Типове", + "smw-statistics": "Семантични статистики", + "ask": "Семантично търсене", + "smw_ask_sortby": "Сортиране по колона (незадължително)", + "smw_ask_ascorder": "Възходящ", + "smw_ask_descorder": "Низходящ", + "smw-ask-order-rand": "Случайно", + "smw_ask_submit": "Търсене на резултати", + "smw_ask_editquery": "Редактиране на заявката", + "smw_add_sortcondition": "[Добавяне на условие за сортиране]", + "smw-ask-sort-add-action": "Добавяне на условие за сортиране", + "smw_ask_hidequery": "Скриване на заявката (компактен изглед)", + "smw_ask_queryhead": "Условие", + "smw_ask_defaultformat": "по подразбиране", + "smw_ask_otheroptions": "Други настройки", + "smw_ask_show_embed": "Показване на кода за вграждане", + "smw_ask_hide_embed": "Скриване на кода за вграждане", + "smw-ask-delete": "Премахване", + "smw-ask-sorting": "Сортиране", + "smw-ask-options": "Настройки", + "smw-ask-options-sort": "Настройки за сортиране", + "smw-ask-format-options": "Формат и настройки", + "smw-ask-parameters": "Параметри", + "smw-ask-search": "Търсене", + "smw-ask-result": "Резултат", + "smw-ask-empty": "Изчистване на всички записи", + "smw-ask-format": "Формат", + "searchbyproperty": "Търсене по свойство", + "processingerrorlist": "Списък на грешки при обработка", + "smw_sbv_docu": "Търсене на всички страници, които съдържат даденото свойство и стойност.", + "smw_sbv_property": "Свойство:", + "smw_sbv_value": "Стойност:", + "smw_sbv_submit": "Търсене", + "browse": "Преглед на страница", + "smw_browselink": "Преглед на свойствата", + "smw_browse_go": "Отваряне", + "smw-browse-show-group": "Показване на групите", + "smw-browse-hide-group": "Скриване на групите", + "smw_inverse_label_default": "$1 от", + "smw_pp_from": "От страница:", + "smw_pp_type": "Свойство:", + "smw_pp_submit": "Търсене на резултати", + "smw_result_prev": "Предишни", + "smw_result_next": "Следващи", + "smw_result_results": "Резултати", + "smw_result_noresults": "Няма резултати.", + "smwadmin": "Табло на Семантично МедияУики", + "smw_smwadmin_return": "Връщане към $1", + "smw-admin-deprecation-notice-title-notice": "Непрепоръчителни настройки", + "smw-admin-statistics": "Статистика", + "smw-admin-supplementary-settings-title": "Конфигурация и настройки", + "smw-admin-supplementary-operational-statistics-cache-title": "Статистика за кеша", + "smw-admin-supplementary-elastic-settings-title": "Настройки (индекси)", + "smw-admin-supplementary-elastic-mappings-summary": "Резюме", + "smw-admin-supplementary-elastic-statistics-title": "Статистика", + "smw_adminlinks_datastructure": "Структура на данните", + "smw_adminlinks_displayingdata": "Показване на данни", + "prefs-smw": "Семантично МедияУики", + "smw-ui-tooltip-title-property": "Свойство", + "smw-ui-tooltip-title-quantity": "Преобразуване на единици", + "smw-ui-tooltip-title-info": "Информация", + "smw-ui-tooltip-title-warning": "Предупреждение", + "smw-ui-tooltip-title-error": "Грешка", + "smw-ui-tooltip-title-parameter": "Параметър", + "smw-ui-tooltip-title-event": "Събитие", + "smw-ui-tooltip-title-note": "Бележка", + "smw-ui-tooltip-title-legend": "Легенда", + "smw-concept-cache-text": "Концепцията има общо $1 {{PLURAL:$1|страница|страници}} и е обновена $3 в $2 часа.", + "smw_concept_header": "Страници на концепция „$1“", + "right-smw-admin": "Достъп до административни задачи (Семантично МедияУики)", + "group-smwadministrator": "Администратори (Семантично МедияУики)", + "group-smwadministrator-member": "{{GENDER:$1|администратор (Семантично МедияУики)}}", + "grouppage-smwadministrator": "{{ns:project}}:Администратори (Семантично МедияУики)", + "group-smwcurator": "Куратори (Семантично МедияУики)", + "group-smwcurator-member": "{{GENDER:$1|куратор (Семантично МедияУики)}}", + "grouppage-smwcurator": "{{ns:project}}:Куратори (Семантично МедияУики)", + "action-smw-admin": "достъп до административните задачи на Семантично МедияУики", + "smw-sp-properties-header-label": "Списък на свойства", + "smw-admin-idlookup-input": "Търсене:", + "smw-admin-deprecation-notice-section": "Семантично МедияУики", + "smw-livepreview-loading": "Зарежда се…", + "smw-sp-searchbyproperty-resultlist-header": "Списък на резултати", + "smw-sp-searchbyproperty-nonvaluequery": "Списък на стойности с установено свойство „$1“.", + "smw-search-syntax": "Синтаксис", + "smw-search-profile-sort-title": "Заглавие", + "smw-search-profile-extended-section-sort": "Сортиране по", + "smw-search-profile-extended-section-namespace": "Именно пространство", + "smw-search-profile-extended-section-query": "Заявка", + "smw-search-show": "Показване", + "smw-search-hide": "Скриване", + "log-name-smw": "Дневник на Семантично МедияУики", + "log-show-hide-smw": "$1 на дневника на Семантично МедияУики", + "logeventslist-smw-log": "Дневник на Семантично МедияУики", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|Внасяне на $1]]", + "smw-types-list": "Списък на типове данни", + "smw-type-tab-properties": "Свойства", + "smw-type-tab-types": "Типове", + "smw-type-tab-errors": "Грешки", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|секунда|секунди}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|секунда|секунди}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|секунда|секунди}}", + "smw-datavalue-external-formatter-invalid-uri": "„$1“ е неправилен URL-адрес.", + "smw-clipboard-copy-link": "Копиране на линка в системния буфер", + "smw-format-datatable-loadingrecords": "Зареждане...", + "smw-format-datatable-processing": "Обработка...", + "smw-format-datatable-search": "Търсене:", + "smw-format-datatable-next": "Следваща", + "smw-help": "Помощ", + "smw-jsonview-search-label": "Търсене:", + "smw-facetedsearch-intro-tab-search": "Търсене", + "smw-listingcontinuesabbrev": "продълж.", + "smw-showingresults": "Показване на до {{PLURAL:$1|1 резултат|$1 резултата}}, като се започва от номер $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/bgn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/bgn.json new file mode 100644 index 0000000..b0d546c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/bgn.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Baloch Afghanistan" + ] + }, + "smw-categories": "تهرئان", + "browse": "ویکی بروز", + "smw-listingcontinuesabbrev": "(ادامه)", + "smw-showingresults": "نشان داتین حداکثر {{PLURAL:$1|'''۱''' نتیجه|'''$1''' نتیجه}} بی جهلگا، شرو شه شماره ئی '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/bho.json b/mediawiki/extensions/SemanticMediaWiki/i18n/bho.json new file mode 100644 index 0000000..f780126 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/bho.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Nepaboy", + "SatyamMishra" + ] + }, + "smw-categories": "श्रेणीसभ", + "browse": "विकि ब्राउज करी", + "smw-listingcontinuesabbrev": "जारी...", + "smw-showingresults": "नीचे #'''$2''' से शुरु होखे वाला {{PLURAL:$1|'''1''' रिजल्ट देखावल जा रहल बा|'''$1''' रिजल्ट देखावल जा रहल बाड़ें}}।" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/bjn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/bjn.json new file mode 100644 index 0000000..67348f8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/bjn.json @@ -0,0 +1,15 @@ +{ + "@metadata": { + "authors": [ + "Ezagren", + "J Subhi" + ] + }, + "version-semantic": "Éksténsi sémantik", + "smw-categories": "Tutumbung", + "smw-special-wantedproperties-filter-label": "Panyaring:", + "browse": "Jalajahi wiki", + "smw-livepreview-loading": "Ma'unggah...", + "smw-listingcontinuesabbrev": "samb.", + "smw-showingresults": "Di bawah ngini ditampaiakan hingga {{PLURAL:$1|'''1''' kulihan|'''$1''' kukulihan}}, dimulai matan #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/bn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/bn.json new file mode 100644 index 0000000..936c959 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/bn.json @@ -0,0 +1,219 @@ +{ + "@metadata": { + "authors": [ + "Abida Tasnim", + "Aftab1995", + "Aftabuzzaman", + "Aishik Rehman", + "Bellayet", + "Elias Ahmmad", + "Muktogayn", + "Rasal Lia", + "Tahmid", + "Tahmid02016", + "Wikitanvir", + "আজিজ", + "আফতাবুজ্জামান" + ] + }, + "smw-error": "ত্রুটি", + "smw-upgrade-progress-supplement-jobs": "পরিপূরক কাজ যোগ করা হচ্ছে...", + "smw-upgrade-error-title": "ত্রুটি » Semantic মিডিয়াউইকি", + "smw-extensionload-error-why-title": "কেন আমি এই পৃষ্ঠাটি দেখছি?", + "smw-extensionload-error-how-title": "এই সমস্যাটি আমি কিভাবে সমাধান করবো?", + "smw-semantics-not-enabled": "এই উইকির জন্য মিডিয়াউইকির শব্দার্থিক কার্যকারিতা সক্ষম করা হয়নি।", + "smw_viewasrdf": "আরডিএফ ফিড", + "smw_finallistconjunct": ", এবং", + "smw-factbox-head": "... \"$1\" সম্পর্কে আরও", + "smw-factbox-facts": "তথ্য", + "smw-factbox-attachments-value-unknown": "প্র/ন", + "smw_isspecprop": "এই বৈশিষ্ট্যটি এই উইকির একটি বিশেষ বৈশিষ্ট্য।", + "smw-concept-cache-header": "ক্যাশে ব্যবহার", + "smw-concept-no-cache": "কোনো ক্যাশে উপলব্ধ নেই।", + "smw_concept_description": "ধারণা \"$1\"-এর বিবরণ", + "smw_dsv_link": "ডিএসভি", + "smw_printername_csv": "সিএসভি রপ্তানি", + "smw_printername_dsv": "ডিএসভি রপ্তানি", + "smw_printername_debug": "ডিবাগ কোয়েরি (বিশেষজ্ঞদের জন্য)", + "smw_printername_json": "জেএসঅন রপ্তানি", + "smw_printername_list": "তালিকা", + "smw_printername_table": "ছক", + "smw_printername_broadtable": "প্রশস্ত ছক", + "smw_printername_template": "টেমপ্লেট", + "smw_printername_templatefile": "টেমপ্লেট ফাইল", + "smw_printername_rdf": "আরডিএফ রপ্তানি", + "smw_printername_category": "বিষয়শ্রেণী", + "validator-type-class-SMWParamSource": "লেখা", + "smw-paramdesc-feedtitle": "ফীডের শিরোনাম হিসাবে ব্যবহৃত লেখা", + "smw-paramdesc-feeddescription": "ফীডের বর্ণনা হিসাবে ব্যবহৃত লেখা", + "smw-paramdesc-feedpagecontent": "ফিডের সাথে প্রদর্শনের জন্য পৃষ্ঠা সামগ্রী", + "smw-label-feed-description": "$1 $2 ফিড", + "smw_iq_disabled": "এই উইকির জন্য শব্দার্থিক প্রশ্ন অক্ষম করা হয়েছে।", + "smw_iq_moreresults": "... আরও ফলাফল", + "smw_parseerror": "প্রদত্ত মান বোঝা যাচ্ছে না।", + "smw_notitle": "এই উইকিতে একটি পৃষ্ঠার নাম হিসাবে \"$1\" ব্যবহার করা যাবে না।", + "smw_noproperty": "এই উইকিতে বৈশিষ্ট্যের নাম হিসাবে \"$1\" ব্যবহার করা যাবে না।", + "smw_wrong_namespace": "কেবলমাত্র \"$1\" নামস্থানগুলো এখানে অনুমোদিত।", + "smw_manytypes": "বৈশিষ্ট্যের জন্য একাধিক প্রকার সংজ্ঞায়িত করা হয়েছে।", + "smw_emptystring": "খালি সূত্র গ্রহণ করা হয় না।", + "smw_noboolean": "\"$1\" একটি বুলিয়ান (সত্য/মিথ্যা) মান হিসাবে স্বীকৃত নয়।", + "smw_true_words": "সত্য,স,হ্যাঁ,হ,true,t,yes,y", + "smw_false_words": "মিথ্যা,ম,না,ন,false,f,no,n", + "smw_nofloat": "\"$1\" কোনো সংখ্যা নয়।", + "smw_infinite": "\"$1\"র মতো বড় সংখ্যাগুলি সমর্থিত নয়।", + "smw_unitnotallowed": "এই বৈশিষ্ট্যের জন্য পরিমাপের একটি বৈধ একক হিসেবে \"$1\" ঘোষিত নয়।", + "smw_nounitsdeclared": "এই বৈশিষ্ট্যটির জন্য পরিমাপের কোনো একক ঘোষণ করা হয়নি।", + "smw_novalues": "কোনো মান নির্দিষ্ট করা হয়নি।", + "smw_nodatetime": "\"$1\" তারিখটি বোঝা যাচ্ছে না।", + "smw_misplacedsymbol": "\"$1\" প্রতীকটি এমন একটি জায়গায় ব্যবহার করা হয়েছে যেখানে এটি দরকারি নয়।", + "smw_unexpectedpart": "প্রশ্নের \"$1\" অংশটি বোঝা যায়নি।\nফলাফল প্রত্যাশা মত নাও হতে পারে।", + "smw_emptysubquery": "কিছু উপ-প্রশ্নের কোনো বৈধ শর্ত নেই।", + "smw_misplacedsubquery": "কিছু উপ-প্রশ্ন একটি জায়গায় ব্যবহার করা হয়েছে যেখানে উপ-প্রশ্ন অনুমিত নয়।", + "smw_valuesubquery": "\"$1\" বৈশিষ্ট্যের মানগুলির জন্য উপ-প্রশ্ন সমর্থিত নয়।", + "smw_propvalueproblem": "\"$1\" বৈশিষ্ট্যটির মান বোঝা যায় নি।", + "smw_noqueryfeature": "এই উইকিতে কয়েকটি প্রশ্ন বৈশিষ্ট্য সমর্থিত নয় এবং প্রশ্নের ($1) অংশ বাদ দেওয়া হয়েছে।", + "smw-propertylist-redirect-header": "প্রতিশব্দ", + "smw_exportrdf_submit": "রপ্তানি", + "smw-categories": "বিষয়শ্রেণীসমূহ", + "smw-special-property-searchform-options": "বিকল্পসমূহ", + "smw-special-wantedproperties-filter-label": "ছাকনি:", + "smw-special-wantedproperties-filter-none": "কোনটিই নয়", + "smw-special-wantedproperties-filter-unapproved": "অননুমোদিত", + "concepts": "ধারণা", + "smw-special-concept-header": "ধারণাগুলির তালিকা", + "smw-special-concept-empty": "কোনো ধারণা পাওয়া যায়নি।", + "smw-wantedproperty-template": "$1 ($2টি {{PLURAL:$2|ব্যবহার}})", + "smw-special-wantedproperties-template": "$1 ($2টি {{PLURAL:$2|ব্যবহার}})", + "smw_purge": "পুনঃসতেজ", + "smw-purge-failed": "পুনঃসতেজ ব্যর্থ হয়েছে", + "types": "ধরন", + "smw_ask_ascorder": "ঊর্ধ্বক্রম", + "smw_ask_descorder": "অধক্রম", + "smw-ask-order-rand": "অজানাভাবে", + "smw_ask_submit": "ফলাফল খুঁজুন", + "smw_ask_queryhead": "কোয়েরি", + "smw_ask_defaultformat": "পূর্বনির্ধারিত", + "smw_ask_otheroptions": "অন্য বিকল্প", + "smw-ask-otheroptions-collapsed-info": "উপলব্ধ সকল বিকল্প দেখতে যোগ চিহ্ন ব্যবহার করুন", + "smw-ask-delete": "সরান", + "smw-ask-options": "বিকল্প", + "smw-ask-format-options": "বিন্যাস ও বিকল্প", + "smw-ask-parameters": "প্যারামিটারগুলি", + "smw-ask-search": "অনুসন্ধান", + "smw-ask-debug": "ডিবাগ", + "smw-ask-result": "ফলাফল", + "smw-ask-empty": "সব ভুক্তি সাফ করুন", + "smw-ask-format": "বিন্যাস", + "smw-ask-extra-other": "অন্য", + "processingerrorlist": "প্রক্রিয়াকরণ ত্রুটির তালিকা", + "smw-missingredirects-list": "অনুপস্থিত টীকাসহ পাতা", + "smw_sbv_value": "মান:", + "smw_sbv_submit": "ফলাফল খুঁজুন", + "browse": "উইকি ব্রাউজ করুন", + "smw_browse_go": "চলো", + "smw_pp_from": "পাতা থেকে:", + "smw_pp_submit": "ফলাফল খুঁজুন", + "smw-prev": "পূর্ববর্তী {{PLURAL:$1|$1}}টি", + "smw-next": "পরবর্তী {{PLURAL:$1|$1}}টি", + "smw_result_prev": "পূর্ববর্তী", + "smw_result_next": "পরবর্তী", + "smw_result_results": "ফলাফল", + "smw_result_noresults": "ফলাফল নেই।", + "smw-admin-statistics-job-title": "কাজের পরিসংখ্যান", + "smw-admin-statistics-semanticdata-overview": "একনজরে", + "smw_smwadmin_return": "$1-এ ফেরত যান", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$2 $2] দ্বারা [https://www.semantic-mediawiki.org/wiki/Help:$1 $1] প্রতিস্থাপন করা হয়েছে", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|বিকল্প|বিকল্পগুলি}}:", + "smw-admin-deprecation-notice-config-removal": "$2-এ [https://www.semantic-mediawiki.org/wiki/Help:$1 $1] সরানো হয়েছে", + "smw-admin-deprecation-notice-title-notice": "আসন্ন পরিবর্তন", + "smw-admin-deprecation-notice-title-replacement": "প্রতিস্থাপিত অথবা পুণঃনামকৃত সেটিং", + "smw-admin-deprecation-notice-title-removal": "সেটিং সরান", + "smw-admin-deprecation-notice-section-legend": "ব্যাখ্যা", + "smw_smwadmin_datarefreshbutton": "উপাত্ত হালনাগাদ শুরু করুন", + "smw_smwadmin_datarefreshstop": "এই হালানাগাদ বন্ধ করুন", + "smw_smwadmin_datarefreshstopconfirm": "হ্যাঁ, আমি {{GENDER:$1|নিশ্চিত}}।", + "smw-admin-outdateddisposal-title": "সেকেলে সত্ত্বা নিষ্পত্তি", + "smw-admin-feature-disabled": "এই বৈশিষ্ট্যটি এই উইকিতে নিষ্ক্রিয় করা আছে। অনুগ্রহ করে পরামর্শ পেতে সেটিংস সাহায্য পাতায় অথবা সিস্টেম প্রশাসকের সঙ্গে যোগাযোগ করুন।", + "smw-admin-fulltext-title": "পূর্ণ-পাঠ্য সন্ধান পুনর্নির্মাণ", + "smw-admin-installfile": "আপনি আপনার ইনস্টলকরণে সমস্যায় পড়লে, INSTALL ফাইলেইনস্টলকরণের পাতায় থাকা নির্দেশনা পরীক্ষা করা শুরু করুন।", + "smw-admin-questions": "আপনার আরও প্রশ্ন বা পরামর্শ থাকলে, সেমান্টিক মিডিয়াউইকির ব্যবহারকারী মেইলিং তালিকায় যোগ দিন।", + "smw-admin-statistics": "পরিসংখ্যান", + "smw-admin-supplementary-section-intro": "এই অনুচ্ছেদে তালিকাভুক্ত ফাংশনগুলির মধ্যে কিছু সীমিত করা এবং এর ফলে এই উইকিতে অনভিগম্য।", + "smw-admin-main-title": "সেমান্টিক মিডিয়াউইকি » $1", + "smw-admin-supplementary-operational-statistics-title": "পরিচালনাগত পরিসংখ্যান", + "smw-admin-supplementary-duplookup-title": "অনুরূপ সত্ত্বা", + "smw-admin-supplementary-elastic-version-info": "সংস্করণ", + "smw-admin-supplementary-elastic-settings-title": "সেটিংস", + "smw-admin-supplementary-elastic-mappings-summary": "সারাংশ", + "smw-admin-supplementary-elastic-nodes-title": "সংযোগস্থল", + "smw-admin-supplementary-elastic-statistics-title": "পরিসংখ্যান", + "prefs-smw": "সেমান্টিক মিডিয়াউইকি", + "prefs-general-options": "সাধারণ বিকল্পগুলি", + "prefs-ask-options": "শব্দার্থিক সন্ধানের বিকল্পগুলি", + "smw-prefs-general-options-disable-editpage-info": "সম্পাদনা পাতায় প্রারম্ভিক পাঠ্য অক্ষম করুন", + "smw-ui-tooltip-title-quantity": "একক রূপান্তর", + "smw-ui-tooltip-title-info": "তথ্য", + "smw-ui-tooltip-title-warning": "সতর্কীকরণ", + "smw-ui-tooltip-title-error": "ত্রুটি", + "smw-ui-tooltip-title-parameter": "প্যারামিটার", + "smw-ui-tooltip-title-note": "টীকা", + "smw-ui-tooltip-title-legend": "ব্যাখ্যা", + "smw-ui-tooltip-title-reference": "তথ্যসূত্র", + "restriction-level-smw-pageedit": "সুরক্ষিত (শুধুমাত্র উপযুক্ত ব্যবহারকারী)", + "group-smwadministrator-member": "{{GENDER:$1|প্রশাসক (সেমান্টিক মিডিয়াউইকি)}}", + "grouppage-smwadministrator": "{{ns:project}}:প্রশাসক (সেমান্টিক মিডিয়াউইকি)", + "smw-admin-idlookup-input": "অনুসন্ধান:", + "smw-admin-tab-general": "সংক্ষিপ্ত বিবরণ ও সমর্থন", + "smw-admin-tab-registry": "নিবন্ধক", + "smw-livepreview-loading": "লোড হচ্ছে...", + "smw-sp-searchbyproperty-resultlist-header": "ফলাফলের তালিকা", + "smw-search-profile-sort-title": "শিরোনাম", + "smw-search-profile-extended-section-namespace": "নামস্থান", + "smw-search-profile-link-caption-query": "দেখুন", + "smw-search-show": "দেখান", + "smw-search-hide": "লুকান", + "log-show-hide-smw": "সেমান্টিক মিডিয়াউইকি লগ $1", + "smw-type-tab-errors": "ত্রুটি", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|সেকেন্ড}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|সেকেন্ড}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|সেকেন্ড}}", + "smw-datavalue-external-formatter-invalid-uri": " \"$1\" একটি অবৈধ URL।", + "smw-datavalue-parse-error": "প্রদত্ত মান \"$1\" বোঝা যাচ্ছে না।", + "smw-clipboard-copy-link": "ক্লিপবোর্ডে সংযোগ অনুলিপি করে", + "smw-data-lookup": "উপাত্ত আনা হচ্ছে...", + "smw-no-data-available": "কোনো উপাত্ত উপলব্ধ নয়।", + "smw-format-datatable-loadingrecords": "লোড হচ্ছে...", + "smw-format-datatable-processing": "প্রক্রিয়াকরণ করা হচ্ছে...", + "smw-format-datatable-search": "অনুসন্ধান:", + "smw-format-datatable-first": "প্রথম", + "smw-format-datatable-last": "শেষ", + "smw-format-datatable-next": "পরবর্তী", + "smw-format-datatable-previous": "পূর্ববর্তী", + "smw-format-datatable-toolbar-export": "রপ্তানি", + "smw-format-list-other-fields-open": "(", + "smw-property-reserved-category": "বিষয়শ্রেণী", + "smw-category": "বিষয়শ্রেণী", + "smw-filter": "ছাঁকনি", + "smw-section-expand": "অনুচ্ছেদটি বিস্তৃত করুন", + "smw-section-collapse": "অনুচ্ছেদটি সঙ্কুচিত করুন", + "smw-help": "সাহায্য", + "smw-personal-jobqueue-watchlist": "কাজগুলো দেখুন", + "smw-processing": "প্রক্রিয়াকরণ করা হচ্ছে...", + "smw-loading": "লোড করা হচ্ছে...", + "smw-preparing": "প্রস্তুত করা হচ্ছে...", + "smw-copy": "অনুলিপি", + "smw-types-title": "ধরন: $1", + "smw-property-tab-usage": "ব্যবহার", + "smw-property-tab-specification": "... আরও", + "smw-concept-tab-list": "তালিকা", + "smw-concept-tab-errors": "ত্রুটিসমূহ", + "smw-ask-tab-result": "ফলাফল", + "smw-ask-tab-extra": "অতিরিক্ত", + "smw-ask-tab-debug": "ডিবাগ", + "smw-ask-tab-code": "কোড", + "smw-legend": "ব্যাখ্যা", + "smw-facetedsearch-format-table": "ছক", + "smw-search-placeholder": "অনুসন্ধান...", + "smw-listingcontinuesabbrev": "আরও আছে", + "smw-showingresults": "$2 নং থেকে শুরু করে {{PLURAL:$1|১টি ফলাফল|$1টি ফলাফল}} নিচে দেখানো হচ্ছে।" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/br.json b/mediawiki/extensions/SemanticMediaWiki/i18n/br.json new file mode 100644 index 0000000..0a11f0b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/br.json @@ -0,0 +1,251 @@ +{ + "@metadata": { + "authors": [ + "Dishual", + "Fohanno", + "Fulup", + "Gwendal", + "Huñvreüs", + "Y-M D" + ] + }, + "smw-desc": "Aesaat monedusted ho wiki - evit ar mekanikoù ''hag'' an dud ([https://www.semantic-mediawiki.org/wiki/Help:User_manual diellerezh enlinenn])", + "smw_viewasrdf": "Gwelet evel RDF", + "smw_finallistconjunct": ", ha", + "smw-factbox-head": "... muioc'h a-zivout \"$1\"", + "smw-factbox-facts": "Fedoù", + "smw_isspecprop": "Ar perzh-mañ zo ur perzh arbennik er wiki-mañ", + "smw_concept_description": "Deskrivadur eus ar meizad « $1 »", + "smw_no_concept_namespace": "N'hall ar meizadoù bezañ termenet nemet e pajennoù an esaouenn anv Concept:.", + "smw_multiple_concepts": "Pep pajenn meizad na c'hell kaout nemet un dermenadur.", + "smw_noinvannot": "Ne c'hell ket an talvoudennoù bezañ derannet evit eilpennañ perzhioù.", + "version-semantic": "Astennoù steroniezh", + "smw_baduri": "An URLoù er stumm « $1 » n\"int ket aotreet.", + "smw_printername_count": "Kontañ an disoc'hoù", + "smw_printername_csv": "Ezporzh CSV", + "smw_printername_dsv": "Ezporzhiañ e DSV", + "smw_printername_debug": "Reked dizreinañ (evit an arbennigourien)", + "smw_printername_embedded": "Danvez ar pajennoù ensoc'het", + "smw_printername_json": "ezporzhiadur JSON", + "smw_printername_list": "Roll", + "smw_printername_plainlist": "Listenn simpl", + "smw_printername_ol": "Roll niverennet", + "smw_printername_ul": "Roll padelliget", + "smw_printername_table": "Taolenn", + "smw_printername_broadtable": "Taolenn ledan", + "smw_printername_template": "Patrom", + "smw_printername_templatefile": "Restr ar patrom", + "smw_printername_rdf": "Ezporzh RDF", + "smw_printername_category": "Rummad", + "validator-type-class-SMWParamSource": "testenn", + "smw-paramdesc-limit": "An niver uhelañ a zisoc'hoù da adkas", + "smw-paramdesc-headers": "Diskwel an talbennoù / anvioù ar perzhioù", + "smw-paramdesc-mainlabel": "Al label hag a ro anv ar bajenn degemer", + "smw-paramdesc-link": "Diskouez an talvoudoù evel liammoù", + "smw-paramdesc-intro": "An destenn da ziskouez a-raok disoc'hoù ar reked, ma 'z eus", + "smw-paramdesc-outro": "An destenn da ziskouez goude disoc'hoù ar reked, mar bez", + "smw-paramdesc-default": "An destenn da ziskwel ma n'eus disoc'h ebet d'ar reked", + "smw-paramdesc-sep": "An dispartier etre an disoc'hoù", + "smw-paramdesc-template": "Anv ar patrom d'ober gantañ evit diskouez ar moulladurioù", + "smw-paramdesc-columns": "An niver a vannoù da ziskouez an disoc'hoù enno", + "smw-paramdesc-userparam": "Un dalvoudenn tremenet dre pep galvadenn patromoù, pa vez implijet ur patrom", + "smw-paramdesc-introtemplate": "Anv ar patrom da ziskouez a-raok disoc'hoù ar reked, mar bez", + "smw-paramdesc-outrotemplate": "Anv ar patrom da ziskouez goude disoc'hoù ar reked, mar bez", + "smw-paramdesc-embedformat": "An dikedenn HTML a servij da dermeniñ an talbennoù", + "smw-paramdesc-embedonly": "Na ziskwel talbenn ebet", + "smw-paramdesc-rdfsyntax": "An ereadur RDF da vezañ implijet", + "smw-paramdesc-csv-sep": "Merkañ a ra un dispartier bannoù", + "smw-paramdesc-dsv-separator": "An dispartier d'ober gantañ", + "smw-paramdesc-dsv-filename": "Anv ar restr DSV", + "smw-paramdesc-searchlabel": "Testenn evit kenderc'hel an enklask", + "smw-paramdesc-export": "Dibaboù ezporzhiañ", + "smw-paramdesc-jsonsyntax": "Ereadur JSON da implijout", + "smw_iq_disabled": "Diweredekaet eo bet ar goulennoù semantek evit ar wiki-mañ.", + "smw_iq_moreresults": "... disoc'hoù all", + "smw_parseerror": "An talvoud merket n'eo ket bet komprenet.", + "smw_notitle": "« $1 » ne c'hall ket bezañ implijet da anv pajenn er wiki-mañ.", + "smw_wrong_namespace": "N'eo aotreet amañ nemet ar pajennoù eus an esaouenn \"$1\".", + "smw_manytypes": "Ouzhpenn ur seurt zo bet termenet evit ar perzh.", + "smw_emptystring": "Ne zegemerer ket an neudennadoù goullo.", + "smw_notinenum": "N’emañ ket \"$1\" e roll ($2) an [[Property:Allows value|talvoudoù aotreet]] evit ar perzh \"$3\".", + "smw_noboolean": "N'eo ket anavezet \"$1\" evel un talvoudenn Boolean (gwir/gaou).", + "smw_true_words": "gwir,g,ya,true", + "smw_false_words": "gaou,g,nann,n,false", + "smw_nofloat": "\"$1\" n'eo ket un niver.", + "smw_infinite": "Niveroù ken bras ha « $1 » n'int ket skoret.", + "smw_novalues": "N'eus bet diferet talvoudoù ebet.", + "smw_nodatetime": "An deiziad « $1 » n’eo ket bet komprenet.", + "smw_toomanyclosing": "Re a reveziadennoù eus « $1 » zo er reked.", + "smw_noclosingbrackets": "Implijout 'zo eus \"[[\" en ho reked n'int ket bet serret gant ar \"]]\" a glot.", + "smw_misplacedsymbol": "Implijet eo bet an arouezenn « $1 » en ul lec'h ma n'eo ket talvoudus.", + "smw_unexpectedpart": "Al lodenn « $1 » eus ar reked n'eo ket bet komprenet.\nDic'hortoz e c'hall bezañ an disoc'hoù.", + "smw_emptysubquery": "Is-rekedoù 'zo o deus un amplegad direizh.", + "smw_misplacedsubquery": "Is-rekedoù 'zo a zo bet implijet en ul lec'h ma n'eo aotreet is-reked ebet.", + "smw_valuesubquery": "Isreked n'eo ket skoret evit talvoudoù ar perzh « $1 ».", + "smw_badqueryatom": "Al lodennoù « [[…]] » eus ar reked n'int ket bet komprenet.", + "smw_propvalueproblem": "Talvoud ar perzh « $1 » n'eo ket bet komprenet.", + "smw_noqueryfeature": "Un nebeut arc'hweladurioù rekedoù n'int ket skoret war ar wiki-mañ hag ul lodenn outo n'int ket bet tennet ($1).", + "smw_notemplategiven": "Ret eo deoc'h merkañ un talvoud evit an arventenn \"patrom\" evit ma c'hallfe mont en-dro ar furmad goulenn-mañ.", + "smw_type_header": "Perzhioù eus ar seurt « $1 »", + "smw_typearticlecount": "Diskouez $1 {{PLURAL:$1|perzh|perzh}} a implij ar seurt-mañ.", + "smw_attribute_header": "Pajennoù a implij ar perzh « $1 »", + "smw_attributearticlecount": "Afficher {{PLURAL:$1|ar bajenn|an $1 pajenn}} a implij ar perzh-mañ.", + "smw-propertylist-subproperty-header": "Isperzhioù", + "smw-propertylist-redirect-header": "Heñvelsterioù", + "exportrdf": "Ezporzhiañ pajennoù en RDF", + "smw_exportrdf_lastdate": "Arabat ezporzhiañ ar pajennoù n'int ket bet kemmet abaoe ar c'houlz merket.", + "smw_exportrdf_submit": "Ezporzhiañ", + "uriresolver": "Diskoulmer URI", + "properties": "Perzhioù", + "smw-categories": "Roll ar rummadoù", + "smw_properties_docu": "Ar perzhioù-mañ zo implijet er wiki.", + "smw_property_template": "$1 eus ar seurt $2 ($3 {{PLURAL:$3|implij}})", + "smw_propertylackspage": "An holl berzhioù a rank bezañ deskrivet gant ur bajenn !", + "smw_propertyhardlyused": "Ar perzh-mañ a vez implijet a-boan er wiki !", + "smw-special-property-searchform-options": "Dibarzhioù", + "smw-special-wantedproperties-filter-label": "Sil :", + "smw-special-wantedproperties-filter-none": "Hini ebet", + "smw-special-wantedproperties-filter-unapproved": "Dizaprouet", + "concepts": "Meizadoù", + "smw-special-concept-header": "Roll ar meizadoù", + "unusedproperties": "Perzhioù dizimplij", + "smw-unusedproperties-docu": "Er bajenn-mañ emañ roll [https://www.semantic-mediawiki.org/wiki/Unused_properties perzhioù dizimplij] a zo disklêriet daoust ma ne ra pajenn all ebet ganto. Evit ur gwel diforc'het, sellit ouzh ar pajennoù ispisial [[Special:Properties|perzhioù]] pe [[Special:WantedProperties|perzhioù goulennet]].", + "smw-unusedproperty-template": "$1 eus ar seurt $2", + "wantedproperties": "Perzhioù c'hoantaet", + "smw-wantedproperties-docu": "Er bajenn-mañ emañ [https://www.semantic-mediawiki.org/wiki/Wanted_properties perzhioù goulennet] a zo implijet er wiki met n'o deus pajenn ebet da zeskrivañ anezho. Evit ur gwel diforc'het, sellit ouzh ar pajennoù ispisial [[Special:Properties|perzhioù]] pe [[Special:UnusedProperties|perzhioù dizimplij]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|implij|implij}})", + "smw_purge": "Freskaat", + "types": "Seurtoù roadennoù", + "smw-statistics": "Stadegoù ster", + "smw-statistics-query-size": "Ment ar reked", + "ask": "Klask semantek", + "smw_ask_sortby": "Urzhiañ dre vannoù (diret)", + "smw_ask_ascorder": "War gresk", + "smw_ask_descorder": "War zigresk", + "smw-ask-order-rand": "Dargouezhek", + "smw_ask_submit": "Kavout disoc'hoù", + "smw_ask_editquery": "Kemmañ ar reked", + "smw_add_sortcondition": "[ouzhpennañ un diviz urzhiañ]", + "smw-ask-sort-add-action": "Ouzhpennañ un diviz urzhiañ", + "smw_ask_hidequery": "Kuzhat ar reked (gwel fetis)", + "smw_ask_help": "Skoazell evit ar rekedoù", + "smw_ask_queryhead": "Reked", + "smw_ask_printhead": "Roadennoù da ziskwel", + "smw_ask_printdesc": "(ouzhpennañ un anv perzh dre linenn)", + "smw_ask_format_as": "Furmadiñ evel :", + "smw_ask_defaultformat": "dre ziouer", + "smw_ask_otheroptions": "Dibarzhioù all", + "smw_ask_show_embed": "Diskouez ar c'hod enframmet", + "smw_ask_hide_embed": "Kuzhat ar c'hod enframmet", + "smw_ask_embed_instr": "Evit enklozañ ar reked-mañ enlinenn e-barzh ur bajenn wiki, implijit ar c'hod amañ dindan.", + "smw-ask-delete": "Dilemel", + "smw-ask-sorting": "O urzhiañ", + "smw-ask-options": "Dibarzhioù", + "smw-ask-parameters": "Arventennoù", + "smw-ask-search": "Klask", + "smw-ask-result": "Disoc'h", + "smw-ask-format": "Furmad", + "searchbyproperty": "Klask dre berzh", + "smw_sbv_docu": "Klask an holl bajennoù dezho ur perzh hag un dalvoudenn roet.", + "smw_sbv_novalue": "Merkañ un talvoud evit ar perzh, pe gwelet holl dalvoudoù ar perzhioù evit \"$1\".", + "smw_sbv_property": "Perzh :", + "smw_sbv_value": "Talvoud :", + "smw_sbv_submit": "Kavout disoc'hoù", + "browse": "Furchal ar wiki", + "smw_browselink": "Furchal ar perzhioù", + "smw_browse_article": "Merkit anv ar bajenn ma vo loc'het da verdeiñ diouti.", + "smw_browse_go": "Mont", + "smw_browse_show_incoming": "Diskouez ar pezhioù a gas betek amañ", + "smw_browse_hide_incoming": "Kuzhat ar perzhioù a gas betek amañ", + "smw_browse_no_outgoing": "Ar bajenn-mañ n'he deus perzh ebet.", + "smw_browse_no_incoming": "Perzh ebet ne gas d'ar bajenn-mañ.", + "smw_inverse_label_default": "$1 eus", + "smw_inverse_label_property": "Label ar perzh eilpennet", + "pageproperty": "Klask e perzhioù ar bajenn", + "smw_pp_from": "Adalek pajenn:", + "smw_pp_type": "Perzh:", + "smw_pp_submit": "Kavout disoc'hoù", + "smw_result_prev": "Kent", + "smw_result_next": "War-lerc'h", + "smw_result_results": "Disoc'hoù", + "smw_result_noresults": "Disoc'h ebet.", + "smwadmin": "Taolenn-stur Semantic MediaWiki", + "smw-admin-statistics-job-title": "Stadegoù an trevelloù", + "smw-admin-setupsuccess": "Staliet-mat eo ar c'heflusker stokañ.", + "smw_smwadmin_return": "Distreiñ da $1", + "smw_smwadmin_updatenotstarted": "Emeur krog dija gant un argerzh hizivaat.\nArabat krouiñ unan all.", + "smw_smwadmin_updatestopped": "Ehanet eo bet an holl argerzhoù hizivaat.", + "smw-admin-db": "Staliañ diaz roadennoù", + "smw-admin-dbbutton": "Deraouekaat pe lakaat taolennoù a-live", + "smw-admin-announce": "Brudañ ho wiki", + "smw-admin-deprecation-notice-title-notice": "Dibaboù dispredet", + "smw_smwadmin_datarefresh": "Adsevel roadennoù", + "smw_smwadmin_datarefreshbutton": "Programmiñ adsevel roadennoù", + "smw_smwadmin_datarefreshstop": "Paouez gant an hizivadenn-mañ", + "smw_smwadmin_datarefreshstopconfirm": "Ya, {{GENDER:$1|sur}} on.", + "smw-admin-support": "Kaout skoazell", + "smw-admin-supportdocu": "Dafar a bep seurt a zo kinniget d’ho skoazellañ ma vez kudennoù :", + "smw-admin-smwhomepage": "Emañ teuliad implijer klok Semantic MediaWiki e semantic-mediawiki.org.", + "smw-admin-bugsreport": "An drein a c'hall bezañ danevellet da GitHub.", + "smw-admin-questions": "M’ho peus goulennoù pe kinnigoù all, kemerit perzh er gaozeadenn e roll skignañ implijerien Semantic MediaWiki.", + "smw-admin-supplementary-settings-title": "Arventennoù hag ardremmezañ", + "smw-admin-supplementary-elastic-statistics-title": "Stadegoù", + "smw_adminlinks_datastructure": "Framm ar roadennoù", + "smw_adminlinks_displayingdata": "Diskwel roadennoù", + "smw_adminlinks_inlinequerieshelp": "Skoazell evit ar rekedoù enlinenn", + "smw-createproperty-isproperty": "Ur perzh eus ar seurt $1 eo.", + "smw-createproperty-allowedvals": "An talvoudenn{{PLURAL:$1||où}} aotreet evt ar perzh-se a zo :", + "smw-paramdesc-category-delim": "Ar bevenner", + "smw-info-par-message": "Kemennadenn da ziskwel.", + "smw-ui-tooltip-title-property": "Perzh", + "smw-ui-tooltip-title-quantity": "Amdreiñ unanenn", + "smw-ui-tooltip-title-info": "Titouroù", + "smw-ui-tooltip-title-service": "Liammoù servij", + "smw-ui-tooltip-title-warning": "Diwallit", + "smw-ui-tooltip-title-error": "Fazi", + "smw-ui-tooltip-title-parameter": "Arventenn", + "smw-ui-tooltip-title-event": "Darvoud", + "smw-ui-tooltip-title-note": "Notenn", + "smw-ui-tooltip-title-legend": "Alc'hwez", + "smw-ui-tooltip-title-reference": "Daveenn", + "smw_unknowntype": "N’eo ket skoret ar seurt \"$1\" eus an elfenn-mañ", + "smw_concept_header": "Pajennoù ar meizad « $1 »", + "smw_conceptarticlecount": "O tiskouez amañ dindan $1 {{PLURAL:$1|pajenn}}.", + "right-smw-admin": "Gwelet an trevelloù merañ (MediaWiki semantek)", + "right-smw-schemaedit": "Kemmañ [https://www.semantic-mediawiki.org/wiki/Help:Schema ar pajennoù chema] (MediaWiki Semantek)", + "right-smw-viewjobqueuewatchlist": "Gelet roll trevelloù an arc'hwel [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist roll evezhiañ] (MediaWiki semantek)", + "right-smw-viewentityassociatedrevisionmismatch": "Gwelet an titouroù diwar-benn ur stumm direizh stag ouzh un entite (MediaWiki Semantek)", + "right-smw-vieweditpageinfo": "Gwelet [https://www.semantic-mediawiki.org/wiki/Help:Edit_help skoazell evit kemmañ] (MediaWiki semantek)", + "restriction-level-smw-pageedit": "gwarezet (implijerien dilennus nemetken)", + "group-smweditor": "Aozerien (MediaWiki semantek)", + "group-smweditor-member": "{{GENDER:$1|aozer|aozerez}} (MediaWiki semantek)", + "grouppage-smweditor": "{{ns:project}}:Aozerien(MediaWiki semantek)", + "smw-property-namespace-disabled": "Diweredekaet eo ar perzh [https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks namespace]. Ne c'haller ket klask disklêriañ ur seurt pe dezverkoù perc'henniezh dibar evit ar perzh-mañ.", + "smw-admin-idlookup-input": "Klask :", + "smw-admin-tab-registry": "Marilh", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Entiteoù direizh", + "smw-livepreview-loading": "O kargañ...", + "smw-sp-searchbyproperty-resultlist-header": "Roll an disoc'hoù", + "smw-search-syntax": "Ereadur", + "smw-datavalue-external-formatter-invalid-uri": "Un URL direizh eo \"$1\".", + "smw-clipboard-copy-link": "Kopiañ al liamm er pouez paper", + "smw-category-change-propagation-pending": "War c'hortoz emañ hizivadennoù ar [https://www.semantic-mediawiki.org/wiki/Change_propagation skignañ kemmoù] ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|drevell|trevell}}] brasjedet) hag erbedet eo gortoz evit kemmoù ur rummad ma vo echuet tretiñ anezho kuit na vije troc'hoù kreiz pe urzhioù kontroll.", + "smw-format-datatable-loadingrecords": "O kargañ...", + "smw-format-datatable-processing": "O plediñ...", + "smw-format-datatable-search": "Klask :", + "smw-format-datatable-zerorecords": "Enroladenn klotaus ebet!", + "smw-format-datatable-first": "Kentañ", + "smw-format-datatable-last": "Diwezhañ", + "smw-format-datatable-next": "War-lerc'h", + "smw-format-datatable-previous": "Kent", + "smw-format-list-other-fields-open": "(", + "smw-property-reserved-category": "Rummad", + "smw-category": "Rummad", + "smw-help": "Skoazell", + "smw-processing": "O tretañ...", + "smw-types-title": "Doare: $1", + "smw-updateentitycollation-incomplete": "NEvez zo eo bet kemmet an arventenn [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] ha rekis eo erounit ar skript [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php] evit ma c'hallfe an entiteoù bezañ hizivaet ha bezañ enno talvoudoù dilenn reizh.", + "smw-entity-examiner-associated-revision-mismatch": "Adweladenn", + "smw-listingcontinuesabbrev": "(war-lerc'h)", + "smw-showingresults": "Diskouez betek {{PLURAL:$1|'''1''' disoc'h|'''$1''' disoc'h}} o kregiñ gant #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/bs.json b/mediawiki/extensions/SemanticMediaWiki/i18n/bs.json new file mode 100644 index 0000000..446e12d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/bs.json @@ -0,0 +1,81 @@ +{ + "@metadata": { + "authors": [ + "CERminator", + "DzWiki", + "Palapa", + "Semina x", + "Sociologist", + "Srđan" + ] + }, + "smw-desc": "Čini Vaš wiki dostupnijim – za mašine ''i'' ljude ([https://www.semantic-mediawiki.org/wiki/Help:User_manual dokumentacija])", + "smw_viewasrdf": "RDF fid", + "smw_finallistconjunct": ", i", + "smw_isspecprop": "Ovo svojstvo je posebna osobina na ovoj wiki.", + "smw_concept_description": "Opis koncepta \"$1\"", + "version-semantic": "Semantička proširenja", + "smw_printername_count": "Rezultati brojanja", + "smw_printername_csv": "CSV izvoz", + "smw_printername_json": "JSON izvoz", + "smw_printername_list": "Spisak", + "smw_printername_ul": "Ispit stavki", + "smw_printername_table": "Tabela", + "smw_printername_broadtable": "Široka tabela", + "smw_printername_template": "Šablon", + "validator-type-class-SMWParamSource": "tekst", + "smw-paramdesc-link": "Prikaži vrijednosti kao linkove", + "smw-paramdesc-embedonly": "Ne prikazuj zaglavlja", + "smw-paramdesc-filename": "Ime za izlaznu datoteku", + "smw_iq_disabled": "Semantički upiti su onemogućeni na ovoj wiki.", + "smw_iq_moreresults": "...ostali rezultati", + "smw_parseerror": "Navedena vrijednost nije razumljiva.", + "smw_emptystring": "Prazni izrazi nisu prihvatljivi.", + "smw_nofloat": "\"$1\" nije broj.", + "smw_nodatetime": "Datum \"$1\" nije razumljiv.", + "smw-propertylist-redirect-header": "Sinonomi", + "exportrdf": "Izvezi stranice u RDF", + "smw_exportrdf_submit": "Izvezi", + "properties": "Svojstva", + "smw-categories": "Kategorije", + "concepts": "Koncepti", + "unusedproperties": "Neiskorištene osobine", + "smw_purge": "Osvježi", + "types": "Tipovi", + "smw_ask_hidequery": "Sakrij upit", + "smw_ask_hide_embed": "Sakrij kôd za ugrađivanje", + "smw-ask-delete": "[Obriši]", + "smw-ask-sorting": "Sortiranje", + "smw_sbv_property": "Svojstvo:", + "smw_sbv_value": "Vrijednost:", + "browse": "Pretražuj wiki", + "smw_browselink": "Pregled svojstava", + "smw_browse_go": "Idi", + "smw_inverse_label_default": "$1 od", + "smw_result_prev": "Prethodno", + "smw_result_next": "Sljedeće", + "smw_result_results": "Rezultati", + "smw_result_noresults": "Nema rezultata.", + "smw_smwadmin_return": "Natrag na $1", + "smw_smwadmin_datarefreshstopconfirm": "Da, {{GENDER:$1|siguran|sigurna}} sam.", + "smw-admin-questions": "Ako imate dodatnij pitanja ili sugestija, pridružite se diskusiji na Semantic MediaWiki user mailing list.", + "smw-ui-tooltip-title-info": "Informacija", + "smw-ui-tooltip-title-warning": "Greška", + "smw-ui-tooltip-title-parameter": "Parametar", + "smw-ui-tooltip-title-note": "Napomena", + "smw-ui-tooltip-title-legend": "Legenda", + "smw-ui-tooltip-title-reference": "Referenca", + "right-smw-pageedit": "Uređivanje stranica s naznakom Is edit protected (Semantic MediaWiki)", + "action-smw-pageedit": "uređujete stranice s naznakom Is edit protected (Semantic MediaWiki)", + "smw-sp-properties-header-label": "Spisak svojstava", + "smw-livepreview-loading": "Učitavam...", + "smw-sp-searchbyproperty-resultlist-header": "Spisak rezultata", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|sekunda|sekunde|sekundi}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|sekunda|sekunde|sekundi}}", + "smw-clipboard-copy-link": "Kopiraj link u međuspremnik", + "smw-data-lookup": "Dobavljam podatke...", + "smw-format-datatable-loadingrecords": "Učitavam...", + "smw-format-datatable-processing": "Obrađujem...", + "smw-listingcontinuesabbrev": "nast.", + "smw-showingresults": "Dolje {{PLURAL:$1|je prikazan 1 rezultat|su prikazana $1 rezultata|je prikazano '''$1''' rezultata}} počev od #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/bug.json b/mediawiki/extensions/SemanticMediaWiki/i18n/bug.json new file mode 100644 index 0000000..0016979 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/bug.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Kurniasan", + "Rdwnnr" + ] + }, + "smw-categories": "Katagori", + "smw-livepreview-loading": "Mattékéri...", + "smw-report": "Lapporoq" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ca.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ca.json new file mode 100644 index 0000000..5661cd3 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ca.json @@ -0,0 +1,877 @@ +{ + "@metadata": { + "authors": [ + "Abella", + "Amire80", + "Dvdgmz", + "Fitoschido", + "Hiperpobla", + "Jaumeortola", + "Jmarchn", + "Kghbln", + "Lluis Cat", + "Loupeter", + "Macofe", + "McDutchie", + "Mguix", + "Nemo bis", + "Pitort", + "SMP", + "Sociologist", + "Solde", + "Toniher", + "Vfc", + "아라" + ] + }, + "smw-desc": "Fem el vostre wiki més accessible, per a les màquines ''i també'' per als humans ([https://www.semantic-mediawiki.org/wiki/Help:User_manual documentació en línia])", + "smw-error": "Error", + "smw-upgrade-error": "S'ha instal·lat i activat [https://www.semantic-mediawiki.org/ Semantic MediaWiki], però cal una [https://www.semantic-mediawiki.org/wiki/Help:Upgrade clau d'actualització] adequada.", + "smw-upgrade-release": "Versió", + "smw-upgrade-progress": "Progrés", + "smw-upgrade-progress-create-tables": "S'estan creant (o actualitzant) les taules i els índexs...", + "smw-upgrade-progress-post-creation": "S'estan executant les tasques postcreació...", + "smw-upgrade-progress-table-optimization": "S'estan executant les optimitzacions de taula...", + "smw-upgrade-progress-supplement-jobs": "S'estan afegint tasques suplementàries...", + "smw-upgrade-error-title": "Error • Semantic MediaWiki", + "smw-upgrade-error-why-title": "Per què veig aquesta pàgina?", + "smw-upgrade-error-why-explain": "La base de dades interna del Semantic MediaWiki ha canviat i calen alguns ajustaments perquè sigui plenament funcional. Pot haver-hi diferents motius, entre ells:\n* S'han afegit diferents propietats fixes addicionals (que requereixen una configuració de taules addicional)\n* Una actualització conté alguns canvis a les taules o als índexs que fan que una intercepció sigui obligatòria abans d'accedir a les dades\n* canvis al motor d'emmagatzematge o consulta", + "smw-upgrade-error-how-title": "Com arreglo aquest error?", + "smw-extensionload-error-why-title": "Per què veig aquesta pàgina?", + "smw-extensionload-error-how-title": "Com corregeixo aquest error?", + "smw-upgrade-maintenance-title": "Manteniment • Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "Per què veig aquesta pàgina?", + "smw-semantics-not-enabled": "No s'ha habilitat la funcionalitat de Semantic MediaWiki en aquest wiki.", + "smw_viewasrdf": "Canal RDF", + "smw_finallistconjunct": ", i", + "smw-factbox-head": "... més sobre «$1»", + "smw-factbox-facts": "Fets", + "smw-factbox-facts-help": "Mostra declaracions i fets creats per un usuari", + "smw-factbox-attachments": "Adjuncions", + "smw-factbox-attachments-value-unknown": "N/D", + "smw-factbox-attachments-is-local": "És local", + "smw-factbox-attachments-help": "Mostra les adjuncions disponibles", + "smw-factbox-facts-derived": "Fets derivats", + "smw-factbox-facts-derived-help": "Mostra fets que s'han derivat de regles amb l'ajuda d'altres tècniques de raonament", + "smw_isspecprop": "Aquesta és una propietat especial en aquest wiki.", + "smw-concept-cache-header": "Ús de la memòria cau", + "smw-concept-cache-count": "La [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count memòria cau de conceptes] conté {{PLURAL:$1|'''una''' entitat|'''$1''' entitats}} ($2).", + "smw-concept-no-cache": "No hi ha memòria cau disponible.", + "smw_concept_description": "Descripció del concepte «$1».", + "smw_no_concept_namespace": "Els conceptes només poden ser definits en pàgines dins l'espai de noms (namespace) Concept:", + "smw_multiple_concepts": "Cada pàgina de concepte només pot tenir una definició de concepte.", + "smw_concept_cache_miss": "El concepte «$1» no pot ser utilitzat per ara, atès que la configuració del wiki s'ha de computar fora de línia.\nSi el problema persisteix passat cert temps, demaneu a l'administrador del vostre wiki que posi disponible aquest concepte.", + "smw_noinvannot": "No es poden assignar valors a propietats inverses.", + "version-semantic": "Extensions semàntiques", + "smw_baduri": "Les URI del formulari «$1» no són permeses.", + "smw_printername_count": "Resultats del recompte", + "smw_printername_csv": "exportació a CSV", + "smw_printername_dsv": "Exportació DSV", + "smw_printername_debug": "Consulta de depuració (per a experts)", + "smw_printername_embedded": "Continguts de pàgina incrustada", + "smw_printername_json": "exportació a JSON", + "smw_printername_list": "Llista", + "smw_printername_plainlist": "Llista plana", + "smw_printername_ol": "Llista numerada", + "smw_printername_ul": "Llista puntejada", + "smw_printername_table": "Taula", + "smw_printername_broadtable": "Taula ampla", + "smw_printername_template": "Plantilla", + "smw_printername_templatefile": "Fitxer de plantilla", + "smw_printername_rdf": "Exportació RDF", + "smw_printername_category": "Categoria", + "validator-type-class-SMWParamSource": "text", + "smw-paramdesc-limit": "El nombre màxim de resultats a retornar", + "smw-paramdesc-offset": "El desplaçament (offset) del primer resultat", + "smw-paramdesc-headers": "Mostra les capçaleres / noms de les propietats", + "smw-paramdesc-mainlabel": "L'etiqueta que es donarà al nom de la pàgina principal", + "smw-paramdesc-link": "Mostra els valors com a enllaços", + "smw-paramdesc-intro": "El text que apareixerà abans que el resultat de la consulta, si n'hi hagués", + "smw-paramdesc-outro": "El text que apareixerà després que els resultats de la consulta, si n'hi hagués", + "smw-paramdesc-default": "El text que es mostrarà si no hi ha resultats de la consulta", + "smw-paramdesc-sep": "El separador entre els resultats", + "smw-paramdesc-propsep": "El separador entre les propietats d'una entrada de resultat", + "smw-paramdesc-valuesep": "El separador entre els valors d'una propietat d'un resultat", + "smw-paramdesc-showsep": "Mostra el separador a la part superior del fitxer CSV (\"sep=\")", + "smw-paramdesc-distribution": "En comptes de mostrar tots els valors, compta les coincidències i mostra-ho.", + "smw-paramdesc-distributionsort": "Ordena la distribució de valor pel recompte d'aparició.", + "smw-paramdesc-distributionlimit": "Limita la distribució de valor al recompte de només alguns valors.", + "smw-paramdesc-aggregation": "Especifica amb què s'ha de relacionar l'agregació", + "smw-paramdesc-template": "El nom d'una plantilla amb la qual mostrar els llistats", + "smw-paramdesc-columns": "El nombre de columnes amb les quals mostrar els resultats", + "smw-paramdesc-userparam": "Es passa un valor a cada crida de la plantilla, sempre que s'utilitzi una plantilla", + "smw-paramdesc-class": "Una classe addicional CSS per definir a la llista", + "smw-paramdesc-introtemplate": "El nom d'una plantilla que es mostrarà abans dels resultats de la consulta, si n'hi ha cap", + "smw-paramdesc-outrotemplate": "El nom d'una plantilla que es mostrarà després dels resultats de la consulta, si n'hi ha cap", + "smw-paramdesc-embedformat": "L'etiqueta HTML que s'utilitza per a definir les capçaleres", + "smw-paramdesc-embedonly": "No mostris capçaleres", + "smw-paramdesc-table-class": "Una classe CSS addicional per definir per a la taula", + "smw-paramdesc-table-transpose": "Mostra les capçaleres de la taula verticalment i els resultats horitzontalment", + "smw-paramdesc-rdfsyntax": "La sintaxi RDF que s'utilitzarà", + "smw-paramdesc-csv-sep": "Especifica una separador de columnes", + "smw-paramdesc-csv-valuesep": "Especifica un separador de valors", + "smw-paramdesc-csv-merge": "Fusiona els valors de files i columnes amb un identificador de subjecte idèntic (p. ex., la primera columna)", + "smw-paramdesc-csv-bom": "Afegeix un BOM (caràcter per assenyalar l'ordre dels bytes -endianness-) a la part superior del fitxer de sortida", + "smw-paramdesc-dsv-separator": "El separador que s'utilitzarà", + "smw-paramdesc-dsv-filename": "El nom del fitxer DSV", + "smw-paramdesc-filename": "El nom del fitxer de sortida", + "smw-smwdoc-description": "Mostra una taula de tots els paràmetres que es poden utilitzar per al format del resultat especificat juntament amb els valors per defecte i les descripcions.", + "smw-smwdoc-default-no-parameter-list": "El format de resultat no proporciona paràmetres específics de format.", + "smw-smwdoc-par-format": "El format del resultat per mostrar la documentació del paràmetre.", + "smw-smwdoc-par-parameters": "Quins paràmetres mostrar. «specific» per a aquells afegits per format, «base» per a aquells disponibles en tots els formats, i «all» per als dos.", + "smw-paramdesc-sort": "Propietat per ordenar la consulta per", + "smw-paramdesc-order": "Ordre de la ordenació de la consulta", + "smw-paramdesc-searchlabel": "Text per continuar la cerca", + "smw-paramdesc-named_args": "Anomena els arguments que es passen a la plantilla", + "smw-paramdesc-template-arguments": "Especifica com els arguments amb nom es passen a la plantilla", + "smw-paramdesc-import-annotation": "Es copiaran dades anotades addicionals durant l'anàlisi d'un subjecte", + "smw-paramdesc-export": "Opció d'exportació", + "smw-paramdesc-prettyprint": "Una impressió agradable que mostra sagnies addicionals i salts de línia", + "smw-paramdesc-json-unescape": "La sortida contindrà barres sense escapar i caràcters Unicode d’octets múltiples.", + "smw-paramdesc-json-type": "Tipus de serialització", + "smw-paramdesc-source": "Font de consulta alternativa", + "smw-paramdesc-jsonsyntax": "Sintaxi JSON que s'utilitzarà", + "smw-printername-feed": "Canal RSS i Atom", + "smw-paramdesc-feedtype": "Tipus de canal", + "smw-paramdesc-feedtitle": "El text que s'utilitzarà com a títol del canal", + "smw-paramdesc-feeddescription": "El text que s'utilitzarà com a descripció del canal", + "smw-paramdesc-feedpagecontent": "Contingut de la pàgina que es mostrarà amb el canal", + "smw-label-feed-description": "Canal $2 $1", + "smw-paramdesc-mimetype": "El tipus mèdia (tipus MIME) per al fitxer de sortida", + "smw_iq_disabled": "Les consultes semàntiques estan inhabilitades en aquest wiki.", + "smw_iq_moreresults": "... més resultats", + "smw_parseerror": "El valor donat no s'ha entès.", + "smw_decseparator": ",", + "smw_kiloseparator": " ", + "smw_notitle": "«$1» no es pot fer servir com a nom de pàgina en aquest wiki.", + "smw_noproperty": "No es pot utilitzar «$1» com a nom de propietat en aquest wiki.", + "smw_wrong_namespace": "Aquí només es poden fer servir pàgines en l'espai de noms \"$1\".", + "smw_manytypes": "S'ha definit més d'un tipus per la propietat.", + "smw_emptystring": "No s'accepten cadenes buides.", + "smw_notinenum": "«$1» no és a la llista ($2) de [[Property:Allows value|valors permesos]] de la propietat «$3».", + "smw-datavalue-constraint-error-allows-value-list": "«$1» no es troba a la llista ($2) de [[Property:Allows value|valors permesos]] de la propietat «$3».", + "smw-datavalue-constraint-error-allows-value-range": "«$1» no es troba en el rang «$2» especificat per la restricció «[[Property:Allows value|permet valor]]» de la propietat «$3».", + "smw-constraint-error": "Problema de restricció", + "smw-constraint-error-limit": "La llista contindrà un màxim de $1 violacions.", + "smw_noboolean": "«$1» no es pot reconèixer com un valor booleà (cert/fals).", + "smw_true_words": "verdader,vertader,veritat,cert,true,t,sí,s,yes,y", + "smw_false_words": "fals,f,no,n,false", + "smw_nofloat": "\"$1\" no és un nombre.", + "smw_infinite": "No es permeten nombres tan llargs com «$1».", + "smw_unitnotallowed": "«$1» no està declarada com una unitat de mesura vàlida per a aquesta propietat.", + "smw_nounitsdeclared": "No s'ha declarat cap unitat de mesura d'aquesta propietat.", + "smw_novalues": "No s'ha especificat cap valor.", + "smw_nodatetime": "No s'ha entès la data «$1».", + "smw_toomanyclosing": "Sembla ser que «$1» apareix massa vegades a la consulta.", + "smw_noclosingbrackets": "Algun ús de \"[[\" en la vostra consulta no es clou amb els \"]]\" corresponents.", + "smw_misplacedsymbol": "El símbol «$1» es fa servir en un lloc on no és útil.", + "smw_unexpectedpart": "La part «$1» de la consulta no s'ha entès.\nEls resultats podrien no ser els esperats.", + "smw_emptysubquery": "Alguna subconsulta no té una condició vàlida.", + "smw_misplacedsubquery": "Alguna subconsulta es fa servir en un lloc on les subconsultes no són permeses.", + "smw_valuesubquery": "Subconsultes no suportades per valors de la propietat \"$1\".", + "smw_badqueryatom": "Una part «[[…]]» de la consulta no s'ha pogut entendre.", + "smw_propvalueproblem": "El valor de la propietat «$1» no s'ha pogut entendre.", + "smw_noqueryfeature": "Algun aspecte d'aquesta consulta no està suportat en aquest wiki i part de la consulta no s'ha tingut en compte ($1).", + "smw_noconjunctions": "Les conjuncions en consultes no són suportades en aquest wiki i part de la consulta no s'ha tingut en compte ($1)", + "smw_nodisjunctions": "Les disjuncions en consultes no són suportades en aquest wiki i part de la consulta no s'ha tingut en compte ($1).", + "smw_querytoolarge": "{{PLURAL:$2|La condició de consulta següent podria no ser considerada|Les $2 condicions de consulta següents podrien no ser considerades}} degut a les restriccions de mida o profunditat per consultes en el wiki: $1.", + "smw_notemplategiven": "Per fer que això funcioni, doneu un valor al paràmetre «template» (plantilla) per al format d'aquesta consulta.", + "smw_db_sparqlqueryproblem": "No s'ha pogut obtenir el resultat de la consulta de la base de dades SPARQL. Aquest error podria ser temporal o indicar alguna mena d'error en el programari de la base de dades.", + "smw_db_sparqlqueryincomplete": "Respondre la consulta ha acabat essent massa difícil i s'ha interromput. Podrien mancar-hi alguns resultats. Si fos possible, proveu millor una consulta més simple.", + "smw_type_header": "Propietats de tipus «$1»", + "smw_typearticlecount": "Es {{PLURAL:$1|mostra|mostren}} $1 {{PLURAL:$1|propietat que fa servir|propietats que fan servir}} aquesta propietat.", + "smw_attribute_header": "Pàgines que fan servir la propietat \"$1\"", + "smw_attributearticlecount": "Es {{PLURAL:$1|mostra|mostren}} $1 {{PLURAL:$1|pàgina que fa servir|pàgines que fan servir}} aquesta propietat.", + "smw-propertylist-subproperty-header": "Subpropietats", + "smw-propertylist-redirect-header": "Sinònims", + "smw-propertylist-error-header": "Pàgines amb assignacions no apropiades", + "smw-propertylist-count": "Es {{PLURAL:$1|mostra $1 entitat relacionada|mostren $1 entitats relacionades}}.", + "smw-propertylist-count-with-restricted-note": "Es {{PLURAL:$1|mostra $1 entitat relacionada|mostren $1 entitats relacionades}} (hi ha més disponibles però la visualització està restringida a «$2»).", + "smw-propertylist-count-more-available": "Es {{PLURAL:$1|mostra $1 entitat relacionada|mostren $1 entitats relacionades}} (hi ha més disponibles).", + "specialpages-group-smw_group-maintenance": "Manteniment", + "specialpages-group-smw_group-properties-concepts-types": "Propietats, conceptes i tipus", + "specialpages-group-smw_group-search": "Navega i cerca", + "exportrdf": "Exporta les pàgines a RDF", + "smw_exportrdf_docu": "Aquesta pàgina permet obtenir dades en format RDF d'una pàgina del wiki.\nPer exportar pàgines, entra els títols a la caixa de text següent, un títol per línia.", + "smw_exportrdf_recursive": "Exporta recursivament totes les pàgines relacionades.\nTingueu en compte que el resultat pot ser molt gran!", + "smw_exportrdf_backlinks": "També exporta totes les pàgines que es refereixen a les pàgines exportades.\nGenera un RDF que es pot navegar.", + "smw_exportrdf_lastdate": "No exportis pàgines que no s'han canviat des del punt donat en el temps.", + "smw_exportrdf_submit": "Exporta", + "uriresolver": "Resolutor d'URI", + "properties": "Propietats", + "smw-categories": "Categories", + "smw_properties_docu": "S'utilitzen les propietats següents al wiki.", + "smw_property_template": "$1 de tipus $2 ($3 {{PLURAL:$3|ús|usos}})", + "smw_propertylackspage": "Cal descriure totes les propietats amb una pàgina!", + "smw_propertylackstype": "No s'ha especificat cap tipus per a la propietat (s'assumeix el tipus $1 per ara).", + "smw_propertyhardlyused": "Propietats pràcticament no utilitzades al llarg del wiki!", + "smw-property-name-invalid": "La propietat $1 no pot fer-se servir (nom de propietat no vàlid).", + "smw-property-name-reserved": "«$1» està llista com a nom reservat i no s'hauria d'utilitzar com a propietat. La següent [https://www.semantic-mediawiki.org/wiki/Help:Property_naming pàgina d'ajuda] pot contenir informació sobre el motiu perquè aquest nom és reservat.", + "smw-sp-property-searchform": "Mostra propietats que contenen:", + "smw-sp-property-searchform-inputinfo": "L'entrada és sensible a les majúscules i, quan s'utilitza per al filtratge, només es mostren les propietats que coincideixen amb la condició.", + "smw-special-property-searchform": "Mostreu les propietats que contenen:", + "smw-special-property-searchform-inputinfo": "L'entrada distingeix entre majúscules i minúscules i, quan s'utilitza per filtrar, només es mostren les propietats que coincideixen amb la condició.", + "smw-special-property-searchform-options": "Opcions", + "smw-special-wantedproperties-filter-label": "Filtre:", + "smw-special-wantedproperties-filter-none": "Cap", + "smw-special-wantedproperties-filter-unapproved": "Sense aprovar", + "smw-special-wantedproperties-filter-unapproved-desc": "Opció de filtratge utilitzada en connexió amb el mode d'autoritat.", + "concepts": "Conceptes", + "smw-special-concept-docu": "Un [https://www.semantic-mediawiki.org/wiki/Help:Concepts concepte] pot entendre's com una «categoria dinàmica», una col·lecció de pàgines que no es creen manualment, sinó que el Semantic MediaWiki les computa a partir de la descripció d'una consulta.", + "smw-special-concept-header": "Llista de conceptes", + "smw-special-concept-count": "Es {{PLURAL:$1|llista|llisten}} {{PLURAL:$1|el concepte|els $1 conceptes}} següents.", + "smw-special-concept-empty": "No s'ha trobat cap concepte.", + "unusedproperties": "Propietats no utilitzades", + "smw-unusedproperties-docu": "Aquesta pàgina llista les [https://www.semantic-mediawiki.org/wiki/Unused_properties propietats no utilitzades], que són declarades però que cap pàgina les fa servir. Per a una vista diferenciada, visiteu les pàgines especials de [[Special:Properties|totes les propietats]] o de les [[Special:WantedProperties|propietats per definir]].", + "smw-unusedproperty-template": "$1 del tipus $2", + "wantedproperties": "Propietats per definir", + "smw-wantedproperties-docu": "Aquesta pàgina llista les [https://www.semantic-mediawiki.org/wiki/Wanted_properties propietats per definir] que s'utilitzen en aquest wiki però que no tenen cap pàgina que les descrigui. Per a una vista diferenciada, visiteu les pàgines especials de [[Special:Properties|totes les propietats]] o de les [[Special:UnusedProperties|propietats no utilitzades]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|ús|usos}})", + "smw-special-wantedproperties-docu": "Aquesta pàgina llista les [https://www.semantic-mediawiki.org/wiki/Wanted_properties propietats demanades] que s'utilitzen en el wiki però que no tenen una pàgina que les descriu. Per a una vista diferenciada, vegeu les pàgines especials de [[Special:Properties|totes les propietats]] o de les [[Special:UnusedProperties|no utilitzades]].", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|utilització|utilitzacions}})", + "smw_purge": "Refresca", + "smw-purge-update-dependencies": "Semantic MediaWiki està purgant la pàgina actual perquè té dependències desactualitzades que ha detectat que requerien una actualització.", + "smw-purge-failed": "Semantic MediaWiki ha provat de purgar la pàgina però ha fallat", + "types": "Tipus", + "smw_types_docu": "Llista de [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes tipus de dades disponibles], on cada [https://www.semantic-mediawiki.org/wiki/Help:Datatype tipus] representa un conjunt únic d'atributs per descriure un valor en termes d'emmagatzematge i característiques de visualització que són hereditaris per a una propietat assignada.", + "smw-special-types-no-such-type": "El tipus de dades «$1» és desconegut o no s'ha especificat.", + "smw-statistics": "Estadístiques semàntiques", + "smw-statistics-cached": "Estadístiques semàntiques (en memòria cau):", + "smw-statistics-entities-total": "Entitats (total)", + "smw-statistics-entities-total-info": "Un recompte estimat de les files d'entitats. Inclou propietats, conceptes o altres representacions d'objectes registrats que requereixen una assignació d'ID.", + "smw-statistics-property-instance": "Propietat {{PLURAL:$1|valor|valors}} (total)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Propietat|Propietats}}]] (total)", + "smw-statistics-property-total-info": "El total de propietats enregistrades.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Propietat|Propietats}} (total)", + "smw-statistics-property-used": "{{PLURAL:$1|Propietat|Propietats}} (amb un valor utilitzat mínim)", + "smw-statistics-property-page": "{{PLURAL:$1|Propietat|Propietats}} (registrat amb una pàgina)", + "smw-statistics-property-page-info": "Recompte de les propietats que tenen una pàgina dedicada i una descripció.", + "smw-statistics-property-type": "{{PLURAL:$1|Propietat|Propietats}} (assignat a un tipus de dades)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Consulta|Consultes}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Consulta|Consultes}}]] (incrustades, totals)", + "smw-statistics-query-format": "format de $1", + "smw-statistics-query-size": "Mida de la consulta", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Concepte|Conceptes}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Concepte|Conceptes}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|Té {{PLURAL:$1|subobjecte|subobjectes}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Subobjecte|Subobjectes}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Tipus de dades}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|El valor de la propietat|Els valors de la propietat}} ([[Special:ProcessingErrorList|{{PLURAL:$1|anotació impròpia|anotacions impròpies}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Valor de propietat|Valors de propietat}} ({{PLURAL:$1|anotació inadequada|anotacions indadequades}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Entitat desactualitzada|Entitats desactualitzades}}]", + "smw-statistics-delete-count-info": "Les entitats que s'han marcat per suprimir que s'haurien d'alliberar regularment utilitzant els scripts de manteniment proporcionats.", + "smw_uri_doc": "El resolutor d'URI implementa la [$1 cerca de W3C TAG en httpRange-14].\nTé cura que els humans no es tornin en llocs web.", + "ask": "Cerca semàntica", + "smw-ask-help": "Aquesta secció conté alguns enllaços per ajudar a explicar com utilitzar la sintaxi #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selecció de pàgines]: descriu com seleccionar les pàgines i construir condicions\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Search_operators Operadors de cerca]: llista els operadors de cerca disponibles, incloent-hi els de les consultes d'intèrval i de caràcters comodí\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Impressió d'informació]: resumeix l'ús de les opcions de declaració i formatatge", + "smw_ask_sortby": "Ordena per columna (opcional)", + "smw_ask_ascorder": "Ascendent", + "smw_ask_descorder": "Descendent", + "smw-ask-order-rand": "A l’atzar", + "smw_ask_submit": "Cerca'n resultats", + "smw_ask_editquery": "Edita la consulta", + "smw_add_sortcondition": "Afegeix una condició d'ordenació", + "smw-ask-sort-add-action": "Afegeix una condició d'ordenació", + "smw_ask_hidequery": "Amaga la consulta (vista compacta)", + "smw_ask_help": "Consulta de l'ajuda", + "smw_ask_queryhead": "Condició", + "smw_ask_printhead": "Selecció de dades a imprimir", + "smw_ask_printdesc": "(afegeix un nom de propietat per línia)", + "smw_ask_format_as": "Formata com:", + "smw_ask_defaultformat": "per defecte", + "smw_ask_otheroptions": "Altres opcions", + "smw-ask-otheroptions-info": "Aquesta secció conté les opcions que alteren les declaracions d'impressió. Poden veure's les descripcions dels paràmetres en passar-hi el ratolí sobre ells.", + "smw-ask-otheroptions-collapsed-info": "Utilitzeu la icona 'més' per mostrar totes les opcions disponibles", + "smw_ask_show_embed": "Mostra el codi incrustat", + "smw_ask_hide_embed": "Amaga el codi incrustat", + "smw_ask_embed_instr": "Per a incrustar aquesta consulta en línia a una pàgina wiki utilitzeu el codi a continuació.", + "smw-ask-delete": "Suprimeix", + "smw-ask-sorting": "Ordenació", + "smw-ask-options": "Opcions", + "smw-ask-options-sort": "Opcions d'ordenació", + "smw-ask-format-options": "Formatació i opcions", + "smw-ask-parameters": "Paràmetres", + "smw-ask-search": "Cerca", + "smw-ask-debug": "Depura", + "smw-ask-debug-desc": "Genera informació de depuració de consultes", + "smw-ask-no-cache": "Inhabilita la cau de consulta", + "smw-ask-no-cache-desc": "Resultats sense memòria cau de consulta", + "smw-ask-result": "Resultat", + "smw-ask-empty": "Buida totes les entrades", + "smw-ask-download-link-desc": "Baixa els resultats consultats en format $1", + "smw-ask-format": "Format", + "smw-ask-format-selection-help": "Ajuda amb el format seleccionat: $1", + "smw-ask-condition-change-info": "S'ha alterat la condició i el motor de cerca necessita que es torni a executar la consulta per a produir resultats que coincideixin amb els nous requisits.", + "smw-ask-input-assistance": "Assistència d'entrada", + "smw-ask-condition-input-assistance": "Es proporciona [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance assistència d'entrada] per als camps d'impressió, d'ordenació i de condició. El camp de condició requereix un dels prefixos següents:", + "smw-ask-condition-input-assistance-property": "p: per a recollir suggeriments de propietats (p. ex., [[p:Has …)", + "smw-ask-condition-input-assistance-category": "c: per a recollir suggeriments de categories", + "smw-ask-condition-input-assistance-concept": "con: per a recollir suggeriments de conceptes", + "smw-ask-format-change-info": "S'ha modificat el format i cal tornar a executar la consulta perquè coincideixin els nous paràmetres i opcions de visualització.", + "smw-ask-format-export-info": "El format seleccionat és un format d'exportació que no té representació visual. Per tant, els resultats només es proporcionen com a baixada.", + "smw-ask-query-search-info": "La consulta $1 va ser resposta per {{PLURAL:$3|1=$2 (de la memòria cau)|$2 (de la memòria cau)|$2}} en $4 {{PLURAL:$4|segon|segons}}.", + "smw-ask-extra-query-log": "Registre de consultes", + "smw-ask-extra-other": "Altre", + "searchbyproperty": "Cerca per propietat", + "processingerrorlist": "Llista d'errors de processament", + "constrainterrorlist": "Llista d'erros de restricció", + "propertylabelsimilarity": "Informe de similitud d'etiquetes de propietat", + "missingredirectannotations": "Absència d'anotacions de redirecció", + "smw-processingerrorlist-intro": "La llista següent proporciona un resum dels [https://www.semantic-mediawiki.org/wiki/Processing_errors processing errors de processament] que han aparegut en relació amb [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. Es recomana monitoritzar aquesta llista de forma regular i corregir les anotacions amb valors no vàlids.", + "smw-missingredirects-list": "Pàgines on hi manquen anotacions", + "smw-missingredirects-list-intro": "Mostra $1 {{PLURAL:$1|pàgina|pàgines}} amb les anotacions de redirecció que hi manquen.", + "smw-missingredirects-noresult": "No s'han trobat anotacions de redirecció que hi manquessin.", + "smw_sbv_docu": "Cerca totes les pàgines que tenen una propietat i valor donats.", + "smw_sbv_novalue": "Introduïu un valor vàlid per a la propietat, o vegeu tots els valors de la propietat «$1».", + "smw_sbv_displayresultfuzzy": "Una llista de totes les pàgines que tenen la propietat «$1» amb el valor «$2».\nCom hi ha hagut només uns pocs resultats, també es mostren valors propers.", + "smw_sbv_property": "Propietat:", + "smw_sbv_value": "Valor:", + "smw_sbv_submit": "Troba els resultats", + "browse": "Explora la wiki", + "smw_browselink": "Explora les propietats", + "smw_browse_article": "Introduïu el nom de la pàgina des d'on començar a navegar.", + "smw_browse_go": "Vés-hi", + "smw_browse_show_incoming": "Mostra les propietats entrants", + "smw_browse_hide_incoming": "Amaga les propietats entrants", + "smw_browse_no_outgoing": "La pàgina no té cap propietat.", + "smw_browse_no_incoming": "No enllaça cap propietat a la pàgina.", + "smw-browse-from-backend": "S'està recuperant la informació del servidor ara mateix.", + "smw-browse-intro": "Aquesta pàgina proporciona informació sobre un tema o instància d'entitat. Introduïu el nom d'un objecte per ser inspeccionat.", + "smw-browse-invalid-subject": "La validació del subjecte ha retornat amb un error «$1».", + "smw-browse-api-subject-serialization-invalid": "El subjecte té un format de serialització no vàlid.", + "smw-browse-js-disabled": "Se sospita que el Javascript està inhabilitat o no està disponible. Recomanem que feu servir un navegador que el pugui fer servir. Es discuteixen altres opcions a la pàgina del paràmetre de configuració [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Mostra els grups", + "smw-browse-hide-group": "Amaga els grups", + "smw-noscript": "Aquesta pàgina o acció necessita Javascript per funcionar. Habiliteu el Javascript al navegador o utilitzeu-ne un que el permeti per tal que la funcionalitat funcioni com es demana. Per a més ajuda, consulteu la pàgina d'ajuda [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript].", + "smw_inverse_label_default": "$1 de", + "smw_inverse_label_property": "Etiqueta de propietat inversa", + "pageproperty": "Cerca de les propietats de la pàgina", + "pendingtasklist": "Llista de tasques pendents", + "smw_pp_docu": "Introduïu una pàgina i una propietat, o bé només una propietat, per a recuperar-ne tots els valors assignats.", + "smw_pp_from": "De la pàgina:", + "smw_pp_type": "Propietat:", + "smw_pp_submit": "Troba els resultats", + "smw-prev": "{{PLURAL:$1|anterior|$1 anteriors}}", + "smw-next": "{{PLURAL:$1|següent|$1 següents}}", + "smw_result_prev": "Anterior", + "smw_result_next": "Següent", + "smw_result_results": "Resultats", + "smw_result_noresults": "No hi ha resultats.", + "smwadmin": "Tauler de control de Semantic MediaWiki", + "smw-admin-statistics-job-title": "Estadístiques de tasques", + "smw-admin-statistics-job-docu": "Les estadístiques de tasques mostren informació de les tasques programades al Semantic MediaWiki que encara no s'han executat. El nombre de tasques podria ser lleugerament no acurat o contenir intents fallits. Consulteu el [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue manual] per a més informació.", + "smw-admin-statistics-querycache-title": "Memòria cau de consultes", + "smw-admin-statistics-querycache-disabled": "No s'ha habilitat el [https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] en aquest wiki i, per tant, les estadístiques no són disponibles.", + "smw-admin-statistics-section-explain": "La secció proporciona estadístiques addicionals per als administradors.", + "smw-admin-statistics-semanticdata-overview": "Resum", + "smw-admin-permission-missing": "L'accés a la pàgina ha estat blocat perquè manquen permisos. Consulteu la pàgina d'ajuda sobre [https://www.semantic-mediawiki.org/wiki/Help:Permissions permisos] per a més detalls dels paràmetres necessaris.", + "smw-admin-setupsuccess": "S'ha configurat el motor d'emmagatzematge.", + "smw_smwadmin_return": "Torna a $1", + "smw_smwadmin_updatestarted": "S'ha iniciat un nou procés d'actualització per a refrescar les dades semàntiques.\nEs reconstruiran totes les dades emmagatzemades o bé es repararan quan calgui.\nPodeu seguir el progrés de l'actualització en aquesta pàgina especial.", + "smw_smwadmin_updatenotstarted": "Ja hi ha un procés d'actualització executant-se.\nNo es crearà cap altre.", + "smw_smwadmin_updatestopped": "S'han aturat tots els processos d'actualització existents.", + "smw_smwadmin_updatenotstopped": "Per a aturar l'execució del procés d'actualització, heu de marcar la casella per a indicar que n'esteu plenament segur.", + "smw-admin-docu": "Aquesta pàgina especial us ajuda durant la instal·lació i l'actualització del Semantic MediaWiki i també proporciona altres funcions i tasques administratives juntament amb estadístiques.\nRecordeu fer una còpia de seguretat de les dades importants abans d'executar cap funció administrativa.", + "smw-admin-environment": "Entorn de programari", + "smw-admin-db": "Configuració de la base de dades", + "smw-admin-db-preparation": "La inicialització de la taula és en procés i pot trigar una estona fins que els resultats es mostrin segons la mida de la taula i les optimitzacions que s'hi facin.", + "smw-admin-dbdocu": "Semantic MediaWiki necessita la seva pròpia estructura de base de dades (independent de MediaWiki, i per tant, no afecta la resta de la instal·lació de MediaWiki) per tal d'emmagatzemar les dades semàntiques.\nAquesta funció de configuració pot executar-se moltes vegades sense cap perill; però cal al menys una vegada durant la instal·lació o l'actualització.", + "smw-admin-permissionswarn": "Si l'operació falla amb errors SQL, l'usuari de la base de dades que utilitza el vostre wiki (comproveu el LocalSettings.php) probablement no té suficients permisos.\nPodeu atorgar l'usuari permisos addicionals per a crear o suprimir taules, introduïu temporalment les dades d'inici de l'administrador (root) de la base de dades al LocalSettings.php, o bé feu servir l'script de manteniment setupStore.php, que pot utilitzar les credencials d'un administrador.", + "smw-admin-dbbutton": "Inicialitza o actualitza les taules", + "smw-admin-announce": "Feu conèixer el vostre wiki", + "smw-admin-announce-text": "Si el vostre wiki és públic, el podeu registrar a WikiApiary, el catàleg wiki de wikis.", + "smw-admin-deprecation-notice-title": "Avisos d'obsolescència", + "smw-admin-deprecation-notice-docu": "La secció següent conté paràmetres que són obsolets o en desús però que s'han detectat com a actius en aquest wiki. S'espera que en versions futures se suprimirà el suport per a aquestes configuracions.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] és obsolet i se suprimirà en $2", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 és obsolet i se suprimirà en $2", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 està essent reemplaçat per $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] va ser suprimit a $2", + "smw-admin-deprecation-notice-title-notice": "Paramètres obsolets", + "smw-admin-deprecation-notice-title-notice-explanation": "Els paràmetres obsolets mostra els paràmetres detectats en aquest wiki, els quals s'ha planejat que se suprimiran o canviaran en una versió futura.", + "smw-admin-deprecation-notice-title-replacement": "Paràmetres substituïts o canviats de nom", + "smw-admin-deprecation-notice-title-replacement-explanation": "Paràmetres substituïts o canviats conté paràmetres que s'han canviat de nom o que s'han modificat d'una altra manera i es recomana actualitzar immediatament el seu nom o format. Es recomana que s'actualitzi el seu nom o format immediatament.", + "smw-admin-deprecation-notice-title-removal": "Paràmetres suprimits", + "smw-admin-deprecation-notice-title-removal-explanation": "Paràmetres eliminats identifica els paràmetres que s'han eliminat en una versió anterior però que s'han detectat que encara s'utilitzen en aquest wiki.", + "smw-admin-deprecation-notice-section-legend": "Llegenda", + "smw-smwadmin-refresh-title": "Reparació de les dades i actualització", + "smw_smwadmin_datarefresh": "Reconstrucció de les dades", + "smw_smwadmin_datarefreshdocu": "És possible restaurar totes les dades del Semantic MediaWiki a partir dels continguts actuals del wiki.\nAixò pot ser útil per a reparar dades inconsistents o refrescar les dades si el format intern ha canviat per alguna actualització de programari.\nL'actualització s'executa pàgina per pàgina i no es completarà immediatament.\nA continuació és mostra si l'actualització és en curs i us permet iniciar o aturar les actualitzacions (a menys que aquesta característica estigui inhabilitada per l'administrador del lloc).", + "smw_smwadmin_datarefreshprogress": "Ja hi ha una actualització en curs.\nÉs normal que l'actualització progressi només lentament perquè només refresca les dades en trossos petits cada vegada que l'usuari accedeix al wiki.\nPer a finalitzar l'actualització més ràpidament, podeu cridar l'script de manteniment del MediaWiki runJobs.php (empreu l'opció --maxjobs 1000 per a restringir el nombre d'actualitzacions en un lot).\nProgrés estimat de l'actualització actual:", + "smw_smwadmin_datarefreshbutton": "Programa la reconstrucció de les dades", + "smw_smwadmin_datarefreshstop": "Atura l'actualització", + "smw_smwadmin_datarefreshstopconfirm": "Sí, estic {{GENDER:$1|segur|segura}}.", + "smw-admin-job-scheduler-note": "Les tasques (les habilitades) d'aquesta secció es realitzen mitjançant la cua de treballs per evitar situacions de bloqueig durant la seva execució. La [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cua de treballs] és responsable del processament i és fonamental que el script de manteniment runJobs.php tingui una capacitat adequada (vegeu també el paràmetre de configuració $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "Alliberament d'entitats obsoletes", + "smw-admin-outdateddisposal-intro": "Algunes activitats (un canvi de tipus de propietat, l'eliminació de pàgines wiki o la correcció de valors erronis) resultarà en [https://www.semantic-mediawiki.org/wiki/Outdated_entities entitats obsoletes] i se suggereix suprimir-les periòdicament per tal d'alliberar l'espai de taula associat.", + "smw-admin-outdateddisposal-active": "S'ha posat en cua una tasca d'alliberament d'entitats obsoletes.", + "smw-admin-outdateddisposal-button": "Programa una eliminació", + "smw-admin-feature-disabled": "S'ha inhabilitat aquesta funcionalitat en el wiki, consulteu la pàgina d'ajuda dels paràmetres de configuració o contacteu amb l'administrador del sistema.", + "smw-admin-propertystatistics-title": "Reconstrucció de les estadístiques de les propietats", + "smw-admin-propertystatistics-active": "S'ha programat una tasca de reconstrucció de les estadístiques.", + "smw-admin-propertystatistics-button": "Programa la reconstrucció de les estadístiques", + "smw-admin-fulltext-title": "Reconstrucció de la cerca en text complet", + "smw-admin-fulltext-intro": "Reconstrueix l'índex de cerca de les taules de propietats amb un tipus de dades [https://www.semantic-mediawiki.org/wiki/Full-text cerca de text complet] habilitat. Els canvis a les regles d'indexació (separadors modificats, noves arrels, etc.) i/o taules noves o afegides necessiten que es torni a executar la tasca de nou.", + "smw-admin-fulltext-active": "S'ha programat una tasca de reconstrucció de cerca de text complet.", + "smw-admin-fulltext-button": "Programa una reconstrucció de text sencer", + "smw-admin-support": "Com obtenir assistència", + "smw-admin-supportdocu": "Es proporcionen diferents recursos per ajudar-vos en cas de problemes:", + "smw-admin-installfile": "Si us trobeu amb problemes amb la vostra instal·lació, comenceu comprovant les instruccions del fitxer INSTALL i la pàgina d'instal·lació.", + "smw-admin-smwhomepage": "Podeu trobar la documentació d'usuari completa del Semantic MediaWiki a semantic-mediawiki.org.", + "smw-admin-bugsreport": "Els errors es poden informar al issue tracker (localitzador de problemes), la pàgina reporting bugs (informar d'errors) proporciona algunes indicacions sobre com escriure un informe de problema efectiu.", + "smw-admin-questions": "Si teniu més preguntes o suggeriments, uniu-vos a la discussió a la llista de distribució de correus d'usuaris Semantic MediaWiki.", + "smw-admin-other-functions": "Altres funcions", + "smw-admin-statistics-extra": "Funcions d'estadístiques", + "smw-admin-statistics": "Estadístiques", + "smw-admin-supplementary-section-title": "Funcions suplementàries", + "smw-admin-supplementary-section-subtitle": "Funcions centrals implementades", + "smw-admin-supplementary-section-intro": "Aquesta secció proporciona funcions addicionals més enllà de l'abast de les tasques de manteniment i és possible que algunes de les funcions llistades (vegeu la [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions documentació]) estiguin restringides o no disponibles i, per tant, siguin inaccessibles en aquest wiki.", + "smw-admin-supplementary-settings-title": "Configuració i paràmetres", + "smw-admin-supplementary-settings-intro": "$1 mostra els paràmetres que defineixen el comportament de Semantic MediaWiki", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Estadístiques operacionals", + "smw-admin-supplementary-operational-statistics-short-title": "estadístiques operacionals", + "smw-admin-supplementary-operational-statistics-intro": "Mostra un conjunt estès d'estadístiques de $1", + "smw-admin-supplementary-idlookup-title": "Cerca i alliberament d'entitats", + "smw-admin-supplementary-idlookup-short-title": "consulta i rebuig d'entitats", + "smw-admin-supplementary-idlookup-intro": "Implementa una funció simple de $1", + "smw-admin-supplementary-duplookup-title": "Cerca d’entitats duplicades", + "smw-admin-supplementary-duplookup-intro": "$1 per a trobar entitats que estan categoritzades com a duplicades per a la taula seleccionada", + "smw-admin-supplementary-duplookup-docu": "En aquesta pàgina es mostren les entrades de les taules seleccionades que s'han classificat com a [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities duplicades]. Les entrades duplicades només haurien de produir-se (si s'escau) en rares ocasions, potencialment causades per una actualització finalitzada o una transacció de retrocés sense èxit.", + "smw-admin-supplementary-operational-statistics-cache-title": "Estadístiques de la memòria cau", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 mostra un conjunt seleccionat d'estadístiques relacionades amb la memòria cau", + "smw-admin-supplementary-operational-table-statistics-title": "Estadístiques de taula", + "smw-admin-supplementary-operational-table-statistics-short-title": "estadístiques de taula", + "smw-admin-supplementary-operational-table-statistics-intro": "Genera $1 per a un conjunt seleccionat de taules", + "smw-admin-supplementary-operational-table-statistics-explain": "La secció conté estadístiques de taula seleccionades per a ajudar als administradors i als curadors de dades a prendre decisions informades sobre l'estat del rerefons i del motor d'emmagatzematge.", + "smw-admin-supplementary-operational-table-statistics-legend": "La llegenda descriu algunes de les claus utilitzades per a les estadístiques de taula i inclou:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count nombre total de files en una taula", + "smw-admin-supplementary-elastic-version-info": "Versió", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 mostra detalls de paràmetres i estadístiques d'indexació", + "smw-admin-supplementary-elastic-docu": "Aquesta pàgina conté informació de configuració, correspondència, salut i estadístiques d'indexació relacionades amb un clúster d'Elasticsearch que està connectat a Semantic MediaWiki i el seu [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Funcions permeses", + "smw-admin-supplementary-elastic-settings-title": "Paràmetres (índexs)", + "smw-admin-supplementary-elastic-settings-intro": "$1 utilitzat per Elasticsearch per gestionar els índexs de Semantic MediaWiki", + "smw-admin-supplementary-elastic-mappings-title": "Correspondències", + "smw-admin-supplementary-elastic-mappings-intro": "$1 per llistar índex i correspondències de camps", + "smw-admin-supplementary-elastic-mappings-docu": "Aquesta pàgina conté detalls de la correspondència de camps que s'utilitzen amb els índexs actuals. Es recomana monitorar les correspondències en connexió amb index.mapping.total_fields.limit (que especifica el nombre màxim de camps permesos en un índex).", + "smw-admin-supplementary-elastic-mappings-summary": "Resum", + "smw-admin-supplementary-elastic-mappings-fields": "Correspondències de camp", + "smw-admin-supplementary-elastic-nodes-title": "Nodes", + "smw-admin-supplementary-elastic-nodes-intro": "$1 mostra les estadístiques de node", + "smw-admin-supplementary-elastic-indices-title": "Índexs", + "smw-admin-supplementary-elastic-indices-intro": "$1 proporciona un resum dels índexs disponibles i llurs estadístiques", + "smw-admin-supplementary-elastic-statistics-title": "Estadístiques", + "smw-admin-supplementary-elastic-statistics-intro": "$1 mostra estadístiques de nivell d'índex", + "smw-admin-supplementary-elastic-status-replication": "Estat de replicació", + "smw-admin-supplementary-elastic-status-last-active-replication": "Darrera replicació activa: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Interval de refrescament: $1", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Replicació bloquejada: $1 (reconstrucció en procés)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Monitoratge de replicació (activa): $1", + "smw-admin-supplementary-elastic-replication-header-title": "Estat de replicació", + "smw-admin-supplementary-elastic-replication-function-title": "Replicació", + "smw-admin-supplementary-elastic-replication-intro": "$1 mostra informació de les replicacions que han fallat", + "smw-admin-supplementary-elastic-replication-files": "Fitxers", + "smw-admin-supplementary-elastic-replication-pages": "Pàgines", + "smw-admin-supplementary-elastic-endpoints": "Extrems", + "smw-admin-supplementary-elastic-config": "Configuracions", + "smw-list-count": "La llista conté $1 {{PLURAL:$1|entrada|entrades}}.", + "smw-property-label-similarity-title": "Informe de similitud d'etiquetes de propietat", + "smw-property-label-similarity-intro": "$1 calcula les similituds de les etiquetes de propietats existents", + "smw-property-label-similarity-threshold": "Llindar:", + "smw-property-label-similarity-type": "Mostra l'ID de tipus", + "smw-property-label-similarity-noresult": "No s'han trobat resultats per a les opcions seleccionades.", + "smw-admin-operational-statistics": "Aquesta pàgina conté estadístiques operacionals recollides a partir de funcions relacionades amb Semantic MediaWiki. Es pot trobar una llista estesa d'estadístiques específiques del wiki [[Special:Statistics|aquí]].", + "smw_adminlinks_datastructure": "Estructura de dades", + "smw_adminlinks_displayingdata": "Visualització de les dades", + "smw_adminlinks_inlinequerieshelp": "Ajuda de les consultes en línia", + "smw-page-indicator-usage-count": "[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count Recompte d'ús] estimat: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "Propietat definida {{PLURAL:$1|per l'usuari|pel sistema}}", + "smw-property-indicator-last-count-update": "Recompte d'ús estimat\nDarrera actualització: $1", + "smw-concept-indicator-cache-update": "Recompte de la memòria cau\nDarrera actualització: $1", + "smw-createproperty-isproperty": "És una propietat del tipus $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|El valor permès per a aquestapropietat és|Els valors permesos per a aquestes propietats són}}:", + "smw-paramdesc-category-delim": "El delimitador", + "smw-paramdesc-category-template": "Una plantilla per donar format als elements amb", + "smw-paramdesc-category-userparam": "Un paràmetre per passar a la plantilla", + "smw-info-par-message": "Missatge per mostrar.", + "smw-info-par-icon": "La icona que es mostrarà, o bé «info», o bé «avís».", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Opcions generals", + "prefs-extended-search-options": "Cerca estesa", + "prefs-ask-options": "Cerca semàntica", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] i extensions relacionades proporcionen personalització individual per a un grup de característiques i funcions seleccionades. Hi ha una llista de paràmetres individuals amb la seva descripció i característiques a la següent [https://www.semantic-mediawiki.org/wiki/Help:User_preferences pàgina d'ajuda].", + "smw-prefs-ask-options-tooltip-display": "Mostra el text del paràmetre com a descripció d'informació a la pàgina especial #ask [[Special:Ask|query builder]].", + "smw-prefs-ask-options-compact-view-basic": "Habilita la vista compacta bàsica", + "smw-prefs-help-ask-options-compact-view-basic": "Si s'habilita, mostra un conjunt reduït d'enllaços en la vista compacta d'Special:Ask.", + "smw-prefs-general-options-time-correction": "Habilita la correcció horària per a les pàgines especials que utilitzin la preferència de [[Special:Preferences#mw-prefsection-rendering|decalatge horari]] local", + "smw-prefs-general-options-jobqueue-watchlist": "Mostra la llista de seguiment de la cua de tasques a la meva barra personal", + "smw-prefs-general-options-disable-editpage-info": "Inhabilita el text introductori en la pàgina d'edició", + "smw-prefs-general-options-disable-search-info": "Inhabilita la informació d'ajuda a la sintaxi en la pàgina estàndard de cerca", + "smw-prefs-general-options-suggester-textinput": "Habilita l'assistència d'entrada per a les entitats semàntiques", + "smw-ui-tooltip-title-property": "Propietat", + "smw-ui-tooltip-title-quantity": "Conversió d'unitat", + "smw-ui-tooltip-title-info": "Informació", + "smw-ui-tooltip-title-service": "Enllaços de servei", + "smw-ui-tooltip-title-warning": "Avís", + "smw-ui-tooltip-title-error": "Error", + "smw-ui-tooltip-title-parameter": "Paràmetre", + "smw-ui-tooltip-title-event": "Esdeveniment", + "smw-ui-tooltip-title-note": "Nota", + "smw-ui-tooltip-title-legend": "Llegenda", + "smw-ui-tooltip-title-reference": "Referència", + "smw_unknowntype": "El tipus «$1» d'aquesta propietat no és vàlid", + "smw-concept-cache-text": "El concepte té un total {{PLURAL:$1|d'$1 pàgina|de $1 pàgines}} i es va actualitzar per darrera vegada el $3, $2.", + "smw_concept_header": "Pàgines del concepte \"$1\"", + "smw_conceptarticlecount": "Es {{PLURAL:$1|mostra|mostren}} a continuació $1 {{PLURAL:$1|pàgina|pàgines}}.", + "smw-qp-empty-data": "No s'han pogut mostrar les dades sol·licitades per manca de criteris de selecció suficients.", + "right-smw-admin": "Accedir a les tasques d'administració (Semantic MediaWiki)", + "right-smw-patternedit": "Modificar l'accés per a mantenir les expressions regulars i patrons permesos (Semantic MediaWiki)", + "right-smw-pageedit": "Modificar l'accés per a pàgines anotades amb Is edit protected (Semantic MediaWiki)", + "restriction-level-smw-pageedit": "protegit (només usuaris elegibles)", + "action-smw-patternedit": "modificar les expressions regulars que utilitza Semantic MediaWiki", + "action-smw-pageedit": "modificar pàgines anotades amb Is edit protected (Semantic MediaWiki)", + "group-smwadministrator": "Administradors (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|administrador|administratora}} (Semantic MediaWiki)", + "grouppage-smwadministrator": "{{ns:project}}:Administrators (Semantic MediaWiki)", + "group-smwcurator": "Curadors (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|conservador (Semantic MediaWiki)|conservadora (Semantic MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:Conservadors (Semantic MediaWiki)", + "group-smweditor": "Editors (Semantic MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|editor (Semantic MediaWiki)|editora (Semantic MediaWiki)}}", + "action-smw-admin": "accedir a les tasques d'administració de Semantic MediaWiki", + "action-smw-ruleedit": "editar les pàgines de regla (Semantic MediaWiki)", + "smw-property-predefined-default": "\"$1\" és una propietat predefinida del tipus $2.", + "smw-property-predefined-common": "Aquesta propietat està predesplegada (també coneguda com a [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propietat especial]) i ve amb privilegis administratius addicionals, però pot utilitzar-se com qualsevol altra [https://www.semantic-mediawiki.org/wiki/Property propietat definida per l'usuari].", + "smw-property-predefined-ask": "«$1» és una propietat predefinida que representa metainformació (en la forma de [https://www.semantic-mediawiki.org/wiki/Subobject subobjectes]) sobre consultes individuals i està proporcionada per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksi": "«$1» és una propietat predefinida que recull el nombre de condicions que s'utilitzen en una consulta i està proporcionada per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askde": "«$1» és una propietat predefinida que informa de la profunditat d'una consulta i està proporcionada per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askde": "És un valor numèric computat en la base de la subconsulta niuada, cadenes de propietat, i elements de descripció disponibles amb l'execució d'una consulta que és restringida pel paràmetre de configuració [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-property-predefined-long-askpa": "És part d'una col·lecció de propietats que especifiquen un [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler perfil de consulta].", + "smw-sp-properties-docu": "Aquesta pàgina llista les [https://www.semantic-mediawiki.org/wiki/Property propietats] i el seu recompte d'ús en el wiki. Per a una estadística al dia, és recomanable córrer l'script de manteniment [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics rebuildPropertyStatistics] de forma regular. Per a una visió diferenciada, vegeu les pàgines especials de les [[Special:UnusedProperties|propietats no utilitzades]] o les [[Special:WantedProperties|propietats per definir]].", + "smw-sp-properties-cache-info": "Les dades llistades s'han recuperat de la [https://www.semantic-mediawiki.org/wiki/Caching memòria cau], i s'han actualitzat el $1.", + "smw-sp-properties-header-label": "Llista de propietats", + "smw-admin-settings-docu": "Mostra una llista de tots els paràmetres per defecte i localitzats que són rellevants per a un entorn de Semantic MediaWiki. Per a més detalls sobre cada paràmetre en particular, consulteu la pàgina d'ajuda de la [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuració].", + "smw-sp-admin-settings-button": "Genera la llista de paràmetres", + "smw-admin-idlookup-title": "Consulta", + "smw-admin-idlookup-docu": "Aquesta secció mostra els detalls tècnics d'una entitat individual (pàgina wiki, subobjecte, propietat, etc.) a Semantic MediaWiki. L'entrada pot ser un ID numèric o un valor de cadena per coincidir amb el camp de cerca rellevant, tot i que qualsevol referència ID està relacionada amb Semantic MediaWiki i no la pàgina de MediaWiki o l'ID de la revisió.", + "smw-admin-iddispose-title": "Alliberament", + "smw-admin-iddispose-docu": "Caldria notar que l'operació d'alliberament no està restringida i que suprimirà l'entitat del motor d'emmagatzematge juntament amb les seves referències en les taules pendents si es confirma. Realitzeu la tasca '''amb compte''' i només després de consultar la [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal documentació].", + "smw-admin-iddispose-done": "L'ID «$1» s'ha suprimit del servidor d'emmagatzematge.", + "smw-admin-iddispose-references": "L'ID «$1» {{PLURAL:$2|no té cap|té com a mínim una}} referència activa:", + "smw-admin-iddispose-references-multiple": "Llista de coincidències amb com a mínim un registre de referència actiu.", + "smw-admin-iddispose-no-references": "La cerca no ha pogut trobar «$1» a cap entrada de taula.", + "smw-admin-idlookup-input": "Cerca:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Resum", + "smw-admin-tab-notices": "Avisos d’obsolescència", + "smw-admin-tab-maintenance": "Manteniment", + "smw-admin-tab-supplement": "Funcions suplementàries", + "smw-admin-tab-registry": "Registre", + "smw-admin-tab-alerts": "Alertes", + "smw-admin-alerts-tab-deprecationnotices": "Avisos d'obsolescència", + "smw-admin-alerts-tab-maintenancealerts": "Alertes de manteniment", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Optimització de taules", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Entitats desfasades", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Entitats no vàlids", + "smw-admin-deprecation-notice-section": "Semantic MediaWiki", + "smw-admin-configutation-tab-settings": "Paràmetres", + "smw-admin-configutation-tab-namespaces": "Espais de nom", + "smw-admin-configutation-tab-schematypes": "Tipus d'esquema", + "smw-admin-maintenance-tab-tasks": "Tasques", + "smw-admin-maintenance-tab-scripts": "Scripts de manteniment", + "smw-admin-maintenance-no-description": "Cap descripció.", + "smw-admin-maintenance-script-section-title": "Llista d'scripts de manteniment disponibles", + "smw-admin-maintenance-script-section-intro": "Els scripts de manteniment següents necessiten permisos d'administrador i accés a la línia d'ordres per tal de poder executar-los.", + "smw-admin-maintenance-script-description-dumprdf": "Export RDF dels triples existents.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Cerca les entitats que no són a Elasticsearch (només per a instal·lacions que utilitzen ElasticStore) i programeu les tasques d'actualització apropiades.", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Reconstrueix les estadístiques d'ús per a totes les entitats de propietat.", + "smw-admin-maintenance-script-description-removeduplicateentities": "Suprimeix les entitats duplicades que es troben en les taules seleccionades que no tenen cap referència activa.", + "smw-admin-maintenance-script-description-purgeentitycache": "Purga les entrades cau de les entitats conegudes i llurs dades associades.", + "smw-admin-maintenance-script-section-update": "Scripts d'actualització", + "smw-admin-maintenance-script-section-rebuild": "Scripts de reconstrucció", + "smw-livepreview-loading": "S'està carregant…", + "smw-sp-searchbyproperty-description": "Aquesta pàgina proporciona una simple [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces interfície de navegació] per trobar entitats descrites per una propietat i un valor anomenat. Altres interfícies de cerca disponibles inclouen la [[Special:PageProperty|cerca de propietats de pàgina]] i el [[Special:Ask|generador de consultes ask]].", + "smw-sp-searchbyproperty-resultlist-header": "Llista de resultats", + "smw-sp-searchbyproperty-nonvaluequery": "Una llista de valors que tenen la propietat «$1» assignada.", + "smw-sp-searchbyproperty-valuequery": "Una llista de pàgines que tenen la propietat «$1» amb el valor «$2» anotat.", + "smw-datavalue-number-textnotallowed": "«$1» no pot assignar-se a un tipus de nombre declarat amb el valor $2.", + "smw-datavalue-number-nullnotallowed": "«$1» ha tornat «NULL», que no és un nombre vàlid.", + "smw-editpage-annotation-enabled": "Aquesta pàgina permet anotacions semàntiques en el text (p. ex., «[[Is specified as::World Heritage Site]]» (es considera com patrimoni de la Humanitat)) per a crear contingut estructurat i consultable proporcionat per Semantic MediaWiki. Per a una descripció detallada de com utilitzar les anotacions o la funció d'anàlisi #ask consulteu les pàgines d'ajuda [https://www.semantic-mediawiki.org/wiki/Help:Getting_started Primers passos], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation Anotació en el text] o [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries Consultes en el text].", + "smw-editpage-annotation-disabled": "Aquesta pàgina no permet incloure anotacions semàntiques en el text per restriccions de l'espai de noms. Teniu més detalls de com habilitar l'espai de noms a la pàgina d'ajuda de la [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuració].", + "smw-editpage-property-annotation-enabled": "Aquesta propietat pot ampliar-se mitjançant anotacions semàntiques per a especificar un tipus de dades (p. ex.,«[[Té tipus::Pàgina]]») o d'altres declaracions d'aquesta mena (p. ex.,«[[Subpropietat de::dc:date]]»). Per a una descripció sobre com augmentar aquesta pàgina, consulteu les pàgines d'ajuda de [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration Declaració d'una propietat] o [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes Llista de tipus de dades].", + "smw-editpage-property-annotation-disabled": "Aquesta propietat no pot ampliar-se amb una anotació de tipus de dades (p. ex., «[[Té tipus::Pàgina]]») perquè ja està predefinida (consulteu la pàgina d'ajuda de les [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propietats especials] per a més informació).", + "smw-editpage-concept-annotation-enabled": "Aquest concepte pot ser ampliat fent servir la funció d'anàlisi #concept. Per a una descripció de com utilitzar-la, consulteu la pàgina d'ajuda sobre els [https://www.semantic-mediawiki.org/wiki/Help:Concepts conceptes].", + "smw-search-help-structured": "Cerques estructurades:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] (comme [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context context filtrat])\n\n*[[Has text::~*lorem*]] (avec un [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context context de cerca])", + "smw-search-help-proximity": "Cerques de proximitat (una propietat que sigui desconeguda, '''només''' disponible per a aquells sistemes que proporcionen integració de cerca de text complet):\n\n* [[in:lorem ipsum]] (cerca a tots els documents «lorem» i «ipsum» que han estat indexats)\n\n* [[phrase:lorem ipsum]] (troba la coincidència «lorem ipsum» com a frase)", + "smw-search-input": "Entrada i cerca", + "smw-search-syntax": "Sintaxi", + "smw-search-profile": "Estès", + "smw-search-profile-tooltip": "Funcions de cerca en connexió amb Semantic MediaWiki", + "smw-search-profile-sort-best": "Millor coincidència", + "smw-search-profile-sort-recent": "Més recent", + "smw-search-profile-sort-title": "Títol", + "smw-search-profile-extended-help-intro": "El [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile perfil estès] Special:Search proporciona accés a les funcions de cerca específiques de Semantic MediaWiki i del seu motor de consulta.", + "smw-search-profile-extended-help-sort": "Especifica una preferència d'ordenació per a la mostra de resultats amb:", + "smw-search-profile-extended-help-sort-title": "* «Títol» fent servir el títol de la pàgina (o el títol mostrat) com a criteri d'ordenació", + "smw-search-profile-extended-help-sort-recent": "* «Més recent» mostrà les entrades modificades més recentment abans (les entitats que són subobjectes se suprimiran perquè no estan anotades amb una[[Property:Modification date|data de modificació]])", + "smw-search-profile-extended-help-form": "Els formularis es proporcionen (sempre que es mantinguin al dia) per contenir correspondències de casos d'ús específics tot exposant diferents propietats i camps de valor per ajustar els processos d'entrada i facilitar als usuaris procedir amb la sol·licitud de cerca (vegeu $1).", + "smw-search-profile-extended-help-namespace": "El quadre de selecció d'espai de noms s'amagarà tan aviat com se seleccioni el formulari, però es pot fer visible amb l'ajuda del botó «mostra/amaga».", + "smw-search-profile-extended-help-search-syntax": "El camp d'entrada de cerca permet l'ús de sintaxi #ask per definir un context de cerca específic de Semantic MediaWiki. Les expressions útils inclouen:", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: per no fer correspondència amb cap entitat que inclou \"...\"", + "smw-search-profile-extended-help-search-syntax-prefix": "* Prefixos personalitzats addicionals són disponibles i definits com: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* Algunes expressions són reservades, com ara: $1", + "smw-search-profile-extended-help-search-syntax-note": "«Algunes de les operacions llistades només són útils en connexió amb un índex de text complet habilitat o bé amb l'ElasticStore.»", + "smw-search-profile-extended-help-query": "S'ha utilitzat $1 com a consulta.", + "smw-search-profile-extended-help-query-link": "(Per a més detalls, utilitzeu $1).", + "smw-search-profile-extended-help-find-forms": "formularis disponibles", + "smw-search-profile-extended-section-sort": "Ordena per", + "smw-search-profile-extended-section-form": "Formularis", + "smw-search-profile-extended-section-search-syntax": "Entrada de cerca", + "smw-search-profile-extended-section-namespace": "Espai de noms", + "smw-search-profile-extended-section-query": "Consulta", + "smw-search-profile-link-caption-query": "constructor de consultes", + "smw-search-show": "Mostra", + "smw-search-hide": "Amaga", + "log-name-smw": "Registre de Semantic MediaWiki", + "log-show-hide-smw": "Registre de Semantic MediaWiki $1", + "logeventslist-smw-log": "Registre de Semantic MediaWiki", + "log-description-smw": "Activitats dels [https://www.semantic-mediawiki.org/wiki/Help:Logging tipus d'esdeveniments habilitats] que han estat informats per Semantic MediaWiki i els seus components.", + "logentry-smw-maintenance": "Esdeveniments relacionats amb el manteniment emesos per Semantic MediaWiki", + "smw-datavalue-import-unknown-namespace": "L'espai de noms d'importació «$1» és desconegut. Assegureu-vos que els detalls d'importació OWL són disponibles a través de [[MediaWiki:Smw import $1]]", + "smw-datavalue-import-missing-namespace-uri": "No s'ha pogut trobat un URI de l'espai de noms «$1» en [[MediaWiki:Smw import $1|la importació de $1]].", + "smw-datavalue-import-missing-type": "No s'ha trobat definició de tipus per a «$1» a la [[MediaWiki:Smw import $2|importació de $2]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|importació de $1]]", + "smw-datavalue-import-invalid-value": "«$1» no és format vàlid i s'espera que consisteixi de «espai de noms»:«identificador» (p. ex. «foaf:name»).", + "smw-datavalue-import-invalid-format": "S'esperava que la cadena «$1» estigués dividida en quatre parts però no s'ha entès el format.", + "smw-property-predefined-impo": "«$1» és una propietat predefinida que descriu una relació amb un [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary vocabulari importat] i està proporcionada per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-type": "«$1» és una propietat predefinida que descriu el [[Special:Types|tipus de dades]] d'una propietat i està proporcionada per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-sobj": "«$1» és una propietat predefinida que representa un constructe de [https://www.semantic-mediawiki.org/wiki/Help:Container contenidor] i està proporcionada per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-sobj": "El contenidor permet acumular assignacions de propietat-valor similars al d'una pàgina wiki normal però en un espai d'entitat diferent mentre que està enllaçat al subjecte que l'inclou.", + "smw-property-predefined-errp": "«$1» és una propietat predefinida per a resseguir errors d'entrada de valors d'anotacions irregulars i està proporcionada per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-errp": "En la majoria dels casos és causat per un desajustament de tipus o una restricció [[Property:Allows value|value]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value «$1»] és una propietat predefinida que defineix una llista de valors permesos per tal de restringir les assignacions de valor d'una propietat i està proporcionada per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-datavalue-property-restricted-annotation-use": "La propietat «$1» té una àrea d'aplicació restringida i els usuaris no poden utilitzar-la com a propietat d'anotació.", + "smw-datavalue-property-restricted-declarative-use": "La propietat «$1» és una propietat declarativa i només pot utilitzar-se en una pàgina de propietat o categoria.", + "smw-datavalue-property-create-restriction": "La propietat «$1» no existeix i l'usuari no té el permís «$2» (consulteu [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode el mode d'autoritat]) per crear o anotar valors amb una propietat no aprovada.", + "smw-datavalue-property-invalid-character": "«$1» conté un caràcter «$2» llistat com a part d'una etiqueta de propietat i que s'ha classificat llavors com a no vàlid.", + "smw-datavalue-property-invalid-chain": "L'ús de «$1» com a cadena de propietat no està permès durant el procés d'anotació.", + "smw-datavalue-restricted-use": "El valor de dades s'ha marcat per a ús restringit «$1».", + "smw-datavalue-invalid-number": "«$1» no es pot interpretar com un nombre.", + "smw-query-condition-circular": "S'ha detectat una possible condició circular a «$1».", + "smw-query-condition-empty": "La descripció de la consulta té una condició en blanc.", + "smw-types-list": "Llista de tipus de dades", + "smw-types-default": "«$1» és un tipus de dades integrat.", + "smw-types-help": "Es poden trobar més informació i exemples a la [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 pàgina d'ajuda].", + "smw-type-anu": "«$1» és una variant del tipus de dades [[Special:Types/URL|URL]] i s'utilitza sobretot per a una declaració d'exportació de ''owl:AnnotationProperty''.", + "smw-type-boo": "«$1» és un tipus de dades bàsic per descriure un valor de veritable/fals.", + "smw-type-cod": "«$1» és una variant del tipus de dades [[Special:Types/Text|Text]] per utilitzar-lo amb texts tècnics de longitud arbitrària, com ara llistats de codi font.", + "smw-type-geo": "«$1» és un tipus de dades que descriu ubicacions geogràfiques i que necessita l'extensió [https://www.semantic-mediawiki.org/wiki/Extension:Maps Maps] per proporcionar funcionalitat addicional.", + "smw-type-tel": "«$1» és un tipus de dades especial per a descriure números de telèfon internacionals d'acord amb el RFC 3966.", + "smw-type-txt": "«$1» és un tipus de dades bàsic per descriure cadenes de longitud arbitrària.", + "smw-type-dat": "«$1» és un tipus de dades bàsic per representar punts en el temps en un format unificat.", + "smw-type-ema": "«$1» és un tipus de dades especial que representa una adreça electrònica.", + "smw-type-tem": "«$1» és un tipus de dades numèric especial que representa una temperatura.", + "smw-type-qty": "«$1» és un tipus de dades per descriure quantitats amb una representació numèrica i una unitat de mesura.", + "smw-type-rec": "«$1» és un tipus de dades de contenidor que especifica una llista de propietats amb tipus en un ordre fix.", + "smw-type-extra-tem": "L'esquema de conversió inclou unitats permeses, com ara Kelvin, Celsius, Fahrenheit i Rankine.", + "smw-type-tab-properties": "Propietats", + "smw-type-tab-types": "Tipus", + "smw-type-tab-type-ids": "IDs de tipus", + "smw-type-tab-errors": "Errors", + "smw-type-primitive": "Bàsic", + "smw-type-contextual": "Contextual", + "smw-type-compound": "Compost", + "smw-type-container": "Contenidor", + "smw-type-no-group": "Sense classificar", + "smw-special-pageproperty-description": "Aquesta pàgina proporciona una interfície de navegació por trobar tots els valors d'una propietat i una pàgina donada. Altres interfícies de cerca disponibles inclouen la [[Special:SearchByProperty|cerca de propietat]] i el [[Special:Ask|constructor de consultes]].", + "smw-property-predefined-errc": "«$1» és una propietat predefinida proporcionada per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] i que representa errors que van aparèixer en connexió amb anotacions de valors o processament d'entrades no adequats.", + "smw-property-predefined-long-errc": "Els errors es recullen en un [https://www.semantic-mediawiki.org/wiki/Help:Container contenidor] que pot incloure una referència a la propietat que ha causat la discrepància.", + "smw-property-predefined-errt": "«$1» és una propietat predefinida que conté una descripció textual d'un error i està proporcionada per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-subobject-parser-invalid-naming-scheme": "Un subobjecte definit per l'usuari que conté un esquema de noms no vàlid. La notació de punt ($1) utilitzada en els primers cinc caràcters està reservada per a extensions. Podeu definir un [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier identificador amb nom].", + "smw-datavalue-record-invalid-property-declaration": "La definició del registre conté la propietat «$1» que és declarada ella mateixa com a de tipus registre, i això no és permès.", + "smw-property-predefined-mime": "«$1» és una propietat predefinida que descriu el tipus MIME d'un fitxer carregat i està proporcionada per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-unit": "Una llista separada per comes permet descriure unitats o formats a utilitzar per a la visualització.", + "smw-datavalue-monolingual-dataitem-missing": "Manca un element esperat per a construir un valor compost monolingüe.", + "smw-datavalue-languagecode-missing": "Per a l'anotació «$1», l'analitzador no ha pogut determinar el codi de la llengua (p. ex., «foo@en»).", + "smw-datavalue-languagecode-invalid": "No s'ha reconegut «$1» com a codi de llengua permès.", + "smw-property-predefined-lcode": "«$1» una propietat predefinida que representa un codi de llengua formatat d'acord amb BCP47 i està proporcionada per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] Temps d'anàlisi de l'anotació en línia", + "smw-limitreport-intext-postproctime": "[SMW] durada de postprocessament", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|segon|segons}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|segon|segons}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Temps d'actualització de l'emmagatzematge (en la purga de la pàgina)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|segon|segons}}", + "smw_allows_pattern": "S'espera que aquesta pàgina contingui una llista de referències (seguit per unes [https://ca.wikipedia.org/wiki/Expressi%C3%B3_regular expressions regulars]) que seran disponibles per a la propietat [[Property:Allows pattern|Permet patró]]. Per editar la pàgina cal el permís smw-patternedit.", + "smw-datavalue-allows-pattern-mismatch": "S'ha classificat «$1» com a no vàlid per l'expressió regular «$2».", + "smw-datavalue-allows-pattern-reference-unknown": "La referència de patró «$1» no ha pogut coincidir amb una entrada en [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "La referència de llista «$1» no correspon a una pàgina de [[MediaWiki:Smw allows list $1]].", + "smw-datavalue-allows-value-list-missing-marker": "Al contingut de la llista «$1» hi manquen elements amb un marcador de llista *.", + "smw-datavalue-feature-not-supported": "La característica «$1» no és compatible amb el wiki o bé se n'ha inhabilitat.", + "smw-property-predefined-long-pvuc": "La unicitat s'estableix quan dos valors no són iguals en llur representació literal. Llavors qualsevol violació d'aquesta restricció es categoritzarà com error.", + "smw-datavalue-constraint-uniqueness-violation": "La propietat «$1» només permet assignacions de valor únic i «$2» ja estava anotada en el subjecte «$3».", + "smw-datavalue-constraint-uniqueness-violation-isknown": "La propietat «$1» només permet anotacions de valor úniques. «$2» ja conté un valor assignat. «$3» viola la restricció d'unicitat.", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "La restricció allowed_namespaces requereix un tipus de pàgina.", + "smw-constraint-schema-category-invalid-type": "L'esquema anotat «$1» no és vàlid per a una categoria. Li cal un tipus «$2».", + "smw-constraint-schema-property-invalid-type": "L'esquema anotat «$1» no és vàlid per a una propietat. Li cal un tipus «$2».", + "smw-constraint-error-allows-value-list": "«$1» no és a la llista ($2) de [[Property:Allows value|valors permesos]] de la propietat «$3».", + "smw-datavalue-time-invalid-offset-zone-usage": "«$1» conté un decalatge i un fus horari no permesos.", + "smw-datavalue-time-invalid-values": "El valor «$1» conté informació no interpretable en la forma de «$2».", + "smw-datavalue-time-invalid-date-components-common": "«$1» conté informació que no és interpretable.", + "smw-datavalue-time-invalid-date-components-dash": "«$1» conté un guió extrínsec o altres caràcters que no són vàlids per a interpretar una data.", + "smw-datavalue-time-invalid-date-components-empty": "«$1» conté alguns components buits.", + "smw-datavalue-time-invalid-date-components-three": "«$1» conté més que no tres components necessaris per a la interpretació de les dates.", + "smw-datavalue-time-invalid-date-components-sequence": "«$1» conté una seqüència que no s'ha pogut interpretar amb una matriu de coincidències de components de dates.", + "smw-datavalue-time-invalid-ampm": "«$1» conté «$2» com element d'hora, que no és vàlid per a la convenció de 12 hores.", + "smw-datavalue-external-formatter-invalid-uri": "«$1» és un URL no vàlid.", + "smw-datavalue-external-identifier-formatter-missing": "A la propietat li manca una assignació d'[[Property:External formatter uri|«URI de formatador extern»]]", + "smw-datavalue-keyword-maximum-length": "La paraula clau ha excedit la longitud màxima de $1 {{PLURAL:$1|caràcter|caràcters}}.", + "smw-datavalue-parse-error": "El valor donat «$1» no s'ha entès.", + "smw-datavalue-propertylist-invalid-property-key": "La llista de propietats «$1» contenia una clau de propietat «$2» no vàlida.", + "smw-datavalue-type-invalid-typeuri": "El tipus «$1» no s'ha pogut transformar en una representació URI vàlida.", + "smw-datavalue-wikipage-missing-fragment-context": "No es pot utilitzar el valor d'entrada wikipage «$1» sense una pàgina de context.", + "smw-datavalue-wikipage-invalid-title": "El valor d'entrada de tipus pàgina «$1» conté caràcters no vàlids o és incomplet. Això pot causar resultats no esperats en una consulta o en el procés d'anotació.", + "smw-datavalue-wikipage-property-invalid-title": "La propietat «$1» (com a tipus de pàgina) amb un valor d'entrada «$2» conté caràcters no vàlids o és incomplet. Això pot causar resultats inesperats durant un procés de consulta o d'anotació.", + "smw-datavalue-wikipage-empty": "El valor d'entrada de pàgina wiki és buit (p. ex., [[SomeProperty::]], [[]]) i llavors no es pot utilitzar com a nom o part d'una condició de consulta.", + "smw-type-ref-rec": "«$1» és un tipus de [https://www.semantic-mediawiki.org/wiki/Container contenidor] que permet enregistrar informació addicional (p. ex., provinència de les dades) de l'assignació d'un valor.", + "smw-parser-invalid-json-format": "L'analitzador de JSON ha retornat amb «$1».", + "smw-property-preferred-label-language-combination-exists": "No es pot utilitzar «$1» com etiqueta preferida perquè la llengua «$2» ja està assignada a l'etiqueta «$3».", + "smw-clipboard-copy-link": "Copia l'enllaç al porta-retalls", + "smw-data-lookup": "S'estan recuperant les dades...", + "smw-data-lookup-with-wait": "S'està processant la sol·licitud i pot trigar una estona.", + "smw-no-data-available": "No hi ha cap dada disponible.", + "smw-property-req-violation-type": "La propietat conté tipus d'especificacions que entren en conflicte entre elles, que pot resultar en anotacions de valors no vàlids. S'espera que un usuari hi assigni un tipus apropiat.", + "smw-property-req-error-list": "La propietat conté els errors o avisos següents:", + "smw-property-req-violation-parent-type": "La propietat «$1» i la propietat pare assignada «$2» tenen tipus d'anotacions diferents.", + "smw-change-propagation-protection": "Es bloqueja la pàgina per tal de prevenir modificacions de dades accidentals mentre s'executa una actualització de la [https://www.semantic-mediawiki.org/wiki/Change_propagation propagació de canvis]. Aquest procés pot trigar una estona abans que es torni a desbloquejar la pàgina i depèn de la mida i de la freqüència del programador de la [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cua de tasques].", + "smw-category-invalid-value-assignment": "«$1» no és reconeguda com a categoria o anotació de valor vàlida.", + "protect-level-smw-pageedit": "Permet només usuaris amb permisos d'edició de pàgines (Semantic MediaWiki)", + "smw-edit-protection-disabled": "S'ha inhabilitat la protecció de modificació; per tant, «$1» no pot utilitzar-se per protegir pàgines d'entitat de modificacions no autoritzades.", + "smw-edit-protection-auto-update": "Semantic MediaWiki ha actualitzat l'estat de protecció d'acord amb la propietat «Té protecció de modificació».", + "smw-edit-protection-enabled": "Modifica protegit (Semantic MediaWiki)", + "smw-patternedit-protection": "Aquesta pàgina està protegida i només pot ser modificada per usuaris amb els [https://www.semantic-mediawiki.org/wiki/Help:Permissions permisos] smw-patternedit adequats.", + "smw-property-predefined-edip": "«$1» és una propietat predeterminada proporcionada per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] per a indicar si la modificació està protegida o no.", + "smw-property-predefined-long-edip": "Tot i que qualsevol usuaris pot afegir aquesta propietat al subjecte, només un usuari amb un permís dedicat pot modificar o revocar la protecció a una entitat després que s'hagi afegit.", + "smw-query-reference-link-label": "Referència de consulta", + "smw-format-datatable-emptytable": "No hi ha cap disponible a la taula", + "smw-format-datatable-info": "Es mostren les entrades_START_ a _END_ de _TOTAL_", + "smw-format-datatable-infoempty": "Es mostren 0 de 0 de 0 entrades", + "smw-format-datatable-infofiltered": "(filtrades d'un total de _MAX_ entrades)", + "smw-format-datatable-infothousands": ".", + "smw-format-datatable-lengthmenu": "Mostra _MENU_ entrades", + "smw-format-datatable-loadingrecords": "S'està carregant...", + "smw-format-datatable-processing": "S'està processant...", + "smw-format-datatable-search": "Cerca:", + "smw-format-datatable-zerorecords": "No s'ha trobat cap registre que concideixi", + "smw-format-datatable-first": "Primer", + "smw-format-datatable-last": "Últim", + "smw-format-datatable-next": "Següent", + "smw-format-datatable-previous": "Anterior", + "smw-format-datatable-sortascending": ": activa per ordenar la columna de forma ascendent", + "smw-format-datatable-sortdescending": ": activa per ordenar la columna de forma descendent", + "smw-format-datatable-toolbar-export": "Exporta", + "smw-format-list-other-fields-open": "(", + "smw-category-invalid-redirect-target": "La categoria «$1» conté un objectiu de redirecció no vàlid a un pàgina que no és un espai de noms de categoria.", + "smw-postproc-queryref": "Semantic MediaWiki està refrescant la pàgina actual d'acord amb la condició d'unes consultes de postprocessament obligatòries.", + "apihelp-smwinfo-summary": "Mòdul API per recuperar informació d'estadístiques de Semantic MediaWiki i d'altres metadades.", + "apihelp-ask-summary": "Mòdul API per consultar Semantic MediaWiki fent servir el llenguatge Ask.", + "apihelp-askargs-summary": "Mòdul API per fer consultes a Semantic MediaWiki utilitzant el llenguatge Ask com una llista de condicions, impressions i paràmetres.", + "apihelp-browsebyproperty-summary": "Mòdul API per recuperar informació d'una propietat o d'una llista de propietats.", + "apihelp-browsebysubject-summary": "Mòdul API per recuperar informació d'un tema.", + "apihelp-smwtask-summary": "Mòdul API per executar tasques relacionades amb Semantic MediaWiki (només per a ús intern, no per a ús públic).", + "apihelp-smwbrowse-summary": "Mòdul API per permetre les activitats de navegació de diferents tipus d'entitat a Semantic MediaWiki.", + "apihelp-ask-parameter-api-version": "Format de sortida:\n;2:Compatibilitat enrere fent servir {} per a la llista de resultats.\n;3:Format experimental que utilitza [] per a la llista de resultats.", + "apihelp-smwtask-param-task": "Defineix el tipus de tasca", + "smw-api-invalid-parameters": "Paràmetres no vàlids, «$1»", + "smw-parser-recursion-level-exceeded": "S'ha excedit el nivell de $1 recurrències durant el procés d'anàlisi. Se suggereix que es valida l'estructura de la plantilla o, si s'escau, que s'ajusti el paràmetre de configuració $maxRecursionDepth.", + "smw-property-page-list-count": "Es mostren $1 {{PLURAL:$1|pàgina que utilitza|pàgines que utilitzen}} aquesta propietat.", + "smw-property-page-list-search-count": "Es {{PLURAL:$1|mostra $1 pàgina que fa servir|mostren $1 pàgines que fan servir}} aquesta propietat amb una correspondència de valor «$2».", + "smw-property-reserved-category": "Categoria", + "smw-category": "Categoria", + "smw-datavalue-uri-invalid-scheme": "No s'ha llistat «$1» com un esquema URI vàlid.", + "smw-datavalue-uri-invalid-authority-path-component": "S'ha identificat que «$1» conté una autoritat «$2» o component de camí no vàlids.", + "smw-browse-property-group-title": "Grup de propietats", + "smw-browse-property-group-label": "Etiqueta del grup de propietats", + "smw-browse-property-group-description": "Descripció del grup de propietats", + "smw-filter": "Filtre", + "smw-section-expand": "Desplega la secció", + "smw-section-collapse": "Replega la secció", + "smw-ask-format-help-link": "Format [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Ajuda", + "smw-cheat-sheet": "Full de referència", + "smw-personal-jobqueue-watchlist": "Llista de seguiment de la cua de tasques", + "smw-property-predefined-label-skey": "Clau d'ordenació", + "smw-processing": "S’està processant…", + "smw-loading": "S’està carregant…", + "smw-fetching": "S’està recuperant…", + "smw-preparing": "S’està preparant…", + "smw-expand": "Amplia", + "smw-collapse": "Redueix", + "smw-copy": "Copia", + "smw-copy-clipboard-title": "Copia el contingut al portaretalls", + "smw-jsonview-expand-title": "Augmenta la visualització JSON", + "smw-jsonview-collapse-title": "Redueix la visualització JSON", + "smw-jsonview-search-label": "Cerca:", + "smw-redirect-target-unresolvable": "La destinació no es pot resoldre pel motiu «$1».", + "smw-types-title": "Tipus: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "No es permet canviar el model de contingut d'una [https://www.semantic-mediawiki.org/wiki/Help:Schema pàgina d'esquema].", + "smw-schema-namespace-edit-protection": "Aquesta pàgina està protegida i només pot ser modificada per usuaris amb els [https://www.semantic-mediawiki.org/wiki/Help:Permissions permisos] smw-schemaedit adequats.", + "smw-schema-error-title": "{{PLURAL:$1|Error|Errors}} de validació", + "smw-schema-error-schema": "L'esquema de validació «$1» ha trobat les inconsistències següents:", + "smw-schema-error-miscellaneous": "Error miscel·lani ($1)", + "smw-schema-error-validation-file-inaccessible": "El fitxer de validació «$1» no és accessible.", + "smw-schema-error-violation": "[«$1», «$2»]", + "smw-schema-error-type-missing": "Al contingut li manca un tipus per tal que sigui reconegut i usable a l'[https://www.semantic-mediawiki.org/wiki/Help:Schema espai de noms de l'esquema].", + "smw-schema-error-type-unknown": "El tipus «$1» no està registrat i llavors no pot utilitzar-se com a contingut a l'[https://www.semantic-mediawiki.org/wiki/Help:Schema espai de noms de l'esquema/smw].", + "smw-schema-error-json": "Error de JSON: «$1»", + "smw-schema-validation-schema-title": "Esquema JSON", + "smw-schema-summary-title": "Resum", + "smw-schema-title": "Esquema", + "smw-schema-usage": "Ús", + "smw-schema-type": "Tipus d'esquema", + "smw-schema-type-description": "Descripció del tipus", + "smw-schema-description": "Descripció de l'esquema", + "smw-schema-tag": "{{PLURAL:$1|Etiqueta|Etiquetes}}", + "smw-property-predefined-long-schema-tag": "Una etiqueta que identifica l'esquema de continguts o de característiques similars.", + "smw-ask-title-keyword-type": "Cerca per paraula clau", + "smw-ask-message-keyword-type": "Aquesta cerca coincideix amb la condició $1.", + "smw-remote-source-unavailable": "No es pot connectar a l'objectiu remot «$1».", + "smw-remote-source-disabled": "La font «$1» ha inhabilitat les sol·licituds remotes.", + "smw-remote-source-unmatched-id": "La font «$1» no coincideix amb la versió de Semantic MediaWiki que pot acceptar sol·licituds remotes.", + "smw-remote-request-note": "El resultat s’obté des de l’origen remot '''$1'''. És probable que el contingut generat inclogui informació que no és al wiki actual.", + "smw-remote-request-note-cached": "El resultat s’'''emmagatzema dins la memòria cau''' des de l’origen remot '''$1'''. És probable que el contingut generat inclogui informació que no és al wiki actual.", + "smw-parameter-missing": "Manca el paràmetre «$1».", + "smw-property-tab-usage": "Ús", + "smw-property-tab-profile-schema": "Esquema de perfil", + "smw-property-tab-redirects": "Sinònims", + "smw-property-tab-subproperties": "Subpropietats", + "smw-property-tab-errors": "Assignacions no adequades", + "smw-property-tab-constraint-schema": "Esquema de restricció", + "smw-property-tab-specification": "... més", + "smw-concept-tab-list": "Llista", + "smw-concept-tab-errors": "Errors", + "smw-ask-tab-result": "Resultat", + "smw-ask-tab-extra": "Extra", + "smw-ask-tab-debug": "Depuració", + "smw-ask-tab-code": "Codi", + "smw-install-incomplete-tasks-title": "Tasques d'administració incompletes", + "smw-install-incomplete-intro": "Hi ha $2 {{PLURAL:$2|tasca incompleta|tasques incompletes}} o [[Special:PendingTaskList|pendent]] de finalitzar {{PLURAL:$1|la instal·lació|l'actualització}} de [https://www.semantic-mediawiki.org Semantic MediaWiki]. Un administrador o usuari amb drets suficients {{PLURAL:$2|el|els}} pot completar. Això s'hauria de fer abans d'afegir dades noves per evitar incoherències.", + "smw-pendingtasks-tab-setup": "Configuració", + "smw-pendingtasks-setup-tasks": "Tasques", + "smw-filter-count": "Recompte de filtres", + "smw-es-replication-check": "Comprovació de replicació (Elasticsearch)", + "smw-es-replication-error": "Incidència de replicació d'Elasticsearch", + "smw-es-replication-file-ingest-error": "Incidència d'ingestió de fitxers", + "smw-es-replication-maintenance-mode": "Manteniment d'Elasticsearch", + "smw-es-replication-error-divergent-revision-detail": "Revisions associades referenciades:\n*Elasticsearch: $1 \n*Base de dades: $2", + "smw-report": "Informe", + "smw-legend": "Llegenda", + "smw-entity-examiner-indicator": "Tauler d'incidències d'entitats", + "smw-entity-examiner-deferred-elastic-replication": "Elastic", + "smw-entity-examiner-deferred-constraint-error": "Constricció", + "smw-entity-examiner-associated-revision-mismatch": "Revisió", + "smw-entity-examiner-deferred-fake": "Simulació", + "smw-indicator-constraint-violation": "{{PLURAL:$1|Constricció|Constriccions}}", + "smw-indicator-revision-mismatch": "Revisió", + "smw-listingcontinuesabbrev": " cont.", + "smw-showingresults": "Tot seguit es {{PLURAL:$1|mostra el resultat|mostren els $1 resultats començant pel número $2}}." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ce.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ce.json new file mode 100644 index 0000000..c70ba29 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ce.json @@ -0,0 +1,1106 @@ +{ + "@metadata": { + "authors": [ + "Macofe", + "Sasan700", + "Исмаил Садуев", + "Умар" + ] + }, + "smw-desc": "Хьан вики атта тӀекхочуш йо - машенашна а, адамашна а ([https://www.semantic-mediawiki.org/wiki/Help:User_manual онлайн документаци])", + "smw-error": "ГӀалат", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] дӀахӀоттийна а йу, болхбеш а йу, амма цуьнца догӀуш долу [https://www.semantic-mediawiki.org/wiki/Help:Upgrade карладаккхаран догӀа дац].", + "smw-upgrade-release": "Верси", + "smw-upgrade-progress": "Прогресс", + "smw-upgrade-progress-explain": "Маца чекхдер ду карлайаккхар хала ду ала, хӀунда аьлча иза дозуш ду хаамаш латточу меттиган барамца а, лелочу аппаратан гӀирсашца а, ткъа йаккхий викеш чекхйаха цхьа хан йала тарло.\n\nДехар до, локалан администраторе йазде, кхиамех лаьцна кхин дӀа хаа лууш.", + "smw-upgrade-progress-create-tables": "Таблицаш а, индексаш а кхоллар (йа карладаккхар)...", + "smw-upgrade-progress-post-creation": "ДӀайаздарш кхоллар кхочушдар...", + "smw-upgrade-progress-table-optimization": "Таблицин оптимизаци йар кхочушдар...", + "smw-upgrade-progress-supplement-jobs": "Кхин а белхан меттигаш тӀетохар...", + "smw-upgrade-error-title": "ГӀалат » Semantic MediaWiki", + "smw-upgrade-error-why-title": "ХӀунда го суна хӀара агӀо?", + "smw-upgrade-error-why-explain": "Semantic MediaWiki чоьхьара базин структура хийцаелла, цхьацца нисдарш дан деза, иза дуьззина болх бан. Цуьнан масех бахьана хила тарло, шайна йукъахь:\n* Кхин а дӀахӀиттийна хьашташ (кхин а таблица дӀахӀоттор оьшу) тӀетоьхна\n* Кхиорехь цхьацца хийцамаш бу таблицашкахь йа индексашкахь, цуо дӀалацар декхаре до хаамашка кхачале\n* Хийцамаш лармехь йа дехарийн механизмехь", + "smw-upgrade-error-how-title": "ХӀара гӀалат муха нисдан деза?", + "smw-upgrade-error-how-explain-admin": "Администраторо (йа администраторан бакъонаш йолчу муьлххачу а стага) лело деза йа MediaWiki [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] йа Semantic MediaWiki [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] латторан скрипт.", + "smw-upgrade-error-how-explain-links": "Иштта хьажа мегар ду хӀокху агӀонаш тӀе, кхин а информаци йовза:\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation ДӀахӀотторан] инструкцеш\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting ГӀалаташ нисдар] гӀоьнан агӀо", + "smw-extensionload-error-why-title": "ХӀунда го суна хӀара агӀо?", + "smw-extensionload-error-why-explain": "Шордарш дацара чудаьхна enableSemantics лелош, цуьнан метта йукъатоьхна кхечу гӀирсашца масала wfLoadExtension( 'SemanticMediaWiki' ) ма-дарра лелош.", + "smw-extensionload-error-how-title": "ХӀара гӀалат муха нисдан деза?", + "smw-extensionload-error-how-explain": "Шордар дӀахӀотто а, цӀерийн меттиган декларацешца а, хьоьжуш йолчу конфигурацешца а проблемаш ца хилийта а лело деза enableSemantics, цо тешалла дийр ду оьшу хийцамаш дӀахӀитторан хьалха шордар дӀахӀоттале ExtensionRegistry чухула.\n\nДехар до, хьажа [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] гӀоьнан агӀоне, кхин а информаци йовза.", + "smw-upgrade-maintenance-title": "Техникин гӀо » Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "ХӀунда го суна хӀара агӀо?", + "smw-upgrade-maintenance-note": "Система карарчу хенахь дӀахьош ду [https://www.semantic-mediawiki.org/wiki/Help:Upgrade карлайаккхар] [https://www.semantic-mediawiki.org/ Semantic MediaWiki] шордарца цхьаьна шен хаамийн лармица цхьаьна, ткъа тхуна лаьа шуьга деха собар дан а, викин тӀекхача йиш йуха а хиллалц.", + "smw-upgrade-maintenance-explain": "Шордар гӀерта Ӏаткъам а, дӀасацаран хан а лахйапран, шен дукхах долу Ӏалашдаран гӀуллакхаш update.php дӀадаьккхинчул тӀаьхьа дӀататтарца амма цхьаболу базица боьзна хийцамаш хьалха чекхбаха беза, хаамаш нийса ца хилийта. Цу йукъа догӀуш хила тарло:\n* Таблицин структураш хийцар масала керла тӀетохар йа лелаш долу меттигаш хийцар;\n* Таблицин индексаш хийцар йа тӀетохар\n* Таблицин оптимизаци йеш (дӀахӀоттийча).", + "smw-semantics-not-enabled": "Semantic MediaWiki функци дӀахӀоттийна йац хӀокху вики тӀехь.", + "smw_viewasrdf": "RDF хьост", + "smw_finallistconjunct": ",", + "smw-factbox-head": "... кхин дӀа а \"$1\" лаьцна.", + "smw-factbox-facts": "Факташ", + "smw-factbox-facts-help": "Гойту дӀахьедарш а, бакъдерш а, декъашхочо кхоьллина долу", + "smw-factbox-attachments": "ТӀетохарш", + "smw-factbox-attachments-value-unknown": "N/A", + "smw-factbox-attachments-is-local": "Локалан йу", + "smw-factbox-attachments-help": "Гойту лелаш долу тӀетохарш", + "smw-factbox-facts-derived": "Схьаэцна факташ", + "smw-factbox-facts-derived-help": "Гойту бакъонашкара схьадаьлла бакъдерш, йа кхечу хьесапдаран кепех", + "smw_isspecprop": "ХӀара башхалла хӀокху вики-сайтан къаьсттина башхаллонах цхьаъ йу.", + "smw-concept-cache-header": "Кэш лелор", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count concept cache] чохь йу {{PLURAL:$1|'''one''' entity|'''$1''' entities}} ($2).", + "smw-concept-no-cache": "Кэш йац.", + "smw_concept_description": "Концептах лаьцна «$1»", + "smw_no_concept_namespace": "Концепташ билгалйаха йиш йац, «Концепт:» («Concept:») цӀерийн меттигашкахь бен.", + "smw_multiple_concepts": "ХӀора концепт агӀонан цхьа концептан билгалдаккхар бен хила йиш йац.", + "smw_concept_cache_miss": "«$1» концепт карарчу хенахь лело йиш йац, хӀунда аьлча вики хӀоттош цуьнан фонан рожехь къасто деза. Нагахь санна и хаам жимма хан йаьлча дӀа ца балахь, хьайн вики-сайтан администраторе йазде, хӀара концепт дӀахӀотто.", + "smw_noinvannot": "Йуханехьа йолу билгалонашна маьӀна хӀотто йиш йац.", + "version-semantic": "Семантикин шордар", + "smw_baduri": "Бехк ма билла, амма \"$1\" диапазонера хьажоргаш кхузахь тӀекхочуш йац.", + "smw_printername_count": "Дагардаран жамӀаш", + "smw_printername_csv": "CSV экспорт", + "smw_printername_dsv": "DSV экспорт", + "smw_printername_debug": "Хаттарш нисдар (говзанчашна)", + "smw_printername_embedded": "АгӀонашна чубуьллу чулацам", + "smw_printername_json": "JSON экспорт", + "smw_printername_list": "МогӀа", + "smw_printername_plainlist": "РогӀера могӀам", + "smw_printername_ol": "Терахьца болу могӀам", + "smw_printername_ul": "Билгалбина могӀам", + "smw_printername_table": "Таблица", + "smw_printername_broadtable": "Шуйра таблица", + "smw_printername_template": "Кеп", + "smw_printername_templatefile": "Кепан файл", + "smw_printername_rdf": "RDF-экспорт", + "smw_printername_category": "Категори", + "validator-type-class-SMWParamSource": "текст", + "smw-paramdesc-limit": "Йухадалийна жамӀийн максимум дукхалла", + "smw-paramdesc-offset": "Хьалхара жамӀан офсет", + "smw-paramdesc-headers": "Билгалонийн кортош/цӀераш гайта", + "smw-paramdesc-mainlabel": "Коьрта агӀонан цӀарна луш йолу билгало", + "smw-paramdesc-link": "Хьажоргаш санна маьӀна гайта", + "smw-paramdesc-intro": "Дехаран жамӀашна хьалха гойтуш йолу текст, нагахь санна йелахь.", + "smw-paramdesc-outro": "Дехаран жамӀашна тӀаьхьа гойтуш йолу текст, нагахь санна иза йелахь.", + "smw-paramdesc-default": "Текст гойтуш йу, нагахь санна хаттаран жамӀаш дацахь", + "smw-paramdesc-sep": "МаьӀнаш доькъург", + "smw-paramdesc-propsep": "ТӀаьххьара дӀайаздарехь билгалонийн йукъахь доькъург", + "smw-paramdesc-valuesep": "ХӀокху билгалонан хийцалуш долчу маьӀнашна йукъахь докъург", + "smw-paramdesc-showsep": "CSV файлан лакхахь къастош гайта (\"sep=\")", + "smw-paramdesc-distribution": "Дерриге а маьӀнийн метта, церан нисдаларш дагарде, гайта.", + "smw-paramdesc-distributionsort": "МаьӀна дӀасадаржор нисдаларан кесталлаца дӀасакъастаде.", + "smw-paramdesc-distributionlimit": "Дагардаран маьӀнаш дӀасабаржор цхьацца мах хадорца бен дозатохар.", + "smw-paramdesc-aggregation": "Агрегаци хьанна йукъайало йеза билгалдаккха", + "smw-paramdesc-template": "Хаамаш гойтуш лелор йолчу кепан цӀе", + "smw-paramdesc-columns": "Лехаман жамӀаш гойтуш долу бӀогӀамалгийн дукхалла", + "smw-paramdesc-userparam": "ХӀора кепан кхайкхамна дӀалуш долу маьӀна ду, нагахь санна кеп лелош йелахь", + "smw-paramdesc-class": "Кхин а CSS класс могӀамна", + "smw-paramdesc-introtemplate": "Дехаран жамӀашна хьалха гойтуш йолу кепан цӀе, нагахь санна иза йелахь", + "smw-paramdesc-outrotemplate": "Дехаран жамӀашна тӀаьхьа гойтуш йолу кепан цӀе, нагахь санна иза йелахь", + "smw-paramdesc-embedformat": "HTML тег лелайо кортош гойтуш", + "smw-paramdesc-embedonly": "ЦӀераш ма гайта", + "smw-paramdesc-table-class": "Кхин а CSS класс таблицашна", + "smw-paramdesc-table-transpose": "Таблицин кортош вертикалехь гойту, жамӀаш горизонталехь гойту", + "smw-paramdesc-prefix": "ЦӀерийн меттиг зорбане йаккхарехь гайтаран урхалла дар", + "smw-paramdesc-rdfsyntax": "Муьлха RDF синтаксис лело йеза", + "smw-paramdesc-csv-sep": "Лелайе доькъург", + "smw-paramdesc-csv-valuesep": "Лелайе маьӀнан доькъург", + "smw-paramdesc-csv-merge": "Цхьаьнатоха бӀогӀамалгийн а, колонкийн а маьӀнаш цхьатерра субъектан ID йолуш (aka хьалхара колонка)", + "smw-paramdesc-csv-bom": "ТӀетоха BOM (сигналан духан билгало) арахоьцучу файлан лакхахь", + "smw-paramdesc-dsv-separator": "Лелайе доькъург", + "smw-paramdesc-dsv-filename": "DSV файлан цӀе", + "smw-paramdesc-filename": "Арахецначу файлан цӀе", + "smw-smwdoc-description": "Гойту массо а параметрийн таблица, лело мегар долу билгалйаьккхинчу арахецаран форматан, Ӏад йитаран кепан маьӀнаца а, цуьнах лаьцна хаамца а цхьаьна.", + "smw-smwdoc-default-no-parameter-list": "ХӀокху жамӀо форматан спецификин параметраш ца ло.", + "smw-smwdoc-par-format": "Параметрийн документаци гайтаран жамӀан формат.", + "smw-smwdoc-par-parameters": "Муьлха параметраш гайта йеза: «specific» — формато тӀетоьхначарна, «base» — массо а форматехь йолчунна, ткъа «all» — шинна а.", + "smw-paramdesc-sort": "Дехар дӀасакъастош йолу башхалла", + "smw-paramdesc-order": "Хаттаран рогӀалла", + "smw-paramdesc-searchlabel": "Текст кхидӀа а леха", + "smw-paramdesc-named_args": "Кеп чу дӀайеллачу аргументийн цӀераш", + "smw-paramdesc-template-arguments": "ЦӀе йолу аргументаш кеп чу муха дӀакхачайо билгалдоккху", + "smw-paramdesc-import-annotation": "Кхин а аннотаци йина хаамаш, субъектан парсинг йеш копеш йийр йолуш.", + "smw-paramdesc-export": "Экспортан параметраш", + "smw-paramdesc-prettyprint": "Хаза зорбанан арахецар, цо гойту кхин а дӀатоьхна дӀахилорш а, могӀанийн дӀасакъастарш а", + "smw-paramdesc-json-unescape": "Экран йанза хьаьркаш а, дуккха а байтийн Юникодан хьаьркаш а арахоьцу", + "smw-paramdesc-json-type": "Сериализацин тайпа", + "smw-paramdesc-source": "Дехаран альтернативан хьост", + "smw-paramdesc-jsonsyntax": "Лелор йолу JSON синтаксис", + "smw-printername-feed": "RSS а, Atom а лента", + "smw-paramdesc-feedtype": "Каналан тайпа", + "smw-paramdesc-feedtitle": "Каналан цӀе санна лело текст", + "smw-paramdesc-feeddescription": "Каналах лаьцна хаамехь лелор йолу текст", + "smw-paramdesc-feedpagecontent": "Канал тӀехь гойтур болу агӀонан чулацам", + "smw-label-feed-description": "$2-канал $1", + "smw-paramdesc-mimetype": "Медиа-файлан тайпа (MIME тайпа) арахоьцучу файлан", + "smw_iq_disabled": "Бехк ма билла, амма чудихкина хаттарш дӀадаьхна ду оцу сайтана.", + "smw_iq_moreresults": "… тӀаьхьара хиламаш", + "smw_parseerror": "ДӀадаханчу маьӀнех кхеташ дацара.", + "smw_notitle": "«$1» лело йиш йац хӀокху сайта тӀехь йаззаман цӀе санна.", + "smw_noproperty": "«$1» лело йиш йац вики чохь билгалонан цӀе санна.", + "smw_wrong_namespace": "«$1» цӀерийн меттигера агӀонаш бен кхузахь лело бакъо йац.", + "smw_manytypes": "Цхьана тайпанал сов билгалдаьккхина билгалонан.", + "smw_emptystring": "Баьсса могӀамаш магийна бац.", + "smw_notinenum": "«$1» йукъа ца йогӀу могӀанан ($2) [[Property:Allows value|магийна маьӀнаш]] «$3» билгалонан.", + "smw-datavalue-constraint-error-allows-value-list": "«$1» йукъа ца йогӀу могӀанан ($2) [[Property:Allows value|магийна маьӀнаш]] «$3» билгалонан.", + "smw-datavalue-constraint-error-allows-value-range": "«$1» йукъа ца йогӀу дехкарийн могӀанан ($2) [[Property:Allows value|магийна маьӀнаш]] «$3» билгалонан.", + "smw-constraint-error": "Дехкаршца доьзна хаттар", + "smw-constraint-error-suggestions": "Дехар до, дагардар дохор а, башхаллаш а церан аннотацица цхьаьна хьажа, массо а декхарш кхочушдарх тешарна.", + "smw-constraint-error-limit": "МогӀамехь хир ду максимум $1 дохийнарг.", + "smw_noboolean": "«$1» — булан маьӀна дац (хӀаъ/хӀан-хӀа).", + "smw_true_words": "бакъ, т, хӀаъ, й", + "smw_false_words": "харц,ф,хӀан-хӀа,н", + "smw_nofloat": "«$1» — терахь дац.", + "smw_infinite": "$1 кхаччалц терахьаш лелош дац.", + "smw_unitnotallowed": "«$1» дӀакхайкхийна дац хӀокху билгалонан нийса барамийн цхьаьнакхетаралла санна.", + "smw_nounitsdeclared": "ХӀокху билгалонах лаьцна дӀакхайкхийна дакъош дац.", + "smw_novalues": "Цхьа а маьӀна дац.", + "smw_nodatetime": "Дозушдоцу терахь «$1».", + "smw_toomanyclosing": "ГӀалат: ХӀокху хаттарехь «$1» дукха нисло.", + "smw_noclosingbrackets": "Схьайоьллуш йолу къовларгаш «[[» дӀакъевлина йацара цуьнца йогӀуш йолу дӀакъовларан параца «]]» хӀокху дехарехь.", + "smw_misplacedsymbol": "ГӀалат: ХӀокху меттехь «$1» хьаьрк лелор цхьа а маьӀна долуш дац.", + "smw_unexpectedpart": "ГӀалат: «$1» дехаран дакъа ца девзаш ду. ЖамӀаш хиладезачух къаьсташ хила тарло.", + "smw_emptysubquery": "ГӀалат: Цхьана бухара дехарех нийса билламан билгало билгалйаьккхина йац.", + "smw_misplacedsubquery": "ГӀалат: Бухара дехар леладо бухара дехарш дан бакъо йоцчу меттехь.", + "smw_valuesubquery": "Бухара дехарш «$1» билгалонан маьӀнашна ловш дац.", + "smw_badqueryatom": "«[[...]]» дехаран дакъа теллина дац.", + "smw_propvalueproblem": "ГӀалат: «$1» билгалонан маьӀна теллина дац.", + "smw_noqueryfeature": "Дехаран цхьа дакъа дӀадаьккхина, хӀунда аьлча дехарийн меттан цхьайолу таронаш хӀокху ($1) вики тӀехь болх беш йац.", + "smw_noconjunctions": "Дехаран цхьа дакъа дӀадаьккхина, хӀунда аьлча «Логикин И» операци хӀокху ($1) вики тӀехь лелаш йац.", + "smw_nodisjunctions": "ГӀалат: Дисъюнкцеш (логикин ЙА) хӀокху сайто лелош йац, цундела уьш лелош долу дехаран дакъа тидамза дитина ($1).", + "smw_querytoolarge": "{{PLURAL:$2|1=Билгалбаьккхина биллам|$2 билгалбаьхна билламаш}} дехарш кхочушдан аьтто ца баьлла дехаран кӀоргалла йа барам бахьана долуш: $1.", + "smw_notemplategiven": "ХӀара дехар кхочушдархьама, «template» параметран маьӀна йаздан деза.", + "smw_db_sparqlqueryproblem": "SPARQL базин дехаран жамӀ схьаэца аьтто ца баьлла. Иза цхьана ханна гӀалат хила тарло, йа базин программица проблема хила тарло.", + "smw_db_sparqlqueryincomplete": "ХӀокху дехарна жоп лахар тӀех чолхе нисделла, йукъахделира. Цхьадолу жамӀаш ца гайта а тарло. Хьайн хаттар аттачу даккха хьажа, аьтто балахь.", + "smw_type_header": "«$1» тайпанан башхаллаш", + "smw_typearticlecount": "{{PLURAL:$1|Гайтина}} $1 {{PLURAL:$1|башхалла}} хӀокху тайпана.", + "smw_attribute_header": "“$1” башхалла лелош йолу агӀонаш", + "smw_attributearticlecount": "{{PLURAL:$1|Гуш йу}} $1 {{PLURAL:$1|хӀара билгало лелош йолу агӀо|хӀара билгало лелош йолу агӀонаш}}.", + "smw-propertylist-subproperty-header": "Бухара башхаллаш", + "smw-propertylist-redirect-header": "Синонимаш", + "smw-propertylist-error-header": "Нийса доцу тӀедилларш долу агӀонаш", + "smw-propertylist-count": "Гойту $1 {{PLURAL:$1|доьзна дух}}.", + "smw-propertylist-count-with-restricted-note": "$1 {{PLURAL:$1|уьйр йолу дух}} гайтар (кхин а алсама ду, амма «$2» бен гайта йиш йац).", + "smw-propertylist-count-more-available": "$1 {{PLURAL:$1|уьйр йолу дух}} гайтар (кхин а лела).", + "specialpages-group-smw_group": "Семантикин МедиаВики", + "specialpages-group-smw_group-maintenance": "Хьашташ кхочушдар", + "specialpages-group-smw_group-properties-concepts-types": "Билгалонаш, концепташ, тайпанаш", + "specialpages-group-smw_group-search": "Хьажар а, лахар а", + "exportrdf": "АгӀонаш RDF тӀе экспорт йар", + "smw_exportrdf_docu": "ХӀокху агӀоно аьтто бо йаззаман дакъош RDF форматехь экспорт йан. Хьайна луучу йаззамашна цӀераш йазйе, хӀора могӀанехь цхьацца.", + "smw_exportrdf_recursive": "Массо йихкина агӀонийн рекурсиван экспорт. Хилам боккха хила мега!", + "smw_exportrdf_backlinks": "Иштта экспорт йе массо агӀонаш, экспорт йинчу агӀонашца хьажийна йолу. Генераци йо RDF йуьззина навигацин гӀоьнца.", + "smw_exportrdf_lastdate": "Билгалйинчу хенахь хийцам бина боцу, агӀонаш экспорт мае.", + "smw_exportrdf_submit": "Экспорт", + "uriresolver": "URI хуьйцург", + "properties": "Башхаллаш", + "smw-categories": "Категореш", + "smw_properties_docu": "ХӀокху сайтан тӀехь лелош йу хӀара башхаллаш.", + "smw_property_template": "$1 йу тайпа $2, ($3 {{PLURAL:$3|лелор}})", + "smw_propertylackspage": "ХӀора башхалла шен-шен хаамийн агӀо хила йеза!", + "smw_propertylackstype": "ХӀокху бвшхаллин хаамийн тайпа дац цуьнца доьзна (тайпа стандартан хир ду $1).", + "smw_propertyhardlyused": "ХӀара башхалла наггахь бен лелош йац сайтан техь.", + "smw-property-name-invalid": "$1 башхалла лело йиш йац (башхаллин цӀе нийса йац).", + "smw-property-name-reserved": "«$1» ларйина цӀе йу, лело ца йеза билгало санна. ХӀара цӀе хӀунда ларйина йу бохучух лаьцна хаамаш хила тарло [https://www.semantic-mediawiki.org/wiki/Help:Property_naming гӀоьнан агӀонгахь].", + "smw-sp-property-searchform": "Гайта билгалонаш, чулацам болу:", + "smw-sp-property-searchform-inputinfo": "Чулацам регистр экаме бу, фильтраци йеш лелош хилча, билламца йогӀуш йолу билгало бен ца гойту.", + "smw-special-property-searchform": "Гайта билгалонаш, чулацам болу:", + "smw-special-property-searchform-inputinfo": "Чулацам регистр экаме бу, фильтраци йеш лелош хилча, билламца йогӀуш йолу билгало бен ца гойту.", + "smw-special-property-searchform-options": "Параметраш", + "smw-special-wantedproperties-filter-label": "Фильтр:", + "smw-special-wantedproperties-filter-none": "ХӀумма а", + "smw-special-wantedproperties-filter-unapproved": "тӀечӀагӀданза", + "smw-special-wantedproperties-filter-unapproved-desc": "Фильтран опци лелайо бакъонан рожца йоьзна", + "concepts": "Концепташ", + "smw-special-concept-docu": "[https://www.semantic-mediawiki.org/wiki/Help:Концепташ Концепт] лара мегар ду «динамикин категори» санна, и.дӀ.кх.а. агӀонийн гулам санна, куьйга кхоьллина йоцу, амма Semantic MediaWiki-с ​​гулйина йеллачу дехаран дийцарера.", + "smw-special-concept-header": "Концептийн могӀам", + "smw-special-concept-count": "МогӀам чохь йу {{PLURAL:$1|концепт|$1 концепташ}}", + "smw-special-concept-empty": "Концепташ цакарий.", + "unusedproperties": "Лелош йоцу билгалонаш", + "smw-unusedproperties-docu": "ХӀокху агӀорахь гайтина [https://www.semantic-mediawiki.org/wiki/Wanted_properties лелош йоцу билгалонаш]. Хьажа: [[Special:Properties|лелош ерш]] йа [[Special:WantedProperties|оьшуш йолу]].", + "smw-unusedproperty-template": "$1 йу $2 тайпа", + "wantedproperties": "Хаам боца билгалонаш", + "smw-wantedproperties-docu": "ХӀокху агӀорахь гойтуш йу [https://www.semantic-mediawiki.org/wiki/Wanted_properties оьшуш йолу билгалонаш], викехь лелош йолу, амма царах лаьцна хаам болу агӀонаш йоцу. Хьажа белхан агӀонаш [[Special:Properties|юьзина]] йа [[Special:UnusedProperties|лелош йоцу билгалонаш йолу]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|лелор}})", + "smw-special-wantedproperties-docu": "ХӀокху агӀоно вики чохь лелош йолу [https://www.semantic-mediawiki.org/wiki/Wanted_properties оьшуш йолу башхаллаш] йу, амма шен дийцаран агӀо йац. Къаьстина хьажа белхан агӀонаш [[Special:Properties|тӀекхочуш йолу]] йа [[Special:UnusedProperties|лелош йоцу]] билгалонийн могӀамца.", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|лелор}})", + "smw_purge": "Карлайаккха", + "smw-purge-update-dependencies": "Semantic MediaWiki-но дӀайоккхуш йу карарчу хенахь йолу агӀонан кэш, шена гучудаьлла цхьадолу ширделла дозуш хилар бахьана долуш, уьш карладаха деза.", + "smw-purge-failed": "Semantic MediaWiki гӀоьртира агӀо карлайаккха, амма аьтто ца баьлла", + "types": "Тайпанаш", + "smw_types_docu": "[https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes ТӀекхочучу хаамийн тайпанийн] могӀам, цу чохь хӀора [https://www.semantic-mediawiki.org/wiki/Help:Datatype хааман тайпана] атрибутийн шатайпа гулдар ду, маьӀна Ӏалашдаран а, гайтаран а агӀор, уьш хӀитто йиш йу билгалонашна.", + "smw-special-types-no-such-type": "\"$1\" хууш дац йа нийса хаамийн тайпа санна билгалдаьккхина дацара.", + "smw-statistics": "Семантикин статистика", + "smw-statistics-cached": "Семантикин статистика (кэш йина)", + "smw-statistics-entities-total": "ХӀуманаш (йерриге а)", + "smw-statistics-entities-total-info": "Гергарчу хьесапехь хӀуманийн могӀанаш дагарбар. Цу йукъайогӀу билгалонаш, кхетамаш, муьлхха а кхин дӀайазйина объектийн репрезентацеш, шайна тӀейилла йезаш йолу идентификатор.", + "smw-statistics-property-instance": "Билгалонан {{PLURAL:$1|маьӀна}} (шадерш)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Билгало}}]] (шайерш)", + "smw-statistics-property-total-info": "Берриге а дӀайазбина билгалонаш.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Башхалла}} (шайерш)", + "smw-statistics-property-used": "{{PLURAL:$1|Башхалла}} (цхьана маьӀнехь лелина а лелош йу)", + "smw-statistics-property-page": "{{PLURAL:$1|Башхалла}} (дӀайазйина йу агӀонгахь)", + "smw-statistics-property-page-info": "Дагарйе объекташ шен агӀо а йолуш, хаам а.", + "smw-statistics-property-type": "{{PLURAL:$1|Билгало}} (хаамийн тайпанашна хӀоттина йу)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Дехар}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Дехар}}]] (дӀахӀоттийна, шайерш)", + "smw-statistics-query-format": "$1 формат", + "smw-statistics-query-size": "Дехаран барам", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|1=Концепт|Концепташ}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|1=Концепт|Концепташ}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Бухара объект}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Бухара объект}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|1=Хаамийн тайпа|Хаамийн тайпанаш}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Билгалонан маьӀна|Билгалонийн маьӀнаш}} ([[Special:ProcessingErrorList|{{PLURAL:$1|нийса йоцучу аннотацин|нийса йоцучу аннотацийн}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Билгалонан маьӀна|Билгалонийн маьӀнаш}} ({{PLURAL:$1|нийса йоцу аннотацин|нийса йоцу аннотацийн}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Ширйелла объект|Ширйелла объекташ}}]", + "smw-statistics-delete-count-info": "ДӀайаккха билгалйаьхна хӀуманаш дӀайаха йеза кест-кеста Ӏалашдаран скрипташ лелош.", + "smw_uri_doc": "URI ресолверо кхочушдо [$1 W3C лехар http тегашна Range-14 лелош].\nЦо дӀакхачадо RDF гайтам (машинашна) йа вики-агӀо (адамашна) дехаре хьаьжжина.", + "ask": "Семантикин лахар", + "smw-ask-help": "ХӀокху декъехь йу #ask синтаксис лелорца гӀо деш йолу хьажоргаш.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selecting pages] агӀонаш муха къасто йеза а, балламаш муха хӀиттабо а дуьйцу\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Search operators] лехаман операторийн могӀам, шайна йукъахь диапазонан лехаман операторш а, хьаьркаш а йолуш\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Displaying information] зорба тохаран хьелаш а, форматан опцеш а лелор билгалдоккху", + "smw_ask_sortby": "БӀогӀамца дӀасакъастаде (лаамехь)", + "smw_ask_ascorder": "Йоккха хиларца", + "smw_ask_descorder": "КӀезиг хиларца", + "smw-ask-order-rand": "нисйелларг", + "smw_ask_submit": "Лаха", + "smw_ask_editquery": "Дехар тадан", + "smw_add_sortcondition": "[ДӀасакъасторан хьал тӀетоха]", + "smw-ask-sort-add-action": "ДӀасакъасторан хьал тӀетоха", + "smw_ask_hidequery": "Дехар къайладаккха (компактан хатӀ)", + "smw_ask_help": "Хаттаршца гӀо дар", + "smw_ask_queryhead": "Биллам", + "smw_ask_printhead": "Зорбатохар харжар", + "smw_ask_printdesc": "(хӀора могӀанехь цхьа билгалонан цӀе тӀетоха)", + "smw_ask_format_as": "Формат иштта:", + "smw_ask_defaultformat": "Ӏадйитаран кеп", + "smw_ask_otheroptions": "Кхин болу нисдаран гӀирс", + "smw-ask-otheroptions-info": "ХӀокху декъехь йу арахецаран низам хийцалуш йолу опцеш. Параметрийн дийцарш хьажа йиш йу, царна тӀе дехкан курсор хьажийна.", + "smw-ask-otheroptions-collapsed-info": "Дехар до, лелайе плюсан веназ, массо а лелаш йолу параметраш хьажа", + "smw_ask_show_embed": "Гойта чуйиллина код", + "smw_ask_hide_embed": "Къайлайаккха чуйиллина код", + "smw_ask_embed_instr": "ХӀара дехар могӀанан кепара вики агӀонна чу дилла, лелайе лахахь йолу код.", + "smw-ask-delete": "ДӀайаккха", + "smw-ask-sorting": "Сорташ хӀиттор", + "smw-ask-options": "Нисдаран гӀирс", + "smw-ask-options-sort": "Сорташ хӀитторан нисдаран гӀирс", + "smw-ask-format-options": "Формат а, опцеш а", + "smw-ask-parameters": "Параметраш", + "smw-ask-search": "Лахар", + "smw-ask-debug": "Нисйар", + "smw-ask-debug-desc": "Дехаран нисдарах информацин генераци йо", + "smw-ask-no-cache": "Кэш дӀацӀанйан", + "smw-ask-no-cache-desc": "Дехаран кэш йоцуш жамӀаш", + "smw-ask-result": "Хилам", + "smw-ask-empty": "Дерриге дӀайаздар дӀацӀандан", + "smw-ask-download-link-desc": "Дехар дина жамӀаш чудаха $1 форматехь", + "smw-ask-format": "Формат", + "smw-ask-format-selection-help": "Хаьржинчу форматан гӀо: $1.", + "smw-ask-condition-change-info": "Биллам хийцабелла, лехаман системо лехамаш карлабаха беза, керлачу лехамашца догӀуш долу жамӀаш йухадерзо.", + "smw-ask-input-assistance": "Чудахарца гӀо дар", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Йаздаран гӀо] луш ду зорбанан, дІасакъасторан а, билламан а меттигашна. Билламан меттигехь хӀокху дешхьалхенех цхьаъ хила йеза:", + "smw-ask-condition-input-assistance-property": "p: билгалонашна лерина хьехам йукъабаккха (масала [[p:Ду ...)", + "smw-ask-condition-input-assistance-category": "c: категорешца хьехам схьаэца", + "smw-ask-condition-input-assistance-concept": "con: концепцин хьехам схьаэца", + "smw-ask-format-change-info": "Формат хийцина, дехар йуха а дан деза, керлачу параметрашца а, визуализацин параметрашца а догӀуш.", + "smw-ask-format-export-info": "Хаьржина формат экспортан формат йу, бӀаьран репрезентаци йоцуш, цундела жамӀаш дӀадаьхначул тӀаьхьа бен ца хуьлу.", + "smw-ask-query-search-info": "$1 дехарна жоп делла {{PLURAL:$3|1=$2 (кэш чуьра)|$2 (кэш чуьра)|$2}} $4 {{PLURAL:$4|секунд}} чохь.", + "smw-ask-extra-query-log": "Дехарийн журнал", + "smw-ask-extra-other": "Кхийерг", + "searchbyproperty": "Билгалонца лахар", + "processingerrorlist": "Кечдарийн гӀалатийн могӀам", + "constrainterrorlist": "Дехкарийн гӀалатийн могӀам", + "propertylabelsimilarity": "Билгалонийн билгало цхьатера хиларан хаам", + "missingredirectannotations": "ДӀасахьажоргийн аннотаци йац", + "smw-processingerrorlist-intro": "ХӀокху могӀамехь гойту [https://www.semantic-mediawiki.org/ Semantic MediaWiki] уьйрца доьзна хиллачу [https://www.semantic-mediawiki.org/wiki/Processing_errors кечйаран гӀалаташ]. Рекомендаци йо хаддаза оцу могӀамна тӀехь терго латтор а, нийса йоцу мехаллин аннотацеш нисйар а.", + "smw-constrainterrorlist-intro": "ХӀокху могӀамехь дуьйцу [https://www.semantic-mediawiki.org/wiki/Constraint_errors доза тохаран гӀалаташ] хьокъехь, иза гучудаьлла [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. И могӀам хаддаза тергонехь латто а, маьӀнийн нийса йоцу аннотацеш нисйан а дика ду.", + "smw-missingredirects-intro": "ХӀокху декъехь дӀайазйийр йу [https://www.semantic-mediawiki.org/wiki/Redirects redirect] аннотацеш йоцуш йолу агӀонаш Semantic MediaWiki тӀехь (MediaWiki тӀехь Ӏалашбина информацица йуьстича) а, и аннотацеш меттахӀитто а йа куьйга [https://www.semantic-mediawiki.org/wiki/Help:Purge purge]. rebuildData.php Ӏалашйаран скрипт (--redirects опцица).", + "smw-missingredirects-list": "Аннотацеш йоцуш йолу агӀонаш", + "smw-missingredirects-list-intro": "Гайтина $1 {{PLURAL:$1|агӀо}} ца тоьуш дӀасахьажоргийн аннотацеш йолуш.", + "smw-missingredirects-noresult": "Цхьа а аннотаци ца карийна дӀасахьажоргна.", + "smw_sbv_docu": "Билгалдаьккхина билгало а йолуш, маьӀна а долуш йолу массо а агӀонаш леха.", + "smw_sbv_novalue": "$1 билгалонан маьӀна билгалдаккха йа массо а маьӀна хьажа.", + "smw_sbv_displayresultfuzzy": "«$2» маьӀна долуш, чохь «$1» билгало а йолуш массо а агӀонийн могӀам.\nНийса жамӀийн терахь жима хиларна, гойту агӀонаш а, шайна чохь дӀайеллачу билгалонан цхьатерра маьӀна долуш.", + "smw_sbv_property": "Башхалла:", + "smw_sbv_value": "МаьӀна:", + "smw_sbv_submit": "Лахар", + "browse": "Сайте хьажа", + "smw_browselink": "Хьажа агӀонах дерг", + "smw_browse_article": "Таллам дӀаболорхьама агӀонан цӀе йазйе.", + "smw_browse_go": "Дехьа гӀо", + "smw_browse_show_incoming": "ЧуйогӀу билгалонаш гайта", + "smw_browse_hide_incoming": "Кхузахь хьажорг долу билгалонаш къайлайаха", + "smw_browse_no_outgoing": "ХӀокху агӀонан чохь билгалонаш йац.", + "smw_browse_no_incoming": "ХӀокху агӀонна тӀе хьажорг йолуш цхьа а башхалла йац.", + "smw-browse-from-backend": "Карарчу хенахь информаци схьаоьцуш йу серверан программин чуьра.", + "smw-browse-intro": "ХӀокху агӀонан тӀехь дуьйцу субъектах йа субъектан инстанцех лаьцна, дехар ду йазйе таллам бан безачу субъектан цӀе.", + "smw-browse-invalid-subject": "Субъектан валидацино йухадерзийна \"$1\" гӀалат.", + "smw-browse-api-subject-serialization-invalid": "Субъектан нийса йоцу сериализацин формат йу.", + "smw-browse-js-disabled": "JavaScript дӀайаьккхина йа лело йиш йоцуш санна хетало. И ловш йолу браузер лело рекомендаци йо оха. Кхин варианташ йийцаре йина конфигурацин параметран агӀонан тӀехь [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Гайта тобанаш", + "smw-browse-hide-group": "Тобанаш къайлайаха", + "smw-noscript": "ХӀокху агӀонан йа ардаман JavaScript оьшу болх бан. Дехар до, хьайн браузерехь JavaScript дӀахӀоттайе, йа леладе иза лелош йолу браузер, и функционал дӀайала йиш хилийта дехарца. Нагахь санна хьайна кхин а гӀо оьшуш делахь, хьажа гӀоьнан агӀоне [https://www.semantic-mediawiki.org/wiki/Help:Noscript «Noscript»].", + "smw_inverse_label_default": "$1 чуьра", + "smw_inverse_label_property": "ЙухайогӀу билгалонан башхаллан", + "pageproperty": "Башхалла лехаран агӀо", + "pendingtasklist": "ТӀаьхьататтийна Ӏалашонийн могӀам", + "facetedsearch": "АгӀонаш лехар", + "smw_pp_docu": "АгӀо а, башхалла а, йа йеккъа башхалла а йазде, массо а тӀедиллина маьӀна схьаэцархьама.", + "smw_pp_from": "АгӀонан тӀера:", + "smw_pp_type": "Башхалла:", + "smw_pp_submit": "ЖамӀаш лехар", + "smw-prev": "хьалхара {{PLURAL:$1|$1}}", + "smw-next": "рогӀера {{PLURAL:$1|$1}}", + "smw_result_prev": "Хьалхара", + "smw_result_next": "РогӀера", + "smw_result_results": "Хиламаш", + "smw_result_noresults": "Бехк ма биллалахь, амма хӀумма а ца карийна.", + "smwadmin": "Semantic MediaWiki гӀирсийн панель", + "smw-admin-statistics-job-title": "Белхан статистика", + "smw-admin-statistics-job-docu": "Белхан статистико гойту хӀинца а кхочуш ца дина дӀахӀиттийначу Semantic MediaWiki белхех лаьцна информаци. Белхан лоруш хилар нийса ца хила тарло йа уьш кхочушдан гӀертарш хила тарло. Кхин дӀа хаа [https://www.mediawiki.org/wiki/Special:MyLanguage/manual:Job_queue куьйгаллин агӀонехь] информаци хьажа.", + "smw-admin-statistics-querycache-title": "Дехарийн кэш", + "smw-admin-statistics-querycache-disabled": "[https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] хӀокху вики тӀехь дӀахӀоттийна йац, цундела статистика тӀекхочуш йац.", + "smw-admin-statistics-querycache-legend": "Кэш статистика ханна гулбина а, иштта схьабевлла а хаамаш хила беза, шайна йукъахь:\n* «misses» санна йерриг гӀертарш схьаэца хаамаш кэш чуьра кхача йиш йоцучу жоьпашца, ницкъ беш ма-дарра Ӏалашдаран (БД, трипл-сторан и. дӀ. кх.) схьаэца\n* «deletes» кэш дӀайаккхаран операцин йерриг барам санна (йа цӀанйарца, йа хаттаран дозуш хиларца)\n* «hits» чохь бу кэш схьаэцаран барам йа чуйиллина (вики агӀонна чуьра кхайкхина хаттарш) йа чуйиллина йоцу (нагахь санна дӀахӀоттийна йелахь, Special:Ask йа API санна йолчу агӀонаша дехар дина) хьостанашкара\n* «medianRetrievalResponseTime» — ориентацин маьӀна йуккъера жоьпан хенан (сек.) кэшехь а, кэшехь доцучу а лехаман дехаршна гулдаран процессан хенан йукъахь\n* «noCache» гойту кэш чуьра жамӀаш схьаэца гӀертаран дехарийн барам (limit=0 дехарш, 'no-cache' опци и. дӀ. кх. а)", + "smw-admin-statistics-section-explain": "Дакъа тӀехь дӀало кхин а статистика администраторшна.", + "smw-admin-statistics-semanticdata-overview": "Гуче", + "smw-admin-permission-missing": "ХӀокху агӀонна тӀекхача йиш йац. Дехар до, хьажа [https://www.semantic-mediawiki.org/wiki/Help:Permissions гӀоьнан] агӀоне, кхин дӀа информаци хьажархьама.", + "smw-admin-setupsuccess": "ХӀума латторан система дӀахӀоттийна.", + "smw_smwadmin_return": "ЙухагӀо агӀоне $1.", + "smw_smwadmin_updatestarted": "Семантикин хаамаш карлабахаран керла процесс йолийна.\nДерриге а лардина хаамаш йуха а дӀахӀиттор бу, оьшучу меттехь меттахӀиттор бу.\nКарладаккхаран дӀадахарна тӀехь терго латто йиш йу хьан хӀокху белхан агӀонан тӀехь.", + "smw_smwadmin_updatenotstarted": "Цхьа карлайаккхаран процесс хӀинцале а дӀахьош йу.\nКхин цхьаъ а ца кхоьллина.", + "smw_smwadmin_updatestopped": "Дерриге а лелаш йолу карладаккхаран процессаш сецна.", + "smw_smwadmin_updatenotstopped": "ДӀайоьдуш йолу карладаккхаран процесс сацорхьама, ахьа билгало хӀотто йеза цу сацамах хьо баккъалла а тешна хилар гойтуш.", + "smw-admin-docu": "ХӀокху белхан агӀоно гӀодийр ду шуна Semantic MediaWiki шордар дӀахӀоттош а, карлайаккхуш а, Ӏалашйеш а, лелош а процессехь.\nАдминистративан ардамаш беш хьалха мехала хаамаш копий йан дагахь латтаде.", + "smw-admin-environment": "Программин чкъор", + "smw-admin-db": "Хаамийн база нисйар", + "smw-admin-db-preparation": "Таблица дӀахӀоттош йу. Цхьа хан йала тарло жамӀаш а, хила тарлуш йолу таблицан оптимизаци а гайтале.", + "smw-admin-dbdocu": "Semantic MediaWiki-на оьшу шен базийн структура, маьӀнин хаамаш Ӏалашбан. Иза MediaWiki-х йозуш йац, цундела кхечу MediaWiki-н инсталляцешна Ӏаткъам ца бо.\n\nИ процедура масийттаза йан йиш йелахь а, цхьа а тӀаьхьало йоцуш, иза цкъа бен дӀайахьа ца оьшу — Semantic MediaWiki дӀахӀотточу хенахь йа карлайаьккхинчу хенахь.", + "smw-admin-permissionswarn": "SQL-командаш кхочушйеш кхачамбацарш хиларан бахьана хила тарло ахьа вики-базаца зӀе латточу лелоран цӀарах оьшуш йолу бакъонаш цахилар (хьажа LocalSettings.php файле).\nХӀокху декъашхочунна кхин а бакъонаш йала хьажа таблицаш кхолла а, дӀайаха а; ханна логин \"root\" йазде LocalSettings.php файлехь, йа леладе setupStore.php сервисан скрипт, цуо лело мегар ду администраторан параметраш.", + "smw-admin-dbbutton": "Таблицашна инициализаци йар йа карлайаккхар", + "smw-admin-announce": "Хьан вики чохь кхайкхам", + "smw-admin-announce-text": "Нагахь санна, хьан вики йукъара йелахь, ахьа иза дӀайазйан мегар ду WikiApiary тӀехь.", + "smw-admin-deprecation-notice-title": "Дехкарх лаьцна билгалдахарш", + "smw-admin-deprecation-notice-docu": "РогӀерчу декъехь ширйелла йа дӀайаьхна параметраш, амма хӀинца а жигара йу хӀокху вики тӀехь. ХӀора карладаккхаро дӀадаккха деза оцу конфигурацешна гӀортор.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] ширйелла йу, $2 чохь дӀайоккхуш йу", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] дӀайоккхур йу (йа заменит) {{PLURAL:$2|рогӀера опци|рогӀера опцеш}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 ширйелла, $2 чохь дӀайоккхур йу", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] хийцина → [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] хийцина → $2", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|опци|опцеш}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 хийцина → $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] дӀайаьккхина $2 чохь", + "smw-admin-deprecation-notice-title-notice": "Нисдаран гӀирс ширбелла", + "smw-admin-deprecation-notice-title-notice-explanation": "Ширбелла гӀирс гойту хӀокху вики тӀехь лелош гучудаьлла, тӀейогӀучу релизехь дӀайаха йа хийца лерина йолу параметраш.", + "smw-admin-deprecation-notice-title-replacement": "Хийцина йа цӀе хийцина нисдаран гӀирс", + "smw-admin-deprecation-notice-title-replacement-explanation": "Хийцина йа цӀе хийцина параметраш ― чохь йу цӀераш хийцина йа кхечу кепара хийцина параметраш, ахьа сихонца церан цӀераш йа формат карлайаккхар дика ду.", + "smw-admin-deprecation-notice-title-removal": "ДӀабаьхна нисдаран гӀирсаш", + "smw-admin-deprecation-notice-title-removal-explanation": "ДӀабьхна нисдаран гӀирсаш ― билгалйоху хьалха арайаьллачу релизехь дӀабаьхна болу, амма хӀинца а хӀокху вики тӀехь лелош болу нисдаран гӀирсаш.", + "smw-admin-deprecation-notice-section-legend": "Легенда", + "smw-smwadmin-refresh-title": "Хаамаш нисбар а, карлабахар а", + "smw_smwadmin_datarefresh": "Хаамаш йухаметтахӀиттор", + "smw_smwadmin_datarefreshdocu": "Ахьа меттахӀотто йиш йу массо а Semantic MediaWiki-н хаамаш карарчу хенахь болчу вики чулацамна тӀе а тевжаш.\nИза пайде хила тарло боьхна хаамаш меттахӀитторехь, цхьацца программаш карлайахар бахьана долуш чоьхьара формат хийцаеллехь хаамаш карлабахарехь.\nКарлайаккхар дӀахьур ду агӀо агӀонца, цхьа хан оьшур йу.\nБухахь хьажа йиш йу, муха дӀайоьду карладаккхаран процесс, карладаккхар дӀадоло йа сацо аьтто луш (нагахь санна и функци сайтан администраторо дӀайаьккхина йацахь).", + "smw_smwadmin_datarefreshprogress": "Керладаккхар хӀинцале а дӀахьош ду.\nКарладаккхаран процесс дика меллаша хилар нийса ду, хӀунда аьлча цо декъашхо вики чу кхаьчча, кегийчу барамашкахь бен хаамаш ца карлабоху.\nИ карладаккхар сиха чекхдаккха, ахьа кхайкха мегар ду MediaWiki runJobs.php Ӏалашйаран скрипт (лелайе - maxjobs 1000 параметр, цхьана парти чохь карладаккхаран дукхалла лахдан).\nХӀинцалерчу карладаккхаран гергарчу хьесапехь кхиамаш:", + "smw_smwadmin_datarefreshbutton": "Графикца хаамаш меттахӀиттор", + "smw_smwadmin_datarefreshstop": "ХӀара карладаккхар сацаде", + "smw_smwadmin_datarefreshstopconfirm": "ХӀаъ, {{GENDER:$1|со тешна ву|со тешна йу}}.", + "smw-admin-job-scheduler-note": "ХӀокху декъехь жигара Ӏалашонаш кхочушдо Task Scheduler рогӀехь, уьш лелачу хенахь блоктохарш ца хилийта. [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue ПланхӀотторго] дӀайахьарна жоп дала деза, цундела чӀогӀа мехала ду runJobs.php сценарин кхачам боллуш ресурсаш хилар (хьажа иштта конфигурацин параметр $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "Ширйелла хӀуманаш дӀайахар", + "smw-admin-outdateddisposal-intro": "Цхьаболу ардамаш (билгалонан тайпа хийцар, вики-агӀонаш дӀайахар, йа гӀалат долу маьӀнаш нисдар) [https://www.semantic-mediawiki.org/wiki/Outdated_entities ширйелла хӀуманаш] кхойкхур йу, цундела рекомендаци йо уьш хан-зама йаларца дӀадаха цуьнах йоьзна йолчу таблицехь меттиг мукъайаккхар.", + "smw-admin-outdateddisposal-active": "Ширйелла хӀуманаш дӀайаха болх тӀебиллина.", + "smw-admin-outdateddisposal-button": "ДӀайаккха план хӀотто", + "smw-admin-feature-disabled": "ХӀара функци дӀайаьккхина йу хӀокху вики тӀехь. Дехар до, хьажа гӀоьнан агӀо нисдаран гӀирсах лаьцна болу, йа системин администраторе йазде.", + "smw-admin-propertystatistics-title": "Билгалонан статистика йухадӀахӀоттор", + "smw-admin-propertystatistics-intro": "Йерриге а билгало лелоран статистика йухахӀиттайо, цул тӀаьхьа карлайоккху, нисйо билгало [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count лелоран лорург].", + "smw-admin-propertystatistics-active": "Билгалонан статистика йухахӀотторехь болх бан лерина.", + "smw-admin-propertystatistics-button": "Башхалла йухахӀотторан график хӀоттайе", + "smw-admin-fulltext-title": "Йуьззина текст лехамаш йухахӀиттор", + "smw-admin-fulltext-intro": "ЙухахӀоттадо лехаман индекс билгалонан таблицашкара [https://www.semantic-mediawiki.org/wiki/Full-text йуьззина текстан лехар] дӀахӀоттийначу хаамийн тайпанца. Индексацин бакъонашкахь хийцамаш баро (хийцаделла гӀовгӀанан дешнаш, керла стемер, и. дӀ. кх.) а,/йа керла тӀетоьхна йа хийцина таблица а и болх йуха а дӀабахьа беза.", + "smw-admin-fulltext-active": "Йуьззина текстан лехамаш йухахӀитторехь болх бан лерина бара.", + "smw-admin-fulltext-button": "Йуьззина текст йухахӀотторан график хӀоттайе", + "smw-admin-support": "ГӀо схьаэцар", + "smw-admin-supportdocu": "Тайп-тайпана ресурсаш йу хьуна гӀо дан, нагахь санна хьан проблемаш йелахь:", + "smw-admin-installfile": "Нагахь санна хьайна хало йелахь дӀахӀоттош, дӀадоладе файлехь INSTALL а, дӀахӀотторан агӀонгахь болу дӀахӀотторан хьехам бешна.", + "smw-admin-smwhomepage": "Йуьззина Semantic MediaWiki лелоран документаци йуsemantic-mediawiki.org тӀехь.", + "smw-admin-bugsreport": "ГӀалатех лаьцна хаам бан йиш йу GitHub, ткъа догӀуш долу гӀоьнан декъан агӀонан тӀехь цхьацца хьехам бу проблемех лаьцна эффективан хаам муха йазбан беза.", + "smw-admin-questions": "Хьан кхин а хаттарш йа хьехамаш белахь, дийцаре дӀакхета Semantic MediaWiki декъашхойн дIасатасаран могӀам. тӀехь.", + "smw-admin-other-functions": "Кхийолу функцеш", + "smw-admin-statistics-extra": "Статистикин функцеш", + "smw-admin-statistics": "Статистика", + "smw-admin-supplementary-section-title": "Кхин а функцеш", + "smw-admin-supplementary-section-subtitle": "ТӀамаран ловш йолу функцеш", + "smw-admin-supplementary-section-intro": "ХӀокху секцехь кхин а функцеш йу, гӀоьнан йолчийл сов. Хила тарло цхьайолу функцеш (хьажа [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions документаци]) дозатоьхна, цундела хӀокху вики тӀехь йац.", + "smw-admin-supplementary-settings-title": "Конфигураци а, нисдаран гӀирс а", + "smw-admin-supplementary-settings-intro": "$1 гойту Semantic MediaWiki лелар къастош йолу параметраш", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Ооперацин статистика", + "smw-admin-supplementary-operational-statistics-short-title": "операцин статистика", + "smw-admin-supplementary-operational-statistics-intro": "Гойту шуьйра $1 гулам", + "smw-admin-supplementary-idlookup-title": "ХӀуман лахар а, дӀайаккхар а", + "smw-admin-supplementary-idlookup-short-title": "духаш лехар а, дӀайахар а", + "smw-admin-supplementary-idlookup-intro": "«$1» цхьалха функци ловш йу", + "smw-admin-supplementary-duplookup-title": "ХӀуманаш-дубликаташ хьажар", + "smw-admin-supplementary-duplookup-intro": "$1 — хаьржинчу таблицин матрицехь дубликаташ санна классификаци йина хӀуманаш лаха", + "smw-admin-supplementary-duplookup-docu": "ХӀокху агӀонан тӀехь йу [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities дубликаташ] санна категорешкахь йолу хаьржина таблицаш тӀера хӀуманаш.\nДубликаташ наггахь бен (нагахь санна цкъа а) гучуйовлу базийн карладаккхар дӀадаьккхина йа транзакци йухайерзор бахьана долуш бен.", + "smw-admin-supplementary-operational-statistics-cache-title": "Кэшан статистика", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 гойту кэшца йоьзна статистикин хаьржина тоба", + "smw-admin-supplementary-operational-table-statistics-title": "Таблицийн статистика", + "smw-admin-supplementary-operational-table-statistics-short-title": "таблицийн статистика", + "smw-admin-supplementary-operational-table-statistics-intro": "Генераци йо $1 хаьржинчу таблицийн тобанна", + "smw-admin-supplementary-operational-table-statistics-explain": "ХӀокху декъехь йу хаьржина таблицин статистика, цо гӀо дийр ду администраторшна а, хаамийн кураторшна а серверан дакъош а, хаамаш а механизмех лаьцна нийса сацамаш бан.", + "smw-admin-supplementary-operational-table-statistics-legend": "Легендано дуьйцу таблицин статистикан лелош йолу цхьайолу догӀанаш, цу йукъахь йу:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count таблицехь могӀанийн массо а дукхалла", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id карарчу хенахь лелош йолу тӀаьххьара идентификатор\n* duplicate_count id_table таблицехь карийна дубликатийн дукхалла (хьажа иштта [[Special:SemanticMediaWiki/duplicate-lookup|Духийн дубликаташ лахар]])\n* rows.rev_count могӀанийн терахь, тӀедиллина revision_id йолуш, вики агӀонна тӀе ма-дарра хьажорг гойтуш\n* rows.smw_namespace_group_by_count таблицехь лелош йолчу цӀерийн меттигийн гулдина могӀанийн дукхалла\n* rows.smw_proptable_hash.query_match_count нийса догӀу таблицин хьажоргца дехаран бухара объектийн дукхалла\n* rows.smw_proptable_hash.query_null_count дехаран бухара объектийн дукхалла, таблицин хьажорг йоцуш (зӀе йоцуш, лела хьажоргаш)", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent шатайпа терминийн процент (лахара процент гойту шалха терминаш таблицин чулацам а, индекс а дӀалоцуш хилар)\n* rows.terms_occurrence.single_occurrence_total_count цкъа бен ца нислуш долу терминийн дукхалла\n* rows.terms_occurrence.multi_occurrence_total_count цкъа сов нислуш долу терминийн дукхалла", + "smw-admin-supplementary-elastic-version-info": "Верси", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 гойту ма-йарра кэш-хӀоттамаш а, статистика а", + "smw-admin-supplementary-elastic-docu": "ХӀокху агӀонехь йу ''Semantic MediaWiki''ца а, цуьнан Ӏалашдарца а йоьзна йолу ''ElasticSearch'' кластерца йоьзна йолу нисдаран гӀирсаш, индексан хьолан а, статистика а [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Ловш йолу функцеш", + "smw-admin-supplementary-elastic-settings-title": "Нисдаран гӀирсаш (индексаш)", + "smw-admin-supplementary-elastic-settings-intro": "$1 лелайо ''ElasticSearch'' ''Semantic MediaWiki'' индексашна урхалла дан", + "smw-admin-supplementary-elastic-mappings-title": "ДогӀурш", + "smw-admin-supplementary-elastic-mappings-intro": "$1 — индексийн а меттиган йогӀуш хилар а", + "smw-admin-supplementary-elastic-mappings-docu": "ХӀокху агӀонан тӀехь йу карарчу хенахь индексо лелош йолу меттигийн картин детальш. Рекомендаци йу догӀуш хиларан тӀехь терго латто, index.mapping.total_fields.limit хийцаман маьӀнан тидаме а оьцуш, цуо Ӏалашдо индексехь уггаре дукха бакъо йелла меттигаш.", + "smw-admin-supplementary-elastic-mappings-docu-extra": "property_fields гойту индексаци йина коьрта меттигийн дукхаллин терахь, ткъа nested_fields гойту гулдина дукхаллин терахь кхин а коьртачу меттигна тӀедиллина, билггал йолу структурехь лехаман кепашна гӀо дан.", + "smw-admin-supplementary-elastic-mappings-summary": "Цуьнах лаьцна", + "smw-admin-supplementary-elastic-mappings-fields": "Меттигаш йогӀуш хилар", + "smw-admin-supplementary-elastic-nodes-title": "Шеддаш", + "smw-admin-supplementary-elastic-nodes-intro": "$1 гойту шедийн статистика", + "smw-admin-supplementary-elastic-indices-title": "Индексаш", + "smw-admin-supplementary-elastic-indices-intro": "$1 дӀахьо лелаш йолчу индексийн а, церан статистикин а йукъара гайтам", + "smw-admin-supplementary-elastic-statistics-title": "Статистика", + "smw-admin-supplementary-elastic-statistics-intro": "$1 гойту индексан тӀегӀан статистика", + "smw-admin-supplementary-elastic-statistics-docu": "ХӀокху агӀоно индексан тӀегӀанехь дӀахьочу тайп-тайпанчу операцешна индексан статистиках кхетам ло, йухайерзош йолу статистика гулйо йуьхьанцара а, чулацаман а гулдаршца. [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html ГӀоьнан агӀо] тӀехь дӀайаздина ду лелаш йолчу индексийн статистикин хьокъехь.", + "smw-admin-supplementary-elastic-status-replication": "Репликаци статус", + "smw-admin-supplementary-elastic-status-last-active-replication": "ТӀаьххьара жигара репликаци: $1.", + "smw-admin-supplementary-elastic-status-refresh-interval": "Карладаккхаран интервал: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "МеттахӀотторан хан: $1 (гергарчу хьесапехь)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Чекхбахаза белхийн журнал (файл): $1 (герггарчу хьесапехь)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Репликацин блоктоьхна: $1 (йухадӀахӀиттор процессехь)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Репликацин мониторинг (жигара): $1", + "smw-admin-supplementary-elastic-replication-header-title": "Копи йаран статус", + "smw-admin-supplementary-elastic-replication-function-title": "Копи йар", + "smw-admin-supplementary-elastic-replication-intro": "$1 гойту кхачамбацарш хилла репликацех лаьцна информаци", + "smw-admin-supplementary-elastic-replication-docu": "ХӀокху агӀонан тӀехь информаци йу [https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring репликацин статусехь] духех лаьцна, хьан Elasticsearch кластерца проблемаш хиларх лаьцна хаам бина. Духийн могӀам хьажа а, церан чулацам дӀабаккха а дика ду, и проблема цхьана ханна хилла хиларх тешарна.", + "smw-admin-supplementary-elastic-replication-files-docu": "Билгалдаккха деза, файлийн могӀам схьаэца хьалха [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion файлаш тӀеоьцуш] гӀуллакх кхочушдан деза, цуьнан болх чекхбаккха беза.", + "smw-admin-supplementary-elastic-replication-files": "Файлаш", + "smw-admin-supplementary-elastic-replication-pages": "АгӀонаш", + "smw-admin-supplementary-elastic-endpoints": "Чаккхенан меттигаш", + "smw-admin-supplementary-elastic-config": "Конфигурацеш", + "smw-admin-supplementary-elastic-no-connection": "Карарчу хенахь вики «таро йац» Elasticsearch кластерца зӀе латто. Дехар до, вики-администраторе йазде, проблема талла, хӀунда аьлча цо новкъарло йо системина индексаци йан йа лехамаш бан.", + "smw-list-count": "МогӀаман чохь ду $1 {{PLURAL:$1|дӀайаздар}}.", + "smw-property-label-uniqueness": "\"$1\" билгало йина лаххара а цхьана кхечу билгалонан хьажарца. Дехар до, [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness гӀоьнан агӀо] хьажа, хӀара проблема муха дӀанисйан мегар ду хаа.", + "smw-property-label-similarity-title": "Билгалонийн билгало цхьатера хиларан хаам", + "smw-property-label-similarity-intro": "$1 хьесап до лелаш йолчу билгалонийн цӀерийн цхьатера хилар", + "smw-property-label-similarity-threshold": "Чаккхе:", + "smw-property-label-similarity-type": "Гойта тайпа ID", + "smw-property-label-similarity-noresult": "Хаьржинчу опцешна цхьа а жамӀ ца карийна.", + "smw-property-label-similarity-docu": "ХӀокху агӀоно дусту [https://www.semantic-mediawiki.org/wiki/Property_similarity синтаксин цхьатера хилар] (амма маьӀнин йа лексикин цхьатера хилар дац) шина билгалонан цӀерашна йукъахь, хаам бо билгалонан цӀерашна, нагахь санна цхьа билггала барам тӀехбаьллехь. Отчето гӀо дан мега нийсайаздар нийса доцу йа эквивалент йолу, цхьа кхетам гойтуш йолу билгалонашна фильтраци йан (хьажа [[Special:Properties|Билгалонийн]] белхан агӀоне, рапортехь билгалонаш кхочушдаран кхетам а, лелор а къасто). Порог нисйан йиш йу тидаме эца дезаш долу цхьатера хиларан тӀегӀа шуьйра йа готта хилийта. [[Property:$1|$1]] лелайо анализах билгалонаш дӀадаха.", + "smw-admin-operational-statistics": "ХӀокху агӀонехь йу Semantic MediaWiki-ца уьйр йолчу функцишкахь йа цуьнах гулйина операцин статистика. Вики-къаьсттина статистикин шорбина могӀам хьажа [[Special:Statistics|кхузахь]].", + "smw_adminlinks_datastructure": "Хаамийн структура", + "smw_adminlinks_displayingdata": "Хаамаш гайтар", + "smw_adminlinks_inlinequerieshelp": "МогӀанехь долчу хаттарша гӀо до", + "smw-page-indicator-usage-count": "Гергарчу хьесапехь [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count лелоран дукхалла]: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "{{PLURAL:$1|декъашхочо|системо}} билгалйаьккхина башхалла", + "smw-property-indicator-last-count-update": "Гергарчу хьесапехь лелоран дукхалла\nТӀаьххьара карлайаьккхина: $1", + "smw-concept-indicator-cache-update": "Кэш лорург\nКарлайаьккхина: $1", + "smw-createproperty-isproperty": "ХӀара $1 тайпанан билгало йу.", + "smw-createproperty-allowedvals": "ХӀокху билгалонан {{PLURAL:$1|1=хӀара маьӀна мегаш ду|хӀара маьӀнаш мегаш ду}}:", + "smw-paramdesc-category-delim": "ДӀасакъастораг", + "smw-paramdesc-category-template": "Элементаш форматашка йерзош гӀо деш йолу кеп", + "smw-paramdesc-category-userparam": "Кепе дӀакхачо параметр", + "smw-info-par-message": "Хаам гайтархьама.", + "smw-info-par-icon": "Гойтуш йолу веназ («информаци» йа «дӀахьедар»).", + "prefs-smw": "Семантикин МедиаВики", + "prefs-general-options": "Йукъара параметраш", + "prefs-extended-search-options": "Кхиаме лехамаш", + "prefs-ask-options": "Семантикин лахар", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] (а, цуьнца доьзна долу шордарш а) таро ло функцийн тобанаш хийца. ХӀора меттигийн могӀам церан дийцаршца а, билгалонашца а леладо [https://www.semantic-mediawiki.org/wiki/Help:User_preferences рогӀерчу хьажорган] тӀехь.", + "smw-prefs-ask-options-tooltip-display": "Параметран текст гайта инфо гӀирсан хьехам санна #хаттар [[Special:Ask|хаттар кхуллуш]] леррина агӀонан тӀехь.", + "smw-prefs-ask-options-compact-view-basic": "Цхьалхе Ӏаьвдина формат дӀахӀоттайе", + "smw-prefs-help-ask-options-compact-view-basic": "Нагахь санна дӀахӀоттийна йелахь, гойту Special:Ask хьажоргийн йоца тоба Ӏаьвдина форматехь", + "smw-prefs-general-options-time-correction": "Белхан агӀонашна хан нисйар дӀахӀоттаде локалерчу параметрца [[Special:Preferences#mw-prefsection-rendering|хенан меттахӀоттам]]", + "smw-prefs-general-options-jobqueue-watchlist": "Гайта белхан рогӀехь терго латторан могӀам долара панелехь", + "smw-prefs-help-general-options-jobqueue-watchlist": "ДӀахӀоттайе, [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist могӀам] лаьтташ долу хаьржина гӀуллакхаш, гергарчу барамехь церан рогӀийн барамашца цхьаьна гайтархьама.", + "smw-prefs-general-options-disable-editpage-info": "Хийцаман агӀонан тӀехь йуьхьанцара текст дӀайаккха", + "smw-prefs-general-options-disable-search-info": "Стандартан лехаман агӀонан тӀехь синтаксин гӀоьналлин хаамаш дӀабаха", + "smw-prefs-general-options-suggester-textinput": "МаьӀнин объектийн предложенишна чудаларан ассистент дӀахӀоттайе", + "smw-prefs-help-general-options-suggester-textinput": "Ахьа йаздечу хенахь [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance автотӀейузар] билгалонан, концепцин, категорин цӀераш схьаэца йиш ло", + "smw-prefs-general-options-show-entity-issue-panel": "Гойту субъектан хаттаран панель", + "smw-prefs-help-general-options-show-entity-issue-panel": "Нагахь санна дӀахӀоттийна йелахь, хӀора агӀонан тӀехь нийсо толлуш дӀахьо, гойту [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel Духийн проблемийн панель].", + "smw-prefs-factedsearch-profile": "[[Special:FacetedSearch|Фасетан лехаран]] хьалха санна профиль харжа:", + "smw-ui-tooltip-title-property": "Билгало", + "smw-ui-tooltip-title-quantity": "Дакъош хийцар", + "smw-ui-tooltip-title-info": "Хаам", + "smw-ui-tooltip-title-service": "Белхан хьажорг", + "smw-ui-tooltip-title-warning": "ДӀахьедар", + "smw-ui-tooltip-title-error": "ГӀалат", + "smw-ui-tooltip-title-parameter": "Параметр", + "smw-ui-tooltip-title-event": "Хилам", + "smw-ui-tooltip-title-note": "Билгалдаккхар", + "smw-ui-tooltip-title-legend": "Легенда", + "smw-ui-tooltip-title-reference": "Билгалдаккхар", + "smw_unknowntype": "ХӀокху билгалонан хӀоттийна ду ца девза тайпа \"$1\".", + "smw-concept-cache-text": "Концепцин барам бу $1 {{PLURAL:$1|агӀо}} тӀаьххьара карладаьккхина $2 чуьра $3.", + "smw_concept_header": "«$1» хьажар лелош йолу агӀонаш", + "smw_conceptarticlecount": "Лахахь {{PLURAL:$1|гайтина}} $1 {{PLURAL:$1|агӀо}}.", + "smw-qp-empty-data": "Дехар дина хаамаш гайта йиш йац, хӀунда аьлча цхьайолу талламан критереш кхачам боллуш йац.", + "right-smw-admin": "Администрацин тӀекхача аьтто (Semantic MediaWiki)", + "right-smw-patternedit": "Сервисо тӀеэцна рогӀера аларш а, кепаш а хийца аьтто (Semantic MediaWiki)", + "right-smw-pageedit": "АгӀонаш хийцар аннотацица Is edit protected (Semantic MediaWiki)", + "right-smw-schemaedit": "Хийца [https://www.semantic-mediawiki.org/wiki/Help:Schema схемин агӀонаш] (Semantic MediaWiki)", + "right-smw-viewjobqueuewatchlist": "Белхан рогӀехь [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist тергаман могӀаман] функцина тӀекхачар (Semantic MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "Духашца йоьзна йолу ревизи нийса ца хиларх лаьцна информацин тӀекхачар (Semantic MediaWiki)", + "right-smw-vieweditpageinfo": "[https://www.semantic-mediawiki.org/wiki/Help:Edit_help Хийцамаш баран гӀоьне] хьажа (Semantic MediaWiki)", + "restriction-level-smw-pageedit": "ларйина (богӀуш болу бен)", + "action-smw-patternedit": "хийцамаш бар рогӀера аларш лелош Semantic MediaWiki", + "action-smw-pageedit": "аннотацица агӀонаш хийцар Is edit protected (''Semantic MediaWiki'')", + "group-smwadministrator": "Администраторш (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|администратор (Semantic MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:Администраторш (Semantic MediaWiki)", + "group-smwcurator": "(Semantic MediaWiki) кураторш", + "group-smwcurator-member": "{{GENDER:$1|(Semantic MediaWiki) куратор}}", + "grouppage-smwcurator": "{{ns:project}}:(Semantic MediaWiki) кураторш", + "group-smweditor": "(Semantic MediaWiki) редакторш", + "group-smweditor-member": "{{GENDER:$1|(Semantic MediaWiki) редактор}}", + "grouppage-smweditor": "{{ns:project}}:(Semantic MediaWiki) редакторш", + "action-smw-admin": "Semantic MediaWiki административан функцишна тӀекхача аьтто", + "action-smw-ruleedit": "бакъонийн агӀонаш хийца (Semantic MediaWiki)", + "smw-property-namespace-disabled": "[https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks ЦӀерийн меттиган] башхалла дӀайаьккхина йу, тайпа йа кхин тайпа билгалонаш дӀакхайкхо гӀертар оцу башхаллашна йиш йац.", + "smw-property-predefined-default": "«$1» — хьалххе билгалдаьккхина тайпанан башхалла $2.", + "smw-property-predefined-common": "ХӀара хьалххе дӀасадаржийна башхалла йу (иштта йевзаш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties леррина башхалла]) ткъа шеца кхин а административан бакъонаш йу, амма лело мегар ду муьлхха а кхин [https://www.semantic-mediawiki.org/wiki/Property декъашхочо билгалйаьккхина башхалла].", + "smw-property-predefined-ask": "«$1» — хьалххе билгалйаьккхина башхалла йу, гойту метахаамаш ([https://www.semantic-mediawiki.org/wiki/Subobject бухара объектан] формехь) индивидуалан дехарех лаьцна, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksi": "«$1» — хьалххе билгалйаьккхина башхалла йу, цо гулдо дехаршкахь лелочу билламийн дукхалла, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askde": "«$1» — хьалххе билгалйаьккхина башхалла йу, дехаран кӀоргенах лаьцна хаам беш, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askde": "Терахьийн маьӀна, схьадаьлла бухара дехарийн, зӀаьнарийн башхалла, лело йиш йолчу дийцарийн элементийн бен бан, лелайо дехарш кхочушдаран дозанаш тоха [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth] гӀоьнца", + "smw-property-predefined-askpa": "$1 — хьалххе билгалйаьккхина башхалла йу, дехаран жамӀана Ӏаткъам беш йолу параметраш йовзуьйтуш. ДӀаделла [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askpa": "ХӀара башхаллийн гуламийн дакъа ду, билгалдоккху [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler query profile].", + "smw-sp-properties-docu": "ХӀокху агӀонан тӀехь гойтуш йу лело йиш йолу [https://www.semantic-mediawiki.org/wiki/Property башхоллаш] а, церан леларан терахь а хӀокху вики чохь. Керла статистика хилийта, дика ду [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics статистикин башхаллаш] белхан скрипт хаддаза лело. Дифференциаци йинчу хьажарна хьажа белхан агӀонашна тӀе [[Special:UnusedProperties|лелош йоцу]] йа [[Special:WantedProperties|оьшу башхаллаш]].", + "smw-sp-properties-cache-info": "ХӀара хаамаш схьаэцна [https://www.semantic-mediawiki.org/wiki/Caching кэша чуьра] уьш тӀаьххьара карлабаьхна $1.", + "smw-sp-properties-header-label": "ХӀумнийн могӀам", + "smw-admin-settings-docu": "Гойту массо а стандартан а, локализацин а нисдаран гӀирсийн могӀам, цера уьйр йу Semantic MediaWiki гонах. ХӀора параметрех лаьцна хаамаш хьажа [https://www.semantic-mediawiki.org/wiki/Help:Configuration конфигурацин] гӀоьнан агӀоне.", + "smw-sp-admin-settings-button": "Нисдаран гӀирсийн могӀам кхолла", + "smw-admin-idlookup-title": "Лахар", + "smw-admin-idlookup-docu": "ХӀокху декъехь технически хаамаш бу цхьана объектах лаьцна (вики-агӀо, бухара объект, хьал, и. дӀ. кх.) Semantic MediaWiki чохь. Чулацам хила тарло терахьийн ID йа могӀанан маьӀна, догӀуш долу лехаман меттигца догӀуш, муьлхха а ID хьажор хила тарло Semantic MediaWiki, MediaWiki агӀонна йа версин лоьмарна ца хилча.", + "smw-admin-iddispose-title": "ДӀайаккхар", + "smw-admin-iddispose-docu": "Тидам бе, утилизацин операци доза доцуш йу, тӀечӀагӀдича дӀайоккхур йу чоьхьара объектан ID лармин бухера. Дехар до, хӀара гӀуллакх '''ларлуш''' кхочушде, [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal документаци] хьаьжначул тӀаьхьа.", + "smw-admin-iddispose-done": "«$1» идентификатор дӀайаьккхина лармин чуьра.", + "smw-admin-iddispose-references": "ID «$1» {{PLURAL:$2|жигара хьажоргаш йац|мел лаххара а цхьа жигара хьажорг йолуш}}.", + "smw-admin-iddispose-references-multiple": "Цхьа жигара хьажорг йолуш нисдаларийн могӀам.", + "smw-admin-iddispose-no-references": "Лехам нисбала йиш йацара «$1» таблицин элементца.", + "smw-admin-idlookup-input": "Лахар:", + "smw-admin-objectid": "Идентификатор:", + "smw-admin-tab-general": "Гуче", + "smw-admin-tab-notices": "Дехкарх лаьцна билгалдахарш", + "smw-admin-tab-maintenance": "Техникийн хьашташ", + "smw-admin-tab-supplement": "Кхин а функцеш", + "smw-admin-tab-registry": "Реестр", + "smw-admin-tab-alerts": "ДӀахаийтарш", + "smw-admin-alerts-tab-deprecationnotices": "Дехкарх лаьцна билгалдахарш", + "smw-admin-alerts-tab-maintenancealerts": "Техникийн хьашташ кхочушдаран хаамаш", + "smw-admin-alerts-section-intro": "ХӀокху декъехь гойту дӀахаийтарш а, хаамаш а, хьакхалуш долу нисдаран гӀирсашца, операцешца, кхин а ардамашца, уьш дӀасакъаьстина ду администраторан йа декъашхочун тидам тӀебахийта оьшу йолу бакъонаш йолучу.", + "smw-admin-maintenancealerts-section-intro": "Дагахь латтош долу лардарш а, хаамаш а дӀабахьа беза, тӀедиллина дацахь а, цо гӀо дийр ду аьлла хета система а, сервисийн ницкъ а тобарехь.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Таблицин оптимизаци", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "Системо къастийна, тӀаьххьара [https://www.semantic-mediawiki.org/wiki/Table_optimization таблицин оптимизаци] дӀайаьхьна хилар $2 де хьалха ($1 тӀера дӀайаздар) иза $3 дийнахь латторан порог совйаьлла. Документацехь хьахийна ма-хиллара, оптимизаци дӀайахьаро аьтто бийр бу дехарийн план хӀотторган дехарех лаьцна дика сацамаш бан, цундела тӀедиллина рогӀера таблицин оптимизаци дӀайахьа.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Ширделла духаш", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "Системо дагардина $1 [https://www.semantic-mediawiki.org/wiki/Outdated_entities ширделла духаш], кхаьчна критикин тӀегӀан тӀе терго йоцуш латторан, $2 маьӀна совдаккхарца. Цунна дика хир ду [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] латторан скрипт лело.", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Нийса йоцу духаш", + "smw-admin-maintenancealerts-invalidentities-alert": "Системо нисйина $1 [https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace ловш йолу цӀерийн меттиган] [https://www.semantic-mediawiki.org/wiki/Invalid_entities {{PLURAL:$1|духаца}}], [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] йа [https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php] латторан скрипт лело.", + "smw-admin-deprecation-notice-section": "Семантикин МедиаВики", + "smw-admin-configutation-tab-settings": "Нисдаран гӀирс", + "smw-admin-configutation-tab-namespaces": "ЦӀерийн меттигаш", + "smw-admin-configutation-tab-schematypes": "Схемийн тайпанаш", + "smw-admin-maintenance-tab-tasks": "Ӏалашонаш", + "smw-admin-maintenance-tab-scripts": "Ӏалашдаран скрипташ", + "smw-admin-maintenance-no-description": "Хаамаш бац.", + "smw-admin-maintenance-script-section-title": "ТӀекхочуш йолу белхан скриптийн могӀам", + "smw-admin-maintenance-script-section-intro": "Латторан скрипташна оьшу администратор а, командан могӀанна тӀекхача аьтто а, скрипташ кхочушйан аьтто хилийта.", + "smw-admin-maintenance-script-description-dumprdf": "Йолуш йолу триплеташ RDF форматехь экспорт йан.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "ХӀара скрипт лелайо Semantic MediaWiki-на концепцийн кэшашна урхалла дан, цигахь цуьнан йиш йу хаьржина кэш кхолла а, дӀайаккха а, карлайаккха а.", + "smw-admin-maintenance-script-description-rebuilddata": "База чохь берриге а семантикин хаамаш йухакхуллу, семантикин хаамаш хила тарлучу массо а агӀонашна тӀехула цикл йеш.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "Elasticsearch индекс йухаметтахӀоттайо (ElasticStore лелош йолчу дӀахӀоттамашна бен), массо а семантикин хаамаш болчу духашкахула цикл йеш.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Elasticsearch чохь доцу духаш лаха (ElasticStore лелош йолчу инсталляцешна бен) нийса карладаккхаран белхан тӀедиллар хӀоттаде.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "ЙухаметтахӀоттайо SQLStore дуьззина текстан лехаман индекс (параметр дӀахӀоттийначу инсталляцешна).", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Массо а бахаман объекташна лелоран статистика йухаметтахӀоттайо.", + "smw-admin-maintenance-script-description-removeduplicateentities": "ДӀайоккху духийн дубликаташ, хаьржинчу таблицашкахь карийна, жигара хьажоргаш йоцуш.", + "smw-admin-maintenance-script-description-setupstore": "ХӀоттадо ларма а, лехаман серверан дакъа а LocalSettings.php чохь билгалдаьккхина ма-хиллара.", + "smw-admin-maintenance-script-description-updateentitycollation": "Карлайоккху smw_sort меттиг SQLStore чохь ([https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] нисдаран гӀирсаца).", + "smw-admin-maintenance-script-description-populatehashfield": "smw_hash меттиг тӀейузу маьӀна ца тоьучу могӀанашна.", + "smw-admin-maintenance-script-description-purgeentitycache": "ЦӀандан кэшан дӀайаздарш девзачу духашна а, цаьрца боьзна хаамашна а.", + "smw-admin-maintenance-script-description-updatequerydependencies": "Дехарш а, дехарийн дозуш хилар а карладаккха (хьажа [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore]).", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "Ширделла духаш а, дехарийн хьажоргаш а дӀайаха.", + "smw-admin-maintenance-script-description-runimport": "[https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs] чохь авто карийна чулацам тӀебузар а, импорт йар а.", + "smw-admin-maintenance-script-section-update": "Скрипташ карлайаха", + "smw-admin-maintenance-script-section-rebuild": "Скрипташ йухаметтахӀиттор", + "smw-livepreview-loading": "Чуйолуш…", + "smw-sp-searchbyproperty-description": "ХӀокху агӀоно ло атта [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces лехаман интерфейс], дийцинчу башхаллонашца а, цӀерашца а маьӀнашца духаш лаха. Кхин лело йиш йолу лехаман интерфейсаш йу [[Special:PageProperty|агӀонан башхалла лехар]] а, [[Special:Ask|лехаман дехарш кхуллуш]] а.", + "smw-sp-searchbyproperty-resultlist-header": "Карийнарш", + "smw-sp-searchbyproperty-nonvaluequery": "ХӀоттина «$1» башхалла йолу маьӀнийн могӀам.", + "smw-sp-searchbyproperty-valuequery": "«$1» башхалла йолу агӀонийн могӀам, дӀакхайкхийна «$2» маьӀна долуш.", + "smw-datavalue-number-textnotallowed": "«$1» дӀадала йиш йац дӀакхайкхийначу тайпанан лоьмарна, маьӀна $2 долуш.", + "smw-datavalue-number-nullnotallowed": "«$1» йухадирзина «NULL» маьӀнаца, иза терахьашна магош дац.", + "smw-editpage-annotation-enabled": "ХӀокху агӀонехь ду текстан чуьра семантикин аннотацеш (масала, \"[[Is specified as::World Heritage Site]]\") дӀахӀоттийна, дехарш дан йиш йолу структурйина чулацам бан, Semantic MediaWiki-с луш йолу. Аннотацех йа ask парсеран функци лелор кхачам боллуш дийцар лаха, хьажа гӀоьналлин агӀонаш тӀе [https://www.semantic-mediawiki.org/wiki/Help:Getting_started белхан йуьхье], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation in-text annotation текстехь аннотацеш], [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries могӀанийн дехарш].", + "smw-editpage-annotation-disabled": "ХӀокху агӀоно бакъо ца ло текстехь маьӀнин аннотацеш йан, цӀерийн меттиган дозанаш бахьана долуш. ЦӀерийн меттигаш муха дӀайаха йеза бохучух лаьцна дерг [https://www.semantic-mediawiki.org/wiki/Help:Configuration конфигурацин гӀоьнан агӀонан] тӀехь ду.", + "smw-editpage-property-annotation-enabled": "ХӀара башхалла шорйан йиш йу семантикин аннотацешца, хаамийн тайпа билгалдаккхархьама (масала, \"[[Has type::Page]]\") йа кхин гӀоьналлин чӀагӀдарш (масала, \"[[Subproperty of::dc:date]]\"). ХӀара агӀо муха шорйан йеза хьажа [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration башхаллин дӀахьедар] гӀоьнан агӀо йа [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes тӀекхочу хаамийн тайпанийн могӀам].", + "smw-editpage-property-annotation-disabled": "ХӀара башхалла шорйан йиш йац хаамийн тайпанан аннотацица (масала, \"[[Has type::Page]]\"), хӀунда аьлча иза хьалххе билгалдаьккхина ду (хьажа кхин а информаци [https://www.semantic-mediawiki.org/wiki/Help:Special_properties леррина башхаллаш]) гӀоьнан анӀонехь.", + "smw-editpage-concept-annotation-enabled": "ХӀара концепт шорйан йиш йу #concept парсеран функцица. #concept муха лело йеза хьоьхучу хааме хьажа [https://www.semantic-mediawiki.org/wiki/Help:Concepts концептех] лаьцна гӀоьнан агӀонгахь.", + "smw-search-syntax-support": "Лехаман меттиго лело [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search семантикин дехарийн синтаксис] ''MediaWiki''.", + "smw-search-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Чулацаман гӀо] дӀахӀоттийна, массо а хила тарлуш йолу варианташ а, категореш а къасто атта хилийта.", + "smw-search-help-intro": "[[ ... ]] йаздича, процессорна гойтур ду ''Semantic MediaWiki'' лехаман механизм лелор. Тидам бе, [[ ... ]] цхьаьнатохар нийсачу текстан лехамашца масала [[ ... ]] OR Lorem ipsum лелош йац.", + "smw-search-help-structured": "Структурйина лехам:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] — [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context харжаран контекст]\n\n*[[Has text::~*lorem*]] — [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context дехаран контекстца]", + "smw-search-help-proximity": "Уллехь лехар (башхалла ца йевзаш хиларна, '''бен''' лело йиш йу бэкендашна, цуо ло йуьззина текстан лехаман интеграци):\n\n* [[in:lorem ipsum]] (массо а документашкахь лаха индекс йина йолу «lorem» а, «ipsum» а)\n\n* [[phrase:lorem ipsum]] (нийса догӀу «lorem ipsum» фразаш санна)", + "smw-search-help-ask": "ХӀокху хьажоргашкахь информаци йу #ask парсеран функци муха лелайо:\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages АгӀонаш къастор] — агӀонаш муха къасто йеза а, къасторан хьелаш кхолла а\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Лехаман операторш] — ловш йолу лехаман операторш, шайна йукъахь диапазон а, метасимволш а къастор", + "smw-search-input": "ДӀайаздар а, лехар а", + "smw-search-help-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance АвтотӀейузаран] дӀайазйаран меттигехь оьшу хӀокху дешхьалхенех цхьаъ:\n\n*p: башхалашна (масала, [[p:Has ...)\n\n*c: категорешна\n\n*con: концепцешна", + "smw-search-syntax": "Синтаксис", + "smw-search-profile": "Кхин а", + "smw-search-profile-tooltip": "Semantic MediaWiki йоьзна йолу лехаман функцеш", + "smw-search-profile-sort-best": "Дика цхьанадараш", + "smw-search-profile-sort-recent": "Уггаре а тӀаьххьара", + "smw-search-profile-sort-title": "ЦӀе", + "smw-search-profile-extended-help-intro": "[https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile Шорйина агӀонан профиль] ''Белхан:Лехар'' ло лехаман функцешна тӀекхача, леррина йу Semantic MediaWiki а, цу чохь ловш долчу дехаран серверан дакъа а.", + "smw-search-profile-extended-help-sort": "Дехаран жамӀийн рогӀалла дӀасакъастар:", + "smw-search-profile-extended-help-sort-title": "*«ЦӀе» агӀонан цӀе (йа гайтаран цӀе) лелош дӀасакъасторан критереш санна", + "smw-search-profile-extended-help-sort-recent": "* \"Уггаре тӀаьхьарниг\" агӀонаш гайта тӀаьххьара хийцаран рогӀехь (уггаре тӀаьхьарчу хийцамийн рогӀехь дуьйна уггаре а ширачу кхаччалц), амма бухара объекташ гойтур йац, хӀунда аьлча церан дац [[Property:Modification date|Хийцаран терахь]] башхалла билгалйаьккхина.", + "smw-search-profile-extended-help-sort-best": "* «Уггаре дика цхьанадар» дӀасакъастор ду духаш [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy нийса хилар] бекэндо деллачу мах хадорашна тӀе а тевжаш", + "smw-search-profile-extended-help-form": "Формаш ло (нагахь санна латтош йелахь) билгалчу варианташца догӀуш хилийта, тайп-тайпана башхаллин а, мехаллин а меттигаш гучуйахарца, чуйаларан процесс готта йан а, декъашхошна лехаман дехарца дӀадахьа аьтто хилийта а. (хьажа $1)", + "smw-search-profile-extended-help-namespace": "ЦӀерийн меттиг талларан меттиг къайлайоккхур йу форма хаьржиначул тӀаьхьа, амма гуш йан йиш йу «гайта/къайлайаккха» нуьйдин гӀоьнца.", + "smw-search-profile-extended-help-search-syntax": "Лехаман меттиго лелайо #ask синтаксисин парсеран функцин семантикин лехамашна. Пайдечу аларшна йукъахь ду:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: «...» йукъахь долу шадерг лаха, къаьсттина пайдехьа ду лехаман контекст йа цу йукъайогӀу башхаллаш ца йевзаш хилча (масала, in:(lorem && ipsum) эквивалентан йу [[~~*lorem*]] && [[~~*ipsum*]]).", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: нийсса цхьана рогӀаллехь \"...\" чохь долу шадерг лаха", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: муьлхха а дух нисйан \"...\" башхаллинца (масала, has:(Foo && Bar) эквиваленан йу [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: цхьана а духаца нийса ца хилийта, шена йукъахь \"...\" йукъайогӀуш йолуш.", + "smw-search-profile-extended-help-search-syntax-prefix": "* Кхин а леррина дешхьалхенаш лело йиш йолуш а, билгалйаьхна а йу, масала: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* Цхьадолу аларш лардина ду, масала: $1", + "smw-search-profile-extended-help-search-syntax-note": "«Цхьайолу гайтина операцеш пайдехьа йу, нагахь санна уьш цхьаьнатоьхча йуьззина текстан индексца йа ElasticStore дӀахӀоттийна хилча.»", + "smw-search-profile-extended-help-query": "$1 лелийна дехар санна.", + "smw-search-profile-extended-help-query-link": "Кхин дӀа хаа лаахь леладе $1.", + "smw-search-profile-extended-help-find-forms": "ТӀекхочу форманаш", + "smw-search-profile-extended-section-sort": "Къастам бе", + "smw-search-profile-extended-section-form": "Формаш", + "smw-search-profile-extended-section-search-syntax": "Логин леха", + "smw-search-profile-extended-section-namespace": "ЦӀерийн меттиг", + "smw-search-profile-extended-section-query": "Дехар", + "smw-search-profile-link-caption-query": "дехарийн конструктор", + "smw-search-show": "Гайта", + "smw-search-hide": "Къайлайаккха", + "log-name-smw": "Semantic MediaWiki журнал", + "log-show-hide-smw": "$1 Semantic MediaWiki журнал", + "logeventslist-smw-log": "Semantic MediaWiki журнал", + "log-description-smw": "Semantic MediaWiki а, цуьнан компоненташа а дӀайаздеш долу [https://www.semantic-mediawiki.org/wiki/Help:Logging йан йиш йолу хиламийн тайпанаш] хьокъехь долу гӀуллакх.", + "logentry-smw-maintenance": "Сервисца боьзна хиламаш кхоьллина Semantic MediaWiki", + "smw-datavalue-import-unknown-namespace": "Импортан цӀерийн меттиг «$1» йевзаш йац. OWL импортан информаци [[MediaWiki:Smw import $1]] агӀонца хиларх тешна хила.", + "smw-datavalue-import-missing-namespace-uri": "[[MediaWiki:Smw import $1|$1 импорт]] чохь ца карийна цӀерийн меттиган URI «$1.", + "smw-datavalue-import-missing-type": "Цхьа а тайпа билгалдаккхар ца карийна «$1» [[MediaWiki:Smw import $2|$2 импорт]] чохь.", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|Импорт $1]]", + "smw-datavalue-import-invalid-value": "«$1» нийса формат йац, иза хила йеза «цӀерийн меттиг»:«идентификатор» (масала «foaf:name»).", + "smw-datavalue-import-invalid-format": "«$1 могӀа диъ декъе бекъа безаш бара, амма формат кхеташ йацара.", + "smw-property-predefined-impo": "«$1» — хьалххе билгалйаьккхина башхалла йу, цо гойту [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary дӀаэцначу лексикица] йолу йукъаметтиг, иза луш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-type": "«$1» — хьалххе билгалйаьккхина башхалла йу, цуо гойту [[Special:Types|хаамийн тайпа]], иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-sobj": "«$1» — хьалххе билгалйаьккхина башхалла йу, гойту [https://www.semantic-mediawiki.org/wiki/Help:Container контейнеран] конструкци, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-sobj": "ХӀокху лармо аьтто бу Ӏалашдан башхаллийн маьӀнаш, рогӀера вики-агӀонан тӀехь санна, амма леррина меттигехь дӀадихкина иза чулоцучу агӀонца.", + "smw-property-predefined-errp": "«$1» — хьалххе билгалйаьккхина башхалла йу аннотацешкахь нийса доцу маьӀна лело, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-errp": "Хаамийн тайпа нийса ца хилар бахьана долуш йа [[Property:Allows value|тӀекхочу маьӀнаш]] дехкар бахьана долуш кхойкху.", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value «$1»] — хьалххе билгалйаьккхина башхалла йу, цуо билгалбаккха йиш йу бакъо йеллачу маьӀнийн могӀам, маьӀна дӀадалар доза тохархьама, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list «$1»] — хьалххе билгалйаьккхина башхалла йу, хьажорг Ӏалашйан бакъо йеллачу башхиллийн маьӀнийн могӀам ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]''.", + "smw-datavalue-property-restricted-annotation-use": "«$1» башхалла шатайпа Ӏалашо йолуш йу, цуьнан маьӀна семантикин аннотацехь хӀотто йиш йац.", + "smw-datavalue-property-restricted-declarative-use": "«$1» — башхалла декларативан йу, хьашт йа категорин агӀонаш тӀехь бен лело ца йеза.", + "smw-datavalue-property-create-restriction": "«$1» башхалла хӀинца а йац, ткъа декъашхочун бакъо йац «$2» (хьажа [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode ТӀекхачаран урхаллин раж]) керла башхалла кхоллархьама.", + "smw-datavalue-property-invalid-character": "«$1» чохь магийна доцу хьаьрк «$2» ду, цундела нийса ца хилар билгалдаьккхина ду.", + "smw-datavalue-property-invalid-chain": "«$1» башхаллин могӀа лело бакъо йац семантикин аннотацехь.", + "smw-datavalue-restricted-use": "«$1» хаамийн маьӀна билгалдаьккхина лело йиш йоцуш.", + "smw-datavalue-invalid-number": "«$1» терахь санна тида йиш йац.", + "smw-query-condition-circular": "Хила тарлуш долу циклан биллам гучубаьлла «$1» чохь.", + "smw-query-condition-empty": "Дехарехь баьсса биллам бу.", + "smw-types-list": "Хаамийн тайпанийн могӀам", + "smw-types-default": "«$1» дӀайаздина хаамийн тайпа.", + "smw-types-help": "Кхин а информаци а, масалш а каро йиш [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 гӀоьнан агӀонан тӀехь].", + "smw-type-anu": "«$1» — [[Special:Types/URL|URL]] хаамийн тайпанан вариант йу, иза коьртачу декъана лелайо «owl:AnnotationProperty» экспортан декларацина.", + "smw-type-boo": "«$1» — бакъ/харц маьӀна гойтуш долу хьалхалера хаамийн тайпа.", + "smw-type-cod": "«$1» — [[Special:Types/Text|Текст]] хаамийн тайпанан вариант йу, лаамехь йохалла йолчу техникин текстехь лело, масала йуьхьанцара кодан могӀамашкахь.", + "smw-type-geo": "«$1» — географин меттиг гойтуш долу хаамийн тайпа ду, шуьйра болх бан [https://www.semantic-mediawiki.org/wiki/Extension:Maps «Maps» шордар] дӀахӀотто деза.", + "smw-type-tel": "«$1» — леррина хаамийн тайпа ду дуьненайукъара телефонан лоьмарш йовзийта RFC 3966 сацамца.", + "smw-type-txt": "«$1» — лаамехь йохалла йолу могӀанийн дийцаран хьалхалера хаамийн тайпа.", + "smw-type-dat": "«$1» — хенан моменташ цхьана форматехь гойтуш йолу хаамийн тайпа.", + "smw-type-ema": "«$1» — электронан поштан адрес чохь долу ларма.", + "smw-type-tem": "«$1» — леррина терахьийн тайпа ду температура ларйан.", + "smw-type-qty": "«$1» — леррина терахьийн тайпа ду температура ларйан.", + "smw-type-rec": "«$1» — тайпанийн башхаллин могӀаман хаамийн тайпа.", + "smw-type-extra-tem": "Гочдаран процедуро ловш йу Кельвинан температурин шкалаш, Цельсин, Фаренгейта, Ранкина.", + "smw-type-tab-properties": "Билгало", + "smw-type-tab-types": "Тайпанаш", + "smw-type-tab-type-ids": "Тайпанан идентификаторш", + "smw-type-tab-errors": "ГӀалаташ", + "smw-type-primitive": "Бух", + "smw-type-contextual": "Дозуш", + "smw-type-compound": "Цхьаьнакхетарш", + "smw-type-container": "Контейнер", + "smw-type-no-group": "Къайлаха дац", + "smw-special-pageproperty-description": "ХӀокху агӀоно лехаман интерфейс ло массо башхаллин маьӀнашна а, йеллачу агӀонна а. Кхин а лелаш йолу лехаман интерфейсаш йу [[Special:SearchByProperty|башхаллин лехар]] а, [[Special:Ask|лехаман дехарш кхуллуш йолу]] а.", + "smw-property-predefined-errc": "«$1» — хьалххе билгалйаьккхина башхалла йу, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], гойту маьӀнийн аннотацеш йа чудалар кечдаран гӀалат бахьана долуш.", + "smw-property-predefined-long-errc": "ГӀалаташ гулдина ду [https://www.semantic-mediawiki.org/wiki/Help:Container контейнерехь], цу чохь хила тарло нийса ца догӀуш хилар бахьана хиллачу башхаллин тӀе хьажоргаш а.", + "smw-property-predefined-errt": "«$1» — хьалххе билгалйаьккхина башхалла йу, шена чохь гӀалатан текстан дийцар а долуш, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-subobject-parser-invalid-naming-scheme": "Декъашхочо билгалйаьккхинчу бухара объектехь нийса йоцу цӀерийн схема йара. Хьалхарчу пхеа хьаьркехь йолу хан ($1) лерина йу шордаршна лело. Хьуна лаахь [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier цӀерийн идентификатор] дӀахӀотто мегар ду.", + "smw-datavalue-record-invalid-property-declaration": "ДӀайаздаран чохь йу «$1» башхалла, иза ша дӀакхайкхийна дӀайаздаран тайпа ду, иза магош дац.", + "smw-property-predefined-mdat": "«$1» — хьалххе билгалйаьккхина башхалла йу, иза догӀу объектан тӀаьххьара хийцаран ханца, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cdat": "«$1» — хьалххе билгалйаьккхина башхалла йу, иза догӀу субъектан хьалхара версин денца, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-newp": "«$1» — хьалххе билгалйаьккхина башхалла йу, цо гойту субъект керла йу йа йац, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-ledt": "«$1» — хьалххе билгалйаьккхина башхалла йу хьалхара верси кхоьллинчу декъашхочун агӀонан цӀе шена чохь йолуш, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-mime": "«$1» — хьалххе билгалйаьккхина башхалла йу, цуо гойту чуйьккхинчу файлан MIME тайпа, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-media": "«$1» — хьалххе билгалйаьккхина башхалла йу, цуо гойту чуйаьккхинчу медиа-файлан медиа-тайпа, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askfo": "«$1» — хьалххе билгалйаьккхина башхалла йу, цу чохь йу дехарехь лелош йолу чаккхенан форматан цӀе, иза луш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askst": "«$1» — хьалххе билгалйаьккхина башхалла йу, лехаман хьелаш могӀанан кепехь гойтуш, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askdu": "«$1» — хьалххе билгалйаьккхина башхалла йу, шена чохь хан (секундашца) йолуш, дехар кхочушдан оьшуш йолу, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksc": "«$1» — хьалххе билгалйаьккхина башхалла йу ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' луш йу, альтернативан (и. дӀ. арахьара) дехарийн хьостанаш Ӏалашдан.", + "smw-property-predefined-askco": "«$1» — хьалххе билгалйаьккхина башхалла йу ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' дехарийн хьал Ӏалашдан йа цуьнан дакъош Ӏалашдан.", + "smw-property-predefined-long-askco": "Дехарийн хьолан код гойтуш долу терахь йа терахьаш (хьажа [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler Дехарийн профилер]).", + "smw-property-predefined-prec": "«$1» — хьалххе билгалйаьккхина башхалла йу, терахьийн хаамийн тайпанашна [https://www.semantic-mediawiki.org/wiki/Help:Display_precision гайтаран нийсалла] (дешдакъойн терахьашца) гойтуш.", + "smw-property-predefined-attch-link": "«$1» — хьалххе билгалйаьккхина башхалла йу, агӀонехь карийна чухӀоттина файлан а, суьртан а хьажоргаш гулйеш йолу, иза луш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-inst": "«$1» — чоьхьара хьалххе билгалйаьккхина башхалла йу, цуо латтайо категорин информаци MediaWiki йозуш йоцуш, иза луш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-unit": "«$1» — декларативан хьалххе билгалйаьккхина башхалла йу, терахьийн тайпанан башхаллашна гайтаран цхьаьнакхетараллаш билгалйаха, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-unit": "ЦӀоьмалгца къастийначу могӀамо аьтто бо гайтамехь лело йезаш йолу цхьаьнакхетараллаш йа форматаш йовзийта.", + "smw-property-predefined-conv": "«$1» — декларативан хьалххе билгалйаьккхина башхалла йу, физикин бараман цхьана цхьаьнакхетараллин хийцаран коэффициент билгалйаккхархьама, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-serv": "«$1» — декларативан хьалххе билгалйаьккхина башхалла йу, башхаллашна белхан хьажоргаш тӀетоха, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-redi": "«$1» — чоьхьара хьалххе билгалйаьккхина башхалла йу, хийцамаш дӀайазбан, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-subp": "«$1» — декларативан хьалххе билгалйаьккхина башхалла йу, билгалйаьккхина кхечу [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of бухара башхаллин] хилар билгалдаккхархьама, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-subc": "«$1» — декларативан хьалххе билгалйаьккхина башхалла йу, билгалйаьккхина кхечу [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of бухара категорин] хилар билгалдаккхархьама, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-conc": "«$1» — чоьхьара хьалххе билгалйаьккхина башхалла йу, цунах боьзна концепци билгалйаккхархьама, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-err-type": "«$1» — хьалххе билгалйаьккхина башхалла йу, [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors гӀалаташ нисдаран] тобанан йа классан идентификаци йан, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-skey": "«$1» — чоьхьара хьалххе билгалйаьккхина башхалла йу, дӀасакъасторан хьажорг латто, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pplb": "«$1» — декларативан хьалххе билгалйаьккхина башхалла йу, [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label гӀоле хетачу башхаллин билгало] билгалйаккхархьама, иза луш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-chgpro": "«$1» — хьалххе билгалйаьккхина башхалла йу [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation хийцамаш баржоран] информаци латто, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-link": " ткъа дӀалуш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-format-schema": " ткъа дӀалуш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-profile-schema": " ткъа дӀалуш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans": " ткъа дӀалуш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-source": " ткъа дӀалуш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-group": " ткъа дӀалуш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cont-len": "«$1» — хьалххе билгалйаьккхина башхалла йу йохаллин информаци Ӏалашйан, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-len": "Иза лелайо [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] ([https://www.semantic-mediawiki.org/Attachment_processor тӀетохаран процессорца]) цхьаьна, чуйаьккхинчу файлера схьаэцна йохаллин информаци гулйан а, Ӏалашйан а (нагахь санна йелахь).", + "smw-property-predefined-cont-lang": "«$1» — хьалххе билгалйаьккхина башхалла йу меттан информаци Ӏалашйан, иза луш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-lang": "Иза лелайо [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ткъа иштта [https://www.semantic-mediawiki.org/Attachment_processor тӀетохаран процессорца]) цхьаьна, схьаэцначу файлера схьаэцна меттан информаци гулйан а, Ӏалашйан а (нагахь санна иза йелахь).", + "smw-property-predefined-cont-title": "«$1» — хьалххе билгалйаьккхина башхалла йу цӀеран информаци Ӏалашйан, иза луш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-title": "Иза лелайо [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] ([https://www.semantic-mediawiki.org/Attachment_processor тӀетохаран процессорца]) цхьаьна, чуйаьккхинчу файлера схьаэцна корта болу информаци гулйан а, Ӏалашйан а (нагахь санна йелахь).", + "smw-property-predefined-cont-author": "«$1» — авторах лаьцна информаци Ӏалашйан хьалххе билгалйаьккхина башхалла йу, иза луш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-author": "Иза лелайо [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ткъа иштта [https://www.semantic-mediawiki.org/Attachment_processor тӀетохаран процессорца]) цхьаьна, чуйаьккхинчу файлера схьаэцна авторан информаци гулйан а, Ӏалашйан а (нагахь санна иза йелахь).", + "smw-property-predefined-cont-date": "«$1» — хьалххе билгалйаьккхина башхалла йу, терахьан информации Ӏалашйан, иза луш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-date": "Иза лелайо [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ткъа иштта [https://www.semantic-mediawiki.org/Attachment_processor тӀетохаран процессорца]) цхьаьна, чуйаьккхина файлера схьаэцна денна лерина информаци гулйан а, Ӏалашйан а (нагахь санна йеллехь).", + "smw-property-predefined-cont-type": "«$1» — хьалххе билгалйаьккхина башхалла йу файлан тайпанан информаци Ӏалашйан, иза луш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-type": "Иза лелайо [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] ([https://www.semantic-mediawiki.org/Attachment_processor тӀетохаран процессорца]) цхьаьна, чуйаьккхина файлера схьаэцна тайпанан информаци гулйан а, Ӏалашйан а (нагахь санна йеллехь).", + "smw-property-predefined-cont-keyw": "«$1» — коьрта дешнаш гойтуш хьалххе билгалйаьккхина башхалла йу, иза луш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-keyw": "Иза лелайо [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] ([https://www.semantic-mediawiki.org/Attachment_processor тӀетохаран процессорца]) цхьаьна, чуйаьккхинчу файлера схьадаьхна коьрта дешнаш гулдан а, Ӏалашдан а (нагахь санна билгалдаьккхинехь).", + "smw-property-predefined-file-attch": "«$1» — хьалххе билгалйаьккхина башхалла йу, гойтуш йу тӀетохаран информаци Ӏалашйеш йолу контейнер, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-file-attch": "Иза лелайо [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] ([https://www.semantic-mediawiki.org/Attachment_processor тӀетохаран процессорца]) цхьаьна, массо а чулацаман леррина информаци гулйан, дӀайеллачу файлера схьайаккха йиш йолуш (нагахь санна дӀайелла йелахь).", + "smw-types-extra-geo-not-available": "[https://www.semantic-mediawiki.org/wiki/Extension:Maps «Maps» шордар] ца карийна, цундела «$1» башхалла шен болх барехь дозаделла ду.", + "smw-datavalue-monolingual-dataitem-missing": "Цхьанаметтан маьӀна кхолларан хьоьжуш йолу элемент йац.", + "smw-datavalue-languagecode-missing": "«$1» аннотацина парсеран аьтто ца баьлла меттан код къасто (масала \"foo@en\").", + "smw-datavalue-languagecode-invalid": "«$1» билгал ца йаьккхина болуш болу меттан код санна.", + "smw-property-predefined-lcode": "«$1» — хьалххе билгалйаьккхина башхалла йу BCP47 форматан меттан код гойтуш, иза луш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-type-mlt-rec": "«$1» — [https://www.semantic-mediawiki.org/wiki/Help:Container контейнеран] хаамийн тайпа ду, текстан маьӀна билгалчу [[Property:Language code|меттан кодца]] уьйр йолуш.", + "smw-types-extra-mlt-lcode": "ХӀокху хаамийн тайпанан {{PLURAL:$2|оьшу|ца оьшу}} меттан код (и. д. {{PLURAL:$2|меттан код йоцу маьӀнан аннотаци тӀе ца оьцу|меттан код йоцу маьӀнан аннотаци тӀеоьцу}}).", + "smw-property-predefined-text": "«$1» — хьалххе билгалйаьккхина башхалла йу, леррина йохалла йолу текст гойтуш, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pdesc": "«$1» — хьалххе билгалйаьккхина башхалла йу, цуо бакъо ло башхалла меттан контекстехь йийца, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-list": "«$1» — хьалххе билгалйаьккхина башхалла йу, [[Special:Types/Record|record]] тайпанан башхаллица лелош болу башхаллийн могӀам билгалбаккхархьама, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] Текстан чуьра аннотацин талларан хан", + "smw-limitreport-intext-postproctime": "[SMW] пост-кечйаран хан", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|секунд}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|секунд}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] store-база карлайаккхаран хан (агӀо карлайаьккхича)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|секунд}}", + "smw_allows_pattern": "АгӀо схьайиллина хилийта «[[Property:Allows pattern|Allows pattern]]» башхаллашца, агӀонан тӀехь хила деза хьажоргийн могӀам (цул тӀаьхьа [https://en.wikipedia.org/wiki/Regular_expression рогӀера аларш]). ХӀара агӀо хийца smw-patternedit бакъонаш оьшу.", + "smw-datavalue-allows-pattern-mismatch": "«$2» рогӀера аларо «$1» маьӀна нийса доцуш санна классификаци йина.", + "smw-datavalue-allows-pattern-reference-unknown": "«$1» кепан хьажоргаш йуста йиш йацара [[MediaWiki:Smw allows pattern]] чохь долчу дӀайаздарца.", + "smw-datavalue-allows-value-list-unknown": "«$1» могӀа ца карийна [[MediaWiki:Smw allows list $1]] могӀамехь.", + "smw-datavalue-allows-value-list-missing-marker": "«$1» могӀамехь цхьа а могӀанаш дац могӀаман маркерца *.", + "smw-datavalue-feature-not-supported": "ХӀокху вики тӀехь «$1» функци лелош йац йа дӀайайина йу.", + "smw-property-predefined-pvap": "«$1» — хьалххе билгалйаьккхина башхалла йу, иза хила йиш йу [[MediaWiki:Smw allows pattern|кепан тӀе хьажорг]] билгалйаьккхина [https://en.wikipedia.org/wiki/Regular_expression рогӀера аларш] догӀуш хилар кхочушдар, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-dtitle": "«$1» — хьалххе билгалйаьккхина башхалла йу, шена тӀедилла йиш йолуш билгалйолу гайтаман цӀе духанна, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvuc": "«$1» — хьалххе билгалйаьккхина башхалла йу, [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] луш долу, хӀора инстанцина маьӀна дӀадалар шатайпа маьӀна (йа максимум цхьаъ) дӀадаккхархьама.", + "smw-property-predefined-long-pvuc": "Шатайпаналла кхоллало, нагахь санна ши маьӀна цхьатерра ца хилча шайн символан гайтамехь, ткъа муьлхха а и дехкар дохор гӀалат санна лорур ду.", + "smw-datavalue-constraint-uniqueness-violation": "«$1» башхалло шатайпа маьӀна бен дӀа цало, ткъа «$2» хӀинцале а аннотаци йина йу «$3» темина.", + "smw-datavalue-constraint-uniqueness-violation-isknown": "«$1» башхалла бен ца магайо шатайпа тӀедилларш дан. «$2» агӀонан тӀехь хӀинцале а билгалдина маьӀна ду. «$3» — шатайпа хиларан дехар дохош ду.", + "smw-datavalue-constraint-violation-non-negative-integer": "«$1» башхаллин «дацаре доцу дерриге терахь» дехкар ду, ткъа «$2» маьӀно и тӀедиллар доха до.", + "smw-datavalue-constraint-violation-must-exists": "«$1» башхаллин must_exists дехкар ду, ткъа «$2» маьӀна и тӀедиллар дохош ду.", + "smw-datavalue-constraint-violation-single-value": "«[[Property:$1|$1]]» башхаллин single_value дехкар ду, ткъа «$2» маьӀна и тӀедиллар дохош ду.", + "smw-constraint-violation-uniqueness": "unique_value_constraint дӀахӀоттийна «[[Property:$1|$1]]» башхаллина, цо бен ца ло шатайпа маьӀна дӀадала, ткъа маьӀнийн аннотаци «$2» хӀинцале а карийна «$3» субъектехь аннотаци йина.", + "smw-constraint-violation-uniqueness-isknown": "«[[Property:$1|$1]]» башхаллина unique_value_constraint дӀахӀоттийна ду, цундела шатайпа маьӀнийн аннотацеш бен ца магайо. ''$2'' хӀинцале а аннотаци йина маьӀна ду «$3», цуо дохадо карарчу хенахь йолчу субъектан шатайпа дехкарш.", + "smw-constraint-violation-non-negative-integer": "non_negative_integer дехкар делла «[[Property:$1|$1]]» башхаллин, ткъа аннотацин маьӀно дохош ду «$2» тӀедиллар дохош ду.", + "smw-constraint-violation-must-exists": "must_exists дехкар делла «[[Property:$1|$1]]» башхаллин, ткъа аннотацин маьӀно дохош ду «$2» тӀедиллар дохош ду.", + "smw-constraint-violation-single-value": "single_value дехкар делла «[[Property:$1|$1]]» башхаллин, ткъа аннотацин маьӀно дохош ду «$2» тӀедиллар дохош ду.", + "smw-constraint-violation-class-shape-constraint-missing-property": "shape_constraint дӀахӀоттийна «[[:$1]]» категорина property догӀанца, оьшу «$2» башхалла ца тоьу.", + "smw-constraint-violation-class-shape-constraint-wrong-type": "shape_constraint дӀало «[[:$1]]» категорина property_type догӀанца, «$2» башхалла нийса ца йогӀу «$3» тайпанца.", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "shape_constraint дӀало «[[:$1]]» категорина max_cardinality догӀанца, «$2» башхалла нийса ца йогӀу «$3» кардиналаллаца.", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "shape_constraint дӀало «[[:$1]]» категорина min_textlength догӀанца, «$2» башхалла нийса ца йогӀу «$3» йохаллин дехаршца.", + "smw-constraint-violation-class-mandatory-properties-constraint": "mandatory_properties дехкар хӀоттина «[[:$1]]» категорина, цунна оьшу хӀара тӀейихкина башхаллаш: $2", + "smw-constraint-violation-allowed-namespace-no-match": "allowed_namespaces дехкар дӀахӀоттийна «[[Property:$1|$1]]» башхаллашна, «$2» дохадо цӀерийн меттиган тӀедиллар, лахахь йийцина «$3» цӀерийн меттигаш бен магош йац.", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "allowed_namespaces дехкарна агӀонан тайпа оьшу.", + "smw-constraint-schema-category-invalid-type": "Аннотаци йина «$1» схема нийса йац категорина, цунна оьшу «$2» тайпа.", + "smw-constraint-schema-property-invalid-type": "Аннотаци йина «$1» схема нийса йац башхаллина, цунна оьшу «$2» тайпа.", + "smw-constraint-error-allows-value-list": "«$1» йукъа ца йогӀу могӀанан ($2) [[Property:Allows value|магийна маьӀнаш]] «$3» билгалонан.", + "smw-constraint-error-allows-value-range": "«$1» йукъа ца йогӀу дехкарийн могӀанан ($2) [[Property:Allows value|магийна маьӀнаш]] «$3» билгалонан.", + "smw-property-predefined-boo": "«$1» — [[Special:Types/Boolean|хаамийн тайпа]] а, хьалххе билгалйаьккхина башхалла а йу ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' луш йолу булан маьӀнаш Ӏалашдан.", + "smw-property-predefined-num": "«$1» — [[Special:Types/Number|хаамийн тайпа]] а, хьалххе билгалйаьккхина башхалла а йу ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' терахьийн хаамаш Ӏалашбарна.", + "smw-property-predefined-dat": "«$1» — [[Special:Types/Date|хаамийн тайпа]] а, хьалххе билгалйаьккхина башхалла а йу ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' хенаш Ӏалашйан.", + "smw-property-predefined-uri": "«$1» — [[Special:Types/Date|хаамийн тайпа]] а, хьалххе билгалйаьккхина башхалла а йу ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' URI а, URL а Ӏалашйан.", + "smw-property-predefined-qty": "«$1» — [[Special:Types/Date|хаамийн тайпа]] а, хьалххе билгалйаьккхина башхалла а йу ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' мах хадоран дакъошца Ӏалашдаран.", + "smw-datavalue-time-invalid-offset-zone-usage": "«$1» чохь йолу меттахдалар а, сахьтан аса а ца йовза.", + "smw-datavalue-time-invalid-values": "«$1» маьӀнан чохь йу йевзаш йоцу информаци «$2».", + "smw-datavalue-time-invalid-date-components-common": "«$1» чохь цхьацца тида йиш йоцу хаамаш бу.", + "smw-datavalue-time-invalid-date-components-dash": "«$1» чохь йу арахьара дефис йа кхин хьаьрк, терахьехь лело мегар доцуш.", + "smw-datavalue-time-invalid-date-components-empty": "«$1» чохь цхьацца йаьсса компоненташ йу.", + "smw-datavalue-time-invalid-date-components-three": "«$1» чохь кхаа сов компонент йу, терахь довза оьшуш йолу.", + "smw-datavalue-time-invalid-date-components-sequence": "«$1» чохь хьаьркийн рогӀалла йу, лелаш йолчу терахьийн компонентийн матрицаца тида йиш йоцуш.", + "smw-datavalue-time-invalid-ampm": "«$1» чохь бу «$2» бухара могӀа, иза кхойтта сахьтан хенан форматехь латто йиш йац.", + "smw-datavalue-time-invalid-jd": "«$1» нийса Юлианан де санна анализ ца йо (талларан жамӀаш — «$2» ду)", + "smw-datavalue-time-invalid-prehistoric": "Исторехь хьалха хиллачу «$1» чудаларан маьӀна тида йиш йац. Масала, шераш сов билгалдаьхна хиларо йа календаран модель йухайерзо тарло дагахь доцу жамӀаш историн хьалхалерчу контекстехь.", + "smw-datavalue-time-invalid": "«$1» чудаларан маьӀна тида йиш йац нийса терахь йа хенан компонент санна, хӀунда аьлча «$2» арахоьцу.", + "smw-datavalue-external-formatter-uri-missing-placeholder": "URI маска чохь «$1» хьаьрк дац.", + "smw-datavalue-external-formatter-invalid-uri": "«$1» — нийса йоцу URL-адрес.", + "smw-datavalue-external-identifier-formatter-missing": "Башхалла дӀа ца хӀоттина «[[Property:External formatter uri|External formatter URI]]».", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "Арахьара идентификатор «$1» хьоьжу масех меттиг хийца, амма карарчу маьӀнехь «$2 лаххара а цхьа маьӀнан параметр йац тӀедилларшца догӀуш.", + "smw-datavalue-keyword-maximum-length": "Коьрта дешан максималан дохалла совйаьлла $1 {{PLURAL:$1|хьаьрк}}.", + "smw-property-predefined-eid": "«$1» — [[Special:Types/External identifier|хаамийн тайпа]] а, хьалххе билгалдаьккхина башхалла а йу ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' арахьара идентификаторш Ӏалашйан.", + "smw-property-predefined-peid": "«$1» — хьалххе билгалйаьккхина башхалла йу ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' арахьара идентификатор Ӏалашйан.", + "smw-property-predefined-pefu": "«$1» — хьалххе билгалйаьккхина башхалла йу ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' хӀотторан хьаьркца арахьара ресурсан адрес Ӏалашдан.", + "smw-property-predefined-long-pefu": "URI чохь хила деза хьаьрк, иза хийцалур ду [[Special:Types/External identifier|арахьара идентификаторна]] тӀе нийса ресурсан хьажорг эца.", + "smw-type-eid": "«$1» — «[[Special:Types/Text|Текст]]» хаамийн тайпа ду арахьара (URI based) ресурсаш йовзийтаран. Оцу хаамийн тайпанна тӀейилла йеза «[[Property:External formatter uri|External formatter URI]]» аьлла дӀакхайкхош йолу башхаллаш.", + "smw-property-predefined-keyw": "«$1» — хьалххе билгалйаьккхина башхалла а, [[Special:Types/Keyword|type]] а луш йолу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], цуо текст нормале йоккху а, хьаьркийн йохаллин доза долуш а.", + "smw-type-keyw": "$1» — [[Special:Types/Text|Text]] тайпанан вариант йу, хьаьркийн йохалла доза тоьхна йолуш, чулацаман гайтам нормализаци йина.", + "smw-datavalue-stripmarker-parse-error": "Билгалдаьккхина маьӀна «$1» чохь йу [https://en.wikipedia.org/wiki/Help:Strip_markers асанийн маркераш], цундела нийса анализ йан йиш йац.", + "smw-datavalue-parse-error": "Делла «$1» маьӀнех кхеташ дацара.", + "smw-datavalue-propertylist-invalid-property-key": "Башхаллийн могӀаман «$1» чохь «$2» башхаллин магийна доцу догӀа ду.", + "smw-datavalue-type-invalid-typeuri": "«$1» тайпа нийса URI тӀе хийца йиш йац.", + "smw-datavalue-wikipage-missing-fragment-context": "Вики-агӀонан чулацаман маьӀна «$1» лело йиш йац контекстан агӀо йоцуш.", + "smw-datavalue-wikipage-invalid-title": "«АгӀо» тайпанан «$1» маьӀна нийса доцу хьаьркаш долуш ду йа дуьззина дац, дагахь доцу жамӀаш хила тарло семантикин аннотаци йича йа дехарш дича.", + "smw-datavalue-wikipage-property-invalid-title": "«$2» маьӀна долуш «АгӀо» тайпанан «$1» башхаллин нийса доцу хьаьркаш долуш йу йа йуьззина йац, дагахь доцу жамӀаш дан тарло семантикин аннотаци йича йа дехарш дича.", + "smw-datavalue-wikipage-empty": "Вики агӀонан чудаларан маьӀна даьсса ду (масала, [[SomeProperty::]], [[]]), цундела иза лело йиш йац цӀе санна а, дехаран билламан дакъа санна а.", + "smw-type-ref-rec": "«$1» — [https://www.semantic-mediawiki.org/wiki/Container контейнеран] тайпа, цуо аьтто бо маьӀнаш даларах лаьцна кхин а информаци (масала, провенансан хаамаш) дӀайазйан.", + "smw-datavalue-reference-invalid-fields-definition": "«[[Special:Types/Reference|Хьажорг]]» тайпанна оьшу «[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields]» башхаллашца дӀакхайкхийна башхаллийн могӀам.", + "smw-parser-invalid-json-format": "JSON-парсеро делла гӀалат «$1».", + "smw-property-preferred-label-language-combination-exists": "«$1» лело йиш йац гӀоле йолу билгало санна, хӀунда аьлча «$2» мотт хӀинцале а билгалбина бу «$3» билгалонна.", + "smw-clipboard-copy-link": "Хьажорг буфере копийан", + "smw-property-userdefined-fixedtable": "«$1» — башхалла дӀахӀоттийна йу [https://www.semantic-mediawiki.org/wiki/Fixed_properties fixed] санна, ткъа цуьнан [https://www.semantic-mediawiki.org/wiki/Type_declaration тайпанан] муьлхха а хийцамаш бан беза йа setupStore.php йа, «База дӀахӀоттор а, карлайаккхар а», ''[[Special:SemanticMediaWiki|SemanticMediaWiki]]'' белхан агӀонан тӀехь.", + "smw-data-lookup": "Хаамаш схьабахар...", + "smw-data-lookup-with-wait": "Дехар кхочушдеш ду, цхьа хан йала тарло.", + "smw-no-data-available": "ТӀекхочуш хаамаш бац.", + "smw-property-req-violation-missing-fields": "«$2» тайпанан «$1» башхаллин йац оьшуш йолу деклараци [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields].", + "smw-property-req-violation-multiple-fields": "«$1» башхаллин чохь масех (цундела къовсалуш) [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Меттигийн йу] карлайахарш, «$2» тайпанна цхьаъ бен хир йац.", + "smw-property-req-violation-missing-formatter-uri": "Оьшуш йолу External formatter URI башхалла «$1» башхаллина хӀоттийна йац.", + "smw-property-req-violation-predefined-type": "Хьалха билгалйаьккхина «$1» башхаллин «$2» тайпа ду, иза догӀуш дац башхаллашна лерина маьӀнаца.", + "smw-property-req-violation-import-type": "Тайпанан дӀахьедар карийна хьалххе билгалдаьккхинчу тайпанца догӀуш доцуш импорт йинчу дошаман «$1». Тайпа дӀакхайкхо оьшуш дац, хӀунда аьлча информаци импортан къастам тӀера схьаоьцу.", + "smw-property-req-violation-change-propagation-locked-error": "«$1» башхалла хийцайелла, цуьнца йоьзна агӀонаш карлайаха йеза [https://www.semantic-mediawiki.org/wiki/Change_propagation хийцамаш баржош]. Башхаллин агӀо хийцамашкара дӀакъевлина йу йуьхьанца карладаккхар чекхдаллалц, карладаккхар йукъах ца далийта йа башхаллин нийса йоцу параметраш ца хилийта. Цунна цхьа хан йала тарло, [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue белхан рогӀан] бараме а, цуьнан лелоран кесталла а хьаьжжина, цул тӀаьхьа агӀо схьайоьллур йу хийцамашна.", + "smw-property-req-violation-change-propagation-locked-warning": "«$1» башхалла хийцайелла, [https://www.semantic-mediawiki.org/wiki/Change_propagation хийцамаш баржоран] процессан гӀоьнца, тӀедиллина духийн йуха мах хадо беза. Карладаккхаро цхьа хан йала тарло, хӀунда аьлча иза дозуш ду [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue белхан рогӀан] планхӀотторан барамца а, кесталлаца а, цундела дика ду хийцамаш бар тӀаьхьататта башхаллехь, йукъара йукъахдовларш йа нийса йоцу спецификацеш ца хилийта.", + "smw-property-req-violation-change-propagation-pending": "[https://www.semantic-mediawiki.org/wiki/Change_propagation Хийцамаш баржоре] хьоьжу ($1 гергга [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|декхар}}]). Баашхаллин агӀо хийцар тӀаьхьататта дика ду, процесс чекхйаллалц, карладаккхарехь йа нийса йоцу башхаллин параметраш йукъахь ца йалийта.", + "smw-property-req-violation-missing-maps-extension": "ХӀокху хаамийн тайпанна оьшуш йолу [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"] шордар ца карийна. И бахьана долуш географин хаамаш Ӏалашбан а, лело а аьтто бац.", + "smw-property-req-violation-type": "ХӀокху башхаллина билгалдаьхна цхьаьна ца догӀу хаамийн тайпанаш, цуьнан жамӀ хила тарло цунна нийса доцу маьӀна хӀоттор. Цхьа нийса тайпа къасто деза.", + "smw-property-req-error-list": "Башхаллин чохь хӀара гӀалаташ йа дӀахьедарш ду:", + "smw-property-req-violation-parent-type": "«$1» башхалла а, тӀейиллина дай-нанойн «$2» башхалла а тайп-тайпана тайпанийн аннотацеш йолуш йу.", + "smw-property-req-violation-forced-removal-annotated-type": "[https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance Mandatory parent type inheritance] бакъо дӀахӀоттийна, аннотацин тайпа «$1» башхалла нийса ца догӀу шен дай-нанойн тайпанца «$2» ткъа оцу тӀедахкаршца догӀуш хийцина хилла. АгӀонан чуьра тайпанан къастам нисбан дика ду, гӀалатан хаам а, тӀейиллина бакъо а дӀадаккхархьама оцу башхаллина.", + "smw-change-propagation-protection": "ХӀара агӀо дӀакъевлина йу хийцамашна, ларамаза хийцамаш ца хилийта [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation хийцамаш баржош]. Цхьа хан йала тарло, хийцамашна агӀо схьайеллале [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue белхан рагӀанийн] бараме а, кесталлашка а хьаьжжина.", + "smw-category-change-propagation-locked-error": "Категори «$1» хийцайелла, цуьнца йоьзна агӀонаш карлайаха йеза [https://www.semantic-mediawiki.org/wiki/Change_propagation хийцамаш баржор]. Цу йукъана категорин агӀо дӀакъовлу хийцамашна, карладаккхар чекхдаллалц, карладаккхар йукъах ца далийта йа нисдаран гӀирсашкахь нийса цахилар ца хилийта. Цхьа хан йала мега, [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue белхан рагӀанийн] бараме хьаьжжина, хийцамаш бан агӀо схьайеллале.", + "smw-category-change-propagation-locked-warning": "Категори «$1» хийцайелла, цуьнца йоьзна агӀонаш карлайаха йеза [https://www.semantic-mediawiki.org/wiki/Change_propagation хийцамаш баржош]. Цхьа хан йала тарло, [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue белхан рагӀанийн] бараме хьаьжжина, агӀо хийцамашна схьайеллале. АгӀо хийцар тӀаьхьататта тӀедуьллу, карладаккхар чекхдаллалц, карладаккхар йукъах ца далийта йа нисдаран гӀирсашкахь нийса цахилар ца хилийта.", + "smw-category-change-propagation-pending": "Карладаккхар хьоьжуш ду [https://www.semantic-mediawiki.org/wiki/Change_propagation карладаккхаран даржош] жамӀехь ($1 гергга [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|декхар}}]). Категори хийцар тӀаьхьататта дика ду, карладаккхар чекхдаллалц, карладаккхар йукъах ца далийта йа нийса йогӀуш йоцу параметраш ца хилийта.", + "smw-category-invalid-value-assignment": "«$1» — нийса семантикин аннотаци йа категорин тӀедиллар дац.", + "protect-level-smw-pageedit": "АгӀонаш хийца бакъо йолчу декъашхошна бен бакъо ца ло (Semantic MediaWiki)", + "smw-create-protection": "[https://www.semantic-mediawiki.org/wiki/Help:Authority_mode Дехкина тӀакхачаран раж] мел ду, «$1» башхалла кхолла магийна бакъо йолу декъашхошна «$2» (йа [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups тобанан чуьра]).", + "smw-create-protection-exists": "[https://www.semantic-mediawiki.org/wiki/Help:Authority_mode Дехкина тӀакхачаран раж] мел ду, «$1» башхалла хийца магийна бакъо йолу декъашхошна «$2» (йа [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups тобанан чуьра]).", + "smw-edit-protection": "ХӀара агӀо йу [[Property:Is edit protected|хийцарех ларйина]] хаамашна ца оьшу хийцамаш ца хилийта, хийца йиш йац «$1» бакъо йолчу декъашхоша бен йа хӀокху [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups тобанан] чуьра бен.", + "smw-edit-protection-disabled": "Хийцарех ларйаран раж дӀайайина йу, цундела «$1» башхалла лело мегар дац агӀо хийцарх ларйан.", + "smw-edit-protection-auto-update": "АгӀонан ларйаран тӀегӀа хийцина «Is edit protected» башхаллин маьӀнан тӀе а тевжаш.", + "smw-edit-protection-enabled": "Хийцарех ларйина (Semantic MediaWiki)", + "smw-patternedit-protection": "ХӀара агӀо ларйеш йу, хийца йиш йац smw-patternedit бакъо йолчу декъашхоша бен (хьажа ''[https://www.semantic-mediawiki.org/wiki/Help:Permissions бакъонаш]'' ).", + "smw-property-predefined-edip": "«$1» — хьалххе билгалйаьккхина башхалла йу ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' цуо Ӏалашйо хийцаран ларйаран билгало.", + "smw-property-predefined-long-edip": "Муьлхха а декъашхочун йиш йелахь а агӀонан тӀехь и хьал хӀотто, леррина бакъонаш йолчу декъашхойн бен аьтто хир бац ларйар хийца йа дӀадаккха, иза хӀоттийча.", + "smw-query-reference-link-label": "Дехаран тӀе хьажорг", + "smw-format-datatable-emptytable": "Таблица чохь хаамаш бац", + "smw-format-datatable-info": "Гойту дӀайаздарш _START_ тӀера _END_ кхаччалц _TOTAL_", + "smw-format-datatable-infoempty": "ДӀайаздарх 0-0 гойту", + "smw-format-datatable-infofiltered": "(_MAX_ дӀайаздаршкара фильтраци йина)", + "smw-format-datatable-lengthmenu": "_MENU_ дӀайаздарш гайта", + "smw-format-datatable-loadingrecords": "Чуйолуш…", + "smw-format-datatable-processing": "Кечдар...", + "smw-format-datatable-search": "Лахар:", + "smw-format-datatable-zerorecords": "ЦхьаьнабогӀу хаамаш ца карийна", + "smw-format-datatable-first": "ЦхьалгӀаниг", + "smw-format-datatable-last": "ТӀехьарниг", + "smw-format-datatable-next": "РогӀера", + "smw-format-datatable-previous": "Хьалхара", + "smw-format-datatable-sortascending": ":активаци йе бӀогӀам хьалаболуш рогӀехь дӀасакъасто", + "smw-format-datatable-sortdescending": ":активаци йе бӀогӀам лахаболуш рогӀехь дӀасакъасто", + "smw-format-datatable-toolbar-export": "Экспорт", + "smw-category-invalid-redirect-target": "«$1» категорехь йу нийса йоцу дӀасахьажорг кхечу цӀерийн меттиге.", + "smw-parser-function-expensive-execution-limit": "Парсеран функци шен мах болуш кхочушдаран дозане кхаьчна (хьажа конфигурацин параметр [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "Semantic MediaWiki карлайоккху карарчу хенахь йолу агӀо, нагахь санна оьшуш долу дехарна тӀаьхьара болх бан безахь.", + "apihelp-smwinfo-summary": "API модуль Semantic MediaWiki статистиках а, кхин метаинформацех а лаьцна информаци схьаэца.", + "apihelp-ask-summary": "API модуль дехарш дан Semantic MediaWiki дехарийн мотт лелош.", + "apihelp-askargs-summary": "API модуль Semantic MediaWiki дехарш дан, дехарийн мотт делош, хьелашна, зорбанашна, параметрашна лерина могӀам санна.", + "apihelp-browsebyproperty-summary": "API модуль башхаллех йа башхаллийн могӀамех лаьцна информаци схьаэца.", + "apihelp-browsebysubject-summary": "API модуль предметех лаьцна информаци схьаэца.", + "apihelp-smwtask-summary": "Semantic MediaWiki-ца доьзна гӀуллакхаш кхочушдаран API модуль (чоьхьара бен, массо а лелош йац).", + "apihelp-smwbrowse-summary": "Semantic MediaWiki чохь тайп-тайпанчу объекташна хьажаран гӀуллакхашна гӀо дан API модуль.", + "apihelp-ask-parameter-api-version": "Арахецаран формат:\n;2:ТӀехьа нийса формат {} лелош жамӀийн могӀамна.\n;3:Экспериментан формат [] лелош жамӀийн могӀамна.", + "apihelp-smwtask-param-task": "ТӀедилларан тайпа билгалдоккху", + "apihelp-smwtask-param-params": "JSON кодировка йина параметраш нийса йогӀуш йу хаьржинчу гӀуллакхан тайпанан тӀедахкаршца", + "smw-apihelp-smwtask-example-update": "Цхьана билгалчу субъектана лерина карладаккхаран гӀуллакх дӀадахьаран масал:", + "smw-api-invalid-parameters": "Нийса йоцу параметраш, \"$1\"", + "smw-parser-recursion-level-exceeded": "Рекурсийн тӀегӀан $1 совдаьлла анализ йеш. Кепийн структура хьажа йеза йа, оьшуш хилча, конфигурацин параметр $maxRecursionDepth нисйан йеза.", + "smw-property-page-list-count": "ХӀара башхалла лелош йолу $1 {{PLURAL:$1|агӀо|агӀонаш}}.", + "smw-property-page-list-search-count": "$1 {{PLURAL:$1|агӀо|агӀонаш}} башхалла маьӀна хӀоттийна «$2» йолу.", + "smw-property-page-filter-note": "[https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter Лехаман фильтро] аьтто бо [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions дехаран аларш] йукъадало масала ~>code! йа . Хаьржина [https://www.semantic-mediawiki.org/wiki/Query_engine дехаран моторо] а гӀо дан мега доккха элп ца лоруш дехаршна йа кхин доца аларшна, масала:\n\n* in: жамӀехь хила йеза термин, масала 'in:Foo'\n\n* not: жамӀехь хила ца йеза термин, масала 'not:Bar'", + "smw-property-reserved-category": "Категори", + "smw-category": "Категори", + "smw-datavalue-uri-invalid-scheme": "«$1» нийса URI протокол санна билгалйаьккхина йац", + "smw-datavalue-uri-invalid-authority-path-component": "«$1» чохь нийса йоцу бакъонан компонент йа некъаш «$2» хилар гучуделира.", + "smw-browse-property-group-title": "Билгалонийн тоба", + "smw-browse-property-group-label": "Башхаллийн тобанан билгало", + "smw-browse-property-group-description": "Билгалонан тобанах лаьцна", + "smw-property-predefined-ppgr": "«$1» — хьалххе билгалйаьккхина башхалла йу, цуо билгалйоккху духаш (дукхах йолу категореш) лелош йолу башхаллаш тобанашна, луш йолу ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]''.", + "smw-filter": "Фильтр", + "smw-section-expand": "Схьадела дакъа", + "smw-section-collapse": "ДӀачӀагӀа дакъа", + "smw-ask-format-help-link": "[https://www.semantic-mediawiki.org/wiki/Help:$1_format $1] формат", + "smw-help": "ГӀо", + "smw-cheat-sheet": "Шпаргалка", + "smw-personal-jobqueue-watchlist": "Белхан рагӀ ларйаран могӀам", + "smw-personal-jobqueue-watchlist-explain": "Терахьаша гойту кхочушдан хьоьжуш йолчу белхан рогӀехь дӀайаздарийн дукхалла.", + "smw-property-predefined-label-skey": "ДӀасакъасторан догӀа", + "smw-processing": "Кечдар...", + "smw-loading": "Чуйолуш…", + "smw-fetching": "Схьаоьцуш...", + "smw-preparing": "Кечам...", + "smw-expand": "Схьайаста", + "smw-collapse": "ДӀахьарчо", + "smw-copy": "Копийан", + "smw-copy-clipboard-title": "Чулацам буфер чу копи бар", + "smw-jsonview-expand-title": "JSON хьажар гайтар", + "smw-jsonview-collapse-title": "JSON хьажар къайладаккхар", + "smw-jsonview-search-label": "Лахар:", + "smw-redirect-target-unresolvable": "Ӏалашо магош йац, бахьана: «$1»", + "smw-types-title": "Тайпа: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "[https://www.semantic-mediawiki.org/wiki/Help:Schema Схемин агӀонан] чулацаман модель хийца бакъо йац.", + "smw-schema-namespace-edit-protection": "ХӀара агӀо ларйина йу, smw-schemaedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions бакъо] йолчу декъашхоша бен хийца йиш йац.", + "smw-schema-namespace-edit-protection-by-import-performer": "ХӀара агӀо импорт йина йу гайтинчу [https://www.semantic-mediawiki.org/wiki/Import_performer импортерца], иза бохург ду билгалбинчу декъашхойн бен бакъо йац хӀокху агӀонан чулацам хийца.", + "smw-schema-error-title": "Валидацин {{PLURAL:$1|1=гӀалат|гӀалаташ}}", + "smw-schema-error-schema": "'''$1''' валидацин схемин карийна хӀара нийса цахиларш:", + "smw-schema-error-miscellaneous": "Тайп-тайпана гӀалаташ ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "JSON валидатор \"$1\" тӀекхочуш йац (йа дӀахӀоттийна йац) и бахьана долуш файл \"$2\" талла а, карарчу хенахь йолу агӀо Ӏалашйан а, хийца а новкъарло йо.", + "smw-schema-error-validation-file-inaccessible": "Талламан файл «$1» тӀекхочуш йац.", + "smw-schema-error-type-missing": "Чулацаман тайпа дац иза довза а, лело а оьшуш долу [https://www.semantic-mediawiki.org/wiki/Help:Schema схемийн цӀераш] чохь.", + "smw-schema-error-type-unknown": "«$1» тайпа дӀайаздина дац, цун дела цӀерийн меттигехь чулацамна лело йиш йац [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-error-json": "JSON гӀалат: \"$1\"", + "smw-schema-error-input": "Чуйаларан валидацино билгалйаьхна чулацам Ӏалашбале хьалха дӀайаха йезаш йолу проблемаш. [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling Схемин гӀо] агӀонан тӀехь хьехам хила тарло схема чуйаларца нийса ца догӀуш дерг йа проблемаш дӀайахарехь.", + "smw-schema-error-input-schema": "Талларан схемина '''$1''' карийна хӀара нийса ца догӀуш дерг, чулацам Ӏалашбаре дӀадаккха дезаш долу. И проблемаш муха дӀайаха йеза лаьцна хьехамаш каро йиш йу [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling схемин гӀоьнан агӀонан] тӀехь.", + "smw-schema-error-title-prefix": "ХӀокху схемин тайпанна оьшу схемин цӀе «$1» дешхьалхенца йолайала.", + "smw-schema-validation-error": "«$1» тайпа дӀайаздина дац, цун дела цӀерийн меттигехь чулацамна лело йиш йац [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-validation-schema-title": "JSON-схема", + "smw-schema-summary-title": "Цуьнах лаьцна", + "smw-schema-title": "Схема", + "smw-schema-usage": "Лелор", + "smw-schema-type": "Схемин тайпа", + "smw-schema-type-description": "Тайпанах лаьцна", + "smw-schema-description": "Схемех лаьцна", + "smw-schema-description-link-format-schema": "ХӀокху схемин тайпано гӀо до контекстан хьашташ кхочушдаран билгалонаш билгалйаха, дӀайеллачу [[Property:Formatter schema|форматеран схемин]] башхаллица цхьаьна.", + "smw-schema-description-search-form-schema": "ХӀокху схемин тайпано гӀо до [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch шуьйрачу лехамна] профилан чуйалоран формаш а, башхаллаш а къастош, цигахь цу чохь йу тӀедиллар, муха генераци йан йеза чуйоьллина меттигаш, билгалйаха стандартан цӀерийн меттигаш, йа дӀакхайкхо деза префиксан лехаман дехарна.", + "smw-schema-description-property-profile-schema": "ХӀокху схемин тайпано гӀо до профиль къастош, дӀайеллачу башхаллин амал а, цуьнан аннотацин маьӀна а дӀакхайкхо.", + "smw-schema-description-facetedsearch-profile-schema": "ХӀокху схемин тайпано гӀо до [[Special:FacetedSearch|Фасетан лехаман]] гонехь лелош йолу профилаш къасто.", + "smw-schema-description-property-group-schema": "ХӀокху схемин тайпано гӀо до [https://www.semantic-mediawiki.org/wiki/Help:Property_group башхаллийн тобанаш] къасто [https://www.semantic-mediawiki.org/wiki/Help:Special:Browse хьажаран] интерфейсан структур йан гӀо деш йолу.", + "smw-schema-description-property-constraint-schema": "ХӀокхо гӀо до башхаллин экземпляран дехкарийн бакъонаш билгалйаха, иштта цунна маьӀнаш хӀитто.", + "smw-schema-description-class-constraint-schema": "ХӀокху схемин тайпано гӀо до классан экземпляран дехкарийн бакъонаш билгалйаха (иштта категори санна йевзаш йолу).", + "smw-schema-tag": "{{PLURAL:$1|Тег}}:", + "smw-property-predefined-constraint-schema": "«$1» — хьалххе билгалйаьккхина башхалла йу, цо билгалйоккху дехкарийн схема, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-desc": "«$1» — хьалххе билгалйаьккхина башхалла йу, шена чохь схемин дийцар а долуш, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-def": "«$1» — хьалххе билгалйаьккхина башхалла йу, схемин чулацам гойтуш, иза луш ду [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-tag": "«$1» — хьалххе билгалйаьккхина башхалла йу, луш йу [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] идентификацин коллекци билгалйаккхархьама.", + "smw-property-predefined-long-schema-tag": "Цхьатерра чулацам йа амалш йолу схемаш билгалйохуш йолу билгало.", + "smw-property-predefined-schema-type": "«$1» — хьалххе билгалйаьккхина башхалла йу, схемин тоба къасторан тайпа гойтуш долу, иза ло [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-schema-type": "ХӀора [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type тайпа] синтаксисин элементийн а, лелоран бакъонийн а шен тидар ло, иза гайта йиш йу [https://www.semantic-mediawiki.org/wiki/Help:Schema#validation талларан схемин] гӀоьнца.", + "smw-ask-title-keyword-type": "Коьртачу дешнашца леха", + "smw-ask-message-keyword-type": "ХӀара лехар билламца догӀуш ду $1.", + "smw-remote-source-unavailable": "Генарчу Ӏалашонца «$1» зӀе латто аьтто ца баьлла.", + "smw-remote-source-disabled": "Хьосто '''$1''' генара дехарш дӀадаьхна!", + "smw-remote-source-unmatched-id": "Хьост '''$1''' нийса ца догӀу Semantic MediaWiki версица, генара дехарш дан йиш йолуш.", + "smw-remote-request-note": "ЖамӀ схьаэцна генарчу хьостанера '''$1''', ткъа генераци йинчу чулацамехь хир йу карарчу хенахь вики чохь йоцу информаци.", + "smw-remote-request-note-cached": "ЖамӀ '''кэш'' ду генарчу хьостанера '''$1''', ткъа генераци йина чулацамехь хир йу карарчу хенахь вики чохь йоцу информаци.", + "smw-parameter-missing": "«$1» параметр йац.", + "smw-property-tab-usage": "Лелор", + "smw-property-tab-profile-schema": "Профилан схема", + "smw-property-tab-redirects": "Синонимаш", + "smw-property-tab-subproperties": "Бухара башхаллаш", + "smw-property-tab-errors": "Нийса доцу тӀедилларш", + "smw-property-tab-constraint-schema": "Дехкарийн схема", + "smw-property-tab-constraint-schema-title": "ХӀоттийна лацаран схема", + "smw-property-tab-specification": "… дуккхаха", + "smw-concept-tab-list": "МогӀам", + "smw-concept-tab-errors": "ГӀалаташ", + "smw-ask-tab-result": "Хилам", + "smw-ask-tab-extra": "Кхин а", + "smw-ask-tab-debug": "Нисйар", + "smw-ask-tab-code": "Код", + "smw-install-incomplete-tasks-title": "Кхочуш ца дина администрацин декхарш", + "smw-install-incomplete-intro": "{{PLURAL:$1|ХӀоттор}} чекхдаккха дезаш ду $2 йа [[Special:PendingTaskList|хьоьжуш ду]] {{PLURAL:$2|тӀедиллар|тӀедилларш}} [https://www.semantic-mediawiki.org Semantic MediaWiki]. Кхоччуш бакъонаш йолчу администраторан йа декъашхочун таро йу {{PLURAL:$2|хӀара гӀуллакх чекхдаккха|хӀара гӀуллакхаш чекхдаха}}. Иза дан деза керла хаамаш карлабахале, цхьаьнадогӀуш ца хилийта.", + "smw-install-incomplete-intro-note": "ХӀара хаам дӀабоьрзур бу дерриге а гӀуллакхаш чекхдевллачул тӀаьхьа.", + "smw-pendingtasks-intro-empty": "Цхьа а гӀуллакх классификаци ца йина лаьтташ санна, чекх ца даьлла йа кхочуш данза санна Semantic MediaWiki доьзна.", + "smw-pendingtasks-intro": "ХӀокху агӀонан тӀехь информаци йу гӀуллакхех лаьцна, уьш хьоьжуш, чекх ца даьлла, йа кхочуш данза санна, Semantic MediaWiki доьзна.", + "smw-pendingtasks-setup-no-tasks-intro": "ХӀоттор (йа карладаккхар) чекхдаьлла, карарчу хенахь дисина йа чекх ца даьхна гӀуллакхаш дац.", + "smw-pendingtasks-tab-setup": "Нисдаран гӀирс", + "smw-updateentitycollation-incomplete": "[https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] параметр дукха хан йоццуш хийцина йу, цунна оьшу [https://www.semantic-mediawiki.org/wiki/Help: updateEntityCollation.php] скрипт кхочушйан, духаш карлайаха а, нийса нисдаран меттиган маьӀна хилийта а.", + "smw-updateentitycountmap-incomplete": "smw_countmap меттиг тӀетоьхна тӀаьххьарчу релизехь, цунна оьшу [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php] скрипт кхочушйан, функцешна оцу меттиган чулацаме кхача аьтто хилийта.", + "smw-populatehashfield-incomplete": "smw_hash меттиг дӀайазйар дӀадаьккхина дӀахӀотторан хенахь. Оьшу [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] скрипт кхочушйан.", + "smw-install-incomplete-populate-hash-field": "smw_hash меттиг дӀайазйар дӀадаьккхина дӀахӀотторан хенахь. Оьшу [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] скрипт кхочушйан.", + "smw-install-incomplete-elasticstore-indexrebuild": "ElasticStore хаьржина [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore Ӏад йитаран кепаца ларма] санна, амма шордарна ца карийра цхьа а дӀайаздар, [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] скрипт кхочушйина аьлла. ДӀахоттайе скрип инструкцешца.", + "smw-elastic-rebuildelasticindex-run-incomplete": "ElasticStore хаьржина [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore Ӏад йитаран кепаца ларма] санна, амма шордарна ца карийра цхьа а дӀайаздар, [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] скрипт кхочушйина аьлла. ДӀахоттайе скрип инструкцешца.", + "smw-pendingtasks-setup-intro": "Semantic MediaWiki {{PLURAL:$1|хӀотторо|карлайаккхаро}} классификаци йина хӀара гӀуллакхаш [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade incomplete], ткъа хьоьжу кхачам боллуш администраторо (йа декъашхочо бакъо ло и гӀуллакхаш кхочушдан хьалха) чулацам кхолла йа хийца.", + "smw-pendingtasks-setup-tasks": "Ӏалашонаш", + "smw-filter-count": "Фильтр лоруш", + "smw-es-replication-check": "Репликаци таллар (Elasticsearch)", + "smw-es-replication-error": "Репликацин проблема Elasticsearch", + "smw-es-replication-file-ingest-error": "Файл чуйаккхаран проблема", + "smw-es-replication-maintenance-mode": "Elasticsearch латтор", + "smw-es-replication-error-missing-id": "Репликацин мониторингехь гучуделира $1» (ID: $2) йаззам ца хилар Elasticsearch бекэндехь.", + "smw-es-replication-error-divergent-date": "Репликацин мониторингехь гучуделира «$1» (ID: $2) йаззаман хийцина хан гойту нийса цахилар.", + "smw-es-replication-error-divergent-date-short": "Дустарна лелийна хӀара денош:", + "smw-es-replication-error-divergent-date-detail": "Хьажорг хийцина хан:\n* Elasticsearch: $1\n* Database: $2", + "smw-es-replication-error-divergent-revision": "Репликацин мониторингехь гучуделира «$1» (ID: $2) йаззамна богӀуш болу хийцам гойту нийса цахилар.", + "smw-es-replication-error-divergent-revision-short": "Дустарна лелийна хӀара йуха хьажаран хаамаш:", + "smw-es-replication-error-divergent-revision-detail": "Боьзна хийцамаш:\n* Elasticsearch: $1\n* Database: $2", + "smw-es-replication-error-maintenance-mode": "Elasticsearch репликаци карарчу хенахь дозаделла йу, хӀунда аьлча иза болх беш йу [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode гӀулаккхан рожехь], хийцамаш духашкахь а, агӀонашкахь а сихха гуш бац, ткъа дехаран жамӀашкахь хила тарло ширйелла информаци.", + "smw-es-replication-error-no-connection": "Репликацин мониторан йиш йац цхьа а таллам бан, хӀунда аьлча цуьнан йиш йац Elasticsearch кластерца зӀе латто.", + "smw-es-replication-error-bad-request-exception": "Elasticsearch зӀенан нисйечо вон дехаран йукъарадаьккхира («400 conflict http гӀалат»), гойтуш репликацин а, лехаман а дехарш деш лаьтташ йолу проблема.", + "smw-es-replication-error-other-exception": "Elasticsearch зӀенан нисйечо делла йукъарадаккхар: «$1».", + "smw-es-replication-error-suggestions": "Цхьаьна ца догӀуш дерг нисдархьама агӀо хийца йа дӀайаккха дика ду. Нагахь санна проблема лаьтташ йелахь, хьажа ша Elasticsearch кластере (аллокатор, йукъарадахарш, диска тӀехь меттиг, и. дӀ. кх. а).", + "smw-es-replication-error-suggestions-maintenance-mode": "Викин администраторе йаздар дика ду, [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild индекс меттахӀоттор] йа refresh_interval карарчу хенахь Ӏад йитаран кепаца дӀахӀоттийна йуй.", + "smw-es-replication-error-suggestions-no-connection": "Рекомендаци йо вики-администраторе йаздар, «зӀе йац» бохучух лаьцна хаам бар.", + "smw-es-replication-error-suggestions-exception": "Журналаш хьажа Elasticsearch хьолах лаьцна информаци а, цуьнан индексаш а, хила тарлуш йолу галморзахаллин проблемаш а.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "Репликацин мониторингехь гучуделира «$1» цахилар [[Property:File attachment|Файл тӀетохар]] аннотаци, гойтуш файлаш чуйахаран процесс болх беш ца хилар йа чекхйаьлла ца хилар.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion Файлаш тӀельцу] файлан аннотаци а, индекс а хилале хьалха дӀахӀоттийна а, чекхйаьккхина а хиларх тешна хила.", + "smw-report": "Отчет", + "smw-legend": "Легенда", + "smw-datavalue-constraint-schema-category-invalid-type": "Аннотаци йина «$1» схема нийса йац категорина, цунна оьшу «$2» тайпа.", + "smw-datavalue-constraint-schema-property-invalid-type": "Аннотаци йина «$1» схема нийса йац башхаллина, цунна оьшу «$2» тайпа.", + "smw-entity-examiner-check": "Фонан рожехь {{PLURAL:$1|экзаменатор|экзаменаторш}} дӀахӀоттор", + "smw-entity-examiner-indicator": "Субъектийн проблемийн панель", + "smw-entity-examiner-deferred-check-awaiting-response": "«$1» эксперт карарчу хенахь бекэндера жоьпе хьоьжу.", + "smw-entity-examiner-deferred-elastic-replication": "Elastic", + "smw-entity-examiner-deferred-constraint-error": "Дозатохарш", + "smw-entity-examiner-associated-revision-mismatch": "Верси", + "smw-entity-examiner-deferred-fake": "Тардар", + "smw-entity-examiner-indicator-suggestions": "Объект толлуш, карийна хӀара {{PLURAL:$1|проблема|проблемаш}}, ткъа тӀедуьллу лерина {{PLURAL:$1|проблема|уьш}} хьажа а, богӀу {{PLURAL:$1|ардам|ардамаш}} бан а.", + "smw-indicator-constraint-violation": "{{PLURAL:$1|Дехкар|Дехкарш}}", + "smw-indicator-revision-mismatch": "Редакци", + "smw-indicator-revision-mismatch-error": "[https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner Йоьзна йолу ревизина] карийна нийса ца догӀуш хилар MediaWiki хьахийначу ревизина а, Semantic MediaWiki тӀехь йиначу оцу духана а йукъахь.", + "smw-indicator-revision-mismatch-comment": "Цхьаьна ца догӀуш хиларо дукхахьолахь гойту цхьана процессо Semantic MediaWiki Ӏалашдаран операци йукъахйаьккхина хилар. Серверан журналаш хьажа а, йукъарадахарш йа кхин галморзахаллаш лаха а дика ду.", + "smw-facetedsearch-intro-text": "[https://www.semantic-mediawiki.org/wiki/Faceted_search Фацетан лехаро] Semantic MediaWiki декъашхошна атта интерфейс ло, лехаман жамӀаш сиха готта дан шардарца, дозуш долчу башхаллаш а, категореш а бина фасетийн хьажар лелош.", + "smw-facetedsearch-intro-tips": "* Леладе category:?, property:?, йа concept:? леха лело йиш йолу категореш, башхаллаш, йа концепцеш, билламаш кхоллархьама.\n* #ask синтаксис лелайе, биллам бийца (масала, [[Category:Foo]]).\n* Чолхе хьелаш кхолла «OR», «AND», йа кхин дехаран аларш леладе.\n* in: йа phrase: санна долу аларш лело мегар ду дуьззина текстан лехамашкахь йа структурехь доцу лехаршкахь, нагахь санна хаьржинчу [https://www.semantic-mediawiki.org/wiki/Query_engine дехарийн системо] и аларш ловш делахь.", + "smw-facetedsearch-profile-label-default": "Профиль Ӏад йитаран кепаца", + "smw-facetedsearch-intro-tab-explore": "Талла", + "smw-facetedsearch-intro-tab-search": "Лахар", + "smw-facetedsearch-explore-intro": "Коллекци хаьржина хьажар доладе.", + "smw-facetedsearch-profile-options": "Профилан параметраш", + "smw-facetedsearch-size-options": "Пейджинган параметраш", + "smw-facetedsearch-order-options": "Заказан варианташ", + "smw-facetedsearch-format-options": "Гуш болу гӀирсаш", + "smw-facetedsearch-format-table": "Таблица", + "smw-facetedsearch-input-filter-placeholder": "фильтр...", + "smw-facetedsearch-no-filters": "Фильтраш йац.", + "smw-facetedsearch-no-filter-range": "Фильтран диапазон йац.", + "smw-facetedsearch-no-output": "Хаьржинчу «$1» форматан, цхьа а арахецар ца хилла.", + "smw-facetedsearch-clear-filters": "ДӀадаккха {{PLURAL:$1|фильтр}}", + "smw-search-placeholder": "Лоьху...", + "smw-listingcontinuesabbrev": "(кхин дlа)", + "smw-showingresults": "Лахахьа {{PLURAL:$1|гойту}} $1 {{PLURAL:$1|хилам}}, дӀаболало кху № $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ch.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ch.json new file mode 100644 index 0000000..f0fab9c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ch.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Gadao01", + "Jatrobat" + ] + }, + "smw-categories": "Katigoria", + "smw_browse_go": "Hånao", + "smw-listingcontinuesabbrev": "kont.", + "smw-showingresults": "A'annok gi sampapa' asta {{PLURAL:$1|'''1''' na humuyongña|'''$1''' na humuyongña siha}} tumutuhon yan i #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ckb.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ckb.json new file mode 100644 index 0000000..15977b2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ckb.json @@ -0,0 +1,54 @@ +{ + "@metadata": { + "authors": [ + "Aram", + "Asoxor", + "Sarchia", + "Épine", + "ئارام بکر" + ] + }, + "smw_finallistconjunct": "، و", + "smw_concept_description": "وەسفی چەمکی «$1»", + "smw_printername_count": "ئاکامەکان بژمێرە", + "smw_printername_csv": "ھەناردەکردنی CSV", + "smw_printername_dsv": "ھەناردەکردنی DSV", + "smw_printername_json": "ھەناردەکردنی JSON", + "smw_printername_list": "لیست", + "smw_printername_table": "خشتە", + "smw_printername_broadtable": "خشتەی بەرین", + "smw_printername_template": "داڕێژە", + "smw_printername_rdf": "ھەناردەکردنی RDF", + "smw_printername_category": "پۆل", + "validator-type-class-SMWParamSource": "دەق", + "smw_nofloat": "«$1» ژمارە نییە.", + "smw_type_header": "تایبەتمەندییەکانی جۆری «$1»", + "smw_typearticlecount": "نیشاندانی $1 {{PLURAL:$1|تایبەتمەندی}} بە بەکارھێنانی ئەم جۆرەوە.", + "properties": "تایبەتمەندییەکان", + "smw-categories": "پۆلەكان", + "smw_properties_docu": "تایبەتمەندییەکانی خوارەوە لەم ویکیەدا بە کار ھاتوون.", + "smw_propertylackspage": "ھەموو تایبەتمەندییەک دەبێت بە پەڕەیەک وەسف بکرێت!", + "types": "جۆرەکان", + "smw_ask_defaultformat": "بنچینەیی", + "smw-ask-delete": "لابردن", + "smw-ask-sorting": "بەڕیزکردن", + "smw-ask-search": "گەڕان", + "browse": "بگەڕێ بە ویکیدا", + "smw_browse_go": "بڕۆ", + "smw_inverse_label_default": "$1 لە", + "smw_result_next": "دواتر", + "smw_result_results": "ئاکامەکان", + "smw_result_noresults": "هیچ ئاکامێک نییە.", + "smwadmin": "کردەوە بەڕێوەبەرییەکان (میدیاویکیی واتایی)", + "smw_smwadmin_return": "بگەڕێوە بۆ $1.", + "smw_smwadmin_datarefreshstopconfirm": "بەڵێ، من {{GENDER:$1|دڵنیام}}.", + "smw-ui-tooltip-title-info": "زانیاری", + "smw-ui-tooltip-title-warning": "ھۆشدار", + "smw-ui-tooltip-title-event": "ڕووداو", + "smw-ui-tooltip-title-note": "تێبینی", + "smw-livepreview-loading": "باركردن‌...", + "smw-patternedit-protection": "ئەم پەڕەیە پارێزراوە و تەنھا دەتوانرێت دەستکاریان بکرێت لەلایەن بەکارھێنەرانی smw-patternedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions permission].", + "smw-jsonview-search-label": "گەڕان:", + "smw-listingcontinuesabbrev": "(درێژە)", + "smw-showingresults": "لە خوارەوە {{PLURAL:$1|'''یەک''' ئەنجام|'''$1''' ئەنجام}} نیشان دراوە، بە دەست پێ کردن لە ژمارەی '''$2'''ەوە." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/crh-cyrl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/crh-cyrl.json new file mode 100644 index 0000000..223ac75 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/crh-cyrl.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Don Alessandro" + ] + }, + "smw-categories": "Саифе категориялары", + "smw_purge": "Янъарт", + "smw-livepreview-loading": "Юкленмекте…", + "smw-listingcontinuesabbrev": " (девам)", + "smw-showingresults": "Ашагъыда № $2ден башлап {{PLURAL:$1|1='''1''' нетидже|'''$1''' нетидже}} булуна." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/crh-latn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/crh-latn.json new file mode 100644 index 0000000..bf94df5 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/crh-latn.json @@ -0,0 +1,22 @@ +{ + "@metadata": { + "authors": [ + "Don Alessandro", + "TayfunEt.", + "Zolgoyo" + ] + }, + "smw-categories": "Saife kategoriyaları", + "smw_purge": "Yañart", + "browse": "Vikini qıdırıñız", + "smw_browse_go": "Keç", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Umumiy parametrler", + "prefs-extended-search-options": "Tafsilâtlı qıdıruv", + "prefs-ask-options": "Semantik qıdıruv", + "smw-admin-tab-alerts": "Tenbiler", + "smw-livepreview-loading": "Yüklenmekte…", + "logeventslist-smw-log": "Semantik MediaWiki jurnalı", + "smw-listingcontinuesabbrev": " (devam)", + "smw-showingresults": "Aşağıda № $2den başlap {{PLURAL:$1|'''1''' netice|'''$1''' netice}} buluna." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/cs.json b/mediawiki/extensions/SemanticMediaWiki/i18n/cs.json new file mode 100644 index 0000000..c8957cd --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/cs.json @@ -0,0 +1,396 @@ +{ + "@metadata": { + "authors": [ + "Aktron", + "Danny B.", + "DemonioCZ", + "Dvorapa", + "Ilimanaq29", + "Jaroslav Cerny", + "Ján Kepler", + "Kghbln", + "Kjbenes", + "Korytaacheck", + "Macofe", + "Marek Pavlica", + "Martin Urbanec", + "Matěj Grabovský", + "Matěj Suchánek", + "McDutchie", + "Mormegil", + "Patriccck", + "Patrik L.", + "Vks", + "XenoPheX", + "아라" + ] + }, + "smw-desc": "Činíme vaší wiki přístupnější – pro stroje ''i'' lidi ([https://www.semantic-mediawiki.org/wiki/Help:User_manual online documentation])", + "smw-error": "Chyba", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Sémantická MediaWiki] byla instalována a aktivována, ale schází v ní potřebný [https://www.semantic-mediawiki.org/wiki/Help:Upgrade licenční klíč pro upgrade].", + "smw-upgrade-release": "Vydání", + "smw-upgrade-progress": "Postup", + "smw-upgrade-progress-explain": "Obraťte se na místního správce, který vám sdělí více informací o postupu.", + "smw-upgrade-progress-create-tables": "Vytváření (nebo aktualizace) tabulek a indexů...", + "smw-upgrade-progress-post-creation": "Provádějí se úlohy po vytvoření...", + "smw-upgrade-progress-table-optimization": "Provádí se optimalizace tabulek...", + "smw-upgrade-error-title": "Chyba » Sémantická MediaWiki", + "smw-upgrade-error-why-title": "Proč vidím tuto stránku?", + "smw-upgrade-error-why-explain": "Interní struktura databáze Sémantické MediaWiki se změnila a vyžaduje určité úpravy, aby byla plně funkční. K tomu mohlo dojít z různých příčin, včetně:\n* Byly přidány další fixní vlastnosti (vyžadující dodatečné nastavení tabulek) \n* Upgrade obsahuje některé změny tabulek nebo indexů, které vyžadují zásah před přístupem k datům\n* Změny úložiště nebo dotazovacího stroje", + "smw-upgrade-error-how-title": "Jak tuto chybu opravím?", + "smw-upgrade-error-how-explain-admin": "Správce (nebo kdokoli s právy správce) musí spustit skript pro údržbu jádra MediaWiki [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php], nebo skript pro údržbu Sémantické MediaWiki [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php].", + "smw-upgrade-error-how-explain-links": "Rady a pomoc získáte také na následujících (anglických) stránkách:\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation Pokyny pro instalaci]\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting Řešení problémů]", + "smw-extensionload-error-why-title": "Proč vidím tuto stránku?", + "smw-extensionload-error-why-explain": "Rozšíření nebylo načteno pomocí značky enableSemantics a místo toho bylo zapnuto jinými prostředky, jako je přímé volání funkce wfLoadExtension( 'SemanticMediaWiki' ).", + "smw-extensionload-error-how-title": "Jak tuto chybu opravím?", + "smw-extensionload-error-how-explain": "Pro aktivaci rozšíření a vyloučení problémů při deklaracích jmenných prostorů a nevyřízených konfigurací je nutné použít funkci enableSemantics, která zajistí, aby potřebné proměnné byly nastaveny před načtením rozšíření prostřednictvím modulu ExtensionRegistry. \n\nDalší informace najdete na stránce nápovědy [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] .", + "smw-upgrade-maintenance-title": "Údržba » Sémantická MediaWiki", + "smw-upgrade-maintenance-why-title": "Proč vidím tuto stránku?", + "smw-upgrade-maintenance-note": "V systému právě probíhá [https://www.semantic-mediawiki.org/wiki/Help:Upgrade upgrade] rozšíření [https://www.semantic-mediawiki.org/ Sémantická MediaWiki] společně s jejím datovým úložištěm. Vyčkejte, než bude údržba dokončena, poté se wiki znovu zpřístupní.", + "smw-upgrade-maintenance-explain": "Rozšíření se pokouší minimalizovat dopad na dostupnost a zkrátit dobu výpadku odložením většiny úloh údržby na dobu po spuštění update.php, ale některé změny související s databází musí být dokončeny jako první, aby se předešlo nekonzistenci dat. Mezi tyto změny patří: \n* Změna struktury tabulek, např. přidání nových nebo změna stávajících sloupců \n* Změna nebo přidání indexů tabulek \n* Spuštění optimalizace tabulek (je-li povolena)", + "smw-semantics-not-enabled": "Funkce Sémantické MediaWiki nejsou na této wiki aktivovány.", + "smw_viewasrdf": "RDF kanál", + "smw_finallistconjunct": " a", + "smw-factbox-head": "...více o \"$1\"", + "smw-factbox-facts": "Fakta", + "smw-factbox-facts-help": "Zobrazuje výroky a fakta vytvořené uživatelem", + "smw-factbox-attachments": "Přílohy", + "smw-factbox-attachments-value-unknown": "N/A", + "smw-factbox-attachments-is-local": "Je místní", + "smw-factbox-attachments-help": "Zobrazit dostupné přílohy", + "smw-factbox-facts-derived": "Odvozené fakty", + "smw-factbox-facts-derived-help": "Zobrazuje fakta odvozená z pravidel nebo získaná pomocí jiných způsobů uvažování", + "smw_isspecprop": "Tato vlastnost je speciální vlastnost na této wiki.", + "smw-concept-cache-header": "Využití cache", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count Cache konceptů] obsahuje {{PLURAL:$1|'''jednu''' položku|'''$1''' položek}} ($2).", + "smw-concept-no-cache": "Není dostupná žádná cache.", + "smw_concept_description": "Popis pojmu „$1“", + "smw_no_concept_namespace": "Pojmy je možné definovat pouze na stránkách ve jmenném prostoru Concept:", + "smw_multiple_concepts": "Každá stránka konceptu může mít jen jednu definici.", + "smw_concept_cache_miss": "Koncept „$1“ není možné momentálně použít, protože konfigurace wiki vyžaduje, aby se vypočítal až dodatečně. Pokud problém přetrvává delší dobu, požádejte správce, aby tento koncept zpřístupnil.", + "smw_noinvannot": "Inverzním vlastnostem nelze přiřazovat hodnoty.", + "version-semantic": "Sémantická rozšíření", + "smw_baduri": "Promiňte, URI z rozsahu „$1“ na tomto místě nejsou dostupné.", + "smw_printername_count": "Spočítat výsledky", + "smw_printername_csv": "Export do CSV", + "smw_printername_dsv": "Export do DSV", + "smw_printername_debug": "Ladit dotaz (pro experty)", + "smw_printername_embedded": "Vložit obsah stránky", + "smw_printername_json": "Export do JSON", + "smw_printername_list": "Seznam", + "smw_printername_plainlist": "Prostý seznam", + "smw_printername_ol": "Číslovaný seznam", + "smw_printername_ul": "Odrážkový seznam", + "smw_printername_table": "Tabulka", + "smw_printername_broadtable": "Široká tabulka", + "smw_printername_template": "Šablona", + "smw_printername_templatefile": "Soubor šablony", + "smw_printername_rdf": "Export do RDF", + "smw_printername_category": "Kategorie", + "validator-type-class-SMWParamSource": "text", + "smw-paramdesc-limit": "Maximální počet vrácených výsledků", + "smw-paramdesc-offset": "Posunutí prvního výsledku", + "smw-paramdesc-headers": "Zobrazení záhlaví/názvů vlastností", + "smw-paramdesc-mainlabel": "Popisek přidělený názvu hlavní stránky", + "smw-paramdesc-link": "Zobrazit hodnoty jako odkazy", + "smw-paramdesc-intro": "Text, který se má zobrazit před výsledky dotazu, pokud nějaké jsou", + "smw-paramdesc-outro": "Text, který se má zobrazit po výsledcích dotazu, pokud nějaké jsou", + "smw-paramdesc-default": "Text, který se má zobrazit, pokud dotaz nevrátí žádné výsledky", + "smw-paramdesc-sep": "Oddělovač mezi výsledky", + "smw-paramdesc-propsep": "Oddělovač mezi vlastnostmi položky výsledku", + "smw-paramdesc-valuesep": "Oddělovač mezi hodnotami vlastnosti výsledku", + "smw-paramdesc-showsep": "Zobrazit na začátku CSV souboru oddělovač (\"sep=\")", + "smw-paramdesc-distribution": "Místo zobrazení všech hodnot spočítat kolikrát se která vyskytuje a zobrazit tyto počty.", + "smw-paramdesc-distributionsort": "Řadí distribuci hodnot podle počtu výskytů.", + "smw-paramdesc-distributionlimit": "Omezí distribuci hodnot na počet pouze některých vlastností.", + "smw-paramdesc-aggregation": "Určuje, k čemu se agregace vztahuje", + "smw-paramdesc-template": "Název šablony, pomocí které zobrazit výpisy", + "smw-paramdesc-columns": "Počet sloupců, ve kterých se zobrazí výsledky", + "smw-paramdesc-userparam": "Hodnota předávaná každému volání šablony, je-li užita šablona", + "smw-paramdesc-class": "Přídavná třída CSS pro seznam", + "smw-paramdesc-introtemplate": "Název šablony, která se má zobrazit před výsledkem dotazu, je-li nějaký", + "smw-paramdesc-outrotemplate": "Název šablony, která se má zobrazit po výsledku dotazu, je-li nějaký", + "smw-paramdesc-embedformat": "HTML tag, kterým jsou definovány nadpisy", + "smw-paramdesc-embedonly": "Nezobrazovat nadpisy", + "smw-paramdesc-table-class": "Další CSS třída, která bude nastavena tabulce", + "smw-paramdesc-csv-sep": "Určuje oddělovač sloupců", + "smw-paramdesc-csv-valuesep": "Určuje oddělovač hodnot", + "smw-paramdesc-dsv-separator": "Oddělovač, který má být použit", + "smw-paramdesc-dsv-filename": "Název DSV souboru", + "smw-paramdesc-filename": "Název výstupního souboru", + "smw-smwdoc-description": "Zobrazí tabulku všech parametrů, které lze pro daný formát výsledků použít, spolu s výchozími hodnotami a popisy.", + "smw-smwdoc-par-format": "Formát výsledků, pro který se zobrazí dokumentace.", + "smw-paramdesc-sort": "Vlastnost, podle které výsledky řadit", + "smw-paramdesc-order": "Způsob řazení výsledků dotazu", + "smw-paramdesc-named_args": "Pojmenujte argumenty předané šabloně", + "smw-paramdesc-template-arguments": "Nastavuje, jak jsou pojmenované argumenty předány šabloně", + "smw-paramdesc-import-annotation": "Další anotovaná data je třeba zkopírovat během syntaktické analýzy předmětu", + "smw-paramdesc-export": "Možnosti exportu", + "smw-paramdesc-json-type": "Typ serializace", + "smw-paramdesc-source": "Alternativní zdroj dotazu", + "smw-paramdesc-jsonsyntax": "Syntaxe JSON, která bude použita", + "smw-printername-feed": "Kanál RSS a Atom", + "smw-paramdesc-feedtype": "Typ kanálu", + "smw-paramdesc-feedtitle": "Text, který bude užit jako titulek kanálu", + "smw-paramdesc-feeddescription": "Text, který bude užit jako popis kanálu", + "smw-paramdesc-feedpagecontent": "Obsah stránky, který bude zobrazen v kanálu", + "smw-label-feed-description": "$2 kanál $1", + "smw_iq_disabled": "Promiňtě, semantické dotazy byly pro tuto wiki zakázány.", + "smw_iq_moreresults": "…další výsledky", + "smw_parseerror": "Zadaná hodnota nebyla pochopená.", + "smw_notitle": "„$1“ není možné použít na této wiki jako název stránky.", + "smw_noproperty": "„$1“ nelze na této wiki použít jako název vlastnosti.", + "smw_wrong_namespace": "Zde jsou povoleny jen stránky ze jmenného prostoru \"$1\"", + "smw_manytypes": "Pro vlastnost byl definován více než jeden typ.", + "smw_emptystring": "Prázdné řetězce nejsou povolené.", + "smw_notinenum": "\"$1\" není v seznamu ($2) [[Property:Allows value|povolených hodnot]] pro vlastnost \"$3\".", + "smw-datavalue-constraint-error-allows-value-list": "\"$1\" není v seznamu ($2) speciální vlastnosti [[Property:Allows value|povolených hodnot]] pro vlastnost \"$3\".", + "smw-datavalue-constraint-error-allows-value-range": "\"$1\" není v rozsahu s názvem \"$2\" určeném pomocí omezení speciální vlastnosti [[Property:Allows value|povoluje hodnotu]] pro vlastnost \"$3\".", + "smw-constraint-error-limit": "Seznam bude obsahovat maximálně $1 porušení.", + "smw_noboolean": "„$1“ nebylo rozpoznáno jako platná hodnota typu boolean (ano/ne).", + "smw_true_words": "ano,a,yes,y", + "smw_false_words": "ne,no,n", + "smw_nofloat": "„$1“ není číslem.", + "smw_infinite": "Tak dlouhá čísla jako $1 nejsou podporována.", + "smw_unitnotallowed": "\"$1\" není platnou měrnou jednotkou této vlastnosti.", + "smw_nounitsdeclared": "Pro tuto vlastnost nebyly definovány žádné měrné jednotky.", + "smw_novalues": "Žádné hodnoty nebyly zadané.", + "smw_nodatetime": "Datum \"$1\" nedává smysl.", + "smw_toomanyclosing": "Dotazovaný řetězec „$1“ má příliš mnoho výskytů.", + "smw_noclosingbrackets": "Některý výskyt „[[“ ve vašem dotazu nebyl ukončen odpovídajícím „]]“.", + "smw_misplacedsymbol": "Symbol „$1“ byl užitý na místě, kde nemá význam.", + "smw_unexpectedpart": "Část dotazu „$1“ nedává smysl.\nVýsledky pravděpodobně nesplní očekávání.", + "smw_emptysubquery": "Některý poddotaz nemá platné podmínky.", + "smw_misplacedsubquery": "Některý poddotaz byl použitý na místě, kde nejsou poddotazy povoleny.", + "smw_valuesubquery": "Poddotazy nejsou podporovány pro hodnoty vlastnosti „$1“.", + "smw_badqueryatom": "Některá část „[[…]]“ nebyla srozumitelná.", + "smw_propvalueproblem": "Hodnota vlastnosti „$1“ nedávala smysl.", + "smw_noqueryfeature": "Určitá část dotazu není na této wiki podporovaná a bude proto ignorována ($1).", + "smw_noconjunctions": "Konjunkce v dotazu není na této wiki podporována a bude proto ignorována ($1).", + "smw_nodisjunctions": "Disjunkce nejsou v dotazech na této wiki podporované a část dotazu byla ignorována ($1).", + "smw_querytoolarge": "{{PLURAL:$2|Následující podmínka|$2 následující podmínky}} dotazu nebudou zohledněné z důvodu omezení této wiki na délku nebo hĺoubku dotazu: $1.", + "smw_notemplategiven": "Aby tento formát dotazu fungoval, uveďte hodnotu parametru „template“.", + "smw_db_sparqlqueryproblem": "Výsledek dotazu se nepodařilo získat z databáze SPARQL. Tato chyba může být dočasná nebo může indikovat chybu v softwaru databáze.", + "smw_db_sparqlqueryincomplete": "Zodpovězení dotazu se ukázalo být příliš obtížným a bylo stornováno. Výsledky nemusí být úplné. Je-li to možné, zkuste použít jednodušší dotaz.", + "smw_type_header": "Vlastností typu „$1“", + "smw_typearticlecount": "Zobrazeno je $1 {{PLURAL:$1|vlastnost|vlastnosti|vlastností}} tohoto typu.", + "smw_attribute_header": "Stránek používajících vlastnost „$1“", + "smw_attributearticlecount": "Zobrazeno je $1 {{PLURAL:$1|stránka používající|stránky používající|stránek používajících}} tuto vlastnost.", + "smw-propertylist-redirect-header": "Synonyma", + "smw-propertylist-error-header": "Stránky obsahující nesprávná přiřazení", + "smw-propertylist-count": "Zobrazuji $1 související {{PLURAL:$1|entitu|entity}}.", + "specialpages-group-smw_group": "Sémantická MediaWiki", + "specialpages-group-smw_group-maintenance": "Údržba", + "specialpages-group-smw_group-properties-concepts-types": "Vlastnosti, koncepty a typy", + "specialpages-group-smw_group-search": "Procházet a hledat", + "exportrdf": "Export stránek do RDF", + "smw_exportrdf_docu": "Tato stránka vám umožňuje exportovat části stránek do formátu RDF. Po zadaní názvů stránek do spodního textového pole (jeden název na řádek) můžete exportovat stránky.", + "smw_exportrdf_recursive": "Rekurzívně exportovat všechny související stránky. Pozor, výsledek může být velmi rozsáhlý!", + "smw_exportrdf_backlinks": "Exportovat také stránky, které odkazují na exportované stránky. Vytvoří přehledné RDF.", + "smw_exportrdf_lastdate": "Neexportovat stránky, které nebyly změněné od zadaného času.", + "smw_exportrdf_submit": "Exportovat", + "uriresolver": "Překladač URI", + "properties": "Vlastnosti", + "smw-categories": "Kategorie", + "smw_properties_docu": "Na této wiki se používají následující vlastnosti.", + "smw_property_template": "$1 typu $2 ($3 {{PLURAL:$3|použití}})", + "smw_propertylackspage": "Všechny vlastnosti by měly mít stránku s popisem!", + "smw_propertylackstype": "Této vlastnosti nebyl definován žádný typ (předpokládá se prozatím typ $1)", + "smw_propertyhardlyused": "Tato vlastnost se na wiki téměř nepoužívá!", + "smw-property-name-invalid": "Vlastnost $1 nelze použít (neplatný název vlastnosti).", + "smw-sp-property-searchform": "Zobrazit vlastnosti, které obsahují:", + "smw-sp-property-searchform-inputinfo": "Vstup je citlivý na velikost písmen a je-li použit pro filtrování, zobrazí se jen vlastnosti, které splňují danou podmínku.", + "smw-special-property-searchform": "Zobrazit vlastnosti, které obsahují:", + "smw-special-property-searchform-inputinfo": "Vstup rozlišuje malá a velká písmena. Při filtrování jsou zobrazeny jen vlastnosti splňující podmínku.", + "smw-special-property-searchform-options": "Nastavení", + "smw-special-wantedproperties-filter-label": "Filtr:", + "smw-special-wantedproperties-filter-none": "Žádná", + "smw-special-wantedproperties-filter-unapproved": "Neschváleno", + "smw-special-wantedproperties-filter-unapproved-desc": "Volby filtru použité ve spojení s režimem autority.", + "concepts": "Koncepty", + "smw-special-concept-header": "Seznam konceptů", + "smw-special-concept-empty": "Nebyl nalezen žádný koncept.", + "unusedproperties": "Nepoužité vlastnosti", + "smw-unusedproperties-docu": "Tato stránka obsahuje [https://www.semantic-mediawiki.org/wiki/Unused_properties nepoužívané vlastnosti], které jsou deklarované i přesto, že je žádná jiná stránka nepoužívá. K porovnání se můžete podívat také na speciální stránky [[Special:Properties|všech]] nebo [[Special:WantedProperties|chybějících vlastností]].", + "smw-unusedproperty-template": "$1 typu $2", + "wantedproperties": "Požadované vlastnosti", + "smw-wantedproperties-docu": "Tato stránka obsahuje [https://www.semantic-mediawiki.org/wiki/Wanted_properties chybějící vlastnosti], které jsou používané na wiki i přesto, že k nim neexistuje stránka s jejich popisem. K porovnání se můžete podívat také na speciální stránky [[Special:Properties|všech]] nebo [[Special:UnusedProperties|nepoužívaných vlastností]].", + "smw-wantedproperty-template": "$1 ($2 užití)", + "smw_purge": "Obnovit", + "types": "Typy", + "smw_types_docu": "Následuje seznam všech údajových typů, které je možné přiřadit vlastnostem. Každý údajový typ má stránku, kde je možné uvést dodatečné informace.", + "smw-statistics-entities-total": "Entity (celkem)", + "smw-statistics-property-total-info": "Celkový počet registrovaných vlastností.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Vlastnost|Vlastnosti}} (celkem)", + "smw-statistics-property-used": "{{PLURAL:$1| Vlastnost|Vlastnosti}} (použito s alespoň jednou hodnotou)", + "smw-statistics-property-page": "{{PLURAL:$1| Vlastnost|Vlastnosti}} (registrované ve stránce)", + "smw-statistics-property-page-info": "Počet vlastností, které mají vyhrazenou stránku a popis.", + "smw-statistics-property-type": "{{PLURAL:$1| Vlastnost|Vlastnosti}} (přiřazeno k datovému typu)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Dotaz|Dotazy}}", + "smw-statistics-query-size": "Velikost dotazu", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Koncept|Koncepty}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Koncept|Koncepty}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Podobjekt|Podobjekty}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Subobjekt|Subobjekty}}", + "smw_uri_doc": "URI resolver se stará o implementaci [$1 W3C TAG hledání na httpRange-14].\nStará se o to, aby se lidé nestali webstránkami.", + "ask": "Sémantické vyhledávání", + "smw_ask_sortby": "Řadit podle sloupce (volitelné)", + "smw_ask_ascorder": "Vzestupně", + "smw_ask_descorder": "Sestupně", + "smw-ask-order-rand": "Náhodně", + "smw_ask_submit": "Najdi výsledky", + "smw_ask_editquery": "Upravit dotaz", + "smw_add_sortcondition": "[Přidat podmínku na řazení]", + "smw-ask-sort-add-action": "Přidat podmínku řazení", + "smw_ask_hidequery": "Skrýt dotaz (kompaktní zobrazení)", + "smw_ask_help": "Pomocník pro dotazy", + "smw_ask_queryhead": "Podmínka", + "smw_ask_printhead": "Výběr výpisu", + "smw_ask_printdesc": "(každý název vlastnosti na samostatný řádek)", + "smw_ask_format_as": "Formát výstupu:", + "smw_ask_defaultformat": "výchozí", + "smw_ask_otheroptions": "Další možnosti", + "smw-ask-otheroptions-info": "Tato sekce obsahuje volby, které změní příkazy výpisu. Popisy parametrů zobrazíte umístěním ukazatele myši nad parametr.", + "smw-ask-otheroptions-collapsed-info": "Pro zobrazení všech dostupných možností prosím použijte ikonu plus", + "smw_ask_show_embed": "Zobrazit kód pro vložení do stránky", + "smw_ask_hide_embed": "Skrýt kód pro vložení do stránky", + "smw_ask_embed_instr": "Tento kód použijte ke vložení tohoto dotazu do textu stránky na wiki.", + "smw-ask-delete": "Odebrat", + "smw-ask-sorting": "Řazení", + "smw-ask-options": "Možnosti", + "smw-ask-options-sort": "Možnosti řazení", + "smw-ask-format-options": "Formát a možnosti", + "smw-ask-parameters": "Parametry", + "smw-ask-search": "Hledat", + "smw-ask-debug": "Ladit", + "smw-ask-debug-desc": "Generuje ladicí informace k dotazu", + "smw-ask-no-cache": "Deaktivovat cache dotazu", + "smw-ask-no-cache-desc": "Výsledky bez cache dotazu", + "smw-ask-result": "Výsledek", + "smw-ask-empty": "Odstranit všechny záznamy", + "smw-ask-download-link-desc": "Stáhnout výsledky dotazu ve formátu $1", + "smw-ask-format": "Formát", + "smw-ask-format-selection-help": "Nápověda pro vybraný formát: $1.", + "smw-ask-condition-change-info": "Podmínka byla změněna a vyhledávací modul požaduje spustit dotaz znovu, aby výsledky odpovídaly novým požadavkům.", + "smw-ask-input-assistance": "Pomoc při zadávání dat", + "smw-ask-extra-query-log": "Protokol dotazů", + "searchbyproperty": "Hledat podle hodnoty vlastnosti", + "processingerrorlist": "Seznam chyb zpracování", + "smw_sbv_docu": "Hledat na wiki článek, který má vlastnost s jistou hodnotou.", + "smw_sbv_novalue": "Nebyla uvedena hodnota. Prosím, vložte ji ve formuláři nebo zobrazte všechny atributy typu $1", + "smw_sbv_displayresultfuzzy": "Seznam všech stránek, jejichž vlastnost „$1“ má hodnotu „$2“. Jelikož bylo výsledků málo, jsou zobrazeny i blízké hodnoty.", + "smw_sbv_property": "Vlastnost:", + "smw_sbv_value": "Hodnota:", + "smw_sbv_submit": "Hledat výsledky", + "browse": "Prohledat wiki", + "smw_browselink": "Projít vlastnosti", + "smw_browse_article": "Zadejte název stránky, od které chcete začít prohledávat.", + "smw_browse_go": "Provést", + "smw_browse_show_incoming": "Zobrazit příchozí vlastnosti", + "smw_browse_hide_incoming": "Skrýt příchozí vlastnosti", + "smw_browse_no_outgoing": "Tato stránka nemá žádné vlastnosti.", + "smw_browse_no_incoming": "Na tuto stránku neodkazují žádné vlastnosti.", + "smw-browse-from-backend": "Informace jsou nyní načítány z databáze.", + "smw-browse-show-group": "Zobrazit skupiny", + "smw-browse-hide-group": "Skrýt skupiny", + "smw_inverse_label_default": "$1 z/ze", + "pageproperty": "Hledání vlastností stránky", + "pendingtasklist": "Seznam čekajících úkolů", + "smw_pp_docu": "Buď zadejte stránku a vlastnost nebo pouze vlastnost pro načtení všech přiřazených hodnot.", + "smw_pp_from": "Od stránky", + "smw_pp_type": "Vlastnictví:", + "smw_pp_submit": "Výsledky hledání", + "smw-prev": "předchozích {{PLURAL:$1|$1}}", + "smw-next": "dalších {{PLURAL:$1|$1}}", + "smw_result_prev": "Zpět", + "smw_result_next": "Dále", + "smw_result_results": "Výsledky", + "smw_result_noresults": "Bohužel nejsou žádné výsledky.", + "smwadmin": "Panel (Sémantická MediaWiki)", + "smw-admin-statistics-job-title": "Statistiky úloh", + "smw-admin-statistics-querycache-title": "Mezipaměť dotazů", + "smw-admin-statistics-semanticdata-overview": "Přehled", + "smw-admin-permission-missing": "Přístup na tuto stránku byl zablokován kvůli chybějícím oprávněním, podrobnosti o nezbytných nastaveních naleznete na stránce nápovědy pro [https://www.semantic-mediawiki.org/wiki/Help:Permissions oprávnění].", + "smw_smwadmin_return": "Zpět na $1", + "smw_smwadmin_updatestarted": "Byl spuštěn nový proces aktualizace sémantických dat.\nVšechna uložená data budou zkontrolována a, bude-li to nutné, znovu vytvořena nebo opravena.\nPrůběh aktualizace můžete sledovat na této speciální stránce.", + "smw_smwadmin_updatenotstarted": "Proces updatu již probíhá.\nNelze vytvořit další.", + "smw_smwadmin_updatestopped": "Všechny procesy aktualizace byly zastaveny.", + "smw_smwadmin_updatenotstopped": "Abyste zastavili běžící proces aktualizace, musíte zaškrtnout políčko, čímž potvrdíte, že si jste opravdu jist{{GENDER:||a|(a)}}.", + "smw-admin-docu": "Tato speciální stránka vám pomůže s instalací, upgradem, údržbou a používáním Sémantické MediaWiki. Najdete v ní také další administrativní funkce, úkoly a statistiky.\nPřed spuštěním administrativních funkcí nezapomeňte zálohovat cenná data.", + "smw-admin-environment": "Softwarové prostředí", + "smw-admin-db": "Instalace databáze", + "smw-admin-dbdocu": "Aby mohla Sémantická MediaWiki ukládat sémantická data, potřebuje svou vlastní strukturu databáze (a je přitom nezávislá na jádru MediaWiki, proto neovlivňuje ostatní část instalace MediaWiki).\nTuto přípravnou funkci můžete spustit vícekrát, aniž by došlo k jakémukoli poškození, ale je to nutné pouze jednou při instalaci nebo upgradu.", + "smw-admin-permissionswarn": "Selže-li operace s SQL chybami, pak uživatel databáze, kterého vaše wiki používá (zkontrolujte soubor „LocalSettings.php“) pravděpodobně nemá dostatečná oprávnění.\nPřidělte tomuto uživateli dostatečná oprávnění k tvorbě a mazání tabulek, dočasně do souboru „LocalSettings.php“ zadejte údaje rootu databáze, nebo použijte údržbový skript setupStore.php, který používá údaje správce.", + "smw-admin-dbbutton": "Inicializovat či upgradovat tabulky", + "smw-admin-announce": "Nahlásit tuto wiki", + "smw-admin-deprecation-notice-title-notice": "Připravované změny", + "smw-admin-deprecation-notice-title-notice-explanation": "V této wiki byla rozpoznána následující nastavení, která budou v příští verzi odebrána nebo změněna.", + "smw-admin-deprecation-notice-title-replacement": "Nahrazená nebo přejmenovaná nastavení", + "smw-admin-deprecation-notice-title-replacement-explanation": "Následující sekce obsahuje nastavení, která byla přejmenována nebo jinak změněna. Doporučujeme aktualizovat jejich název nebo formát.", + "smw-admin-deprecation-notice-title-removal": "Odebraná nastavení", + "smw-admin-deprecation-notice-title-removal-explanation": "Odebraná nastavení jsou nastavení, která byla odebrána v předchozí verzi, ale která se na této wiki nadále používají.", + "smw_smwadmin_datarefresh": "Nové vytvoření dat", + "smw_smwadmin_datarefreshdocu": "Na základě obsahu stránek wiki je možné obnovit všechna data Semantic MediaWiki.\nTo může být užitečné při opravě poškozených dat nebo při jejich úpravě, pokud se v důsledku upgradu softwaru změní vnitřní formát.\nUpdate se spouští stránku po stránce a nebude dokončen ihned.\nNásledující se zobrazuje pokud update právě probíhá a umožňuje vám updaty spouštět či zastavovat (pokud tuto možnost nezakázal administrátor).", + "smw_smwadmin_datarefreshprogress": "Probíhá update.\nJe normální, že update postupuje pomalu, protože data zpracovává v malých dávkách vždy, když wiki navštíví nějaký uživatel.\nChcete-li update dokončit rychleji, můžete spustit údržbový skript MediaWiki runJobs.php (k omezení počtu updatů provedených v jedné dávce použijte nastavení --maxjobs 1000).\nOdhadovaný průběh updatu:", + "smw_smwadmin_datarefreshbutton": "Naplánovat znovusestavení dat", + "smw_smwadmin_datarefreshstop": "Zastavit update", + "smw_smwadmin_datarefreshstopconfirm": "Ano, jsem si {{GENDER:$1|jistý|jistá|jistý/á}}.", + "smw-admin-support": "Získání podpory", + "smw-admin-supportdocu": "V případě problémů je k pomoci připraveno několik zdrojů:", + "smw-admin-installfile": "Máte-li problémy s instalací, přečtěte si návod k instalaci v souboru INSTALL a na instalační stránce.", + "smw-admin-smwhomepage": "Kompletní uživatelská dokumentace Semantic MediaWiki je dostupná na semantic-mediawiki.org.", + "smw-admin-bugsreport": "Chyby lze hlásit do zápisníku chyb, stránka Hlášení chyb pak poskytuje návod jak efektivně napsat hlášení chyby.", + "smw-admin-questions": "Další otázky či návrhy můžete pokládat do diskuse na Semantic MediaWiki v uživatelském komunikačním vlákně nebo chatovací\n místnosti.", + "smw_adminlinks_datastructure": "Datová struktura", + "smw_adminlinks_inlinequerieshelp": "Nápověda k inline dotazům", + "smw-createproperty-isproperty": "Toto je vlastnost typu $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Povolená hodnota této vlastnosti je|Povolené hodnoty této vlastnosti jsou}}:", + "smw-paramdesc-category-delim": "Oddělovač", + "smw-paramdesc-category-userparam": "Parametr předávaný do šablony", + "smw-info-par-message": "Jaká zpráva se má zobrazit.", + "smw-info-par-icon": "Jaká ikona se má zobrazit, buď „info“ nebo „warning“ (varování).", + "prefs-smw": "Sémantická MediaWiki", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Sémantická MediaWiki] (a podobná rozšíření) poskytuje individuální úpravy pro nějaké zvolené funkce. Podívejte se prosím na [https://www.semantic-mediawiki.org/wiki/Help:User_preferences nápovědu] pro další informace.", + "smw-prefs-ask-options-tooltip-display": "Zobrazit parametr textu jako informační nástroj na speciální stránce [[Special:Ask|přípravy dotazu]] pro #ask.", + "smw-ui-tooltip-title-property": "Vlastnost", + "smw-ui-tooltip-title-quantity": "Množství", + "smw-ui-tooltip-title-warning": "Varování", + "smw-ui-tooltip-title-parameter": "Parametr", + "smw-ui-tooltip-title-event": "Událost", + "smw-ui-tooltip-title-note": "Poznámka", + "smw_unknowntype": "Pro vlastnost je definován nepodporovaný typ „$1“.", + "smw_concept_header": "Stran konceptu \"$1\"", + "smw_conceptarticlecount": "{{PLURAL:$1|zobrazena je|zobrazeny jsou|zobrazeno je}} $1 {{PLURAL:$1|stránka náležející|stránky náležející|stránek náležejících}} tomuto konceptu.", + "group-smwadministrator": "Správci (Sémantická MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|správce|správkyně|správce}} (Semantic MediaWiki)", + "action-smw-ruleedit": "editovat pravidla (Sémantická MediaWiki)", + "smw-sp-properties-cache-info": "Uvedená data pocházejí z [https://www.semantic-mediawiki.org/wiki/Caching cache] a byla naposledy aktualizována $1.", + "smw-sp-properties-header-label": "Seznam vlastností", + "smw-livepreview-loading": "Nahrávám…", + "smw-sp-searchbyproperty-resultlist-header": "Seznam výsledků", + "smw-editpage-annotation-enabled": "Tato stránka podporuje sémantické anotace uvnitř textu (např. „[[Is specified as::World Heritage Site]]“), které slouží k budování strukturovaného a prohledávatelného obsahu prostřednictvím Semantic MediaWiki. Podrobný popis, jak používat anotace a funkci parseru #ask, naleznete na stránkách nápovědy [https://www.semantic-mediawiki.org/wiki/Help:Getting_started ''Začínáme''], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation ''Anotace uvnitř textu''] či [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries ''inline dotazy''].", + "smw-editpage-annotation-disabled": "Na této stránce nejsou povoleny sémantické anotace uvnitř textu kvůli omezením jmenného prostoru. Podrobný popis, jak tento jmenný prostor povolit, najdete v [https://www.semantic-mediawiki.org/wiki/Help:Configuration nápovědě ke konfiguraci].", + "smw-search-syntax-support": "Vyhledávací vstup podporuje použití sémantické [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search syntaxové otázky], která pomůže získávání výsledků s použitím Semantic MediaWiki.", + "smw-search-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Vstupní asistent] je také aktivní pro zjednodušení zvolení možných vlastností a kategorií.", + "smw-search-profile-extended-section-sort": "Řadit podle", + "smw-search-profile-extended-section-form": "Vybrat formulář", + "smw-type-geo": "\"$1\" je typ dat, který popisuje geografické lokace a požaduje [https://www.semantic-mediawiki.org/wiki/Extension:Maps mapové rozšíření] k poskytnutí rozšířených funkcí.", + "smw-types-extra-geo-not-available": "[https://www.semantic-mediawiki.org/wiki/Extension:Maps Rozšíření map] nebylo zjištěno, protože \"$1\" je omezeno v kapacitě, takže nemůže fungovat.", + "smw-datavalue-keyword-maximum-length": "Klíčové slovo je delší než maximální délku {{PLURAL:$1|$1 znaku|$1 znaků}}.", + "smw-type-eid": "\"$1\" je varianta datatypu [[Special:Types/Text|textu]] k popisu externích zdrojů (založených na URI) a požaduje přidělené vlastnosti, aby deklarovala [[Property:External formatter uri|Externí formátovač URI]].", + "smw-property-predefined-keyw": "\"$1\" je předdefinovaná vlastnost a [[Special:Types/Keyword|druh]] poskytnutý [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Sémantickou MediaWiki], který normalizuje text a má omezenou délku.", + "smw-type-keyw": "\"$1\" je druh [[Special:Types/Text|textu]], který má omezenou délku a normalizuje reprezentaci obsahu.", + "smw-change-propagation-protection": "Tato stránka je zamčena kvůli prevenci náhodných editací dat během [https://www.semantic-mediawiki.org/wiki/Change_propagation změny anotací hodnot]. Proces může trvat chvíli, než bude stránka odemčena, což záleží na velikosti a frekvenci [https://www.mediawiki.org/wiki/Manual:Job_queue plánovače].", + "smw-format-datatable-next": "Další", + "smw-format-datatable-previous": "Předchozí", + "smw-types-title": "Datentyp: $1", + "smw-schema-usage": "Použití", + "smw-ask-title-keyword-type": "Hledání klíčových slov", + "smw-ask-message-keyword-type": "Toto vyhledává shody se stavem $1.", + "smw-property-tab-usage": "Použití", + "smw-property-tab-redirects": "Synonyma", + "smw-concept-tab-list": "Seznam", + "smw-concept-tab-errors": "Chyby", + "smw-listingcontinuesabbrev": "pokrač.", + "smw-showingresults": "Níže zobrazuji nejvýše $1 {{PLURAL:$1|výsledek|výsledky|výsledků}} počínaje od $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/cu.json b/mediawiki/extensions/SemanticMediaWiki/i18n/cu.json new file mode 100644 index 0000000..64648b6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/cu.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "ОйЛ" + ] + }, + "smw-categories": "катигорїѩ", + "smw-ui-tooltip-title-warning": "нарочито", + "smw-listingcontinuesabbrev": "· вѧщє" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/cv.json b/mediawiki/extensions/SemanticMediaWiki/i18n/cv.json new file mode 100644 index 0000000..2ddcff1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/cv.json @@ -0,0 +1,16 @@ +{ + "@metadata": { + "authors": [ + "Astahar", + "Chuvash2014" + ] + }, + "smw_printername_template": "Шаблон", + "smw-categories": "Категорисем", + "smw_purge": "Ҫӗнет", + "browse": "Страницӑсене тишкересси", + "smw_browse_go": "Куç", + "smw-livepreview-loading": "Тултаратпăр…", + "smw-listingcontinuesabbrev": "(малалли)", + "smw-showingresults": "Аяларах эсир $2 пуçласа кăтартнă $1 йĕркене куратăр." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/cy.json b/mediawiki/extensions/SemanticMediaWiki/i18n/cy.json new file mode 100644 index 0000000..8e7ccbc --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/cy.json @@ -0,0 +1,30 @@ +{ + "@metadata": { + "authors": [ + "Afalau", + "Ceirios", + "Ham II", + "Lloffiwr", + "Robin Owain" + ] + }, + "smw-error": "Gwall", + "smw_printername_table": "Tabl", + "smw_printername_category": "Categori", + "validator-type-class-SMWParamSource": "testun", + "smw-categories": "Categorïau", + "smw_purge": "Adnewyddu", + "browse": "Pori'r wici", + "smw-livepreview-loading": "Wrthi'n llwytho…", + "smw-data-lookup": "Wrthi'n nôl data...", + "smw-processing": "Wrthi'n prosesu...", + "smw-loading": "Wrthi'n llwytho...", + "smw-fetching": "Wrthi'n nôl...", + "smw-preparing": "Wrthi'n paratoi...", + "smw-facetedsearch-intro-tab-explore": "Archwilio", + "smw-facetedsearch-format-table": "Tabl", + "smw-facetedsearch-input-filter-placeholder": "Hidlo...", + "smw-search-placeholder": "Chwilio...", + "smw-listingcontinuesabbrev": "parh.", + "smw-showingresults": "Yn dangos $1 {{PLURAL:$1|canlyniad|canlyniad|ganlyniad|chanlyniad|chanlyniad|canlyniad}} isod gan ddechrau gyda rhif '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/da.json b/mediawiki/extensions/SemanticMediaWiki/i18n/da.json new file mode 100644 index 0000000..94ae287 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/da.json @@ -0,0 +1,235 @@ +{ + "@metadata": { + "authors": [ + "Cgtdk", + "Christian List", + "Fnielsen", + "Joedalton", + "Jon Harald Søby", + "Palnatoke", + "Peterleth", + "Saederup92" + ] + }, + "smw-error": "Fejl", + "smw-upgrade-progress": "Fremskridt", + "smw-upgrade-error-title": "Fejl", + "smw-upgrade-error-why-title": "Hvorfor ser jeg denne side?", + "smw-upgrade-error-how-title": "Hvordan fikser jeg denne fejl?", + "smw-extensionload-error-why-title": "Hvorfor ser jeg denne side?", + "smw-extensionload-error-how-title": "Hvordan retter jeg denne fejl?", + "smw_viewasrdf": "RDF-nyhedskilde", + "smw_finallistconjunct": ", og", + "smw-factbox-head": "... mere om \"$1\"", + "smw-factbox-facts": "Fakta", + "smw-concept-cache-header": "Brug af cache", + "smw-concept-no-cache": "Ingen tilgængelige cache.", + "smw_concept_description": "Beskrivelse af konceptet \"$1\"", + "smw_printername_csv": "CSV-eksport", + "smw_printername_dsv": "DSV-eksport", + "smw_printername_json": "JSON eksportering", + "smw_printername_list": "Liste", + "smw_printername_table": "Tabel", + "smw_printername_template": "Skabelon", + "smw_printername_templatefile": "Skabelon fil", + "smw_printername_rdf": "RDF-eksport", + "smw_printername_category": "Kategori", + "validator-type-class-SMWParamSource": "tekst", + "smw-paramdesc-limit": "Maksimalt antal resultater som skal returneres", + "smw-paramdesc-offset": "Forskydning for det første resultat", + "smw-paramdesc-dsv-filename": "Navnet på DSV filen", + "smw-printername-feed": "RSS- og Atom-feed", + "smw-paramdesc-feedtype": "Feedtype", + "smw-label-feed-description": "$1 $2 feed", + "smw_iq_moreresults": "… flere resultater", + "smw_parseerror": "Opgivet værdi blev ikke forstået.", + "smw_emptystring": "Tomme strenge godtages ikke.", + "smw_notinenum": "\"$1\" er ikke i listen ($2) over [[Property:Allows value|tilladte værdier]] for egenskaben \"$3\".", + "smw_true_words": "sandt,s,ja,j", + "smw_false_words": "forkert,f,nej,n", + "smw_nofloat": "\"$1\" er ikke et tal.", + "smw_infinite": "Tal der er lige så store som \"$1\" understøttes ikke.", + "smw_novalues": "Ingen værdier angivet.", + "smw_nodatetime": "Datoen \"$1\" blev ikke forstået.", + "smw_type_header": "Egenskaber af typen \"$1\"", + "smw_attribute_header": "Sider der bruger egenskaben \"$1\"", + "smw-propertylist-subproperty-header": "Underegenskaver", + "smw-propertylist-redirect-header": "Synonymer", + "specialpages-group-smw_group-search": "Gennemse og søg", + "exportrdf": "Eksporter sider til RDF", + "smw_exportrdf_submit": "Eksportér", + "uriresolver": "URI-løser", + "properties": "Egenskaber", + "smw-categories": "Kategorier", + "smw-sp-property-searchform": "Vis egenskaber der indeholder:", + "smw-special-property-searchform": "Vis egenskaber der indeholder:", + "smw-special-property-searchform-options": "Indstillinger", + "smw-special-wantedproperties-filter-label": "Filter:", + "smw-special-wantedproperties-filter-none": "Ingen", + "smw-special-wantedproperties-filter-unapproved": "Ikke-godkendt(e)", + "concepts": "Koncepter", + "smw-special-concept-header": "Liste over koncepter", + "unusedproperties": "Ubrugte egenskaber", + "smw-unusedproperty-template": "$1 af typen $2", + "wantedproperties": "Efterspurgte egenskaber", + "smw_purge": "Genindlæs", + "smw-purge-failed": "Genindlæsning mislykkedes", + "types": "Typer", + "smw-statistics-query-size": "Størrelse på efterspørgsel", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Koncept|Koncepter}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Koncept|Koncepter}}]]", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Datatype|Datatyper}}]]", + "smw-statistics-delete-count-info": "Enheder, der er blevet markeret til fjernelse, skal bortskaffes regelmæssigt ved hjælp af de medfølgende vedligeholdelsesscripts.", + "smw-ask-order-rand": "Tilfældig", + "smw_ask_submit": "Find resultater", + "smw_ask_editquery": "Rediger forespørgsel", + "smw_ask_format_as": "Formater som:", + "smw_ask_defaultformat": "standard", + "smw-ask-delete": "Fjern", + "smw-ask-format-options": "Format og indstillinger", + "smw-ask-parameters": "Parametre", + "smw-ask-search": "Søg", + "smw-ask-no-cache": "Deaktiver kø cache", + "smw-ask-result": "Resultat", + "smw-ask-format": "Format", + "smw-ask-format-change-info": "Formatet blev ændret og det er krævet for at køre forespørgslen igen for at matche nye parametre og visualiseringsindstillinger.", + "searchbyproperty": "Søg efter egenskab", + "smw_sbv_property": "Egenskab:", + "smw_sbv_value": "Værdi:", + "smw_sbv_submit": "Find resultater", + "browse": "Gennemse wiki", + "smw_browselink": "Gennemgå egenskaber", + "smw_browse_show_incoming": "Vis indkommende egenskaber", + "smw_browse_hide_incoming": "Skjul indkommende egenskaber", + "smw_browse_no_outgoing": "Denne side har ingen egenskaber.", + "smw-browse-js-disabled": "Det er mistanke om, at JavaScript er deaktiveret eller ikke er tilgængelig, og vi kan anbefale at bruge en browser, hvor dette understøttes. Andre muligheder findes måske på [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi] indstillingssiden.", + "smw-browse-show-group": "Vis grupper", + "smw-browse-hide-group": "Skjul grupper", + "smw_inverse_label_default": "$1 af", + "smw_pp_from": "Fra side:", + "smw_pp_type": "Egenskab:", + "smw_pp_submit": "Find resultater", + "smw-prev": "forrige {{PLURAL:$1|$1}}", + "smw-next": "næste {{PLURAL:$1|$1}}", + "smw_result_prev": "Forrige", + "smw_result_next": "Næste", + "smw_result_results": "Resultater", + "smw_result_noresults": "Ingen resultater.", + "smw-admin-statistics-semanticdata-overview": "Oversigt", + "smw_smwadmin_return": "Vend tilbage til $1", + "smw-admin-environment": "Softwaremiljø", + "smw-admin-announce": "Bekendtgør din wiki", + "smw-admin-deprecation-notice-title-notice": "Kommende ændringer", + "smw-admin-deprecation-notice-title-replacement": "Erstattede eller omdøbte indstillinger", + "smw-admin-deprecation-notice-title-removal": "Fjernede indstillinger", + "smw_smwadmin_datarefreshstop": "Stop denne opdatering", + "smw_smwadmin_datarefreshstopconfirm": "Ja, jeg er {{GENDER:$1|sikker}}", + "smw-admin-other-functions": "Andre funktioner", + "smw-admin-statistics": "Statistik", + "smw-admin-supplementary-section-subtitle": "Understøttede kernefunktioner", + "smw-admin-supplementary-operational-table-statistics-short-title": "tabel-statistikker", + "smw-admin-supplementary-elastic-functions": "Understøttede funktioner", + "smw-admin-supplementary-elastic-settings-title": "Indstillinger", + "smw-admin-supplementary-elastic-nodes-title": "Punkter", + "smw-admin-supplementary-elastic-statistics-title": "Statistik", + "smw-admin-supplementary-elastic-replication-files": "Filer", + "smw-admin-supplementary-elastic-replication-pages": "Sider", + "smw-list-count": "Listen indeholder $1 {{PLURAL:$1|element|elementer}}.", + "smw_adminlinks_datastructure": "Datastruktur", + "smw_adminlinks_displayingdata": "Datavisning", + "smw-createproperty-isproperty": "Det er en egenskab af typen $1.", + "smw-info-par-message": "Besked at vise.", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Generelle indstillinger", + "smw-ui-tooltip-title-property": "Egenskab", + "smw-ui-tooltip-title-info": "Information", + "smw-ui-tooltip-title-warning": "Advarsel", + "smw-ui-tooltip-title-error": "Fejl", + "smw-ui-tooltip-title-parameter": "Parameter", + "smw-ui-tooltip-title-event": "Hændelse", + "smw-ui-tooltip-title-note": "Bemærkning", + "smw-ui-tooltip-title-legend": "Forklaring", + "smw-ui-tooltip-title-reference": "Henvisning", + "smw-sp-properties-header-label": "Liste over egenskaber", + "smw-admin-idlookup-input": "Søg:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Oversigt", + "smw-admin-configutation-tab-settings": "Indstillinger", + "smw-admin-configutation-tab-namespaces": "Navnerum", + "smw-admin-maintenance-tab-tasks": "Opgaver", + "smw-admin-maintenance-no-description": "Ingen beskrivelse.", + "smw-livepreview-loading": "Indlæser …", + "smw-sp-searchbyproperty-resultlist-header": "Liste over resultater", + "smw-search-syntax": "Syntaks", + "smw-search-profile": "Udviddet", + "smw-search-profile-sort-title": "Titel", + "smw-search-profile-extended-help-query": "Link til: $1", + "smw-search-profile-extended-section-sort": "Sorter efter", + "smw-search-profile-extended-section-form": "Formularer", + "smw-search-profile-extended-section-namespace": "Navnerum", + "smw-search-profile-extended-section-query": "Forespørgsel", + "smw-search-profile-link-caption-query": "se", + "smw-search-show": "Vis", + "smw-search-hide": "Skjul", + "smw-types-list": "Liste over datatyper", + "smw-types-default": "\"$1\" er en indbygget datatype.", + "smw-type-tab-properties": "Egenskaber", + "smw-type-tab-types": "Typer", + "smw-type-tab-errors": "Fejl", + "smw-type-primitive": "Grundlæggende", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|sekund|sekunder}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|sekund|sekunder}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|sekund|sekunder}}", + "smw-datavalue-time-invalid-date-components-empty": "\"$1\" indeholder nogle tomme komponenter.", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\" er et ugyldigt link.", + "smw-datavalue-parse-error": "Den opgivet værdi \"$1\" blev ikke forstået.", + "smw-clipboard-copy-link": "Kopier link til udklipsholder", + "smw-data-lookup": "Henter data ...", + "smw-no-data-available": "Ingen tilgængelige data.", + "smw-format-datatable-emptytable": "Ingen data tilgængelig i tabel", + "smw-format-datatable-info": "Viser _START_ til _END_ af _TOTAL_ opslag", + "smw-format-datatable-infoempty": "Viser 0 til 0 af 0 opslag", + "smw-format-datatable-lengthmenu": "Vis _MENU_ opslag", + "smw-format-datatable-loadingrecords": "Indslæser...", + "smw-format-datatable-processing": "Bearbejder...", + "smw-format-datatable-search": "Søg:", + "smw-format-datatable-first": "Første", + "smw-format-datatable-last": "Sidste", + "smw-format-datatable-next": "Næste", + "smw-format-datatable-previous": "Forrige", + "smw-format-datatable-toolbar-export": "Eksportér", + "smw-format-list-other-fields-open": "(", + "smw-api-invalid-parameters": "Ugyldige parametre, \"$1\"", + "smw-property-reserved-category": "Kategori", + "smw-category": "Kategori", + "smw-filter": "Filter", + "smw-section-expand": "Udvid afsnittet", + "smw-section-collapse": "Saml afsnittet", + "smw-help": "Hjælp", + "smw-cheat-sheet": "Snyde ark", + "smw-personal-jobqueue-watchlist": "Jobkø-overvågningsliste", + "smw-processing": "Bearbejder ...", + "smw-loading": "Indlæser …", + "smw-fetching": "Henter ...", + "smw-preparing": "Forbereder ...", + "smw-expand": "Fold ud", + "smw-collapse": "Fold sammen", + "smw-copy": "Kopier", + "smw-types-title": "Type: $1", + "smw-schema-error-title": "Valideringsfejl", + "smw-schema-error-json": "JSON-fejl: \"$1\"", + "smw-schema-validation-schema-title": "JSON-skema", + "smw-schema-type": "Type", + "smw-schema-tag": "{{PLURAL:$1|Mærke|Mærker}}", + "smw-parameter-missing": "Parameteren \"$1\" mangler.", + "smw-property-tab-redirects": "Synonymer", + "smw-property-tab-subproperties": "Underegenskaber", + "smw-property-tab-specification": "... mere", + "smw-concept-tab-list": "Liste", + "smw-concept-tab-errors": "Fejl", + "smw-ask-tab-result": "Resultat", + "smw-ask-tab-extra": "Ekstra", + "smw-ask-tab-code": "Kode", + "smw-listingcontinuesabbrev": "forts.", + "smw-showingresults": "Nedenfor vises $1 {{PLURAL:$1|resultat|resultater}} startende med nummer $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/de-ch.json b/mediawiki/extensions/SemanticMediaWiki/i18n/de-ch.json new file mode 100644 index 0000000..dbc0556 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/de-ch.json @@ -0,0 +1,20 @@ +{ + "@metadata": { + "authors": [ + "Emwiemaikel", + "Jaideraf", + "Kghbln" + ] + }, + "smw_concept_cache_miss": "Das Konzept „$1“ kann im Moment nicht genutzt werden, da es, gemäss der Konfiguration des Wikis, offline zu berechnen ist.\nFalls sich das Problem nicht in angemessener Zeit von selbst erledigt, bitte deinen Websiteadministrator, die Daten dieses Konzepts zu aktualisieren.", + "smw-paramdesc-columns": "Die Anzahl der Spalten, die für die Anzeige der Suchergebnisse verwendet werden sollen (standardmässig $1).", + "smw-smwdoc-description": "Zeigt eine Übersicht aller Parameter inkl. Beschreibung und Standardwerten, die im Zusammenhang mit dem angegebenen Ergebnisformat genutzt werden können.", + "smw_decseparator": ".", + "smw_kiloseparator": "'", + "smw_unitnotallowed": "„$1“ wurde nicht als gültige Masseinheit für dieses Attribut festgelegt.", + "smw_querytoolarge": "Die folgenden Abfragebedingungen konnten, wegen der auf diesem Wiki gültigen Beschränkungen, bezüglich Grösse und Tiefe von Abfragen, nicht berücksichtigt werden: $1.", + "smw_exportrdf_recursive": "Exportiere auch alle relevanten Seiten rekursiv. Diese Einstellung kann zu sehr grossen Ergebnismengen führen!", + "smw-sp-property-searchform-inputinfo": "Bei der Eingabe wird zwischen Gross- und Kleinschreibung unterschieden. Bei der Filterung werden nur Attribute angezeigt, die der Bedingung entsprechen.", + "smw-statistics-query-size": "Abfragegrösse", + "smw-type-tel": "„$1“ ist ein Datentyp der für die Ziffernfolge zur Anwahl eines Zielteilnehmers (Rufnummer) gemäss RFC 3966 genutzt wird." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/de-formal.json b/mediawiki/extensions/SemanticMediaWiki/i18n/de-formal.json new file mode 100644 index 0000000..90e4378 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/de-formal.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Emwiemaikel", + "Kghbln" + ] + }, + "smw-browse-intro": "Mit dieser Spezialseite können die auf Seiten oder mit Subobjekten gespeicherten Daten und Informationen eingesehen werden. Bitte geben Sie den Namen einer Seite ein, die eingesehen werden soll.", + "smw-noscript": "Diese Seite oder Aktion benötigt JavaScript, um zu funktionieren. Bitte aktivieren Sie JavaScript in Ihrem Browser oder verwenden Sie einen Browser, der dies unterstützt, damit die Funktionen wie gewünscht bereitgestellt werden können. Weitere Informationen finden Sie auf der [https://www.semantic-mediawiki.org/wiki/Help:Noscript Hilfeseite zu „noscript“].", + "smw-admin-announce-text": "Sofern dieses Wiki öffentlich zugänglich ist, kann es auf WikiApiary, dem Wiki zum Tracken von Wikis, registriert werden." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/de.json b/mediawiki/extensions/SemanticMediaWiki/i18n/de.json new file mode 100644 index 0000000..3a7f886 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/de.json @@ -0,0 +1,1149 @@ +{ + "@metadata": { + "authors": [ + "Als-Holder", + "Ameisenigel", + "Bjarncraft", + "Brettchenweber", + "DaSch", + "Das Schäfchen", + "Denny", + "DraconicDark", + "Druesenfieber", + "ElBe", + "Ferdinand0101", + "FriedhelmW", + "Gichi", + "Imre", + "Jan Luca", + "Jens Liebenau", + "Justman10000", + "Kghbln", + "Killarnee", + "Krabina", + "MF-Warburg", + "Markus Krötzsch", + "McDutchie", + "Melancholie", + "Metalhead64", + "Michawiki", + "Mirzali", + "MuratTheTurkish", + "Murma174", + "Nadjita", + "Nemo bis", + "Omnipaedista", + "Pill", + "Purodha", + "Revolus", + "TMg", + "Talex42", + "The Evil IP address", + "TheRabbit22", + "Tobi 406", + "Umherirrender", + "Wnme" + ] + }, + "smw-desc": "Ermöglicht es, das Wiki zugänglicher zu gestalten – für Menschen ''und'' Maschinen ([https://www.semantic-mediawiki.org/wiki/Help:User_manual/de Dokumentation])", + "smw-error": "Fehler", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] wurde installiert und aktiviert. Der benötigte [https://www.semantic-mediawiki.org/wiki/Help:Upgrade Aktualisierungsschlüssel] wurde indes noch nicht erzeugt.", + "smw-upgrade-release": "Veröffentlichung", + "smw-upgrade-progress": "Aktualisierungsfortschritt", + "smw-upgrade-progress-explain": "Eine Abschätzung hinsichtlich der Dauer der Aktualisierung ist schwierig. Der Zeitbedarf ist abhängig von der Größe der Datenbank und der Leistungsfähigkeit der Hardware des Servers. Bei größeren Wikis wird mehr Zeit benötigt.\n\nUm nähere Informationen zum Fortschritt bei der Aktualisierung zu erhalten, kann der Serveradministrator kontaktiert werden.", + "smw-upgrade-progress-create-tables": "Die Datentabellen und Indizes werden erstellt oder aktualisiert…", + "smw-upgrade-progress-post-creation": "Allgemeine Wartungsaufgaben werden ausgeführt…", + "smw-upgrade-progress-table-optimization": "Die Datenbanktabellen werden optimiert…", + "smw-upgrade-progress-supplement-jobs": "Zusätzliche Wartungsaufgaben werden erstellt…", + "smw-upgrade-error-title": "Fehler – Semantic MediaWiki", + "smw-upgrade-error-why-title": "Warum wird diese Fehlermeldung angezeigt?", + "smw-upgrade-error-why-explain": "Die interne Struktur der von Semantic MediaWiki genutzten Datenbank hat sich verändert und erfordert Anpassungen, um weiterhin störungsfrei funktionieren zu können. Für die Änderung kann es unter anderem mehrere Gründe geben:\n* ein feststehendes Attribut wurde hinzugefügt, das die Erstellung einer neuen Datenbanktabelle erfordert, bevor wieder auf die Datenbank zugegriffen werden kann\n* eine Softwareanpassung bedingt Änderungen an Tabellen oder Indizes der Datenbank, die eine Schemaaktualisierung bedingen, bevor wieder auf die Datenbank zugegriffen werden kann\n* sonstige Veränderungen an der Datenbank in der die Daten gespeichert, bzw. abgefragt werden", + "smw-upgrade-error-how-title": "Wie kann dieser Fehler behoben werden?", + "smw-upgrade-error-how-explain-admin": "Ein Administrator oder eine andere Person mit Administratorberechtigung muss entweder das Wartungsskript [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php „update.php“] von MediaWiki oder [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php „setupStore.php“] von Semantic MediaWiki ausführen.", + "smw-upgrade-error-how-explain-links": "Weitergehende Informationen sind auf den folgenden Seiten verfügbar:\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation Installationsanweisungen]\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting Hilfeseite zu häufigen Problemen]", + "smw-extensionload-error-why-title": "Warum wird diese Seite angezeigt?", + "smw-extensionload-error-why-explain": "Semantic MediaWiki wurde nicht wie erforderlich mit enableSemantics sondern bspw. mit wfLoadExtension oder auf andere Weise aktiviert.", + "smw-extensionload-error-how-title": "Wie kann dieser Fehler behoben werden?", + "smw-extensionload-error-how-explain": "Um Semantic MediaWiki zu aktivieren ist es erforderlich enableSemantics zu verwenden. Dies stellt sicher, daß dessen Konfiguration mit dem sogenannten „ExtensionRegistry-Mechanismus“ korrekt geladen wird.\n\nSiehe auch die Hilfeseite zu [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] für weitere Informationen.", + "smw-upgrade-maintenance-title": "Aktualisierungs- und Wartungsarbeiten", + "smw-upgrade-maintenance-why-title": "Warum sehe ich diese Seite?", + "smw-upgrade-maintenance-note": "Die vom Wiki genutzte Softwareerweiterung [https://www.semantic-mediawiki.org/ „Semantic MediaWiki“] wird momentan mitsamt der zugehörigen Datenbank [https://www.semantic-mediawiki.org/wiki/Help:Upgrade aktualisiert]. Wir bitten daher um Geduld, bis dieser Vorgang abgeschlossen ist und das Wiki wieder zugänglich getan werden kann.", + "smw-upgrade-maintenance-explain": "Wir versuchen die Auswirkungen sowie die Nichtverfügbarkeit des Wikis zu minimieren, indem Wartungsaufgaben zeitlich hintangestellt werden. Datenbankbezogene Änderungen müssen indes vollständig ausgeführt werden, um Dateninkonsistenzen zu vermeiden. Damit sind unter anderem folgende Änderungen gemeint: \n* Das Ändern der Tabellenstruktur sowie das Hinzufügen sowie Ändern von Tabellenfeldern, \n* das Ändern oder Hinzufügen von Tabellenindizes, und\n* sofern aktiviert, das Ausführen von Tabellenoptimierungen.", + "smw-semantics-not-enabled": "Momentan kann Semantic MediaWiki nicht auf diesem Wiki genutzt werden.", + "smw_viewasrdf": "RDF-Feed", + "smw_finallistconjunct": " und", + "smw-factbox-head": "… weitere Daten zur Seite „$1“", + "smw-factbox-facts": "Fakten", + "smw-factbox-facts-help": "Zeigt Aussagen und Fakten an, die von Benutzern erstellt wurden.", + "smw-factbox-attachments": "Dateien", + "smw-factbox-attachments-value-unknown": "unbekannt", + "smw-factbox-attachments-is-local": "Lokal", + "smw-factbox-attachments-help": "Zeigt die auf dieser Seite eingebetteten Dateien an.", + "smw-factbox-facts-derived": "Abgeleitete Fakten", + "smw-factbox-facts-derived-help": "Zeigt Fakten an, die aufgrund von Regeln oder mithilfe von Folgerungen ermittelt bzw. abgeleitet wurden.", + "smw_isspecprop": "Dieses Attribut ist ein Spezialattribut in diesem Wiki.", + "smw-concept-cache-header": "Cacheverwendung", + "smw-concept-cache-count": "Der [https://www.semantic-mediawiki.org/wiki/Help:Konzeptcaching Konzeptcache] enthält {{PLURAL:$1|'''ein''' Objekt|'''$1''' Objekte}} (Stand: $2).", + "smw-concept-no-cache": "Kein Cache verfügbar.", + "smw_concept_description": "Beschreibung des Konzepts „$1“", + "smw_no_concept_namespace": "Konzepte können nur im Namensraum „Konzept:“ erstellt werden.", + "smw_multiple_concepts": "Jede Konzeptseite kann nur eine Konzeptdefinition beinhalten.", + "smw_concept_cache_miss": "Das Konzept „$1“ kann im Moment nicht genutzt werden, da es, gemäß der Konfiguration des Wikis, offline zu berechnen ist.\nFalls sich das Problem nicht in angemessener Zeit von selbst erledigt, bitte deinen Websiteadministrator, die Daten dieses Konzepts zu aktualisieren.", + "smw_noinvannot": "Inversen Attributen können keine Werte zugewiesen werden.", + "version-semantic": "Semantische Erweiterungen", + "smw_baduri": "URIs der Form „$1“ sind nicht zulässig.", + "smw_printername_count": "Ergebnisse zählen", + "smw_printername_csv": "Export (CSV)", + "smw_printername_dsv": "Export (DSV)", + "smw_printername_debug": "Debug-Abfrage (für Experten)", + "smw_printername_embedded": "Einbettung (Seiteninhalt)", + "smw_printername_json": "Export (JSON)", + "smw_printername_list": "Liste", + "smw_printername_plainlist": "Liste (unformatiert)", + "smw_printername_ol": "Liste (Aufzählung)", + "smw_printername_ul": "Liste (Auflistung)", + "smw_printername_table": "Tabelle", + "smw_printername_broadtable": "Tabelle (breit)", + "smw_printername_template": "Vorlage", + "smw_printername_templatefile": "Vorlagendatei", + "smw_printername_rdf": "Export (RDF)", + "smw_printername_category": "Kategorie", + "validator-type-class-SMWParamSource": "Text", + "smw-paramdesc-limit": "Legt fest, wie viele Ergebnisse bei der Ausgabe der Abfrageergebnisse maximal angezeigt werden sollen", + "smw-paramdesc-offset": "Legt fest, ab dem wievielten Ergebnis mit der Ausgabe der Abfrageergebnisse begonnen werden soll", + "smw-paramdesc-headers": "Legt fest, ob Überschriften bzw. Attributbezeichnungen bei der Ausgabe der Abfrageergebnisse verwendet werden sollen", + "smw-paramdesc-mainlabel": "Legt fest, welche Überschrift oder Bezeichnung für die Hauptergebnisspalte bei der Ausgabe der Abfrageergebnisse angezeigt werden soll", + "smw-paramdesc-link": "Legt fest, ob die Datenwerte der Ergebnisse bei der Ausgabe der Abfrageergebnisse als Link angezeigt werden sollen", + "smw-paramdesc-intro": "Legt fest, welcher Text vor der Ausgabe der Abfrageergebnisse angezeigt werden soll", + "smw-paramdesc-outro": "Legt fest, welcher Text nach der Ausgabe der Abfrageergebnisse angezeigt werden soll", + "smw-paramdesc-default": "Legt fest, welcher Text angezeigt werden soll, sofern keine Abfrageergebnisse vorhanden sind", + "smw-paramdesc-sep": "Legt fest, welches Trennzeichen bei der Ausgabe der Abfrageergebnisse genutzt werden soll", + "smw-paramdesc-propsep": "Legt fest, welches Trennzeichen zwischen den Attributen der Ergebnisse genutzt werden soll", + "smw-paramdesc-valuesep": "Legt fest, welches Trennzeichen zwischen den Attributwerten der Ergebnisse genutzt werden soll", + "smw-paramdesc-showsep": "Legt fest, welches Trennzeichen im Kopfbereich der .csv-Datei angezeigt werden soll", + "smw-paramdesc-distribution": "Die Anzahl der Vorkommen von Werten zählen und anzeigen, anstatt diese alle anzuzeigen.", + "smw-paramdesc-distributionsort": "Die Werteverteilung nach Anzahl der Vorkommen sortieren.", + "smw-paramdesc-distributionlimit": "Die Anzahl der Vorkommen von Werten auf bestimmte Werte beschränken.", + "smw-paramdesc-aggregation": "Legt fest, auf was sich die Aggregation der Daten beziehen soll", + "smw-paramdesc-template": "Legt fest, welche Vorlage zum Anzeigen der Abfrageergebnisse verwendet werden soll", + "smw-paramdesc-columns": "Legt fest, wie viele Spalten zur Anzeige der Abfrageergebnisse verwendet werden sollen", + "smw-paramdesc-userparam": "Legt fest, welcher Wert jedem Vorlagenaufruf übergeben wird, sofern eine Vorlage genutzt wird", + "smw-paramdesc-class": "Legt fest, welche zusätzliche CSS-Klasse genutzt werden soll", + "smw-paramdesc-introtemplate": "Legt fest, welche Vorlage vor der Ausgabe von Abfrageergebnissen eingefügt werden soll", + "smw-paramdesc-outrotemplate": "Legt fest, welche Vorlage nach der Ausgabe von Abfrageergebnissen eingefügt werden soll", + "smw-paramdesc-embedformat": "Legt fest, welches HTML-Tag für die Überschriften bei der Ausgabe der Abfrageergebnisse verwendet werden soll", + "smw-paramdesc-embedonly": "Legt fest, ob Überschriften bei der Ausgabe der Abfrageergebnisse verwendet werden sollen", + "smw-paramdesc-table-class": "Legt fest, welche zusätzliche CSS-Klasse genutzt werden soll", + "smw-paramdesc-table-transpose": "Legt fest, ob der Spalten- und Zeilenkopf bei der Anzeige der Abfrageergebnisse transponiert werden soll", + "smw-paramdesc-prefix": "Kontrolliert die Anzeige von Namensräumen in Ausgaben", + "smw-paramdesc-rdfsyntax": "Die zu verwendende RDF-Syntax", + "smw-paramdesc-csv-sep": "Legt fest, welches Trennzeichen zwischen den Spalten bei der Ausgabe der Abfrageergebnisse genutzt werden soll", + "smw-paramdesc-csv-valuesep": "Legt fest, welches Trennzeichen zwischen den Datenwerten bei der Ausgabe der Abfrageergebnisse genutzt werden soll", + "smw-paramdesc-csv-merge": "Legt fest, ob die Zeilen- und Spaltenwerte zu einem identischen Seitenidentifikator (erste Spalte) zusammengeführt werden sollen", + "smw-paramdesc-csv-bom": "Legt fest, ob eine BOM (Byte-Reihenfolge-Markierung) als Zeichen zur Angabe der Byte-Reihenfolge zum Anfang der ausgegebenen Datei hinzugefügt werden soll", + "smw-paramdesc-dsv-separator": "Legt fest, welches Trennzeichen bei der Ausgabe der Abfrageergebnisse genutzt werden soll", + "smw-paramdesc-dsv-filename": "Legt fest, welcher Name der Datei bei der Ausgabe der Abfrageergebnisse gegeben werden soll", + "smw-paramdesc-filename": "Legt fest, welcher Name für die Ausgabedatei verwendet werden soll", + "smw-smwdoc-description": "Zeigt eine Übersicht aller Parameter mitsamt deren Standardwerten einschließlich ihrer Beschreibung, die im Zusammenhang mit dem angegebenen Ergebnisformat genutzt werden können.", + "smw-smwdoc-default-no-parameter-list": "Dieses Ergebnisformat bietet keine formatspezifischen Parameter.", + "smw-smwdoc-par-format": "Das Ergebnisformat zu dessen Parametern die Dokumentation angezeigt werden soll.", + "smw-smwdoc-par-parameters": "Die anzuzeigenden Parameter: „specific“ für die vom jeweiligen Ergebnisformat bereitgestellten, „base“ für die für alle Ergebnisformate verfügbaren und „all“ zur Anzeige aller.", + "smw-paramdesc-sort": "Legt fest, nach welchem Attribut sortiert die Ergebnisse bei der Ausgabe der Abfrageergebnisse angezeigt werden sollen", + "smw-paramdesc-order": "Legt fest, in welcher Sortierreihenfolge die Ergebnisse bei der Ausgabe der Abfrageergebnisse angezeigt werden sollen", + "smw-paramdesc-searchlabel": "Legt fest, welcher Text als Link zur Ausgabe weiterer Abfrageergebnisse angezeigt werden soll", + "smw-paramdesc-named_args": "Legt fest, ob Bezeichnungen für die Parameter an die Vorlage bei der Ausgabe der Abfrageergebnisse weitergegeben werden sollen", + "smw-paramdesc-template-arguments": "Legt fest, wie die Argumente an die Vorlage übergeben werden sollen", + "smw-paramdesc-import-annotation": "Legt fest, ob die zusätzlich annotierten Daten während des Parsens einer Seite kopiert werden sollen", + "smw-paramdesc-export": "Die Exportoption", + "smw-paramdesc-prettyprint": "Legt fest, ob zusätzliche Einzüge und neue Zeilen bei der Ausgabe der Abfrageergebnisse verwendet werden sollen", + "smw-paramdesc-json-unescape": "Legt fest, ob maskierte Schrägstriche und aus mehreren Bytes bestehende Unicode-Zeichen bei der Ausgabe der Abfrageergebnisse verwendet werden sollen", + "smw-paramdesc-json-type": "Legt fest, welcher Serialisierungstyp bei der Ausgabe der Abfrageergebnisse verwendet werden soll", + "smw-paramdesc-source": "Legt fest, welche alternative Datenquelle für die Ermittlung der Abfrageergebnisse genutzt werden soll", + "smw-paramdesc-jsonsyntax": "Die zu verwendende JSON-Syntax", + "smw-printername-feed": "Feed (RSS/Atom)", + "smw-paramdesc-feedtype": "Legt fest, welcher Feedtyp bei der Ausgabe der Abfrageergebnisse verwendet werden soll", + "smw-paramdesc-feedtitle": "Legt fest, welcher Text als Titel des Feeds bei der Ausgabe der Abfrageergebnisse verwendet werden soll", + "smw-paramdesc-feeddescription": "Legt fest, welcher Text als Beschreibung des Feeds bei der Ausgabe der Abfrageergebnisse verwendet werden soll", + "smw-paramdesc-feedpagecontent": "Legt fest, ob der Seiteninhalt zusammen mit dem Feed bei der Ausgabe der Abfrageergebnisse angezeigt werden soll", + "smw-label-feed-description": "$2-Feed: $1", + "smw-paramdesc-mimetype": "Legt fest, welcher Medientyp (MIME-Typ) für die Ausgabedatei verwendet werden soll", + "smw_iq_disabled": "Semantische Abfragen wurden in diesem Wiki deaktiviert.", + "smw_iq_moreresults": "… weitere Ergebnisse", + "smw_parseerror": "Der eingegebene Wert wurde nicht verstanden.", + "smw_decseparator": ",", + "smw_kiloseparator": ".", + "smw_notitle": "„$1“ kann nicht als Seitenname in diesem Wiki verwendet werden.", + "smw_noproperty": "„$1“ kann nicht als Attribut in diesem Wiki verwendet werden.", + "smw_wrong_namespace": "Nur Seiten im Namensraum „$1“ sind hier zulässig.", + "smw_manytypes": "Dem Attribut wurden mehrere Datentypen zugewiesen.", + "smw_emptystring": "Leere Zeichenfolgen werden nicht akzeptiert.", + "smw_notinenum": "„$1“ gehört nicht zu den [[Property:Allows value|zulässigen Werten]] ($2) für das Attribut „$3“.", + "smw-datavalue-constraint-error-allows-value-list": "„$1“ befindet sich nicht in der Liste ($2) [[Property:Allows value|zulässiger Werte]] für das Attribut „$3“.", + "smw-datavalue-constraint-error-allows-value-range": "„$1“ liegt nicht innerhalb des zulässigen Bereichs „$2“, der durch die Einschränkung mit „[[Property:Allows value|zulässigen Werten]]“ für das Attribut „$3“ festgelegt wurde.", + "smw-constraint-error": "Dateneinschränkungsproblem", + "smw-constraint-error-suggestions": "Die aufgelisteten Fehler bei Annotationen müssen geprüft werden. Es ist sicherzustellen, daß alle Datenwerte den Anforderungen an die Dateneinschränkungen genügen.", + "smw-constraint-error-limit": "Die Liste wird maximal $1 Fehler bezüglich Dateneinschränkungen enthalten.", + "smw_noboolean": "„$1“ ist kein Wahrheitswert (wahr/falsch).", + "smw_true_words": "wahr,w,ja,j", + "smw_false_words": "falsch,f,nein,n", + "smw_nofloat": "„$1“ ist keine Zahl.", + "smw_infinite": "Die Zahl „$1“ ist zu lang.", + "smw_unitnotallowed": "„$1“ wurde nicht als gültige Maßeinheit für dieses Attribut festgelegt.", + "smw_nounitsdeclared": "Es wurden keine Maßeinheiten für dieses Attribut angegeben.", + "smw_novalues": "Es wurden keine Werte angegeben.", + "smw_nodatetime": "Das Datum „$1“ wurde nicht verstanden.", + "smw_toomanyclosing": "In der Abfrage kommen zu viele „$1“ vor.", + "smw_noclosingbrackets": "Ein Vorkommen von „[[“ in der Abfrage wurde nicht durch ein entsprechendes „]]“ abgeschlossen.", + "smw_misplacedsymbol": "Das Symbol „$1“ wurde an einer Stelle verwendet, an der es nicht sinnvoll ist.", + "smw_unexpectedpart": "Der Teil „$1“ der Abfrage konnte nicht interpretiert werden. Die Ergebnisse entsprechen möglicherweise nicht den Erwartungen.", + "smw_emptysubquery": "Eine Unterabfrage enthält eine ungültige Bedingung.", + "smw_misplacedsubquery": "Eine Unterabfrage wurde an einer Stelle eingesetzt, an der diese nicht vorkommen darf.", + "smw_valuesubquery": "Teilabfragen werden für Werte des Attributs „$1“ nicht unterstützt.", + "smw_badqueryatom": "Ein Teil „[[…]]“ der Abfrage konnte nicht interpretiert werden.", + "smw_propvalueproblem": "Der Wert des Attributs „$1“ wurde nicht verstanden.", + "smw_noqueryfeature": "Einige Abfragebestandteile werden nicht von diesem Wiki unterstützt. Der entsprechende Teil der Abfrage wurde ignoriert ($1).", + "smw_noconjunctions": "UND-Verknüpfungen in den Abfragen werden nicht von diesem Wiki unterstützt. Der entsprechende Teil der Abfrage wurde ignoriert ($1).", + "smw_nodisjunctions": "Disjunktionen (ODER) in Abfragen werden nicht von diesem Wiki unterstützt. Der entsprechende Teil der Abfrage wurde ignoriert ($1).", + "smw_querytoolarge": "Die {{PLURAL:$2|folgende Abfragebedingung konnte|folgenden $2 Abfragebedingungen konnten}} aufgrund der auf diesem Wiki gültigen Beschränkungen bezüglich Größe und Tiefe von Abfragen nicht berücksichtigt werden: $1.", + "smw_notemplategiven": "Der Parameter „template“ muss angegeben werden, damit diese Abfrage durchgeführt werden kann.", + "smw_db_sparqlqueryproblem": "Das Abfrageergebnis konnte nicht aus der SPARQL-Datenbank abgerufen werden. Dieser Fehler kann vorübergehend sein oder auf einen Fehler Datenbank hinweisen.", + "smw_db_sparqlqueryincomplete": "Das Ausführen der Abfrage erwies sich als zu umfangreich und wurde abgebrochen. Einige der möglichen Ergebnisse könnten daher fehlen. Sofern möglich, sollte stattdessen eine einfachere Abfrage genutzt werden.", + "smw_type_header": "Attribute mit dem Datentyp „$1“", + "smw_typearticlecount": "Es {{PLURAL:$1|wird ein Attribut|werden $1 Attribute}} mit diesem Datentyp angezeigt:", + "smw_attribute_header": "Seiten mit dem Attribut „$1“", + "smw_attributearticlecount": "Es {{PLURAL:$1|wird eine Seiten|werden $1 Seiten}} angezeigt, die dieses Attribut {{PLURAL:$1|verwendet|verwenden}}:", + "smw-propertylist-subproperty-header": "Unterattribute", + "smw-propertylist-redirect-header": "Synonyme", + "smw-propertylist-error-header": "Seiten mit fehlerhaften Annotationen", + "smw-propertylist-count": "Es {{PLURAL:$1|wird ein ähnliches Objekt|werden $1 ähnliche Objekte}} angezeigt.", + "smw-propertylist-count-with-restricted-note": "Es {{PLURAL:$1|wird ein ähnliches Objekt|werden $1 ähnliche Objekte}} angezeigt. Weitere sind vorhanden, jedoch ist die Anzeige auf „$2“ beschränkt.", + "smw-propertylist-count-more-available": "Es {{PLURAL:$1|wird ein ähnliches Objekt|werden $1 ähnliche Objekte}} angezeigt. Weitere sind vorhanden.", + "specialpages-group-smw_group": "Semantic MediaWiki", + "specialpages-group-smw_group-maintenance": "Wartung", + "specialpages-group-smw_group-properties-concepts-types": "Attribute, Konzepte und Datentypen", + "specialpages-group-smw_group-search": "Durchsuchen", + "exportrdf": "Seiten als RDF exportieren", + "smw_exportrdf_docu": "Hier können Informationen zu einzelnen Seiten im RDF-Format abgerufen werden. Bitte die Namen der gewünschten Seiten zeilenweise angeben.", + "smw_exportrdf_recursive": "Exportiere auch alle relevanten Seiten rekursiv. Diese Einstellung kann zu sehr großen Ergebnismengen führen!", + "smw_exportrdf_backlinks": "Exportiere auch alle Seiten, die auf zu exportierende Seiten verweisen. Diese Einstellung erzeugt RDF, das leichter durchsucht werden kann.", + "smw_exportrdf_lastdate": "Exportiere keine Seiten, die seit dem angegebenen Zeitpunkt nicht mehr verändert wurden.", + "smw_exportrdf_submit": "Exportieren", + "uriresolver": "URI-Auflöser", + "properties": "Attribute", + "smw-categories": "Kategorien", + "smw_properties_docu": "In diesem Wiki werden die folgenden Attribute genutzt:", + "smw_property_template": "$1 mit Datentyp $2 ($3 {{PLURAL:$3|Vorkommen}})", + "smw_propertylackspage": "Dieses Attribut sollte auf seiner Seite mit Datentyp usw. beschrieben werden!", + "smw_propertylackstype": "Für dieses Attribut wurde kein Datentyp festgelegt ($1 wird daher als Datentyp angenommen).", + "smw_propertyhardlyused": "Dieses Attribut wird im Wiki kaum verwendet!", + "smw-property-name-invalid": "Das Attribut „$1“ kann nicht verwendet werden (ungültiger Attributname).", + "smw-property-name-reserved": "„$1“ ist als reservierter Name gelistet und sollte nicht als Attributname verwendet werden. Die folgende [https://www.semantic-mediawiki.org/wiki/Help:Property_naming Hilfeseite] könnte Informationen darüber enthalten, warum dieser Name reserviert ist.", + "smw-sp-property-searchform": "Attribute anzeigen, die Folgendes enthalten:", + "smw-sp-property-searchform-inputinfo": "Bei der Eingabe wird zwischen Groß- und Kleinschreibung unterschieden. Bei der Filterung werden nur Attribute angezeigt, die der Bedingung entsprechen.", + "smw-special-property-searchform": "Attribute anzeigen, die Folgendes enthalten:", + "smw-special-property-searchform-inputinfo": "Bei der Eingabe wird zwischen Groß- und Kleinschreibung unterschieden. Bei der Filterung werden nur Attribute angezeigt, die der Bedingung entsprechen.", + "smw-special-property-searchform-options": "Optionen", + "smw-special-wantedproperties-filter-label": "Filter:", + "smw-special-wantedproperties-filter-none": "Keiner", + "smw-special-wantedproperties-filter-unapproved": "Unbestätigte", + "smw-special-wantedproperties-filter-unapproved-desc": "In Verbindung mit dem Berechtigungsmodus verwendete Filteroption.", + "concepts": "Konzepte", + "smw-special-concept-docu": "Ein [https://www.semantic-mediawiki.org/wiki/Help:Konzept Konzept] kann als „dynamische Kategorie“ verstanden werden. Es ist eine Zusammenstellung von Seiten die nicht manuell sondern aufgrund einer vorgegebenen Abfrage von Semantic MediaWiki maschinell erstellt wurde.", + "smw-special-concept-header": "Liste der Konzepte", + "smw-special-concept-count": "{{PLURAL:$1|Das folgende Konzept ist|Die folgenden Konzepte sind}} vorhanden.", + "smw-special-concept-empty": "Es wurde kein Konzept gefunden.", + "unusedproperties": "Verwaiste Attribute", + "smw-unusedproperties-docu": "Diese Seite listet alle [https://www.semantic-mediawiki.org/wiki/Unused_properties verwaisten Attribute] auf. Diese wurden auf einer Seite im Namensraum „Attribut:“ beschrieben, werden indes nicht im Wiki verwendet. Für eine differenzierte Übersicht siehe auch die weiteren Spezialseiten „[[Special:Properties|Attribute]]“ und „[[Special:WantedProperties|Gewünschte Attribute]]“.", + "smw-unusedproperty-template": "$1 mit Datentyp $2", + "wantedproperties": "Gewünschte Attribute", + "smw-wantedproperties-docu": "Diese Seite listet alle [https://www.semantic-mediawiki.org/wiki/Wanted_properties gewünschten Attribute] auf. Diese werden im Wiki verwendet, wurden indes noch nicht auf einer Seite im Namensraum „Attribut:“ beschrieben. Für eine differenzierte Übersicht siehe auch die weiteren Spezialseiten „[[Special:Properties|Attribute]]“ und „[[Special:UnusedProperties|Verwaiste Attribute]]“.", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|Vorkommen}})", + "smw-special-wantedproperties-docu": "Diese Seite listet alle [https://www.semantic-mediawiki.org/wiki/Wanted_properties gewünschten Attribute] auf. Diese werden im Wiki verwendet, wurden indes noch nicht auf einer Seite im Namensraum „Attribut:“ beschrieben. Für eine differenzierte Übersicht siehe auch die weiteren Spezialseiten „[[Special:Properties|Attribute]]“ und „[[Special:UnusedProperties|Verwaiste Attribute]]“.", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|Vorkommen}})", + "smw_purge": "Neu laden", + "smw-purge-update-dependencies": "Die aktuelle Seite wird von Semantic MediaWiki neu geladen, da Annotationen mit veralteten Datenwerten ermittelt wurden. Auf diese Weise werden diese aktualisiert.", + "smw-purge-failed": "Die aktuelle Seite konnte von Semantic MediaWiki nicht neu geladen werden.", + "types": "Datentypen", + "smw_types_docu": "Dies ist eine [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes Liste aller Datentypen], die Attributen zugewiesen werden können. Jeder [https://www.semantic-mediawiki.org/wiki/Help:Datatype Datentyp] beschreibt eindeutige Merkmale zur Datenspeicherung und -anzeige eines Datenwerts für ein Attribut, dem der entsprechende Datentyp zugeordnet wurde.", + "smw-special-types-no-such-type": "Der Datentyp „$1“ ist unbekannt oder ungültig.", + "smw-statistics": "Datenstatistik", + "smw-statistics-cached": "Semantische Statistiken (gecacht)", + "smw-statistics-entities-total": "Datenobjekte (insgesamt)", + "smw-statistics-entities-total-info": "Die geschätzte Anzahl der Datenobjekte. Dies umfasst Attribute, Konzepte oder andere zulässige Datenobjekte, die eine Kennung erhalten haben.", + "smw-statistics-property-instance": "{{PLURAL:$1|Attributwert|Attributwerte}} (gesamt)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Attribut|Attribute}}]] (gesamt)", + "smw-statistics-property-total-info": "Die Gesamtzahl vorhandener Attribute.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Attribut|Attribute}} (gesamt)", + "smw-statistics-property-used": "{{PLURAL:$1|Attribut|Attribute}} (mit mindestens einem Datenwert)", + "smw-statistics-property-page": "{{PLURAL:$1|Attribut|Attribute}} (auf einer Seite beschrieben)", + "smw-statistics-property-page-info": "Die Anzahl der Attribute, für die eine zugehörige Seite mitsamt einer Beschreibung erstellt wurde.", + "smw-statistics-property-type": "{{PLURAL:$1|Attribut|Attribute}} (einem Datentyp zugewiesen)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Abfrage|Abfragen}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Abfrage|Abfragen}}]] (eingebettet, insgesamt)", + "smw-statistics-query-format": "Format „$1“", + "smw-statistics-query-size": "Abfragegröße", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Konzept|Konzepte}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Konzept|Konzepte}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Unterobjekt|Unterobjekte}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Unterobjekt|Unterobjekte}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Datentyp|Datentypen}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Attributwert|Attributwerte}} (mit [[Special:ProcessingErrorList|{{PLURAL:$1|fehlerhafter Annotation|fehlerhaften Annotationen}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Attributwert|Attributwerte}} (fehlerhafte {{PLURAL:$1|Annotation|Annotationen}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Veraltetes Datenobjekt|Veraltete Datenobjekte}}]", + "smw-statistics-delete-count-info": "Datenobjekte, die zum Entfernen markiert wurden, sollten regelmäßig mithilfe bereitgestellter Wartungsskripte bereinigt werden.", + "smw_uri_doc": "Der URI-Resolver implementiert den [ $1 W3C TAG-Befund auf httpRange-14].\nEr stellt sicher, dass je nach Anfrage eine RDF-Darstellung (für Maschinen) oder eine Wiki-Seite (für Menschen) ausgeliefert wird.", + "ask": "Semantische Suche", + "smw-ask-help": "Dieser Abschnitt enthält einige Links, die erklären, wie man die #ask-Syntax verwendet.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Seiten auswählen] beschreibt, wie man Seiten auswählt und Abfragebedingungen erstellt\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Suchoperatoren] listet die verfügbaren Suchoperatoren auf, einschließlich derjenigen für Bereichs- und Platzhalterabfragen\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Informationen anzeigen] beschreibt das Nutzen von Ausgabeanweisungen und Formatierungsoptionen", + "smw_ask_sortby": "Sortiere nach Spalte (optional)", + "smw_ask_ascorder": "Aufsteigend", + "smw_ask_descorder": "Absteigend", + "smw-ask-order-rand": "Zufällig", + "smw_ask_submit": "Ergebnisse suchen", + "smw_ask_editquery": "Abfrage bearbeiten", + "smw_add_sortcondition": "[Sortieranweisung hinzufügen]", + "smw-ask-sort-add-action": "Sortierbedingung hinzufügen", + "smw_ask_hidequery": "Code der Abfrage ausblenden (kompakte Ansicht)", + "smw_ask_help": "Hilfe zu Abfragen", + "smw_ask_queryhead": "Abfrageanweisungen (Bedingungen)", + "smw_ask_printhead": "Ausgabeanweisungen (Anzeige)", + "smw_ask_printdesc": "(ein Attribut je Zeile angeben)", + "smw_ask_format_as": "Formatiert als:", + "smw_ask_defaultformat": "Standard", + "smw_ask_otheroptions": "Weitere Optionen", + "smw-ask-otheroptions-info": "Dieser Abschnitt enthält Optionen, mit denen die Ergebnisausgabe gesteuert werden kann. Die Beschreibungen der Ausgabeparameter werden angezeigt, wenn man die Maus über deren Namen führt.", + "smw-ask-otheroptions-collapsed-info": "Bitte auf das kleine Plus-Symbol klicken, um sich die weiteren verfügbaren Optionen anzeigen zu lassen.", + "smw_ask_show_embed": "Code der Abfrage anzeigen", + "smw_ask_hide_embed": "Code der Abfrage verstecken", + "smw_ask_embed_instr": "Zum Einbetten dieser Abfrage in eine Wikiseite kann der unten angegebene Code verwendet werden:", + "smw-ask-delete": "Entfernen", + "smw-ask-sorting": "Sortierung", + "smw-ask-options": "Optionen", + "smw-ask-options-sort": "Sortierbedingungen", + "smw-ask-format-options": "Ausgabeformate und Optionen", + "smw-ask-parameters": "Parameter", + "smw-ask-search": "Suche", + "smw-ask-debug": "Fehleranalyse", + "smw-ask-debug-desc": "Erzeugt Informationen zur Fehleranalyse von Abfragen", + "smw-ask-no-cache": "Abfragecache löschen", + "smw-ask-no-cache-desc": "Ergebnisse ohne Verwendung des Abfragecaches anzeigen", + "smw-ask-result": "Ergebnis", + "smw-ask-empty": "Alle Einträge löschen", + "smw-ask-download-link-desc": "Ermittelte Ergebnisse im Format $1 herunterladen", + "smw-ask-format": "Format", + "smw-ask-format-selection-help": "Hilfe zum Ausgabeformat: $1", + "smw-ask-condition-change-info": "Die Abfragebedingung wurden geändert. Es ist daher eine erneute Ausführung der Abfrage notwendig, um die den neuen Abfragebedingungen entsprechenden Ergebnisse zu ermitteln.", + "smw-ask-input-assistance": "Eingabeunterstützung", + "smw-ask-condition-input-assistance": "Es wird eine [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Eingabeunterstützung] in den Feldern für die Ausgabeanweisungen, Sortieranweisungen und Abfragebedingungen angeboten. Das Feld für Abfragebedingungen erfordert die Nutzung eines der folgenden Präfixe:", + "smw-ask-condition-input-assistance-property": "p: zur Aktivierung einer Attributsuche (z. B. [[p:Hat …)", + "smw-ask-condition-input-assistance-category": "c: zur Aktivierung einer Kategoriesuche", + "smw-ask-condition-input-assistance-concept": "con: zur Aktivierung einer Konzeptsuche", + "smw-ask-format-change-info": "Das Ausgabeformat wurde geändert. Es ist daher eine erneute Ausführung der Abfrage notwendig, um die den neuen Darstellungsoptionen entsprechenden Ergebnisse anzeigen zu können.", + "smw-ask-format-export-info": "Das ausgewählte Ergebnisformat dient dem Datenexport und verfügt über keine visuelle Darstellung. Die Ergebnisse werden nur zum Herunterladen bereitgestellt.", + "smw-ask-query-search-info": "Die Abfrage $1 wurde von der Datenbank {{PLURAL:$3|1=„$2“ (aus dem Cache)|„$2“ (aus dem Cache)|„$2“}} in {{PLURAL:$4|einer Sekunde|$4 Sekunden}} beantwortet.", + "smw-ask-extra-query-log": "Abfrage-Logbuch", + "smw-ask-extra-other": "Weiteres", + "searchbyproperty": "Suche mittels Attribut", + "processingerrorlist": "Liste der Verarbeitungsfehler", + "constrainterrorlist": "Liste der Dateneinschränkungsfehler", + "propertylabelsimilarity": "Bericht zur Ähnlichkeit von Attributbezeichungen", + "missingredirectannotations": "Fehlende Weiterleitungsannotationen", + "smw-processingerrorlist-intro": "Die folgende Liste bietet eine Übersicht über die [https://www.semantic-mediawiki.org/wiki/Processing_errors Verarbeitungsfehler], die beim Nutzen von [https://www.semantic-mediawiki.org/wiki/Semantic_MediaWiki/de Semantic MediaWiki] aufgetreten sind. Es wird empfohlen, diese Liste regelmäßig einzusehen und ungültige Attribut-Datenwert-Zuweisungen (Annotationen) zu korrigieren.", + "smw-constrainterrorlist-intro": "Die folgende Liste enthält eine Übersicht über die [https://www.semantic-mediawiki.org/wiki/Help:Constraint_errors Dateneinschränkungsfehler], die beim Nutzen von [https://www.semantic-mediawiki.org/wiki/Semantic_MediaWiki/de Semantic MediaWiki] aufgetreten sind. Es wird empfohlen, diese Liste regelmäßig einzusehen und ungültige Attribut-Datenwert-Zuweisungen (Annotationen) zu korrigieren.", + "smw-missingredirects-intro": "Diese Seite listet Seiten, bei denen die Annotationen der [https://www.semantic-mediawiki.org/wiki/Redirects Weiterleitungen] fehlen. Die Annotationen können erstellt werden, indem die betreffenden Seiten einzeln [https://www.semantic-mediawiki.org/wiki/Help:Purge neu geladen] werden, oder indem das Wartungsskript „rebuildData.php“ mit der Option --redirects ausgeführt wird.", + "smw-missingredirects-list": "Seiten mit fehlenden Annotationen", + "smw-missingredirects-list-intro": "Es ist {{PLURAL:$1|eine Seite|sind $1 Seiten}} mit fehlenden Weiterleitungsannotationen vorhanden:", + "smw-missingredirects-noresult": "Es wurden keine fehlenden Weiterleitungsannotationen gefunden.", + "smw_sbv_docu": "Diese Spezialseite ermittelt alle Seiten, die einen bestimmten Wert für das angegebene Attribut haben.", + "smw_sbv_novalue": "Bitte den gewünschten Wert eingeben oder alle Werte für das Attribut $1 ansehen.", + "smw_sbv_displayresultfuzzy": "Eine Liste aller Seiten, die das Attribut „$1“ mit dem Wert „$2“ haben.\nWeil nur wenige Ergebnisse gefunden wurden, werden auch ähnliche Werte aufgelistet.", + "smw_sbv_property": "Attribut:", + "smw_sbv_value": "Wert:", + "smw_sbv_submit": "Ergebnisse suchen", + "browse": "Semantisches Browsen", + "smw_browselink": "Attribute anzeigen", + "smw_browse_article": "Bitte den Namen einer Seite angeben, um mit dem Browsen zu beginnen.", + "smw_browse_go": "Los", + "smw_browse_show_incoming": "Attribute anzeigen, die hierhin verlinken", + "smw_browse_hide_incoming": "Attribute ausblenden, die hierhin verlinken", + "smw_browse_no_outgoing": "Diese Seite enthält keine Attribute.", + "smw_browse_no_incoming": "Keine Attribute verlinken auf diese Seite.", + "smw-browse-from-backend": "Die Informationen werden momentan aus der Datenbank abgerufen.", + "smw-browse-intro": "Mit dieser Spezialseite können die auf Seiten oder mit Subobjekten gespeicherten Daten und Informationen eingesehen werden. Bitte gib den Namen einer Seite ein, die eingesehen werden soll.", + "smw-browse-invalid-subject": "Die Validierung der Seite ergab den Fehler „$1“.", + "smw-browse-api-subject-serialization-invalid": "Die Seite hat ein ungültiges Serialisierungsformat.", + "smw-browse-js-disabled": "Womöglich ist JavaScript deaktiviert oder nicht verfügbar. Es sollte ein Browser verwendet werden, der JavaScript unterstützt. Weitere Möglichkeiten sind auf der Hilfeseite zu [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi Konfigurationsparameter $smwgBrowseByApi] angegeben.", + "smw-browse-show-group": "Attributgruppen anzeigen", + "smw-browse-hide-group": "Attributgruppen ausblenden", + "smw-noscript": "Diese Seite oder Aktion benötigt JavaScript, um zu funktionieren. Bitte aktiviere JavaScript in deinem Browser oder verwende einen Browser, der dies unterstützt, damit die angeforderten Funktionen ausgeführt werden können. Weitere Informationen findest du auf der [https://www.semantic-mediawiki.org/wiki/Help:Noscript Hilfeseite zu „noscript“].", + "smw_inverse_label_default": "$1 von", + "smw_inverse_label_property": "Bezeichnung des inversen Attributs", + "pageproperty": "Attributwerte einer Seite", + "pendingtasklist": "Liste ausstehender Wartungsaufgaben", + "facetedsearch": "Facettensuche", + "smw_pp_docu": "Entweder eine Seite und ein Attribut angeben oder nur ein Attribut, um alle zugewiesenen Werte zu erhalten.", + "smw_pp_from": "Von Seite:", + "smw_pp_type": "Attribut:", + "smw_pp_submit": "Ergebnisse anzeigen", + "smw-prev": "vorherige {{PLURAL:$1|$1}}", + "smw-next": "nächste {{PLURAL:$1|$1}}", + "smw_result_prev": "Vorherige", + "smw_result_next": "Nächste", + "smw_result_results": "Ergebnisse", + "smw_result_noresults": "Es wurden keine Ergebnisse gefunden.", + "smwadmin": "Verwaltung (Semantic MediaWiki)", + "smw-admin-statistics-job-title": "Statistiken zu Aufträgen", + "smw-admin-statistics-job-docu": "Die Statistik zu Aufträgen zeigt Informationen zu noch nicht ausgeführten Aufträgen von Semantic MediaWiki an. Die Anzahl der Aufträge kann geringfügig ungenau sein oder Fehlversuche enthalten. Weitere Informationen sind in der [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue Dokumentation] zu finden.", + "smw-admin-statistics-querycache-title": "Abfragencache", + "smw-admin-statistics-querycache-disabled": "Das [https://www.semantic-mediawiki.org/wiki/QueryCache Cachen von Abfragen] wurde für dieses Wiki nicht aktiviert. Daher sind hierzu keine Statistiken verfügbar.", + "smw-admin-statistics-querycache-legend": "Die Statistiken zum Abfragencache enthalten veränderliche wie auch abgeleitete Daten, darunter:\n* Fehlversuche („misses“) – Die Zahl der direkten Abrufe von Abfrageergebnissen aus der Datenbank, da diese nicht im Cache verfügbar waren.\n* Löschungen („deletes“) – Die Zahl der Löschungen des Caches, entweder durch den Nutzer oder durch entsprechende Mechanismen der Software.\n* Treffer („hits“) – Die Zahl der Abrufe von Abfrageergebnissen aus dem Cache, da diese dort verfügbar waren, aufgeteilt nach auf Seiten eingebetteten Abfragen („embedded“) und nicht eingebetteten Abfragen („nonEmbedded“) auf der Spezialseite „Semantische Suche“ oder über die API.\n* Mittlere Antwortzeit für Abfrageergebnisse („medianRetrievalResponseTime“) – Die mittlere Antwortzeit für gecachte und nicht gecachte Abrufe von Abfrageergebnissen in Sekunden während des Erhebungszeitraums der Statistiken zum Abfragencache.\n* Kein Cache („noCache“) – Die Zahl der Abrufe von Abfrageergebnissen aus der Datenbank aufgrund entsprechender Vorgaben, d. h. durch die Nutzung der Abfrageoptionen limit=0 oder no-cache.", + "smw-admin-statistics-section-explain": "Dieser Abschnitt stellt Administratoren zusätzliche Statistiken bereit.", + "smw-admin-statistics-semanticdata-overview": "Übersicht", + "smw-admin-permission-missing": "Der Zugriff auf diese Seite wurde aufgrund fehlender Berechtigungen verwehrt. Bitte lies die Hilfeseite zu den [https://www.semantic-mediawiki.org/wiki/Help:Permissions „Berechtigungen“], um Informationen bezüglich der hierfür notwendigen Einstellungen zu erhalten.", + "smw-admin-setupsuccess": "Die Datenbank wurde eingerichtet.", + "smw_smwadmin_return": "Zurück zur Seite $1.", + "smw_smwadmin_updatestarted": "Ein Aktualisierungsprozess zur Erneuerung der semantischen Daten wurde gestartet.\nAlle gespeicherten Daten werden, sofern notwendig, entweder neu erstellt oder repariert.\nDer Fortschritt der Aktualisierung kann auf dieser Spezialseite eingesehen werden.", + "smw_smwadmin_updatenotstarted": "Es läuft bereits ein Aktualisierungsprozess.\nEs wird kein neuer begonnen.", + "smw_smwadmin_updatestopped": "Alle laufenden Aktualisierungsprozesse wurden vorzeitig beendet.", + "smw_smwadmin_updatenotstopped": "Um den laufenden Aktualisierungsprozess vorzeitig zu beenden, muss das Kontrollkästchen markiert werden, um dadurch anzuzeigen, dass man sich diesbezüglich tatsächlich sicher ist.", + "smw-admin-docu": "Diese Spezialseite bietet während Installation, Aktualisierung, Wartung und Nutzung sowie bei weiteren administrativen Funktionen und Aufgaben von Semantic MediaWiki Unterstützung. Ebenso werden Statistiken bereitgestellt. Wichtige Daten sollten vor der Ausführung administrativer Funktionen gesichert werden.", + "smw-admin-environment": "Softwareumgebung", + "smw-admin-db": "Datenbankeinrichtung", + "smw-admin-db-preparation": "Die Initialisierung der Datenbanktabellen wird gerade durchgeführt. Es kann etwas dauern, bis die Ergebnisse angezeigt werden. Der Zeitbedarf ist abhängig von der Größe und ggf. dem Optimierungsbedarf der Datenbanktabellen.", + "smw-admin-dbdocu": "Semantic MediaWiki benötigt weitere Datentabellen in der von MediaWiki genutzten Datenbank, um die semantischen Daten speichern zu können. Die folgende Sonderaufgabe gewährleistet, dass die Datenbank richtig eingerichtet wird. Die Datenbankänderungen, die in diesem Schritt durchgeführt werden, beeinträchtigen den übrigen Teil der von MediaWiki verwendeten Datenbank nicht. Diese können, sofern dies gewünscht ist, leicht zurückgesetzt werden.\nDiese Sonderaufgabe zur Einrichtung der Datentabellen kann mehrere Male ausgeführt werden, ohne Schaden zu verursachen. Indes ist es lediglich notwendig, diese einmal während der Installation oder der Aktualisierung von Semantic MediaWiki durchzuführen.", + "smw-admin-permissionswarn": "Sofern diese Aktion mit einem SQL-Fehler abbricht, könnte es sein, dass der Datenbankbenutzer, mit dem das Wiki auf die Datenbank zugreift (siehe die Datei „LocalSettings.php“), über keine ausreichenden Rechte verfügt.\nUm das Problem zu beheben, ist es notwendig, entweder dem Datenbankbenutzer zusätzliche Rechte zur Erstellung und Löschung von Datenbanktabellen einzuräumen, den Datenbankadministrator zeitweilig in die Datei „LocalSettings.php“ einzutragen oder aber das Wartungsskript „setupStore.php“ zu nutzen, das von einem Serveradministrator mit Administrationsberechtigung ausgeführt werden kann.", + "smw-admin-dbbutton": "Tabellen initialisieren oder aktualisieren", + "smw-admin-announce": "Wiki bekannt geben", + "smw-admin-announce-text": "Sofern dieses Wiki öffentlich zugänglich ist, kann es auf WikiApiary, dem Wiki zum Tracken von Wikis, registriert werden.", + "smw-admin-deprecation-notice-title": "Änderungshinweise zu Konfigurationsparametern", + "smw-admin-deprecation-notice-docu": "In diesem Abschnitt werden veraltete oder gelöschte Konfigurationsparameter angezeigt, von denen festgestellt wurde, dass diese in diesem Wiki noch verwendet werden. Die angegebenen Konfigurationsparameter werden mit künftigen Softwareversionen entfallen.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] ist veraltet und wird mit Version $2 entfernt.", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] – Die {{PLURAL:$2|folgende Option wird|folgenden Optionen werden}} entfernt oder ersetzt:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 ist veraltet und wird mit Version $2 entfernt.", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] wird durch [https://www.semantic-mediawiki.org/wiki/Help:$2 $2] ersetzt.", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] wurde durch $2 ersetzt", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] – Die {{PLURAL:$2|folgende Option wird|folgenden Optionen werden}} ersetzt:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 wird ersetzt durch $2.", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] wurde mit Version $2 entfernt.", + "smw-admin-deprecation-notice-title-notice": "Zukünftige Änderungen an Konfigurationsparametern", + "smw-admin-deprecation-notice-title-notice-explanation": "Die im folgenden Abschnitt angegebenen Konfigurationsparameter werden in der Konfigurationsdatei des Wikis verwendet, indes mit künftigen Softwareveröffentlichungen entweder verändert oder entfernt.", + "smw-admin-deprecation-notice-title-replacement": "Ersetzte oder umbenannte Konfigurationsparameter", + "smw-admin-deprecation-notice-title-replacement-explanation": "Die im folgenden Abschnitt angegebenen Konfigurationsparameter wurden entweder umbenannt oder anderweitig verändert. Diese sollten umgehend in der Konfigurationsdatei des Wikis angepasst werden.", + "smw-admin-deprecation-notice-title-removal": "Entfallene Konfigurationsparameter", + "smw-admin-deprecation-notice-title-removal-explanation": "Die im folgenden Abschnitt angegebenen Konfigurationsparameter wurden entfernt. Diese sollten umgehend aus der Konfigurationsdatei des Wikis entfernt werden.", + "smw-admin-deprecation-notice-section-legend": "Legende", + "smw-smwadmin-refresh-title": "Datenreparatur und -aktualisierung", + "smw_smwadmin_datarefresh": "Daten neu erstellen", + "smw_smwadmin_datarefreshdocu": "Es ist möglich alle Datenbanken von Semantic MediaWiki auf Basis des aktuellen Inhalts des Wikis wiederherzustellen.\nDies kann hilfreich sein, um eine fehlerhafte Datenbank zu erneuern oder um Daten zu aktualisieren, sofern bspw. aufgrund einer Softwareaktualisierung die Datenbankstruktur geändert wurde.\nDie Datenaktualisierung wird für jede Seite ausgeführt und daher einige Zeit in Anspruch nehmen.\nNachfolgend wird angezeigt, ob eine momentan Aktualisierung läuft bzw. ermöglicht es eine Aktualisierung zu starten oder zu stoppen (sofern diese Funktion nicht vom Websiteadministrator deaktiviert wurde).", + "smw_smwadmin_datarefreshprogress": "Eine Aktualisierung wird bereits durchgeführt.\nEine Aktualisierung geht normalerweise nur langsam voran, da die Daten lediglich in kleinen Schritten erneuert werden, und zwar jedes Mal, wenn ein Benutzer auf das Wiki zugreift.\nUm diese Aktualisierung schneller zu Ende zu führen, kann man das MediaWiki-Wartungsskript „runJobs.php“ einsetzen. Mit dem Parameter --maxjobs 1000 beschränkt man dabei die Anzahl der Aktualisierungsschritte, die in einem Durchgang durchgeführt werden, um Probleme bei der Nutzung des hierfür erforderlichen Arbeitsspeichers zu vermeiden.\nGeschätzter Fortschritt der laufenden Aktualisierung:", + "smw_smwadmin_datarefreshbutton": "Datenaktualisierung planen", + "smw_smwadmin_datarefreshstop": "Diese Datenaktualisierung beenden", + "smw_smwadmin_datarefreshstopconfirm": "Ja, ich bin mir {{GENDER:$1|sicher}}.", + "smw-admin-job-scheduler-note": "Die meisten in diesem Abschnitt angegebenen Aktivitäten werden als Hintergrundauftrag ausgeführt, um Probleme während deren Ausführung zu vermeiden. Die [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue Auftragswarteschlange] ist für deren Verarbeitung verantwortlich und es ist wichtig, dass das hierfür genutzte Wartungsskript „runJobs.php“ (siehe auch Konfigurationsparameter $wgRunJobsAsync) angemessen eingerichtet wird.", + "smw-admin-outdateddisposal-title": "Veraltete Objekte bereinigen", + "smw-admin-outdateddisposal-intro": "Einige Aktivitäten, wie bspw. das Ändern des Datentyps eines Attributs, das Löschen von Seiten oder das Korrigieren fehlerhafter Datenwerte, führen zu [https://www.semantic-mediawiki.org/wiki/Outdated_entities veralteten Datenobjekten]. Es ist empfehlenswert, diese periodisch in der Datenbank zu bereinigen. Es kann etwas dauern, bis der Auftrag zur Bereinigung ausgeführt und abgeschlossen ist. Dies ist davon abhängig, in welchem zeitlichen Intervall Aufträge ausgeführt werden.", + "smw-admin-outdateddisposal-active": "Ein Auftrag zur Bereinigung veralteter Objekte wurde erzeugt und eingeplant.", + "smw-admin-outdateddisposal-button": "Auftrag zur Bereinigung erzeugen", + "smw-admin-feature-disabled": "Diese Funktion wurde auf diesem Wiki deaktiviert. Hierzu können Informationen auf der entsprechenden Hilfeseite eingesehen werden.", + "smw-admin-propertystatistics-title": "Statistiken zu Attributen neu erstellen", + "smw-admin-propertystatistics-intro": "Erstellt die gesamten Statistiken zu Attributen neu und aktualisiert sowie korrigiert die [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count Anzahl zugeordneter Attributwerte] auf den Seiten der Attribute.", + "smw-admin-propertystatistics-active": "Ein Auftrag zur Neuerstellung der Attributstatistik wurde erzeugt und eingeplant.", + "smw-admin-propertystatistics-button": "Auftrag zur Neuerstellung der Attributstatistiken erzeugen", + "smw-admin-fulltext-title": "Index der Volltextsuche neu erstellen", + "smw-admin-fulltext-intro": "Erstellt den Suchindex der Attributtabellen mit einem für die [https://www.semantic-mediawiki.org/wiki/Full-text Volltextsuche] vorgesehenen Datentyp neu. Änderungen an den Indexregeln wie bspw. geänderte Stoppwörter, neuer Stemmer usw., und/oder das Hinzufügen oder Ändern einer Tabelle erfordern das erneute Ausführen dieser Spezialaufgabe.", + "smw-admin-fulltext-active": "Ein Auftrag zur Neuerstellung des Suchindexes für die Volltextsuche wurde erzeugt und eingeplant.", + "smw-admin-fulltext-button": "Auftrag zur Neuerstellung des Suchindexes erzeugen", + "smw-admin-support": "Unterstützung erhalten", + "smw-admin-supportdocu": "Verschiedene Hilfen und Hinweise wurden erstellt, um im Fall eines Problems zu helfen:", + "smw-admin-installfile": "Sofern beim Installieren Probleme auftreten, könnten die in der Datei „INSTALL“ und die auf der Seite mit der Installationsdokumentation enthaltenen Informationen weiterhelfen.", + "smw-admin-smwhomepage": "Die Dokumentation für die Nutzer von Semantic MediaWiki ist auf semantic-mediawiki.org verfügbar.", + "smw-admin-bugsreport": "Softwarefehler können auf GitHub gemeldet werden. Die Dokumentation zum Melden von Softwarefehlern bietet eine Anleitung zum Verfassen eines effektiven Fehlerberichts.", + "smw-admin-questions": "Im Fall von Fragen oder Anregungen kann man sich an den Diskussionen auf der Mailingliste für Nutzer beteiligen.", + "smw-admin-other-functions": "Weitere Statistiken", + "smw-admin-statistics-extra": "Statistiken", + "smw-admin-statistics": "Statistiken", + "smw-admin-supplementary-section-title": "Zusätzliche Funktionen", + "smw-admin-supplementary-section-subtitle": "Allgemeine Funktionen", + "smw-admin-supplementary-section-intro": "In diesem Abschnitt werden weitere Funktionen zusätzlich zu denen der Wartung bereitgestellt. Es ist möglich, dass einige in der [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions Dokumentation] gelisteten Funktionen entweder zugriffsbeschränkt oder nicht verfügbar sind und deshalb nicht auf diesem Wiki genutzt werden können.", + "smw-admin-supplementary-settings-title": "Konfigurationseinstellungen", + "smw-admin-supplementary-settings-intro": "$1 – Zeigt eine Liste der verfügbaren und von Semantic MediaWiki verwendeten Konfigurationseinstellungen an", + "smw-admin-main-title": "Semantic MediaWiki − $1", + "smw-admin-supplementary-operational-statistics-title": "Statistiken zu Nutzung und Betrieb", + "smw-admin-supplementary-operational-statistics-short-title": "Betriebsstatistiken", + "smw-admin-supplementary-operational-statistics-intro": "$1 – Zeigt zu Semantic MediaWiki verfügbare Statistiken an", + "smw-admin-supplementary-idlookup-title": "Datenobjekte ermitteln und bereinigen", + "smw-admin-supplementary-idlookup-short-title": "Objektsuche und -bereinigung", + "smw-admin-supplementary-idlookup-intro": "$1 – Bietet Funktionen zum Ermitteln und Bereinigen einzelner Datenobjekte", + "smw-admin-supplementary-duplookup-title": "Doppelten Datenobjekte anzeigen", + "smw-admin-supplementary-duplookup-intro": "$1 – Zeigt doppelte Datenobjekte an", + "smw-admin-supplementary-duplookup-docu": "Diese Seite listet Datenobjekte, die in der Datenbank als [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities doppelt vorhanden] kategorisiert wurden. Doppelte Datenobjekte sollten, wenn überhaupt, nur in seltenen Fällen auftreten, und entstehen zumeist aufgrund unterbrochener oder gescheiterter Datenaktualisierungsvorgänge.", + "smw-admin-supplementary-operational-statistics-cache-title": "Statistiken zum Cache", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 – Zeigt Statistiken zur Nutzung des Caches an", + "smw-admin-supplementary-operational-table-statistics-title": "Statistiken zu Tabellen", + "smw-admin-supplementary-operational-table-statistics-short-title": "Tabellenstatistiken", + "smw-admin-supplementary-operational-table-statistics-intro": "$1 – Zeigt Statistiken zu Datentabellen an", + "smw-admin-supplementary-operational-table-statistics-explain": "Dieser Abschnitt enthält ausgewählte Statistiken zu Datentabellen, um Administratoren und Datenkuratoren dabei zu unterstützen, informierte Entscheidungen bezüglich des Status der Datenbank sowie der Suchdatenbank zu treffen.", + "smw-admin-supplementary-operational-table-statistics-legend": "Diese Legende erklärt die einzelnen Schlagwörter der Statistiken zu Datentabellen:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count – Anzahl der Zeilen, die in einer Datentabelle vorhanden sind", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id – Die letzte Kennung, die aktuell verwendet wird\n* duplicate_count – Die Anzahl der Duplikate, die in der Datentabelle id_table vorhanden sind (siehe auch [[Special:SemanticMediaWiki/duplicate-lookup|„Suche nach doppelten Datenobjekten“]])\n* rows.rev_count – Die Anzahl der Zeilen, die eine Versionskennung aufweisen und somit einen direkten Verweis zu einer Seite haben\n* rows.smw_namespace_group_by_count – Die Anzahl der Zeilen je Namensraum, die verwendet werden\n* rows.smw_proptable_hash.query_match_count – Die Anzahl der Subobjekte zu Abfragen mit einem Verweis in der Datentabelle\n* rows.smw_proptable_hash.query_null_count – Die Anzahl der Subobjekte zu Abfragen, die über keinen Verweis in der Datentabelle (unverlinkte, fließende Referenz) verfügen", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent – Der Prozentsatz der Begriffe, die einzigartig sind (ein niedriger Prozentsatz deutet darauf hin, dass sich wiederholende Begriffe in der Tabelle und dem Index befinden)\n* rows.terms_occurrence.single_occurrence_total_count – Die Anzahl der Begriffe, die nur einmal vorkommen\nrows.terms_occurrence.multi_occurrence_total_count – Die Anzahl der Begriffe, die mehr als einmal vorkommen", + "smw-admin-supplementary-elastic-version-info": "Version", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 – Informiert detailliert über Einstellungen und Indexstatistiken", + "smw-admin-supplementary-elastic-docu": "Diese Seite bietet Informationen zu Einstellungen, Mappings, Betriebsstatus sowie Indexstatistiken des Elasticsearch-Clusters, der von Semantic MediaWiki über dessen [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore „ElasticStore“] genutzt wird.", + "smw-admin-supplementary-elastic-functions": "Unterstützte Funktionen", + "smw-admin-supplementary-elastic-settings-title": "Einstellungen", + "smw-admin-supplementary-elastic-settings-intro": "$1 – Zeigt eine Übersicht der Einstellungen, die von Elasticsearch verwendet werden, um die von Semantic MediaWiki genutzten Indizes zu verwalten", + "smw-admin-supplementary-elastic-mappings-title": "Mappings", + "smw-admin-supplementary-elastic-mappings-intro": "$1 – Zeigt die Liste der genutzten Indizes und Feldmappings", + "smw-admin-supplementary-elastic-mappings-docu": "Diese Seite enthält Einzelheiten zu den Feldmappings, die vom aktuellen Index verwendet werden. Die Zusammenfassung der Feldmappings sollte in Verbindung mit dem Konfigurationsparameter index.mapping.total_fields.limit überwacht werden, der die maximale Anzahl der zulässigen Felder eines Index angibt.", + "smw-admin-supplementary-elastic-mappings-docu-extra": "Der Wert zu property_fields bezieht sich auf die Anzahl indexierter Hauptfelder, während sich der Wert zu nested_fields auf die kumulierte Anzahl zusätzlicher Felder bezieht, die einem Hauptfeld zugewiesen sind, um spezifische strukturierte Suchmuster zu unterstützen.", + "smw-admin-supplementary-elastic-mappings-summary": "Zusammenfassung", + "smw-admin-supplementary-elastic-mappings-fields": "Feldmappings", + "smw-admin-supplementary-elastic-nodes-title": "Knoten", + "smw-admin-supplementary-elastic-nodes-intro": "$1 – Zeigt Statistiken des genutzten Knotens", + "smw-admin-supplementary-elastic-indices-title": "Indizes", + "smw-admin-supplementary-elastic-indices-intro": "$1 – Bietet einen Überblick zu den genutzten Indizes mitsamt zugehöriger Statistiken", + "smw-admin-supplementary-elastic-statistics-title": "Statistiken", + "smw-admin-supplementary-elastic-statistics-intro": "$1 – Zeigt Statistiken der Indexebenen", + "smw-admin-supplementary-elastic-statistics-docu": "Diese Seite bietet Einblick in die Statistiken zu den verschiedenen Betriebsabläufen auf der Betriebsebene der genutzten Indizes. Die Statistiken werden für die Gesamtebene des jeweiligen Index sowie für dessen primäre Unterebenen zusammengefasst ausgegeben. Die [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html Hilfeseite] enthält eine ausführliche Beschreibung der verfügbaren Indexstatistiken.", + "smw-admin-supplementary-elastic-status-replication": "Status der Datenreplikation", + "smw-admin-supplementary-elastic-status-last-active-replication": "Zuletzt durchgeführte Datenreplikation: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Aktualisierungszeitspanne: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Rückstand an Datenwiederherstellungsaufträgen: $1 (Schätzung)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Rückstand an Aufträgen zum Aufnehmen von Daten aus Dateien: $1 (Schätzung)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Replikation gesperrt: $1 (Datenwiederherstellung wird durchgeführt)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Überwachung der Datenreplikation (aktiv): $1", + "smw-admin-supplementary-elastic-replication-header-title": "Datenreplikationsstatus", + "smw-admin-supplementary-elastic-replication-function-title": "Datenreplikation", + "smw-admin-supplementary-elastic-replication-intro": "$1 – Zeigt Informationen zu fehlgeschlagenen Datenreplikationen an", + "smw-admin-supplementary-elastic-replication-docu": "Diese Seite stellt Informationen zum [https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring Replikationsstatus] von Datenobjekten bereit, bei denen Probleme in Zusammenhang mit der Elasticsearch-Datenbank bestehen. Es wird empfohlen, die aufgelisteten Datenobjekte zu überprüfen und den Cache der betreffenden Seiten zu leeren. Sofern das Problem dadurch gelöst wurde, bestand es nur vorübergehend.", + "smw-admin-supplementary-elastic-replication-files-docu": "Die [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion Indexierung von Dateien] erfolgt in einem gesonderten Schritt. Erst nachdem diese Aufgabe vollständig ausgeführt wurde, sind die Inhalte der Dateien im Suchindex verfügbar.", + "smw-admin-supplementary-elastic-replication-files": "Dateien", + "smw-admin-supplementary-elastic-replication-pages": "Seiten", + "smw-admin-supplementary-elastic-endpoints": "Endpunkte", + "smw-admin-supplementary-elastic-config": "Konfiguration", + "smw-admin-supplementary-elastic-no-connection": "Das Wiki kann derzeit '''keine''' Verbindung zur Elasticsearch-Datenbank herstellen. Dies verhindert aktuell die Datenabfragen im Wiki. Der Systemadministrator des Wikis muß kontaktiert werden, damit das Problem behoben werden kann und die erforderliche Indexierung des Wikis wieder durchgeführt wird.", + "smw-list-count": "Die Liste enthält {{PLURAL:$1|einen Eintrag|$1 Einträge}}.", + "smw-property-label-uniqueness": "Die Bezeichnung „$1“ entspricht mindestens der eines weiteren Attributs. Siehe hierzu die [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness Hilfeseite] mit Informationen zur Lösung dieses Problems.", + "smw-property-label-similarity-title": "Bericht zur Ähnlichkeit von Attributbezeichungen", + "smw-property-label-similarity-intro": "$1 ermittelt Ähnlichkeiten zwischen vorhandenen Attributbezeichnungen", + "smw-property-label-similarity-threshold": "Schwellenwert:", + "smw-property-label-similarity-type": "Bezeichner des Datentyps anzeigen", + "smw-property-label-similarity-noresult": "Den Auswahlkriterien entsprechend keine Ergebnisse.", + "smw-property-label-similarity-docu": "Diese Spezialseite vergleicht die [https://www.semantic-mediawiki.org/wiki/Property_similarity syntaktische Ähnlichkeit], nicht jedoch die semantische Ähnlichkeit, zwischen zwei Attributbezeichnungen und gibt diese an. Diese Analyse kann beim Ermitteln von orthografisch falsch geschriebenen oder gleichwertigen Attributen helfen, die konzeptionell gleichbedeutend sind. Siehe auch die Spezialseite [[Special:Properties|„Attribute“]], um Konzeption und Nutzung der hier angegebenen Attribute weiter zu klären. Der Schwellenwert für die Analyse kann angepasst werden, um die Ähnlichkeits- und Distanzmaße entweder zu erweitern oder zu verringern. Zudem kann das Attribut [[Property:$1|„$1“]] dazu genutzt werden bestimmte Attribute von der hier durchgeführten Analyse auszuschließen.", + "smw-admin-operational-statistics": "Diese Seite zeigt Statistiken, die bezüglich der Nutzung oder zum Betrieb von Semantic MediaWiki ermittelt wurden. Eine erweiterte Übersicht wikispezifischer Statistiken ist auf der Spezialseite [[Special:Statistics|Statistik]] verfügbar.", + "smw_adminlinks_datastructure": "Datenstruktur", + "smw_adminlinks_displayingdata": "Datenanzeige", + "smw_adminlinks_inlinequerieshelp": "Hilfe zu eingebetteten Abfragen", + "smw-page-indicator-usage-count": "Ungefähre [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count Anzahl zugeordneter Attributwerte]: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "{{PLURAL:$1|Von einem Benutzer festgelegtes Attribut|Vom System vorgegebenes Attribut}}", + "smw-property-indicator-last-count-update": "Ungefähre Anzahl der Datenwertzuordnungen zu diesem Attribut\nZuletzt aktualisiert: $1", + "smw-concept-indicator-cache-update": "Anzahl der Seiten dieses Konzepts (gecachter Wert)\n\nZuletzt aktualisiert: $1", + "smw-createproperty-isproperty": "Dies ist ein Attribut des Datentyps $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Der mögliche Wert für dieses Attribut ist|Die möglichen Werte für dieses Attribut sind}}:", + "smw-paramdesc-category-delim": "Legt fest, welches Trennzeichen bei der Ausgabe der Abfrageergebnisse genutzt werden soll", + "smw-paramdesc-category-template": "Legt fest, welche Vorlage bei der Ausgabe der Abfrageergebnisse verwendet werden soll", + "smw-paramdesc-category-userparam": "Legt fest, welcher Parameter an die Vorlage bei der Ausgabe der Abfrageergebnisse weitergegeben werden soll", + "smw-info-par-message": "Die anzuzeigende Nachricht", + "smw-info-par-icon": "Das anzuzeigende Symbol, entweder „Info“ (info) oder „Warnung“(warning)", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Allgemeine Optionen", + "prefs-extended-search-options": "Erweiterte Suche", + "prefs-ask-options": "Semantische Suche", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/wiki/Semantic_MediaWiki_–_Startseite Semantic MediaWiki] und zugehörige Erweiterungen bieten die Möglichkeit individueller Einstellungen für ausgewählte Funktionen. Siehe hierzu auch die entsprechende [https://www.semantic-mediawiki.org/wiki/Help:Benutzereinstellungen Hilfeseite] für eine ausführliche Beschreibung.", + "smw-prefs-ask-options-tooltip-display": "Beschreibung der möglichen Ausgabeparameter als Tooltip auf der Spezialseite [[Special:Ask|Semantische Suche]] anzeigen.", + "smw-prefs-ask-options-compact-view-basic": "Kompakte Ansicht aktivieren", + "smw-prefs-help-ask-options-compact-view-basic": "Falls aktiviert, wird auf der Spezialseite „Semantische Suche“ in der kompakten Ansicht eine reduzierte Anzahl von Links angezeigt.", + "smw-prefs-general-options-time-correction": "Zeitkorrektur für Spezialseiten mithilfe der lokalen [[Special:Preferences#mw-prefsection-rendering|Einstellung zum Zeitunterschied]] aktivieren", + "smw-prefs-general-options-jobqueue-watchlist": "Auftragswarteschlangen-Beobachtungsliste in meiner persönlichen Navigationsleiste anzeigen", + "smw-prefs-help-general-options-jobqueue-watchlist": "Falls aktiviert, wird eine [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist Liste ausstehender Softwareaufträge] zusammen mit dem geschätzten Umfang der entsprechenden Auftragswarteschlange angezeigt.", + "smw-prefs-general-options-disable-editpage-info": "Hinweise während des Bearbeitens von Seiten deaktivieren", + "smw-prefs-general-options-disable-search-info": "Hinweise zur für die Suche nutzbaren Wikisyntax auf der Standard-Suchseite deaktivieren", + "smw-prefs-general-options-suggester-textinput": "Eingabehilfen für semantische Objekte aktivieren", + "smw-prefs-help-general-options-suggester-textinput": "Falls aktiviert, ist es von Eingabefeldern aus möglich, eine [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Eingabehilfe] zu Attributen, Konzepten und Kategorien aufzurufen.", + "smw-prefs-general-options-show-entity-issue-panel": "Problemanzeige zu Daten anzeigen", + "smw-prefs-help-general-options-show-entity-issue-panel": "Sofern aktiviert, werden auf jeder Seite Prüfungen zur Datenintegrität durchgeführt und deren Ergebnisse über die [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel Problemanzeige zu Daten] angezeigt.", + "smw-prefs-factedsearch-profile": "Standardprofil für die [[Special:FacetedSearch|Facettensuche]]:", + "smw-ui-tooltip-title-property": "Attribut", + "smw-ui-tooltip-title-quantity": "Einheitenumrechnung", + "smw-ui-tooltip-title-info": "Information", + "smw-ui-tooltip-title-service": "Servicelinks", + "smw-ui-tooltip-title-warning": "Warnung", + "smw-ui-tooltip-title-error": "Fehler", + "smw-ui-tooltip-title-parameter": "Parameter", + "smw-ui-tooltip-title-event": "Ereignis", + "smw-ui-tooltip-title-note": "Hinweis", + "smw-ui-tooltip-title-legend": "Legende", + "smw-ui-tooltip-title-reference": "Referenzierung", + "smw_unknowntype": "Der Datentyp „$1“ dieses Attributs ist ungültig.", + "smw-concept-cache-text": "Das Konzept enthält {{PLURAL:$1|eine Seite|$1 Seiten}} und wurde letztmalig am $2 um $3 Uhr aktualisiert.", + "smw_concept_header": "Seiten mit dem Konzept „$1“", + "smw_conceptarticlecount": "Unterhalb {{PLURAL:$1|wird eine Seite|werden $1 Seiten}} angezeigt.", + "smw-qp-empty-data": "Die angeforderten Daten konnten aufgrund unzureichender Auswahlkriterien nicht angezeigt werden.", + "right-smw-admin": "Zugriff auf administrative Tätigkeiten (Semantic MediaWiki)", + "right-smw-patternedit": "Zulässige Textmuster anhand regulärer Ausdrücke erstellen und bearbeiten", + "right-smw-pageedit": "Seiten bearbeiten, die mit einem positiven Wahrheitswert für das Spezialattribut „Ist bearbeitungsgeschützt“ annotiert wurden", + "right-smw-schemaedit": "Seiten im Namensraum [https://www.semantic-mediawiki.org/wiki/Help:Schema „Schema“] bearbeiten (Semantic MediaWiki)", + "right-smw-viewjobqueuewatchlist": "Zugriff auf die [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist Anzeige zu Auftragswarteschlangen] (Semantic MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "Auf Informationen über nicht zueinander passende Revisionen von Entitäten zugreifen (Semantic MediaWiki)", + "right-smw-vieweditpageinfo": "[https://www.semantic-mediawiki.org/wiki/Help:Edit_help Bearbeitungshilfe] einsehen (Semantic MediaWiki)", + "restriction-level-smw-pageedit": "geschützt (nur berechtigte Benutzer)", + "action-smw-patternedit": "reguläre Ausdrücke zu erstellen und/oder zu bearbeiten, die von Semantic MediaWiki verwendet werden", + "action-smw-pageedit": "Seiten zu bearbeiten, die mit einem positiven Wahrheitswert für das Spezialattribut „Ist bearbeitungsgeschützt“ annotiert wurden", + "group-smwadministrator": "SMW-Administratoren", + "group-smwadministrator-member": "{{GENDER:$1|SMW-Administrator|SMW-Administratorin}}", + "grouppage-smwadministrator": "{{ns:project}}:SMW-Administratoren", + "group-smwcurator": "SMW-Kuratoren", + "group-smwcurator-member": "{{GENDER:$1|SMW-Kurator|SMW-Kuratorin}}", + "grouppage-smwcurator": "{{ns:project}}:SMW-Kuratoren", + "group-smweditor": "SMW-Editoren", + "group-smweditor-member": "{{GENDER:$1|SMW-Editor|SMW-Editorin}}", + "grouppage-smweditor": "{{ns:project}}:SMW-Editoren", + "action-smw-admin": "Semantic MediaWiki zu administrieren", + "action-smw-ruleedit": "Regeln zu erstellen und zu bearbeiten", + "smw-property-namespace-disabled": "Der [https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks Namensraum „Attribut“] ist inaktiv. Es ist nicht möglich, einen Datentyp oder andere Eigenschaften zu einem Attribut festzulegen.", + "smw-property-predefined-default": "„$1“ ist ein Spezialattribut des Datentyps $2.", + "smw-property-predefined-common": "Dieses Attribut ist softwareseitig fest definiert und auch bekannt als [https://www.semantic-mediawiki.org/wiki/Help:Spezialattribute Spezialattribut]. Es erfüllt eine besondere Funktion, kann jedoch wie jedes andere [https://www.semantic-mediawiki.org/wiki/Help:Attribut benutzerdefinierte Attribut] verwendet werden.", + "smw-property-predefined-ask": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die Metainformationen einer Abfrage als [https://www.semantic-mediawiki.org/wiki/Subobject Subobjekt] speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-asksi": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die Anzahl der von einer Abfrage verwendeten Bedingungen speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-askde": "„$1“ ist ein softwareseitig fest definiertes Attribut, das über die Tiefe einer Abfrage informiert. Dieses Attribut wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-askde": "Es handelt sich um einen numerischen Wert, der der Summe verschachtelter Unterabfragen, verarbeiteten Attributketten sowie vorhandenen Elementen zur Beschreibung einer Abfrage entspricht. Er wird durch den mit dem Konfigurationsparameter [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth] angegebenen Wert beschränkt.", + "smw-property-predefined-askpa": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die Parameter einer Abfrage speichert, die deren Ergebnis beeinflussen. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-askpa": "Es ist Teil einer Sammlung von Spezialattributen, mit denen das [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler Profil einer Abfrage] erstellt wird.", + "smw-sp-properties-docu": "Diese Spezialseite listet die [https://www.semantic-mediawiki.org/wiki/Property Attribute] und den Umfang ihrer Nutzung in diesem Wiki auf. Es wird empfohlen, regelmäßig das [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics Wartungsskript zur Aktualisierung der Nutzungsstatistik] auszuführen, um stets eine aktuelle Übersicht zu haben. Für eine differenzierte Ansicht existieren zudem die Spezialseiten für [[Special:UnusedProperties|nicht genutzte]] und [[Special:WantedProperties|gewünschte]] Attribute.", + "smw-sp-properties-cache-info": "Die aufgelisteten Daten stammen aus dem [https://www.semantic-mediawiki.org/wiki/Caching Zwischenspeicher]. Letzte Aktualisierung: $1.", + "smw-sp-properties-header-label": "Attributliste", + "smw-admin-settings-docu": "Diese Seite zeigt eine Liste der Standardeinstellungen sowie der für dieses Wiki angepassten Einstellungen zur Konfiguration von Semantic MediaWiki an. Weitergehende Informationen sind auf der Hilfeseite zu den [https://www.semantic-mediawiki.org/wiki/Help:Configuration Konfigurationseinstellungen] verfügbar.", + "smw-sp-admin-settings-button": "Liste erstellen", + "smw-admin-idlookup-title": "Ermittlung", + "smw-admin-idlookup-docu": "In diesem Abschnitt werden die technischen Einzelheiten zu einem Objekt (Wikiseite, Unterobjekt, Attribut usw.) in Semantic MediaWiki angezeigt. Die Eingabe kann eine zutreffende Kennung oder Zeichenkette sein. Diese Kennungen und Zeichenketten sind nicht zu verwechseln mit den von MediaWiki verwendeten Seitenbezeichnungen oder Versionskennungen.", + "smw-admin-iddispose-title": "Bereinigung", + "smw-admin-iddispose-docu": "Die Bereinigung einer Objektkennung wird nach der Bestätigung unbeschränkt durchgeführt, d. h. das Objekt wird nach erfolgter Bestätigung direkt mitsamt allen Verknüpfungen aus der Datenbank entfernt. Diese Aktion sollte daher nur mit großer '''Vorsicht''' und nur nach Einsicht in die [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal entsprechende Dokumentation] durchgeführt werden.", + "smw-admin-iddispose-done": "Die Objektkennung „$1“ wurde aus der Datenbank entfernt.", + "smw-admin-iddispose-references": "Die Kennung „$1“ hat {{PLURAL:$2|keinen|mindestens einen}} aktiven Verweis auf eine Datenbanktabelle:", + "smw-admin-iddispose-references-multiple": "Liste der Kennungen mit mindestens einem aktiven Verweis auf eine Datenbanktabelle.", + "smw-admin-iddispose-no-references": "Der Eintrag „$1“ wurde in keiner Datenbanktabelle gefunden.", + "smw-admin-idlookup-input": "Suche:", + "smw-admin-objectid": "Kennung:", + "smw-admin-tab-general": "Übersicht", + "smw-admin-tab-notices": "Hinweise zur Konfiguration", + "smw-admin-tab-maintenance": "Wartung", + "smw-admin-tab-supplement": "Zusätzliche Funktionen", + "smw-admin-tab-registry": "Wikiregistrierung", + "smw-admin-tab-alerts": "Meldungen", + "smw-admin-alerts-tab-deprecationnotices": "Hinweise zur Konfiguration", + "smw-admin-alerts-tab-maintenancealerts": "Meldungen zur Wartung", + "smw-admin-alerts-section-intro": "Dieser Abschnitt zeigt Meldungen und Hinweise zu Konfiguration sowie bezüglich des Betriebs oder anderer Aktivitäten. Diese müssen von Administratorinnen oder Administratoren mit entsprechenden Rechten geprüft werden.", + "smw-admin-maintenancealerts-section-intro": "Die Beachtung folgender Meldungen und Hinweise ist nicht essenziell. Deren Beachtung unterstützt sowie verbessert indes die Wartung und den Betrieb des Systems.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Datentabellenoptimierung", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "Die letzte [https://www.semantic-mediawiki.org/wiki/Table_optimization Optimierung der Datenbanktabellen] wurde vor $2 Tagen durchgeführt (Eintrag vom $1). Der Schwellwert von $3 Tagen ist somit überschritten. Eine Optimierung der Datenbanktabellen führt zu effizienteren Ausführungen von Abfragen. Es wird empfohlen regelmäßig eine Optimierung der Datenbanktabellen durchzuführen.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Veraltete Datenobjekte", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "Das System hat $1 [https://www.semantic-mediawiki.org/wiki/Outdated_entities veraltete Dateiobjekte] ermittelt. Der kritische Wert von $2 nicht durchgeführten Wartungsaufgaben ist daher überschritten. Es wird empfohlen, das Wartungsskript [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php „disposeOutdatedEntities.php“] auszuführen.", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Ungültige Datenobjekte", + "smw-admin-maintenancealerts-invalidentities-alert": "Das System hat $1 [https://www.semantic-mediawiki.org/wiki/Invalid_entities {{PLURAL:$1|ungültigen Eintrag|ungültige Einträge}}] in einem [https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace nicht gewarteten Namensraum] gefunden. Es wird empfohlen, entweder das Wartungsskript [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php „disposeOutdatedEntities.php“] oder [https://www.semantic-mediawiki.org/wiki/rebuildData.php „rebuildData.php“] auszuführen.", + "smw-admin-deprecation-notice-section": "Semantic MediaWiki", + "smw-admin-configutation-tab-settings": "Konfigurationseinstellungen", + "smw-admin-configutation-tab-namespaces": "Namensräume", + "smw-admin-configutation-tab-schematypes": "Schematypen", + "smw-admin-maintenance-tab-tasks": "Wartungsaufgaben", + "smw-admin-maintenance-tab-scripts": "Wartungsskripte", + "smw-admin-maintenance-no-description": "Es ist keine Beschreibung vorhanden.", + "smw-admin-maintenance-script-section-title": "Liste verfügbarer Wartungsskripte", + "smw-admin-maintenance-script-section-intro": "Die folgenden Wartungsskripte können nur von einem Systemadministrator über die Kommandozeile des Servers ausgeführt werden:", + "smw-admin-maintenance-script-description-dumprdf": "Ermöglicht den RDF-Export der vorhandenen semantische Tripel.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "Ermöglicht die Verwaltung (Erstellung, Löschung und Aktualisierung) semantischer Konzepte.", + "smw-admin-maintenance-script-description-rebuilddata": "Ermöglicht das Erstellen oder Aktualisieren aller in der Datenbank gespeicherten semantischen Daten.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "Ermöglicht das Erstellen oder Aktualisieren aller im Index von Elasticsearch gespeicherten semantischen Daten, sofern Elasticsearch als Datenbank genutzt wird.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Ermöglicht das Ermitteln fehlender Datenobjekte und erstellt diese von Elasticsearch, sofern Elasticsearch als Datenbank genutzt wird.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "Ermöglicht das Erstellen oder Aktualisieren aller im Suchindex der Volltextsuche gespeicherten Daten, sofern diese aktiviert wurde (SQLStore).", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Ermöglicht das Aktualisieren der Statistik zur Attributnutzung.", + "smw-admin-maintenance-script-description-removeduplicateentities": "Ermöglicht das Entfernen von Datenobjektduplikaten, die in der Datenbank über keine aktiven Verknüpfungen mehr verfügen.", + "smw-admin-maintenance-script-description-setupstore": "Richtet die für die Speicherung semantischer Daten konfigurierte Datenbank, entsprechend der Festlegung in der Datei „LocalSettings.php“, ein.", + "smw-admin-maintenance-script-description-updateentitycollation": "Ermöglicht das Aktualisieren des Datenbankfelds smw_sort in der relationalen Datenbank (in Übereinstimmung mit der [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation Konfiguration des Parameters $smwgEntityCollation]).", + "smw-admin-maintenance-script-description-populatehashfield": "Ermöglicht das Befüllen des Datenbankfelds smw_hash in der relationalen Datenbank.", + "smw-admin-maintenance-script-description-purgeentitycache": "Ermöglicht das Löschen des Caches für bekannte Objekte und ihre zugehörigen Daten.", + "smw-admin-maintenance-script-description-updatequerydependencies": "Ermöglicht das Aktualisieren von Abfragen sowie von Daten, die von Abfragen abhängen. Siehe hierzu auch den [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore Konfigurationsparameter $smwgEnabledQueryDependencyLinksStore.]", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "Veraltete Einträge und Abfragelinks entfernen.", + "smw-admin-maintenance-script-description-runimport": "Gesondert hinterlegte Inhalte anlegen und importieren. Siehe auch [https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs Konfigurationsparameter $smwgImportFileDirs].", + "smw-admin-maintenance-script-section-update": "Aktualisierungsskripte", + "smw-admin-maintenance-script-section-rebuild": "Neuerstellungsskripte", + "smw-livepreview-loading": "Lade …", + "smw-sp-searchbyproperty-description": "Diese Seite stellt eine einfache [https://www.semantic-mediawiki.org/wiki/Help:Semantisches_Browsen Suchoberfläche] zum Finden von Objekten bereit, die ein Attribut mit einem bestimmten Datenwert enthalten. Andere verfügbare Suchoberflächen sind die [[Special:PageProperty|Attributsuche]] sowie der [[Special:Ask|Abfragengenerator]].", + "smw-sp-searchbyproperty-resultlist-header": "Liste der Ergebnisse", + "smw-sp-searchbyproperty-nonvaluequery": "Eine Liste der Datenwerte des Attributs „$1“.", + "smw-sp-searchbyproperty-valuequery": "Eine Liste der Seiten, die das Attribut „$1“ mit dem Datenwert „$2“ enthalten.", + "smw-datavalue-number-textnotallowed": "Der Datenwert „$1“ kann einem Attribut des Datentyps Zahl nicht zugeordnet werden sondern bspw. der Datenwert „$2“.", + "smw-datavalue-number-nullnotallowed": "Der Datenwert „$1“ wurde mit „NULL“ zurückgegeben, was als Wert für eine Zahl nicht zulässig ist.", + "smw-editpage-annotation-enabled": "Diese Seite kann mit semantischen Annotationen in Form von bspw. [[Gehört zu::Dokumentation]] versehen werden, um strukturierte wie abfragbare Inhalte zu erfassen. Ausführliche Hinweise zum [https://www.semantic-mediawiki.org/wiki/Help:Attribute_und_Datentypen#Attribute Einfügen von Annotationen] oder [https://www.semantic-mediawiki.org/wiki/Help:Eingebettete_Abfrage Erstellen von Abfragen] sind auf der Website zu Semantic MediaWiki verfügbar.", + "smw-editpage-annotation-disabled": "Diese Seite kann nicht mit semantischen Annotationen versehen werden, da der Namensraum hierfür nicht konfiguriert wurde.", + "smw-editpage-property-annotation-enabled": "Dieses Attribut kann noch mit einem Datentyp in Form von bspw. [[Datentyp::Seite]] oder weiteren unterstützten Deklarationen, z. B. [[Unterattribut von::Dokumentation]], versehen werden. Ausführliche Hinweise zu [https://www.semantic-mediawiki.org/wiki/Help:Datentyp#Datentypen Datentypen] sowie eine [https://www.semantic-mediawiki.org/wiki/Help:Datentyp#Liste_der_Datentypen Liste der Datentypen] sind auf der Website zu Semantic MediaWiki verfügbar.", + "smw-editpage-property-annotation-disabled": "Dieses Attribut kann nicht mit einem Datentyp versehen werden, da dieser bereits systemseitig festgelegt ist (Spezialattribut). Ausführliche Hinweise zu [https://www.semantic-mediawiki.org/wiki/Help:Spezialattribute Spezialattributen] sind auf der Website zu Semantic MediaWiki verfügbar.", + "smw-editpage-concept-annotation-enabled": "Dieses Konzept kann mithilfe der Parserfunktion #concept erweitert werden. Für eine Beschreibung zur Verwendung von #concept, siehe die Hilfeseite zu [https://www.semantic-mediawiki.org/wiki/Help:Concepts Konzepten].", + "smw-search-syntax-support": "Die Sucheingabe unterstützt die Nutzung der von Semantic MediaWiki bereitgestellten [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search Abfragesyntax] (#ask:-Syntax) zum Ermitteln der Suchergebnisse.", + "smw-search-input-assistance": "Die [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Eingabehilfe] ist ebenfalls aktiviert, um die Auswahl von Attributen und Kategorien zu vereinfachen.", + "smw-search-help-intro": "Eine Eingabe von [[ ... ]] bewirkt, dass die strukturierte Suche von Semantic MediaWiki genutzt wird. Die Kombination von [[ ... ]] mit einer unstrukturierten Textsuche wie bspw. [[ ... ]] OR Lorem ipsum wird nicht unterstützt.", + "smw-search-help-structured": "Strukturierte Suchanfragen:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] (als [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context Filterung])\n\n*[[Has text::~*lorem*]] (mit einer [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context Abfrage])", + "smw-search-help-proximity": "Näherungssuchanfragen (ein Attribut ist unbekannt, '''nur''' verfügbar für solche Datenbanken, die eine Volltextsuche bereitstellen):\n\n* [[in:lorem ipsum]] (sucht in allen indexierten Dokumenten nach „lorem“ und „ipsum“)\n\n* [[phrase:lorem ipsum]] (sucht nach „lorem ipsum“ als Ausdruck)", + "smw-search-help-ask": "Die folgenden Links erklären, wie die Abfragesyntax (#ask-Syntax) verwendet werden kann:\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Seiten auswählen] beschreibt, wie man Seiten auswählt und Abfragebedingungen erstellt\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Suchoperatoren] listet die verfügbaren Suchoperatoren auf, einschließlich derer für Bereichs- und Platzhalterabfragen", + "smw-search-input": "Eingabe und Suche", + "smw-search-help-input-assistance": "Für das Eingabefeld wird eine [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Eingabeunterstützung] angeboten. Diese erfordert die Nutzung eines der folgenden Präfixe:\n\n* p: zur Aktivierung einer Attributsuche (z. B. [[p:Has ...)\n\n* c: zur Aktivierung einer Kategoriesuche\n\n* con: zur Aktivierung einer Konzeptsuche", + "smw-search-syntax": "Syntax", + "smw-search-profile": "Extra", + "smw-search-profile-tooltip": "Suchfunktionen in Verbindung mit Semantic MediaWiki", + "smw-search-profile-sort-best": "Beste Treffer", + "smw-search-profile-sort-recent": "Aktuellste Treffer", + "smw-search-profile-sort-title": "Titel", + "smw-search-profile-extended-help-intro": "Das [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile erweiterte Suchprofil] bietet auf der Seite „Spezial:Suche“ Zugriff auf Suchfunktionen, die spezifisch für die Erweiterung „Semantic MediaWiki“ sind. Die Suchfunktionen bestehen aus:", + "smw-search-profile-extended-help-sort": "Ermöglicht die Anpassung der Anzeige von Suchergebnissen mit den folgenden Auswahlmöglichkeiten:", + "smw-search-profile-extended-help-sort-title": "* „Titel“ – verwendet den Seiten- oder Anzeigetitel als Sortierkriterium", + "smw-search-profile-extended-help-sort-recent": "* „Aktuellste Treffer“ – verwendet den Zeitpunkt der letzten Änderung als Sortierkriterium. Ergebnisse aus Unterobjekten werden indes nicht angezeigt, da diese generell nicht mit dem notwendigen Attribut „[[Property:Modification date|Zuletzt geändert]]“ annotiert werden.", + "smw-search-profile-extended-help-sort-best": "* „Beste Treffer“ – verwendet die [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy Relevanz von Seiten] als Sortierkriterium. Die Relevanz stützt sich auf sogenannte „Scores“, die von Elasticsearch ermittelt und bereitgestellt werden.", + "smw-search-profile-extended-help-form": "Formulare werden Benutzern zur Verfügung gestellt, um spezielle Nutzungsfälle bei der Suche abzudecken. Formulare können unterschiedliche Attribut- und Werteingabefelder enthalten, um es Benutzern zu erleichtern, eine Suche durchzuführen. (siehe $1)", + "smw-search-profile-extended-help-namespace": "Der Auswahlkasten für Namensräume wird ausgeblendet, sobald ein Formular ausgewählt wurde. Dieser kann jedoch mithilfe der Schaltflächen „Anzeigen“ wieder sichtbar geschaltet werden.", + "smw-search-profile-extended-help-search-syntax": "Das Eingabefeld der Suche unterstützt die Nutzung der von Semantic MediaWiki bereitgestellten Abfragesyntax (#ask:-Syntax) zur Durchführung einer semantischen Suche. Nützliche Suchausdrücke sind:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in:, um alles zu finden, was die Eingabe \"…\" enthält. Dies ist insbesondere nützlich, wenn die gesuchten Begriffe nicht eindeutig und/oder die Attribute unbekannt sind (z. B.:in:(lorem && ipsum) entspricht [[~~*lorem*]] && [[~~*ipsum*]])", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase:, um alles zu finden, was exakt der Eingabe \"…\" entspricht", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has:, um alle Objekte eines angegebenen Attributs \"…\" zu finden (z. B.: has:(Foo && Bar) entspricht [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not:, um keines der Objekte zu finden, das die Eingabe \"…\" enthält", + "smw-search-profile-extended-help-search-syntax-prefix": "* Zusätzliche benutzerdefinierte Suchausdrücke sind verfügbar und definiert wie beispielsweise: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* Einige Suchausdrücke sind reserviert wie beispielsweise: $1", + "smw-search-profile-extended-help-search-syntax-note": "''Einige der gelisteten Suchausdrücke sind nur in Verbindung mit einem aktivierten Volltextsuchindex oder einer ElasticSearch-Datenbank nützlich.''", + "smw-search-profile-extended-help-query": "$1 wurde für die Abfrage verwendet.", + "smw-search-profile-extended-help-query-link": "Weitere Einzelheiten: $1.", + "smw-search-profile-extended-help-find-forms": "verfügbare Formulare", + "smw-search-profile-extended-section-sort": "Sortieren nach", + "smw-search-profile-extended-section-form": "Formulare", + "smw-search-profile-extended-section-search-syntax": "Sucheingabe", + "smw-search-profile-extended-section-namespace": "Namensraum", + "smw-search-profile-extended-section-query": "Abfrage", + "smw-search-profile-link-caption-query": "Abfragengenerator", + "smw-search-show": "Anzeigen", + "smw-search-hide": "Ausblenden", + "log-name-smw": "Semantic-MediaWiki-Logbuch", + "log-show-hide-smw": "Semantic-MediaWiki-Logbuch $1", + "logeventslist-smw-log": "Semantic-MediaWiki-Logbuch", + "log-description-smw": "Dies ist das Logbuch, mit dem die Aktivitäten von Semantic MediaWiki bezüglich der hierfür [https://www.semantic-mediawiki.org/wiki/Help:Logging aktivierten Ereignisarten] protokolliert werden.", + "logentry-smw-maintenance": "Von Semantic MediaWiki durchgeführte wartungsbezogene Ereignisse", + "smw-datavalue-import-unknown-namespace": "Der für den Import vorgesehene Namensraum „$1“ ist unbekannt. Es muss sichergestellt werden, dass die Einzelheiten zum OWL-Import auf der Seite [[MediaWiki:Smw import $1]] angegeben sind.", + "smw-datavalue-import-missing-namespace-uri": "Es wurde keine URI für den Namensraum „$1“ auf der Seite mit den Definitionen für den [[MediaWiki:Smw import $1|$1-Import]] gefunden.", + "smw-datavalue-import-missing-type": "Es wurde keine Definition des Datentyps für „$1“ im [[MediaWiki:Smw import $2|$2-Import]] gefunden.", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|$1-Import]]", + "smw-datavalue-import-invalid-value": "„$1“ ist kein gültiges Format. Es muss dem Schema „Namensraum“:„Kennung“ (z. B. „foaf:name“) entsprechen.", + "smw-datavalue-import-invalid-format": "„$1“ ist keine gültige Zeichenfolge für dieses Schema. Diese muss in vier Teile gegliedert sein.", + "smw-property-predefined-impo": "„$1“ ist ein softwareseitig fest definiertes Attribut, das den Zusammenhang mit einem [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary importierten Vokabular] beschreibt. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-type": "„$1“ ist ein softwareseitig fest definiertes Attribut, mit dem der [[Special:Types|Datentyp]] eines Attributs festgelegt wird. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-sobj": "„$1“ ist ein softwareseitig fest definiertes Attribut und stellt einen [https://www.semantic-mediawiki.org/wiki/Help:Container Datenverbund] dar. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-sobj": "Ein Subobjekt erlaubt die Speicherung mehrerer Attribut-Datenwert-Zuweisungen (Annotationen), ähnlich dem Vorgehen auf einer regulären Wikiseite. Die Speicherung erfolgt dabei in einem anderen Objektraum als dem der Wikiseite selbst. Dieser Objektraum ist indes mit der entsprechenden Wikiseite, auf der sich das Subobjekt befindet, verknüpft.", + "smw-property-predefined-errp": "„$1“ ist ein softwareseitig fest definiertes Attribut, das fehlerhafte Attributwerte speichert. Fehlerhafte Attributwerte entsprechen nicht dem [https://semantic-mediawiki.org/wiki/Help:Datentyp Datentyp] des Attributs. Das Attribut wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-errp": "In den meisten Fällen wird dieses Problem aufgrund nicht übereinstimmender Datentypangaben oder durch Einschränkungen aufgrund ausschließlich [[Property:Allows value|zulässiger Werte]] verursacht.", + "smw-property-predefined-pval": "„$1“ ist ein softwareseitig fest definiertes Attribut, mit dem die für ein Attribut zulässigen Datenwerte festgelegt werden. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-pvali": "„$1“ ist ein softwareseitig fest definiertes Attribut, mit dem ein Verweis auf eine Liste mit für ein Attribut zulässigen Datenwerten festgelegt wird. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-datavalue-property-restricted-annotation-use": "Das Attribut „$1“ hat einen eingeschränkten Anwendungsbereich und kann nicht als Attribut zum Annotieren von Daten verwendet werden.", + "smw-datavalue-property-restricted-declarative-use": "Das Attribut „$1“ dient dem Festlegen von Eigenschaften (Definition derselben) und kann nur auf der Seite eines Attributs oder einer Kategorie verwendet werden.", + "smw-datavalue-property-create-restriction": "Das Attribut „$1“ ist nicht vorhanden und kann nur von Benutzern der hierfür vorgesehenen [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups Benutzergruppe] oder mit der hierfür benötigten Berechtigung („$2“) erstellt werden, während der [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode Berechtigungsmodus] aktiviert ist. Erst wenn dieses unbestätigte Attribut erstellt wurde, kann es für Annotationen genutzt werden.", + "smw-datavalue-property-invalid-character": "Der Name des Attributs „$1“ enthält das ungültige Zeichen „$2“, das nicht hierfür verwendet werden kann.", + "smw-datavalue-property-invalid-chain": "Die Verwendung von „$1“ als Attributkette ist während des Hinzufügens von Annotationen nicht möglich.", + "smw-datavalue-restricted-use": "Der Datenwert „$1“ ist nicht uneingeschränkt nutzbar und kann daher nicht gespeichert werden.", + "smw-datavalue-invalid-number": "„$1“ ist keine gültige Zahl.", + "smw-query-condition-circular": "In Vorlage „$1“ wurde ein möglicher Zirkelbezug festgestellt.", + "smw-query-condition-empty": "Die Abfrage enthält eine leere Bedingung.", + "smw-types-list": "Liste der Datentypen", + "smw-types-default": "„$1“ ist ein softwareseitig fest definierter Datentyp.", + "smw-types-help": "Weitere Informationen sowie Beispiele sind auf der zugehörigen [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 Hilfeseite] vorhanden.", + "smw-type-anu": "„$1“ ist eine Variante des Datentyps [[Special:Types/URL|„URL“]], der zumeist für Exportdeklarationen zu ''owl:AnnotationProperty'' genutzt wird.", + "smw-type-boo": "„$1“ ist ein Datentyp, der für Wahrheitswerte („wahr“ oder „falsch“) genutzt wird.", + "smw-type-cod": "„$1“ ist eine Variante des Datentyps [[Special:Types/Text|„Text“]], der für technische Texte beliebiger Länge wie bspw. Softwarecode genutzt wird.", + "smw-type-geo": "„$1“ ist ein Datentyp, der zum Speichern der Lage eines Punktes in einer Ebene oder in einem Raum genutzt wird. Er wird von der Softwareerweiterung [https://www.semantic-mediawiki.org/wiki/Extension:Maps „Maps“] bereitgestellt.", + "smw-type-tel": "„$1“ ist ein Datentyp, der für die Ziffernfolge zur Anwahl eines Teilnehmers (Rufnummer) gemäß RFC 3966 genutzt wird.", + "smw-type-txt": "„$1“ ist ein Datentyp, der für Zeichenketten beliebiger Länge genutzt wird.", + "smw-type-dat": "„$1“ ist ein Datentyp, der für genau bestimmte Momente in einem zeitlichen Bezugssystem (Zeitskala) genutzt wird.", + "smw-type-ema": "„$1“ ist ein besonderer Datentyp für E-Mail-Adressen.", + "smw-type-tem": "„$1“ ist ein besonderer numerischer Datentyp für Temperaturen.", + "smw-type-qty": "„$1“ ist ein besonderer numerischer Datentyp für Mengenangaben mit Maßeinheiten.", + "smw-type-rec": "„$1“ ist ein besonderer Datentyp für Attributsequenzen in einer festen Reihenfolge.", + "smw-type-extra-tem": "Das Konvertierungsschema unterstützt Temperatureinheiten wie Kelvin, Celsius, Fahrenheit und Rankine.", + "smw-type-tab-properties": "Attribute", + "smw-type-tab-types": "Datentypen", + "smw-type-tab-type-ids": "Datentypenkennungen", + "smw-type-tab-errors": "Fehler", + "smw-type-primitive": "Einfach", + "smw-type-contextual": "Kontextbezogen", + "smw-type-compound": "Komplex", + "smw-type-container": "Verbundbezogen", + "smw-type-no-group": "Nicht klassifiziert", + "smw-special-pageproperty-description": "Diese Seite stellt eine einfache Suchoberfläche zum Ermitteln aller Attribute auf einer bestimmten Seite bereit. Andere verfügbare Suchoberflächen sind die [[Special:SearchByProperty|Attributsuche]] sowie der [[Special:Ask|Abfragengenerator]].", + "smw-property-predefined-errc": "„$1“ ist ein softwareseitig fest definiertes Attribut, das Fehler im Zusammenhang mit der Verarbeitung von Eingaben sowie bei fehlerhaften Attribut-Datenwert-Zuweisungen (Annotationen) speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-errc": "Fehler werden in einem [https://www.semantic-mediawiki.org/wiki/Help:Container Container] gesammelt, der eine Referenz zu dem Attribut beinhalten kann, das die Diskrepanz verursacht hat.", + "smw-property-predefined-errt": "„$1“ ist ein softwareseitig fest definiertes Attribut, das Beschreibungen zu Fehlern enthält, die in Verbindung mit fehlerhaften Attribut-Datenwert-Zuweisungen (Annotationen) oder bei deren Verarbeitung aufgetreten sind. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-subobject-parser-invalid-naming-scheme": "Ein benutzerdefiniertes Unterobjekt verwendet ein ungültiges Namensschema. Die Verwendung eines Punkts innerhalb der ersten fünf Zeichen ($1) ist ausschließlich Softwareerweiterungen vorbehalten. Es kann manuell ein [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier Bezeichner] festgelegt werden.", + "smw-datavalue-record-invalid-property-declaration": "Die Definition des Datensatzes enthält das Attribut „$1“, das selbst wiederum dem Datentyp „Verbund“ zugeordnet wurde. Dies ist nicht zulässig.", + "smw-property-predefined-mdat": "„$1“ ist ein softwareseitig fest definiertes Attribut, das das Datum der letzten Änderung einer Seite speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-cdat": "„$1“ ist ein softwareseitig fest definiertes Attribut, das das Datum der ersten Version einer Seite speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-newp": "„$1“ ist ein softwareseitig fest definiertes Attribut, das den Status speichert, ob eine Seite eine neue Seite ist. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-ledt": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die Benutzerseite des Benutzers speichert, der die letzte Version einer Seite erstellt hat. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-mime": "„$1“ ist ein softwareseitig fest definiertes Attribut, das den MIME-Typ einer hochgeladenen Datei speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-media": "„$1“ ist ein softwareseitig fest definiertes Attribut, das den Medientyp einer hochgeladenen Datei speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-askfo": "„$1“ ist ein softwareseitig fest definiertes Attribut, das den Namen des in einer Abfrage verwendeten Ergebnisformats speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-askst": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die Bedingungen der Abfrage als Zeichenfolge speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-askdu": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die Dauer in Sekunden speichert, die die Abfrage zur Ausführung benötigt hat. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-asksc": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die alternative Quelle einer Abfrage enthält, bspw. die einer wikifremden Fernabfrage. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-askco": "„$1“ ist ein softwareseitig fest definiertes Attribut, das den [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Query_status_code Statuscode von Abragen] speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-askco": "Die gespeicherte Zahl oder gespeicherten Zahlen stehen für den softwareintern genutzten Code des Status, in dem sich die jeweilige Abfrage befindet. Weitere Informationen sind auf der entsprechenden [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler Hilfeseite] vorhanden.", + "smw-property-predefined-prec": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die [https://www.semantic-mediawiki.org/wiki/Help:Display_precision Anzeigegenauigkeit] für numerische Datentypen dezimal speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-attch-link": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die Links zu den auf einer Seite eingebetteten Dateien speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-inst": "„$1“ ist ein softwareseitig fest definiertes Attribut, das Informationen zu Kategorien unabhängig von MediaWiki speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-unit": "„$1” ist ein softwareseitig festgelegtes Attribut, um Einheiten numerischer Attributwerte festzulegen. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-unit": "Eine durch Kommata getrennte Liste ermöglicht die Definition von Einheiten oder Formaten für die Anzeige von Datenwerten.", + "smw-property-predefined-conv": "„$1“ ist ein softwareseitig fest definiertes Attribut, um Konvertierungsfaktoren für Maße oder physikalische Einheiten festzulegen. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestell.", + "smw-property-predefined-serv": "„$1“ ist ein softwareseitig festgelegtes Attribut, um Service-Links zu Attributen festzulegen. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-redi": "„$1“ ist ein softwareseitig fest definiertes Attribut, das Weiterleitungen aufzeichnet. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-subp": "„$1“ ist ein softwareseitig fest definiertes Attribut, um festzulegen, dass ein Attribut ein [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of Unterattribut] ist. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-subc": "„$1“ ist ein softwareseitig fest definiertes Attribut, um festzulegen, dass eine Kategorie eine [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of Unterkategorie] ist. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-conc": "„$1“ ist ein softwareseitig fest definiertes Attribut, das zugehörige Konzepte aufzeichnet. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-err-type": "„$1“ ist ein softwareseitig fest definiertes Attribut und speichert Informationen zu [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors Verarbeitungsfehler]. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-skey": "„$1“ ist ein softwareseitig fest definiertes Attribut, das Sortierinformationen speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-pplb": "\"$1\" ist ein softwareseitig fest definiertes Attribut, das die [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label bevorzugte Beschriftung eines Attributs] speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-chgpro": "„$1“ ist ein softwareseitig fest definiertes Attribut und speichert [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation Informationen zur Verarbeitung von Datenänderungen]. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-schema-link": "Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-format-schema": "Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-profile-schema": "Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-trans": "Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-trans-source": "Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-trans-group": "Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-cont-len": "„$1“ ist ein softwareseitig fest definiertes Attribut, das den Umfang des Inhalts einer Datei speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-cont-len": "Es wird in Verbindung mit [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] als Datenbank verwendet. Sofern vorhanden, wird der Umfang einer in die Datenbank aufgenommenen Datei ermittelt und gespeichert.", + "smw-property-predefined-cont-lang": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die Sprache des Inhalts einer Datei speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-cont-lang": "Es wird in Verbindung mit [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] als Datenbank verwendet. Sofern vorhanden, wird die Sprache des Inhalts einer in die Datenbank aufgenommenen Datei ermittelt und gespeichert.", + "smw-property-predefined-cont-title": "„$1“ ist ein softwareseitig fest definiertes Attribut, das den Titel einer Datei speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-cont-title": "Es wird in Verbindung mit [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] als Datenbank verwendet. Sofern vorhanden, wird der Titel einer in die Datenbank aufgenommenen Datei ermittelt und gespeichert.", + "smw-property-predefined-cont-author": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die Autoren einer Datei speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-cont-author": "Es wird in Verbindung mit [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] als Datenbank verwendet. Sofern vorhanden, werden die Autoren einer in die Datenbank aufgenommenen Datei ermittelt und gespeichert.", + "smw-property-predefined-cont-date": "„$1“ ist ein softwareseitig fest definiertes Attribut, das Datum einer Datei speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-cont-date": "Es wird in Verbindung mit [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] als Datenbank verwendet. Sofern vorhanden, wird das Datum einer in die Datenbank aufgenommenen Datei ermittelt und gespeichert.", + "smw-property-predefined-cont-type": "„$1“ ist ein softwareseitig fest definiertes Attribut, das den Typ einer Datei speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-cont-type": "Es wird in Verbindung mit [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] als Datenbank verwendet. Sofern vorhanden, wird der Typ einer in die Datenbank aufgenommenen Datei ermittelt und gespeichert.", + "smw-property-predefined-cont-keyw": "„$1“ ist ein softwareseitig fest definiertes Attribut, das Schlagwörter zum Inhalt einer Seite speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-cont-keyw": "Es wird in Verbindung mit [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] als Datenbank verwendet. Sofern vorhanden, werden die Schlagwörter einer in die Datenbank aufgenommenen Datei ermittelt und gespeichert.", + "smw-property-predefined-file-attch": "„$1“ ist ein softwareseitig fest definiertes Attribut in Form eines Datencontainers, das Informationen zu den auf einer Seite eingebetteten Dateien speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-file-attch": "Es wird in Verbindung mit [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] als Datenbank verwendet. Sofern vorhanden, werden alle abrufbaren Informationen zum Inhalt einer in die Datenbank aufgenommenen Datei ermittelt und gespeichert.", + "smw-types-extra-geo-not-available": "Die Softwareerweiterung [https://www.semantic-mediawiki.org/wiki/Extension:Maps „Maps“] ist nicht installiert. Daher ist das Attribut „$1“ in seiner Nutzbarkeit eingeschränkt.", + "smw-datavalue-monolingual-dataitem-missing": "Ein erwartetes Element zum Erstellen eines einsprachigen zusammengesetzten Wertes fehlt.", + "smw-datavalue-languagecode-missing": "Zur Annotation „$1“ konnte kein Sprachcode festgestellt werden (z. B. „xyz@de“).", + "smw-datavalue-languagecode-invalid": "„$1“ ist kein zulässiger Sprachcode.", + "smw-property-predefined-lcode": "„$1“ ist ein softwareseitig fest definiertes Attribut, das den einem Datenwert zugeordneten „BCP47“-formatierten Sprachcode speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-type-mlt-rec": "„$1“ ist der Datentyp für einen [https://www.semantic-mediawiki.org/wiki/Help:Container Datenverbund], der einen Text mit dem [[Property:Language code|Sprachcode]] verknüpft und so dessen Sprache festlegt.", + "smw-types-extra-mlt-lcode": "Der Datentyp erfordert {{PLURAL:$2|einen|keinen}} Sprachcode (bspw. wird eine Attribut-Datenwert-Zuweisung (Annotation) ohne einen Sprachcode {{PLURAL:$2|nicht akzeptiert|akzeptiert}}).", + "smw-property-predefined-text": "„$1“ ist ein softwareseitig fest definiertes Attribut, das einen Text mit einer beliebigen Länge speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-pdesc": "„$1“ ist ein softwareseitig fest definiertes Attribut, das es erlaubt, ein Attribut im Kontext einer Sprache zu beschreiben. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-list": "„$1“ ist ein softwareseitig fest definiertes Attribut zur Definition einer Attributliste in einem [[Special:Types/Record|Attributverbund]]. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-limitreport-intext-parsertime": "[SMW] Zeitverbrauch des Parsers für die direkten Annotationen", + "smw-limitreport-intext-postproctime": "[SMW] Datennachverarbeitungzeit", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|Sekunde|Sekunden}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|Sekunde|Sekunden}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Dauer der Datenbankaktualisierung (beim Leeren des Seitencaches)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|Sekunde|Sekunden}}", + "smw_allows_pattern": "Auf dieser Seite werden Referenzobjekte mit entsprechenden auf [https://de.wikipedia.org/wiki/Regulärer_Ausdruck regulären Ausdrücken] gestützten Musterreferenzen gespeichert (Referenzobjekt|Musterreferenz) und durch das Spezialattribut „[[Property:Allows pattern|Erlaubt Muster]]“ zur Verfügung gestellt. Um diese Seite bearbeiten zu können, ist das Benutzerrecht smw-patternedit erforderlich.", + "smw-datavalue-allows-pattern-mismatch": "„$1“ wurde vom regulären Ausdruck „$2“ als ungültig klassifiziert.", + "smw-datavalue-allows-pattern-reference-unknown": "Die Musterreferenz „$1“ entspricht keinem Eintrag in [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "Die der Referenz „$1“ zugehörige Seite [[MediaWiki:Smw allows list $1]] für das Speichern von Datenwerten ist nicht vorhanden.", + "smw-datavalue-allows-value-list-missing-marker": "In der Liste „$1“ fehlen Einträge mit der Markierung „*“.", + "smw-datavalue-feature-not-supported": "Die Funktion „$1“ ist auf diesem Wiki deaktiviert oder wird nicht unterstützt.", + "smw-property-predefined-pvap": "„$1“ ist ein softwareseitig fest definiertes Attribut, das eine [[MediaWiki:Smw allows pattern|Musterreferenz]] speichert anhand derer Attributwertzuweisungen mit Hilfe [https://de.wikipedia.org/wiki/Regulärer_Ausdruck regulärer Ausdrücke] überprüft werden. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-dtitle": "„$1“ ist ein softwareseitig fest definiertes Attribut, das einen eindeutigen Anzeigetitel zu einem Objekt speichert und ihm zuweist. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-pvuc": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die Information speichert, ob eine bestimmte Attribut-Datenwert-Zuweisung (Annotation) im Wiki einzigartig sein muss oder gar nur einmalig erfolgen darf. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-pvuc": "Eindeutigkeit bedeutet, dass zwei Datenwerte für ein bestimmtes Attribut bei durchgeführten Attribut-Datenwert-Zuweisungen (Annotationen) nicht identisch sein dürfen. Jeder Verstoß dieser Anforderung wird als Fehler eingestuft.", + "smw-datavalue-constraint-uniqueness-violation": "Dem Attribut „$1“ kann der Datenwert ''$2'' nur einmal zugeordnet werden. Der Datenwert ist bereits auf der Seite „$3“ vorhanden, so daß er nicht gespeichert werden kann.", + "smw-datavalue-constraint-uniqueness-violation-isknown": "Das Attribut „$1“ kann nur einmal einer bestimmten Seite zugeordnet werden. Die Seite „$2“ enthält bereits einen Datenwert für dieses Attribut, so daß der Datenwert „$3“ nicht gespeichert werden kann.", + "smw-datavalue-constraint-violation-non-negative-integer": "Dem Attribut „$1“ kann nur eine positive Ganzzahl zugeordnet werden. Der Datenwert ''$2'' ist keine positive Ganzzahl, so daß er nicht gespeichert werden kann.", + "smw-datavalue-constraint-violation-must-exists": "Dem Attribut „$1“ kann nur ein Datenwert zugeordnet werden, der bereits vorhanden ist (must_exists). Der Datenwert ''$2'' ist nicht vorhanden, so daß er nicht gespeichert werden kann.", + "smw-datavalue-constraint-violation-single-value": "Dem Attribut „[[Property:$1|$1]]“ kann auf einer Seite nur ein Datenwert zugeordnet werden (single_value). Der Datenwert ''$2'' ist der zweite, so daß er nicht gespeichert werden kann.", + "smw-constraint-violation-uniqueness": "Die Beschränkung unique_value_constraint wurde für das Attribut „[[Property:$1|$1]]“ festgelegt. Dies bedeutet, dass ein Datenwert „$2“ nur einmal diesem Attribut zugeordnet werden kann. Er wurde indes schon dem Datenobjekt „$3“ zugeordnet.", + "smw-constraint-violation-uniqueness-isknown": "Die Beschränkung auf einzigartige Werte (unique_value_constraint) wurde für das Attribut „[[Property:$1|$1]]“ festgelegt. Dies bedeutet, dass ein bestimmter Datenwert nur einmal diesem Attribut zugeordnet werden kann. Dem Datenobjekt „$2“ wurde bereits der Datenwert „$3“ zugeordnet und verletzt damit gegen die festgelegte Beschränkung.", + "smw-constraint-violation-non-negative-integer": "Die Beschränkung non_negative_integer wurde für das Attribut „[[Property:$1|$1]]“ festgelegt. Dies bedeutet, dass ein Datenwert eine positive ganze Zahl sein muss. Der zugeordnete Datenwert „$2“ verstößt somit gegen die festgelegt Beschränkung.", + "smw-constraint-violation-must-exists": "Die Beschränkung must_exists wurde für das Attribut „[[Property:$1|$1]]“ festgelegt. Dies bedeutet, dass ein Datenwert als Seite bereits vorhanden sein muss. Der zugeordnete Datenwert „$2“ verstößt somit gegen die festgelegt Beschränkung.", + "smw-constraint-violation-single-value": "Die Beschränkung single_value_constraint wurde für das Attribut „[[Property:$1|$1]]“ festgelegt. Dies bedeutet, dass dem Datenobjekt nur ein Datenwert zugeordnet werden darf. Der zugeordnete Datenwert „$2“ verstößt somit gegen die festgelegt Beschränkung.", + "smw-constraint-violation-class-shape-constraint-missing-property": "Für die Kategorie \"[[:$1]]\" wurde mit einem Attribut (property) eine Einschränkung (shape_constraint) festgelegt. Das erforderliche Attribut „$2“ ist nicht vorhanden.", + "smw-constraint-violation-class-shape-constraint-wrong-type": "Für die Kategorie \"[[:$1]]\" wurde mit einen festgelegten Datentyp (property_type) eine Einschränkung (shape_constraint) festgelegt. Der Datentyp des Attributs „$2“ entspricht indes nicht der Anforderung an den Datentyp: „$3“.", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "Für die Kategorie \"[[:$1]]\" wurde mit einer Kardinalität (max_cardinality) eine Einschränkung (shape_constraint) festgelegt. Das Attribut „$2“ entspricht indes nicht der Anforderung an die Kardinalität: „$3“.", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "Für die Kategorie \"[[:$1]]\" wurde mit einer Mindestlänge (min_textlength) eine Einschränkung (shape_constraint) festgelegt. Das Attribut „$2“ entspricht indes nicht der Anforderung an die Mindestlänge: „$3“.", + "smw-constraint-violation-class-mandatory-properties-constraint": "Der Kategorie \"[[:$1]]\" wurde mit erforderlichen Attributen (mandatory_propertiesh) eine Beschränkung (shape_constraint) festgelegt. Die folgenden Attribute müssen vorhanden sein: „$2“.", + "smw-constraint-violation-allowed-namespace-no-match": "Die Beschränkung allowed_namespaces wurde für das Attribut „[[Property:$1|$1]]“ festgelegt. Dies bedeutet, dass dem Datenobjekt nur ein Datenwert als Seite aus bestimmten Namensräumen zugeordnet werden darf. Die Seite „$2“ befindet sich nicht im festgelegten Namensraum und verstößt somit gegen die festgelegt Beschränkung. Nur Seiten in den Namensräumen „$3“ sind gemäß der festgelegten Beschränkung zulässig.", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "Die Beschränkung allowed_namespaces erfordert ein Attribut mit dem Datentyp „Seite“.", + "smw-constraint-schema-category-invalid-type": "Das annotierte Schema „$1“ kann nicht für Kategorien genutzt werden. Es muss der Schematyp „$2“ genutzt werden.", + "smw-constraint-schema-property-invalid-type": "Das annotierte Schema „$1“ kann nicht für Kategorien genutzt werden. Es muss der Schematyp „$2“ genutzt werden.", + "smw-constraint-error-allows-value-list": "„$1“ befindet sich nicht in der Liste ($2) [[Property:Allows value|zulässiger Werte]] für das Attribut „$3“.", + "smw-constraint-error-allows-value-range": "„$1“ liegt nicht innerhalb des zulässigen Bereichs „$2“, der durch die Einschränkung mit „[[Property:Allows value|zulässigen Werten]]“ für das Attribut „$3“ festgelegt wurde.", + "smw-property-predefined-boo": "„$1“ ist ein [[Special:Types/Boolean|Datentyp]] für Wahrheitswerte („wahr“ oder „falsch“). Er wird Attributen mit Hilfe eines von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] bereitgestellten, softwareseitig fest definierten Attributs (Spezialattribut), zugeordnet.", + "smw-property-predefined-num": "„$1“ ist ein [[Special:Types/Number|Datentyp]] für Zahlenwerte. Er wird Attributen mit Hilfe eines von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] bereitgestellten, softwareseitig fest definierten Attributs (Spezialattribut), zugeordnet.", + "smw-property-predefined-dat": "„$1“ ist ein [[Special:Types/Date|Datentyp]] für Datumswerte. Er wird Attributen mit Hilfe eines von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] bereitgestellten, softwareseitig fest definierten Attributs (Spezialattribut), zugeordnet.", + "smw-property-predefined-uri": "„$1“ ist ein [[Special:Types/URL|Datentyp]] für URI-/URL-Werte. Er wird Attributen mit Hilfe eines von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] bereitgestellten, softwareseitig fest definierten Attributs (Spezialattribut), zugeordnet.", + "smw-property-predefined-qty": "„$1“ ist ein [[Special:Types/Quantity|Datentyp]] für Datenwerte mit Maßangaben. Er wird Attributen mit Hilfe eines von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] bereitgestellten, softwareseitig fest definierten Attributs (Spezialattribut), zugeordnet.", + "smw-datavalue-time-invalid-offset-zone-usage": "Der Datenwert „$1“ enthält eine Angabe zur Zeitverschiebung und einen Zeitzonenidentifikator, die nicht unterstützt werden.", + "smw-datavalue-time-invalid-values": "Der Datenwert „$1“ enthält nicht interpretierbare Informationen in Form von „$2“.", + "smw-datavalue-time-invalid-date-components-common": "Der Datenwert „$1“ enthält einige nicht interpretierbare Informationen.", + "smw-datavalue-time-invalid-date-components-dash": "Der Datenwert „$1“ enthält einen Gedankenstrich oder andere für die Interpretation der Datumsangabe ungültige Zeichen.", + "smw-datavalue-time-invalid-date-components-empty": "Der Datenwert „$1“ enthält nicht alle Bestandteile.", + "smw-datavalue-time-invalid-date-components-three": "Der Datenwert „$1“ besteht aus mehr als den drei für die Interpretation der Datumsangabe erforderlichen Bestandteilen.", + "smw-datavalue-time-invalid-date-components-sequence": "Der Datenwert „$1“ enthält eine für die Interpretation einer Datumsangabe ungültige Sequenz.", + "smw-datavalue-time-invalid-ampm": "Der Datenwert „$1“ enthält „$2“ als Stundenangabe, die für die 2-mal-12-Stunden-Zählung ungültig ist.", + "smw-datavalue-time-invalid-jd": "Der Datenwert „$1“ entspricht keiner gültigen Zahl für ein julianisches Datum. „$2“ wurde ausgegeben.", + "smw-datavalue-time-invalid-prehistoric": "Der Datenwert „$1“ entspricht keiner gültigen Angabe für ein prähistorisches Datum. Es könnte bspw. mehr als nur eine Jahreszahl oder ein unzutreffendes Kalendermodell angegeben worden sein.", + "smw-datavalue-time-invalid": "Der Datenwert „$1“ entspricht keiner gültigen Angabe für ein Datum oder einen Zeitpunkt. „$2“ wurde ausgegeben.", + "smw-datavalue-external-formatter-uri-missing-placeholder": "Der für das Erstellen der URI notwendige Datenwert für den Platzhalter „$1“ ist nicht vorhanden.", + "smw-datavalue-external-formatter-invalid-uri": "Der Datenwert „$1“ bescheibt eine ungültige URL.", + "smw-datavalue-external-identifier-formatter-missing": "Dem Attribut wurde keine [[Property:External formatter uri|Anweisung zur Generierung einer URI]] zugewiesen.", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "Die Kennung der externen URI „$1“ besteht aus mehreren zusammengesetzten Feldern. Dem aktuell hinterlegten Wert „$2“ fehlt mindestens ein Parameter, um die Anforderung der Kennung zu erfüllen.", + "smw-datavalue-keyword-maximum-length": "Das Stichwort hat die maximale Länge von {{PLURAL:$1|einem|$1}} Zeichen überschritten.", + "smw-property-predefined-eid": "„$1“ ist ein [[Special:Types/External identifier|Datentyp]] für Anweisungen zum Generieren einer URI sowie ein softwareseitig fest definiertes Attribut. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-peid": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die externe Kennung zum Generieren einer URI speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-pefu": "„$1“ ist ein softwareseitig fest definiertes Attribut, das Anweisungen zum Generieren einer URI zusammen mit einem Platzhalter speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-pefu": "Die URI muss einen Platzhalter enthalten, damit [[Special:Types/External identifier|externe Identifikatoren]] korrekt zur Erstellung einer gültigen Referenzierung positioniert werden können.", + "smw-type-eid": "„$1“ ist eine Variante des Datentyps [[Special:Types/Text|„Text“]]. Die zugewiesenen Attribute müssen [[Property:External formatter uri|Anweisungen zum Generieren einer URI]] enthalten.", + "smw-property-predefined-keyw": "„$1“ ist ein [[Special:Types/Keyword|Datentyp]], der einen in seiner maximalen Zeichenlänge beschränkten Text normalisiert. Es ist zudem ein softwareseitig fest definiertes Attribut. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-type-keyw": "„$1“ ist eine Variante des Datentyps [[Special:Types/Text|„Text“]], der einen in seiner maximalen Zeichenlänge beschränkten Text normalisiert.", + "smw-datavalue-stripmarker-parse-error": "Der angegebene Wert „$1“ enthält [https://en.wikipedia.org/wiki/Help:Strip_markers „Strip markers“ (Markierungen für vom Softwareparser genutzte Platzhalter)] und kann deshalb nicht ausreichend verarbeitet werden.", + "smw-datavalue-parse-error": "Der angegebene Wert „$1“ wurde nicht verstanden.", + "smw-datavalue-propertylist-invalid-property-key": "Die Attributfolge „$1“ enthielt die ungültige Attributkennung „$2“.", + "smw-datavalue-type-invalid-typeuri": "Mit dem Typ „$1“ konnte keine gültige URI generiert werden.", + "smw-datavalue-wikipage-missing-fragment-context": "„$1“ kann nicht als Wert für eine Seite ohne eine im Kontext vorhandene Seite verwendet werden.", + "smw-datavalue-wikipage-invalid-title": "Der angegebene Wert „$1“ enthält für den Datentyp Seite ungültige Zeichen oder ist unvollständig. Er kann deshalb während einer Abfrage oder bei einer Annotation unerwartete Ergebnisse verursachen.", + "smw-datavalue-wikipage-property-invalid-title": "Der für das Attribut „$1“ des Datentyps Seite angegebene Wert „$2“ enthält ungültige Zeichen oder ist unvollständig. Er kann deshalb während einer Abfrage oder bei einer Annotation unerwartete Ergebnisse verursachen.", + "smw-datavalue-wikipage-empty": "Es ist kein Wert für den Titel einer Seite vorhanden (z. B. [[SomeProperty::]], [[]]) und kann somit nicht als Name oder Teil einer Abfragebedingung verwendet werden.", + "smw-type-ref-rec": "„$1“ ist der Datentyp für einen [https://www.semantic-mediawiki.org/wiki/Help:Container Datenverbund], mit dem zusätzliche Informationen, bspw. Quellenangaben, zu einer Attribut-Datenwert-Zuweisung (Annotation) gespeichert werden können.", + "smw-datavalue-reference-invalid-fields-definition": "Der Datentyp [[Special:Types/Reference|Referenzierung]] muss aus einer Folge von Attributen bestehen, die das Spezialattribut [https://www.semantic-mediawiki.org/wiki/Help:Spezialattribut_Hat_Komponenten „Hat Komponenten“] verwenden.", + "smw-parser-invalid-json-format": "Der JSON-Parser hat den Fehler „$1“ ausgegeben.", + "smw-property-preferred-label-language-combination-exists": "„$1“ kann nicht als bevorzugte Bezeichnung verwendet werden, da der Sprache „$2“ bereits die Bezeichnung „$3“ zugewiesen wurde.", + "smw-clipboard-copy-link": "Link in die Zwischenablage kopieren", + "smw-property-userdefined-fixedtable": "„$1“ wurde als [https://www.semantic-mediawiki.org/wiki/Fixed_properties fest definiertes Attribut] erstellt und konfiguriert. Jede Änderung des zugewiesenen [https://www.semantic-mediawiki.org/wiki/Type_declaration Datentyps] erfordert zwingend entweder die Ausführung des Wartungsskripts \"setupStore.php\" oder die Durchführung der Spezialaufgabe [[Special:SemanticMediaWiki|„Daten neu erstellen“]].", + "smw-data-lookup": "Rufe Daten ab…", + "smw-data-lookup-with-wait": "Es kann einen Moment dauern, bis die Abfrage ausgeführt wurde.", + "smw-no-data-available": "Es sind keine Daten verfügbar.", + "smw-property-req-violation-missing-fields": "Dem Attribut „$1“ fehlt eine erforderliche Deklaration mit Spezialattribut [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields „Hat Komponenten“] für Datentyp „$2“.", + "smw-property-req-violation-multiple-fields": "Das Attribut „$1“ enthält mehrere und somit konkurrierende Deklarationen mit dem Spezialattribut [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields „Hat Komponenten“]. Es ist für den Datentyp „$2“ nur eine Deklaration zulässig.", + "smw-property-req-violation-missing-formatter-uri": "Die Annotation des Attributs „$1“ ist aufgrund des zugewiesenen Datentyps unvollständig. Das Spezialattribut „Formatierungsanweisung zur externen URI“ mit einem entsprechenden Wert fehlt.", + "smw-property-req-violation-predefined-type": "„$1“ ist ein softwareseitig fest definiertes Attribut. Ihm wurde der Datentyp „$2“ zugewiesen, der nicht mit dem Standardtyp dieses Attributs vereinbar ist.", + "smw-property-req-violation-import-type": "Es wurde ein Datentyp zugeordnet, der mit dem vom importierten Vokabular „$1“ für dieses Attribut definierten Datentyp nicht kompatibel ist. Es ist allgemein nicht erforderlich, einen Datentyp festzulegen, da diese Information aus der importierten Definition des Attributs abgerufen wird.", + "smw-property-req-violation-change-propagation-locked-error": "Das Attribut „$1“ wurde solcherart verändert, dass die zugeordneten Datenobjekte mit einem [https://www.semantic-mediawiki.org/wiki/Change_propagation Datenänderungsvorgang] neu verarbeitet werden müssen. Daher ist die Seite dieses Attributs bis zu dem Zeitpunkt für Bearbeitungen gesperrt, an dem dieser Vorgang abgeschlossen wurde. Hierdurch werden ggf. mögliche Funktionsstörungen oder widersprüchliche Datenanzeigen verhindert. Da der Datenänderungsvorgang abhängig vom Umfang sowie der Abarbeitungsfrequenz der [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue Auftragswarteschlange] ist, kann es einen Moment dauern, bis die Seite freigegeben wird und wieder bearbeitet werden kann.", + "smw-property-req-violation-change-propagation-locked-warning": "Das Attribut „$1“ wurde solcherart verändert, dass die zugeordneten Datenobjekte mit einem [https://www.semantic-mediawiki.org/wiki/Change_propagation Datenänderungsvorgang] neu verarbeitet werden müssen. Daher sollte die Seite dieses Attributs nicht bearbeitet werden, bis dieser Vorgang abgeschlossen wurde. Hierdurch werden ggf. mögliche Funktionsstörungen oder widersprüchliche Datenanzeigen verhindert. Da der Datenänderungsvorgang abhängig vom Umfang sowie der Abarbeitungsfrequenz der [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue Auftragswarteschlange] ist, kann es einen Moment dauern, bis die Seite wieder bearbeitet werden kann.", + "smw-property-req-violation-change-propagation-pending": "Es {{PLURAL:$1|muss|müssen}} noch ungefähr [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|ein Datenänderungsauftrag|$1 Datenänderungsaufträge}}] durchgeführt werden. Daher sollte die Seite dieses Attributs so lange nicht bearbeitet werden, bis kein Datenänderungsauftrag mehr vorhanden ist. Hierdurch werden ggf. mögliche Funktionsstörungen oder widersprüchliche Datenanzeigen verhindert.", + "smw-property-req-violation-missing-maps-extension": "Semantic MediaWiki konnte nicht erkennen, ob die Softwareerweiterung [https://www.semantic-mediawiki.org/wiki/Extension:Maps „Maps“] installiert ist. Da diese eine Voraussetzung für das Funktionieren von Attributen mit diesem Datentyp ist, ist dieses Attribut in seiner Nutzbarkeit eingeschränkt.", + "smw-property-req-violation-type": "Das Attribut enthält konkurrierende Datentypangaben, die zu ungültigen Annotationen von Datenwerten führen könnten. Es muss sichergestellt werden, dass dem Attribut nur ein zutreffender Datentyp zugewiesen wird.", + "smw-property-req-error-list": "Zu diesem Attribut existieren die folgenden Fehlermeldungen oder Warnhinweise:", + "smw-property-req-violation-parent-type": "Das Attribut „$1“ und das zugehörige übergeordnete Attribut „$2“ haben unterschiedliche Datentypen.", + "smw-property-req-violation-forced-removal-annotated-type": "Die Funktion der [https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance verpflichtenden Vererbung des übergeordneten Datentyps] ist aktiv. Der festgelegte Datentyp des Attributs „$1“ stimmt nicht nicht mit dem Datentyp „$2“ des übergeordneten Attributs überein. Er wurde daher softwareintern so angepasst, dass beide Datentypen übereinstimmen. Es wird empfohlen, den Datentyp des Attributs korrekt festzulegen, damit diese Fehlermeldung nicht mehr angezeigt wird und der Datentype nicht mehr softwareintern angepasst werden muss.", + "smw-change-propagation-protection": "Diese Seite ist gesperrt, um unbeabsichtigte Änderungen an Daten zu verhindern, während ein [https://www.semantic-mediawiki.org/wiki/Change_propagation Datenänderungsvorgang] ausgeführt wird. Da der Datenänderungsvorgang abhängig vom Umfang sowie der Abarbeitungsfrequenz der [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue Auftragswarteschlange] ist, kann es einen Moment dauern, bis die Seite freigegeben wird und wieder bearbeitet werden kann.", + "smw-category-change-propagation-locked-error": "Die Kategorie „$1“ wurde solcherart verändert, dass die zugeordneten Datenobjekte mit einem [https://www.semantic-mediawiki.org/wiki/Change_propagation Datenänderungsvorgang] neu verarbeitet werden müssen. Daher ist die Seite der Kategorie bis zu dem Zeitpunkt für Bearbeitungen gesperrt, an dem dieser Vorgang abgeschlossen wurde. Hierdurch werden ggf. mögliche Funktionsstörungen oder widersprüchliche Datenanzeigen verhindert. Da der Datenänderungsvorgang abhängig vom Umfang sowie der Abarbeitungsfrequenz der [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue Auftragswarteschlange] ist, kann es einen Moment dauern, bis die Seite freigegeben wird und wieder bearbeitet werden kann.", + "smw-category-change-propagation-locked-warning": "Die Kategorie „$1“ wurde solcherart verändert, dass die zugeordneten Datenobjekte mit einem [https://www.semantic-mediawiki.org/wiki/Change_propagation Datenänderungsvorgang] neu verarbeitet werden müssen. Daher sollte die Seite dieser Kategorie nicht bearbeitet werden, bis dieser Vorgang abgeschlossen wurde. Hierdurch werden ggf. mögliche Funktionsstörungen oder widersprüchliche Datenanzeigen verhindert. Da der Datenänderungsvorgang abhängig vom Umfang sowie der Abarbeitungsfrequenz der [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue Auftragswarteschlange] ist, kann es einen Moment dauern, bis die Seite wieder bearbeitet werden kann.", + "smw-category-change-propagation-pending": "Es {{PLURAL:$1|muss|müssen}} noch ungefähr [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|ein Datenänderungsauftrag|$1 Datenänderungsaufträge}}] durchgeführt werden. Daher sollte die Seite dieser Kategorie so lange nicht bearbeitet werden, bis kein Datenänderungsauftrag mehr vorhanden ist. Hierdurch werden ggf. mögliche Funktionsstörungen oder widersprüchliche Datenanzeigen verhindert.", + "smw-category-invalid-value-assignment": "„$1“ wurde nicht als gültige Kategorie oder als Annotation eines gültigen Wertes erkannt.", + "protect-level-smw-pageedit": "Nur Benutzern mit der Berechtigung zum Bearbeiten von Seiten erlauben (Semantic MediaWiki)", + "smw-create-protection": "Das Erstellen des Attributs „$1“ ist auf Benutzer der hierfür vorgesehenen [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups Benutzergruppe] oder mit der hierfür benötigten Berechtigung „$2“ beschränkt, während der [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode Berechtigungsmodus] aktiviert ist.", + "smw-create-protection-exists": "Das Ändern des Attributs „$1“ ist auf Benutzer der hierfür vorgesehenen [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups Benutzergruppe] oder mit der hierfür benötigten Berechtigung „$2“ beschränkt, während der [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode Berechtigungsmodus] aktiviert ist.", + "smw-edit-protection": "Diese Seite ist [[Property:Is edit protected|bearbeitungsgeschützt]], um unbeabsichtigte Veränderungen an Inhalten und Daten zu verhindern. Diese kann nur von Benutzern der hierfür vorgesehenen [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups Benutzergruppe] oder mit der hierfür benötigten Berechtigung („$1“) bearbeitet werden.", + "smw-edit-protection-disabled": "Der Bearbeitungsschutz mit Hilfe einer Annotation wurde deaktiviert. Daher kann das Spezialattribut „$1“ nicht verwendet werden, um diese Seite vor unerwünschten Bearbeitungen zu schützen.", + "smw-edit-protection-auto-update": "Semantic MediaWiki hat den Schutzstatus der Seite übereinstimmend mit dem Wert des Attributs „Ist bearbeitungsgeschützt“ aktualisiert.", + "smw-edit-protection-enabled": "Diese Seite wurde mit Semantic MediaWiki vor Bearbeitungen geschützt.", + "smw-patternedit-protection": "Diese Seite ist bearbeitungsgeschützt, um unbeabsichtigte Veränderungen an Inhalten zu verhindern. Diese kann deshalb nur von Benutzern mit der hierfür notwendigen Berechtigung „smw-patternedit“ bearbeitet werden.", + "smw-property-predefined-edip": "„$1“ ist ein softwareseitig fest definiertes Attribut, das den Status des Bearbeitungsschutzes einer Seite speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-edip": "Jeder Benutzer darf dieses Attribut zu einer Seite hinzufügen und so den Bearbeitungsschutz festlegen. Indes dürfen hernach nur Benutzer mit einer entsprechenden Berechtigung die auf diese Weise geschützte Seite bearbeiten und den Bearbeitungsschutz ggf. aufheben.", + "smw-query-reference-link-label": "Abfragereferenz", + "smw-format-datatable-emptytable": "Es sind keine Ergebnisse vorhanden.", + "smw-format-datatable-info": "Es werden die Ergebnisse _START_ bis _END_ von insgesamt _TOTAL_ Ergebnissen angezeigt.", + "smw-format-datatable-infoempty": "Es werden keine Ergebnisse angezeigt.", + "smw-format-datatable-infofiltered": "(aus insgesamt _MAX_ Ergebnissen gefiltert)", + "smw-format-datatable-infothousands": ".", + "smw-format-datatable-lengthmenu": "Zeige _MENU_ Einträge", + "smw-format-datatable-loadingrecords": "Lade …", + "smw-format-datatable-processing": "Verarbeite …", + "smw-format-datatable-search": "Suche:", + "smw-format-datatable-zerorecords": "Es wurden keine übereinstimmenden Ergebnisse gefunden.", + "smw-format-datatable-first": "Erste", + "smw-format-datatable-last": "Letzte", + "smw-format-datatable-next": "Nächste", + "smw-format-datatable-previous": "Vorherige", + "smw-format-datatable-sortascending": ": aktivieren, um die Spalte aufsteigend zu sortieren", + "smw-format-datatable-sortdescending": ": aktivieren, um die Spalte absteigend zu sortieren", + "smw-format-datatable-toolbar-export": "Exportieren", + "smw-format-list-other-fields-open": " (", + "smw-category-invalid-redirect-target": "Die Kategorie „$1“ enthält ein Weiterleitungsziel, das sich nicht im Namensraum Kategorie befindet und daher ungültig ist.", + "smw-parser-function-expensive-execution-limit": "Die Parserfunktion hat die Grenze für aufwendige Ausführungen erreicht. Siehe hierzu die Seite zum [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit Konfigurationsparameter $smwgQExpensiveExecutionLimit].", + "smw-postproc-queryref": "Die Software Semantic MediaWiki wird diese Seite neu laden und so eine Aktualisierung der Daten bewirken.", + "apihelp-smwinfo-summary": "API-Modul zum Abrufen statistischer Daten und weiterer Metainformationen bezüglich der Nutzung von Semantic MediaWiki.", + "apihelp-ask-summary": "API-Modul zum Abfragen eines Wikis mit der Abfragesprache von Semantic MediaWiki.", + "apihelp-askargs-summary": "API-Modul zum Abfragen eines Wikis mit der Abfragesprache von Semantic MediaWiki als Liste von Bedingungen, Ausgabeanweisungen und Parametern.", + "apihelp-browsebyproperty-summary": "API-Modul zum Abrufen von Informationen zu einem Attribut oder einer Liste von Attributen.", + "apihelp-browsebysubject-summary": "API-Modul zum Abrufen von Informationen zu einem Objekt (Seite oder Unterobjekt).", + "apihelp-smwtask-summary": "API-Modul zum Ausführen Semantic MediaWiki betreffender Aufgaben, das nur von der Software selbst und nicht von Außen genutzt wird.", + "apihelp-smwbrowse-summary": "API-Modul zur Unterstützung von Aktivitäten beim Browsen für unterschiedliche Objekttypen in Semantic MediaWiki.", + "apihelp-ask-parameter-api-version": "Ausgabeformat:\n;2:Rückwärtskompatibles Format, das {} für Ergebnislisten verwendet.\n;3:Experimentelles Format, das [] für Ergebnislisten verwendet.", + "apihelp-smwtask-param-task": "Definiert den Aufgabentyp", + "apihelp-smwtask-param-params": "Im JSON-Format codierte Parameter, die mit den Anforderungen des ausgewählten Aufgabentyps übereinstimmen", + "smw-apihelp-smwtask-example-update": "Beispiel zur Ausführung einer Aktualisierungsaufgabe bezüglich eines bestimmten Datensubjekts:", + "smw-api-invalid-parameters": "Ungültige Parameter: „$1“", + "smw-parser-recursion-level-exceeded": "Die Obergrenze von $1 Rekursionen wurde während des Parsens überschritten. Es wird empfohlen, die Struktur der Vorlage zu überprüfen oder ggf. den Konfigurationsparameter $maxRecursionDepth anzupassen.", + "smw-property-page-list-count": "Unterhalb {{PLURAL:$1|wird eine Seite|werden $1 Seiten}} angezeigt, auf denen für dieses Attribut ein Datenwert gespeichert wurde.", + "smw-property-page-list-search-count": "Es {{PLURAL:$1|wird eine Seite|werden $1 Seiten}} angezeigt, auf denen für dieses Attribut der Datenwert „$2“ gespeichert wurde.", + "smw-property-page-filter-note": "Der [https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter Filter für die Suche nach Datenwerten zu Attributen] unterstützt die Nutzung von [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions Abfrageausdrücken] wie bpsw. ~ oder !. Je nach genutzter [https://www.semantic-mediawiki.org/wiki/Query_engine Abfragedatenbank] werden auch die groß- und kleinschreibungsunabhängige Suche oder auch folgende weitere Abfrageausdrücke unterstützt:\n\n* in:: Das Ergebnis soll den angegebenen Begriff enthalten, wie bspw. in:Foo\n\n* not:: Das Ergebnis soll den angegebenen Begriff nicht enthalten, wie bpsw. not:Bar", + "smw-property-reserved-category": "Kategorie", + "smw-category": "Kategorie", + "smw-datavalue-uri-invalid-scheme": "„$1“ ist nicht als zulässiges URI-Schema gelistet.", + "smw-datavalue-uri-invalid-authority-path-component": "„$1“ enthält mit „$2“ eine ungültige Zuständigkeits- oder Pfadkomponente.", + "smw-browse-property-group-title": "Attributgruppe", + "smw-browse-property-group-label": "Attributgruppenbezeichnung", + "smw-browse-property-group-description": "Attributgruppenbeschreibung", + "smw-property-predefined-ppgr": "„$1“ ist ein softwareseitig fest definiertes Attribut, das Seiten (hauptsächlich Kategorien) bestimmt, die zum Gruppieren von Attributen verwendet werden. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-filter": "Filter", + "smw-section-expand": "Abschnitt ausklappen", + "smw-section-collapse": "Abschnitt einklappen", + "smw-ask-format-help-link": "Ausgabeformat [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Hilfe", + "smw-cheat-sheet": "Hilfestellung", + "smw-personal-jobqueue-watchlist": "Beobachtungsliste zur Auftragswarteschlange", + "smw-personal-jobqueue-watchlist-explain": "Bei den Zahlen handelt es sich um ungefähre Angaben zu den noch offenen Einträgen in der Auftragswarteschlange, die noch ausgeführt werden müssen.", + "smw-property-predefined-label-skey": "Sortierschlüssel", + "smw-processing": "Verarbeite Daten…", + "smw-loading": "Wird geladen…", + "smw-fetching": "Abrufen…", + "smw-preparing": "Vorbereiten…", + "smw-expand": "Ausklappen", + "smw-collapse": "Einklappen", + "smw-copy": "Kopieren", + "smw-copy-clipboard-title": "Kopiert den Inhalt in die Zwischenablage", + "smw-jsonview-expand-title": "Klappt die JSON-Ansicht aus", + "smw-jsonview-collapse-title": "Klappt die JSON-Ansicht ein", + "smw-jsonview-search-label": "Suche:", + "smw-redirect-target-unresolvable": "Das Weiterleitungsziel ist nicht auflösbar. Grund: „$1“", + "smw-types-title": "Typ: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "Das Ändern des Inhaltsmodells der [https://www.semantic-mediawiki.org/wiki/Help:Schema Seite zu einem Schema] ist nicht möglich.", + "smw-schema-namespace-edit-protection": "Diese Seite ist bearbeitungsgeschützt, um unbeabsichtigte Veränderungen an Inhalten zu verhindern. Diese kann deshalb nur von Benutzern mit der hierfür notwendigen Berechtigung „smw-schemaedit“ bearbeitet werden.", + "smw-schema-namespace-edit-protection-by-import-performer": "Diese Seite wurde mit einem [https://www.semantic-mediawiki.org/wiki/Import_performer Importwerkzeug] importiert. Der Inhalt dieser Seite kann daher nur von den hier angegebenen Benutzern verändert werden.", + "smw-schema-error-title": "{{PLURAL:$1|Validierungsfehler}}", + "smw-schema-error-schema": "Die Spezifikation '''$1''' und dessen Validierung für das aktuelle Schema hat die folgenden Widersprüche ergeben:", + "smw-schema-error-miscellaneous": "Sonstiger Fehler ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "Der JSON-Validator „$1“ ist nicht aufrufbar oder wurde nicht installiert. Dies ist der Grund, warum die Datei „$2“ nicht verarbeitet werden kann. Dies verhindert, daß die aktuelle Seite verändert oder gespeichert werden kann.", + "smw-schema-error-validation-file-inaccessible": "Auf die Validierungsdatei „$1“ kann nicht zugegriffen werden.", + "smw-schema-error-violation": "[„$1“, „$2“]", + "smw-schema-error-type-missing": "Dem Inhalt fehlt die Angabe eines Typs, um im [https://www.semantic-mediawiki.org/wiki/Help:Schema Namensraum für Schemata] erkannt und verwendet werden zu können.", + "smw-schema-error-type-unknown": "Der Typ „$1“ ist unbekannt und kann daher nicht im [https://www.semantic-mediawiki.org/wiki/Help:Schema Namensraum für Schemata] verwendet werden.", + "smw-schema-error-json": "JSON-Fehler: „$1“", + "smw-schema-error-input": "Das System der Eingabevalidierung hat Probleme festgestellt. Diese müssen behoben werden, bevor das Schema gespeichert werden kann. Die [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling Hilfeseite über die Handhabung von Fehlern bei der Erstellung von Schemata] bietet Hinweise und Ratschläge zur Behebung der Probleme bei deren Erfassung.", + "smw-schema-error-input-schema": "Entsprechend dem Validierungsschema '''$1''' wurden Inkonsistenzen festgestellt. Diese müssen behoben werden, bevor das Schema gespeichert werden kann. Die [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling Hilfeseite über die Handhabung von Fehlern bei der Erstellung von Schemata] bietet Hinweise und Ratschläge zur Behebung der Probleme bei deren Erfassung.", + "smw-schema-error-title-prefix": "Dieser Schematyp erfordert, daß der Titel des Schemas das Präfix „$1“ nutzt.", + "smw-schema-validation-error": "Der Datentype „$1“ ist unbekannt und kann nicht für Inhalte im [https://www.semantic-mediawiki.org/wiki/Help:Schema Namensraum „smw/schema“] verwendet werden.", + "smw-schema-validation-schema-title": "JSON-Schema", + "smw-schema-summary-title": "Zusammenfassung", + "smw-schema-title": "Schema", + "smw-schema-usage": "Annotationen", + "smw-schema-type": "Schematyp", + "smw-schema-type-description": "Beschreibung des Schematyps", + "smw-schema-description": "Beschreibung des Schemas", + "smw-schema-description-link-format-schema": "Dieser Schematyp ermöglicht die Definition kontextsensitiver Links, entsprechend der Festlegung mit dem Attribut [[Property:Formatter schema|Formatierungsregel]].", + "smw-schema-description-search-form-schema": "Dieser Schematyp ermöglicht die Definition von Eingabeformularen und Inhaltsausprägungen für das [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch erweiterte Suchprofil]. Es enthält Festlegungen zur Erstellung von Eingabefeldern, zu Standardnamensräumen oder zu Suchausdrücken für Suchanfragen.", + "smw-schema-description-property-profile-schema": "Dieser Schematyp ermöglicht die Definition von Profilen, die Merkmale für Attribute und deren Datenwertzuordnungen festlegen.", + "smw-schema-description-facetedsearch-profile-schema": "Dieser Schematyp unterstützt die Definition von Profilen, die als Teil der Umgebung für die [[Special:FacetedSearch|Facettensuche]] verwendet werden.", + "smw-schema-description-property-group-schema": "Dieser Schematyp ermöglicht die Definition von [https://www.semantic-mediawiki.org/wiki/Help:Property_group Attributgruppen], mit denen die Anzeige der [https://www.semantic-mediawiki.org/wiki/Help:Special:Browse Spezialseite zum Durchsuchen von Annotationen] strukturiert und somit übersichtlicher gestaltet werden kann.", + "smw-schema-description-property-constraint-schema": "Dieser Schematyp ermöglicht die Definition von Einschränkungsregeln für Attribute sowie ihnen zugewiesenen Datenwerten.", + "smw-schema-description-class-constraint-schema": "Dieser Schematyp ermöglicht die Definition von Einschränkungsregeln für Objekttypen (Klassen, d.h. Kategorien).", + "smw-schema-tag": "{{PLURAL:$1|Schemakennzeichen}}", + "smw-property-predefined-constraint-schema": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die Definition des Schemas zur Einschränkung zulässiger Datenwerte speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-schema-desc": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die Schemabeschreibung speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-schema-def": "„$1“ ist ein softwareseitig fest definiertes Attribut, das die Definition des Schemas speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-schema-tag": "„$1“ ist ein softwareseitig fest definiertes Attribut, das das Kennzeichen des Schemas speichert. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-schema-tag": "Eine Bezeichnung, die Schemata ähnlicher Inhalte oder Ausprägungen kennzeichnet.", + "smw-property-predefined-schema-type": "„$1“ ist ein softwareseitig fest definiertes Attribut, das einen Schematyp beschreibt, mit dem Gruppen von Schemata unterschieden werden können. Es wird von [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] zur Verfügung gestellt.", + "smw-property-predefined-long-schema-type": "Jeder [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type Schematyp] bietet eine eigene Struktur von Syntaxelementen und zugehörigen Anwendungsregeln. Er kann mit einem [https://www.semantic-mediawiki.org/wiki/Help:Schema#validation Validierungmodell] beschrieben werden.", + "smw-ask-title-keyword-type": "Stichwortsuche", + "smw-ask-message-keyword-type": "Diese Suche entspricht der Abfragebedingung $1.", + "smw-remote-source-unavailable": "Es konnte keine Verbindung zur externen Datenquelle „$1“ hergestellt werden.", + "smw-remote-source-disabled": "Die externe Datenquelle „$1“ gestattet keine Fernabfrage.", + "smw-remote-source-unmatched-id": "Die externe Datenquelle „$1“ nutzt keine Version von Semantic MediaWiki, die eine Fernabfrage unterstützt.", + "smw-remote-request-note": "Das Ergebnis wird von der externen Datenquelle „$1“ abgefragt. Es ist wahrscheinlich, dass der erstellte Inhalt Informationen enthält, die nicht innerhalb des aktuellen Wikis verfügbar sind.", + "smw-remote-request-note-cached": "Das aus der externen Datenquelle „$1“ abgefragte Ergebnis ist '''gecacht'''. Es ist wahrscheinlich, dass der erstellte Inhalt Informationen enthält, die nicht innerhalb des aktuellen Wikis verfügbar sind.", + "smw-parameter-missing": "Der Parameter „$1“ fehlt.", + "smw-property-tab-usage": "Annotationen", + "smw-property-tab-profile-schema": "Profilschema", + "smw-property-tab-redirects": "Synonyme", + "smw-property-tab-subproperties": "Unterattribute", + "smw-property-tab-errors": "Fehlerhafte Annotationen", + "smw-property-tab-constraint-schema": "Dateneinschränkungsschema", + "smw-property-tab-constraint-schema-title": "Erstelltes Dateneinschränkungsschema", + "smw-property-tab-specification": "… mehr", + "smw-concept-tab-list": "Liste", + "smw-concept-tab-errors": "Fehler", + "smw-ask-tab-result": "Ergebnis", + "smw-ask-tab-extra": "Extra", + "smw-ask-tab-debug": "Fehleranalyse", + "smw-ask-tab-code": "Code", + "smw-install-incomplete-tasks-title": "Unvollständig erledigte administrative Aufgaben", + "smw-install-incomplete-intro": "Es existieren $2 unvollständige oder [[Special:PendingTaskList|ausstehende]] {{PLURAL:$2|Wartungsaufgabe|Wartungsaufgaben}} zur {{PLURAL:$1|Installation|Aktualisierung}} von [https://www.semantic-mediawiki.org Semantic MediaWiki]. Ein Systemadministrator oder Benutzer mit entsprechenden Berechtigungen kann diese ausführen. Zum Verhindern von Dateninkonsistenzen sollte dies erfolgen, bevor dem Wiki neue Daten hinzugefügt werden.", + "smw-install-incomplete-intro-note": "Diese Nachricht wird nicht mehr angezeigt werden, sobald all notwendigen Aufgaben ausgeführt wurden.", + "smw-pendingtasks-intro-empty": "Im Zusammenhang mit Semantic MediaWiki wurden keine Wartungsaufgaben als unvollständig oder ausstehend eingestuft.", + "smw-pendingtasks-intro": "Diese Seite zeigt Informationen zu Wartungsaufgaben an, die im Zusammenhang mit Semantic MediaWiki entweder aus ausstehend oder unvollständig eingestuft wurden.", + "smw-pendingtasks-setup-no-tasks-intro": "Die Installation oder Aktualisierung wurde beendet. Aktuell sind keine ausstehenden Wartungsaufgaben vorhanden.", + "smw-pendingtasks-tab-setup": "Installation", + "smw-updateentitycollation-incomplete": "Der Konfigurationsparameter [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] wurde vor kurzem angepasst. In der Folge erfordert dies das Ausführen des Wartungsskripts [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php „updateEntityCollation.php“], damit die vorhanden Datensätze aktualisiert werden und somit den korrekten Wert zum Sortieren erhalten.", + "smw-updateentitycountmap-incomplete": "Das Datentabellenfeld smw_countmap wurde mit einer neuen Version von Semantic MediaWiki eingeführt. In der Folge erfordert dies das Ausführen des Wartungsskripts [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php „updateEntityCountMap.php“], damit die vorhanden Datensätze aktualisiert und somit weiterhin korrekt genutzt werden können.", + "smw-populatehashfield-incomplete": "Das Befüllen des Datentabellenfelds smw_hash wurde während der Installation oder Aktualisierung von Semantic MediaWiki übersprungen. Das Wartungsskript [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php „populateHashField.php“] muss daher ausgeführt werden.", + "smw-install-incomplete-populate-hash-field": "Das Befüllen des Datentabellenfelds smw_hash wurde während der Installation oder Aktualisierung von Semantic MediaWiki abgebrochen. Das Wartungsskript [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php „populateHashField.php“] muss daher ausgeführt werden.", + "smw-install-incomplete-elasticstore-indexrebuild": "Elasticsearch wurde als [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore Datenbank] festgelegt. In der Folge erfordert dies das Ausführen des Wartungsskripts [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php „rebuildElasticIndex.php“], damit Daten im Wiki genutzt werden können.", + "smw-elastic-rebuildelasticindex-run-incomplete": "Elasticsearch wurde als [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore Datenbank] festgelegt. In der Folge erfordert dies das Ausführen des Wartungsskripts [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php „rebuildElasticIndex.php“], damit Daten im Wiki genutzt werden können.", + "smw-pendingtasks-setup-intro": "Während der {{PLURAL:$1|Installation|Aktualisierung}} von Semantic MediaWiki wurden die folgenden Wartungsaufgaben [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade nicht vollständig ausgeführt]. Ein Systemadministrator oder ein Nutzer mit entsprechenden Berechtigungen sollte diese Wartungsaufgaben nun ausführen, damit die Nutzer des Wikis weiterhin neue Inhalte erstellen und bestehende Inhalte verändern können.", + "smw-pendingtasks-setup-tasks": "Wartungsaufgaben", + "smw-filter-count": "Anzahl gefilterter Annotationen", + "smw-es-replication-check": "Datenreplikationsprüfung (Elasticsearch)", + "smw-es-replication-error": "Datenreplikationsproblem", + "smw-es-replication-file-ingest-error": "Dateiindexierungsproblem", + "smw-es-replication-maintenance-mode": "Elasticsearch Wartungsmodus", + "smw-es-replication-error-missing-id": "Während der Überwachung der Datenreplikation wurde festgestellt, dass die Seite „$1“ (Kennung: $2) nicht in der Elasticsearch-Datenbank enthalten ist.", + "smw-es-replication-error-divergent-date": "Während der Überwachung der Datenreplikation wurde festgestellt, dass die Seite „$1“ (Kennung: $2) in der Elasticsearch-Datenbank ein abweichendes Änderungsdatum aufweist.", + "smw-es-replication-error-divergent-date-short": "Die folgenden Datumsinformationen wurden für den Vergleich verwendet:", + "smw-es-replication-error-divergent-date-detail": "Änderungsdatum:\n* Elasticsearch: $1 \n* Datenbank: $2", + "smw-es-replication-error-divergent-revision": "Mit Hilfe der Replikationsüberwachung wurde festgestellt, dass die zugehörige Version der Seite $1 (Kennung: $2) eine Abweichung aufweist.", + "smw-es-replication-error-divergent-revision-short": "Die folgenden verbundenen Revisionen wurden für den Vergleich verwendet:", + "smw-es-replication-error-divergent-revision-detail": "Seitenversion:\n* Elasticsearch: $1 \n* Datenbank: $2", + "smw-es-replication-error-maintenance-mode": "Die Replikation von Elasticsearch ist derzeit eingeschränkt, da diese im [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode Wartungsmodus] läuft. Änderungen an Datenobjekten und Seiten sind daher nicht sofort sichtbar. Zudem könnten Abfragen veraltete Informationen ausgeben.", + "smw-es-replication-error-no-connection": "Die Replikationsüberwachung kann keine Prüfungen durchführen, da keine Verbindung mit der Elasticsearch-Datenbank hergestellt werden kann.", + "smw-es-replication-error-bad-request-exception": "Der Verbindungshandler für Elasticsearch hat einen Fehler ausgegeben (HTTP-Status 400: „Fehlerhafte Anfrage“). Dies deutet auf ein Weitergabeproblem während der Datenreplikation sowie bei Suchanfragen hin.", + "smw-es-replication-error-other-exception": "Der Elasticserach-Handler hat den folgenden Fehler ausgegeben: „$1“.", + "smw-es-replication-error-suggestions": "Es wird empfohlen, die Seite zu bearbeiten oder deren Cache zu leeren, um die Unstimmigkeit zu beseitigen. Sofern das Problem weiterhin besteht, ist der Elasticsearch-Cluster selbst (Datenzuteilung, Fehlermeldungen, Speicherplatz usw.) zu prüfen.", + "smw-es-replication-error-suggestions-maintenance-mode": "Der Systemadministrator des Wikis muß kontaktiert werden, damit geprüft wird, ob derzeit entweder eine [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild Neuerstellung des Index] ausgeführt wird oder der Indexierungsintervall (refresh_interval) ggf. nicht mit dem benötigten Standardwert festgelegt wurde.", + "smw-es-replication-error-suggestions-no-connection": "Der Systemadministrator des Wikis muß kontaktiert werden, damit das Problem der unterbrochenen Verbindung zur Elasticsearch-Datenbank behoben werden kann.", + "smw-es-replication-error-suggestions-exception": "Die Logbücher von Elasticsearch müssen eingesehen werden, um Informationen zu dessen Status, dessen Indizes und möglichen Problemen wie einer Fehlkonfiguration zu erhalten.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "Mit Hilfe der Replikationsüberwachung wurde festgestellt, dass der Seite „$1“ die Annotation des [[Property:File attachment|Dateianhangs]] fehlt. Mit dieser Annotation wird angezeigt, dass die Dateiindexierung noch nicht gestartet wurde oder noch nicht beendet ist.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "Es muss sichergestellt sein, dass der Auftrag zur [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion Dateiindexierung] erzeugt und ausgeführt wurde, bevor Annotation und Dateiindex zur Verfügung gestellt werden.", + "smw-report": "Bericht", + "smw-legend": "Legende", + "smw-datavalue-constraint-schema-category-invalid-type": "Das annotierte Schema „$1“ kann nicht für Kategorien genutzt werden. Es muss der Schematyp „$2“ genutzt werden.", + "smw-datavalue-constraint-schema-property-invalid-type": "Das annotierte Schema „$1“ kann nicht für Kategorien genutzt werden. Es muss der Schematyp „$2“ genutzt werden.", + "smw-entity-examiner-check": "{{PLURAL:$1|Eine Datenprüfung wird|Datenprüfungen werden}} im Hintergrund ausgeführt.", + "smw-entity-examiner-indicator": "Problemanzeige zu Daten", + "smw-entity-examiner-deferred-check-awaiting-response": "Die Datenprüfung zu „$1“ warten auf eine Antwort von der Datenbank.", + "smw-entity-examiner-deferred-elastic-replication": "Elasticsearch", + "smw-entity-examiner-deferred-constraint-error": "Einschränkung", + "smw-entity-examiner-associated-revision-mismatch": "Version", + "smw-entity-examiner-deferred-fake": "Falschanzeige", + "smw-entity-examiner-indicator-suggestions": "Im Zusammenhang mit der Datenprüfung {{PLURAL:$1|wurde das folgende Problem|wurden die folgenden Probleme}} ermittelt. Es wird empfohlen {{PLURAL:$1|das Problem|die Probleme}} zu überprüfen und {{PLURAL:$1|eine Aktion|Aktionen}} zu Behebung {{PLURAL:$1|desselben|derselben}} auszuführen.", + "smw-indicator-constraint-violation": "{{PLURAL:$1|Einschränkung|Einschränkungen}}", + "smw-indicator-revision-mismatch": "Revision", + "smw-indicator-revision-mismatch-error": "Der [https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner Seitenversionsprüfung] hat beim Vergleich eine Abweichung der Seitenversionen zwischen den Datenbanken von MediaWiki und Semantic MediaWiki festgestellt.", + "smw-indicator-revision-mismatch-comment": "Eine Abweichung deutet normalerweise darauf hin, daß eine Softwareaufgabe zur Aktualisierung der Seitenversion, in der Datenbank von Semantic MediaWiki, unterbrochen wurde. Daher sollten die entsprechenden Logdateien des Servers auf Informationen zu möglichen Fehlern geprüft werden.", + "smw-facetedsearch-intro-text": "Die [https://www.semantic-mediawiki.org/wiki/Faceted_search Facettensuche] von Semantic MediaWiki bietet Benutzern eine einfache Schnittstelle, um Abfrageergebnisse aus einer Bedingung mit Hilfe von Facettenansichten, die aus abhängigen Eigenschaften und Kategorien erstellt werden, schnell einzugrenzen.", + "smw-facetedsearch-intro-tips": "* Verwende category:?, property:? oder concept:?, um verfügbare Kategorien, Eigenschaften oder Konzepte zu finden und ein Bedingungssystem zu erstellen\n* Verwende die #ask-Syntax, um eine Bedingung zu beschreiben (z. B. [[Category:Foo]])\n* Verwende \"OR\", \"AND\" oder andere Abfragen-Ausdrücke, um komplexe Bedingungen zu erstellen\n* Ausdrücke wie in: oder phrase: können für die Volltextsuche oder unstrukturierte Suchen verwendet werden, falls das ausgewählte [https://www.semantic-mediawiki.org/wiki/Query_engine Abfragen-System] solche Ausdrücke unterstützt", + "smw-facetedsearch-profile-label-default": "Standardprofil", + "smw-facetedsearch-intro-tab-explore": "Entdecken", + "smw-facetedsearch-intro-tab-search": "Suche", + "smw-facetedsearch-explore-intro": "Wähle eine Sammlung aus und beginne zu stöbern.", + "smw-facetedsearch-profile-options": "Profiloptionen", + "smw-facetedsearch-size-options": "Seitenoptionen", + "smw-facetedsearch-order-options": "Optionen anordnen", + "smw-facetedsearch-format-options": "Anzeigeoptionen", + "smw-facetedsearch-format-table": "Tabelle", + "smw-facetedsearch-input-filter-placeholder": "Filter…", + "smw-facetedsearch-no-filters": "Keine Filter.", + "smw-facetedsearch-no-filter-range": "Kein Filterbereich.", + "smw-facetedsearch-no-output": "Für das ausgewählte Format \"$1\" war keine Ausgabe verfügbar.", + "smw-facetedsearch-clear-filters": "{{PLURAL:$1|Filter}} löschen", + "smw-search-placeholder": "Suche…", + "smw-listingcontinuesabbrev": "Fortsetzung", + "smw-showingresults": "{{PLURAL:$1|1 Ergebnis|$1 Ergebnisse}}, beginnend mit Nummer $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/din.json b/mediawiki/extensions/SemanticMediaWiki/i18n/din.json new file mode 100644 index 0000000..4a1d9df --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/din.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Dinkawiki" + ] + }, + "smw-categories": "Bekätakthuɔk", + "browse": "Cäärë wiki", + "smw-listingcontinuesabbrev": "ɣäthtueŋ" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/diq.json b/mediawiki/extensions/SemanticMediaWiki/i18n/diq.json new file mode 100644 index 0000000..f3b2f90 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/diq.json @@ -0,0 +1,192 @@ +{ + "@metadata": { + "authors": [ + "1917 Ekim Devrimi", + "Erdemaslancan", + "Gırd", + "Kumkumuk", + "Marmase", + "Mirzali", + "Nemo bis", + "Orbot707" + ] + }, + "smw-error": "Xeta", + "smw-upgrade-progress": "Averşiyayış", + "smw-upgrade-error-title": "Xeta (MediaWikiyo maneyın)", + "smw-upgrade-error-why-title": "Ez çıra na pele vênenan?", + "smw-upgrade-error-how-title": "Ez çıtewri na xeta darenan we?", + "smw_viewasrdf": "RDF feed", + "smw_finallistconjunct": ", u", + "smw-factbox-attachments": "Gaçıki", + "smw_printername_csv": "CSV Teberdayış", + "smw_printername_dsv": "DSV Teberdayış", + "smw_printername_embedded": "Zerrekê pela de ca fi", + "smw_printername_json": "JSON teberdayış", + "smw_printername_list": "Liste", + "smw_printername_ol": "Nımare kerdış", + "smw_printername_ul": "Şınas kerdış", + "smw_printername_table": "Tablo", + "smw_printername_broadtable": "Hera tablo", + "smw_printername_template": "Şablon", + "smw_printername_rdf": "RDF teberdayış", + "smw_printername_category": "Kategoriye", + "validator-type-class-SMWParamSource": "metın", + "smw-paramdesc-limit": "Maksimum neticeyo ke bıdeyo", + "smw-paramdesc-headers": "Sernamey/xısusiyeta bımotné", + "smw-paramdesc-link": "Erca gre deyne asneno", + "smw-paramdesc-export": "Weçenegê teberdayışi", + "smw-label-feed-description": "Weyiyekerdış $2 $1", + "smw_true_words": "raştay,r,eya,e", + "smw_false_words": "zuray,z,nê,n", + "smw_nofloat": "\"$1\" yew reqem niyo.", + "specialpages-group-smw_group": "MedyaWikiya Fehmkere", + "specialpages-group-smw_group-maintenance": "Niyadayoğiye", + "specialpages-group-smw_group-properties-concepts-types": "Xısusiyeti, konsepti, û babeti", + "specialpages-group-smw_group-search": "Çım cı erze û cı geyre", + "exportrdf": "Pela ahûlnê RDF", + "smw_exportrdf_submit": "Teberdayış", + "uriresolver": "URIAgozner", + "properties": "Xısusiyi", + "smw-categories": "Kategoriyi", + "smw-special-property-searchform-options": "Weçinıteki", + "smw-special-wantedproperties-filter-label": "Parzûn:", + "smw-special-wantedproperties-filter-none": "Çıniyo", + "concepts": "Konsepti", + "smw-special-concept-header": "Lista konseptan", + "unusedproperties": "Xısusiyetê ke nêguriyenê", + "wantedproperties": "Xısusiyetê ke waziyenê", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|vıraştene|vıraştene}})", + "smw_purge": "Newe ke", + "types": "Babeti", + "smw-statistics": "İstatistikê semantiki", + "smw-statistics-entities-total": "Dezgehi (pêro piya)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Pers|Persi}}", + "smw-statistics-query-inline": "[[Mılk:Persê xo esto|{PLURAL:$1|Pers|Persi}}]] (cakerde, pêro piya)", + "smw-statistics-query-format": "Format „$1“", + "ask": "Fahmyayış cı geyrayış", + "smw_ask_ascorder": "zeydıyen", + "smw_ask_descorder": "Kemeyen", + "smw-ask-order-rand": "Raştameye", + "smw_ask_submit": "Neticeyan bıvin", + "smw_ask_editquery": "Perskerdışi bıvırne", + "smw_add_sortcondition": "[şerta rêz kerdışi dek]", + "smw_ask_queryhead": "Şert", + "smw_ask_defaultformat": "hesabiyaye", + "smw-ask-delete": "Wedare", + "smw-ask-sorting": "Rêz kerdış", + "smw-ask-options": "Weçinıteki", + "smw-ask-parameters": "Parametreyi", + "smw-ask-search": "Cı geyre", + "smw-ask-debug": "Xetaya tehlili", + "smw-ask-result": "Netice", + "smw-ask-empty": "Heme cıkerdışan pak kerê", + "smw-ask-format": "Format", + "searchbyproperty": "Xısusiyeti heta cıgeyrê", + "smw_sbv_property": "Xısusiyet:", + "smw_sbv_value": "Qıymet:", + "smw_sbv_submit": "Neticeyan bıvin", + "browse": "Çım berz wiki", + "smw_browselink": "Çım berz xısusiyeta", + "smw_browse_go": "Şo", + "smw_pp_from": "Perre ra", + "smw_pp_type": "Xısusiyet", + "smw_pp_submit": "Neticeyan bıvin", + "smw-prev": "{{PLURAL:$1|$1}} verên", + "smw-next": "{{PLURAL:$1|$1}} peyên", + "smw_result_prev": "Verên", + "smw_result_next": "Bahdoyên", + "smw_result_results": "Neticeyi", + "smw_result_noresults": "Netice çıniyo.", + "smwadmin": "Texteyê hacetan (MediaWikiya Semantike)", + "smw-admin-statistics-querycache-title": "Vervirê persi", + "smw-admin-statistics-semanticdata-overview": "Serqayt", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|weçinıtek|weçinıteki}}:", + "smw-admin-deprecation-notice-section-legend": "Kıtabek", + "smw-admin-support": "Destego gêrê no", + "smw-admin-statistics": "İstatistiki", + "smw-admin-supplementary-duplookup-title": "Geyrayışo tekrarkerdeyan bımocne", + "smw-admin-supplementary-operational-table-statistics-title": "İstatistikên tabloyi", + "smw-admin-supplementary-operational-table-statistics-short-title": "istatistikên tabloyi", + "smw-admin-supplementary-elastic-version-info": "Versiyon", + "smw-admin-supplementary-elastic-mappings-summary": "Xulasa", + "smw-admin-supplementary-elastic-statistics-title": "İstatistiki", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Seyrkerdışê zêdekerdışi (aktif): $1", + "smw-admin-supplementary-elastic-replication-files": "Dosyeyi", + "smw-admin-supplementary-elastic-replication-pages": "Peli", + "smw-property-indicator-type-info": "{{PLURAL:$1|Karber|Sistem}}", + "prefs-smw": "Semantic MediaWiki", + "prefs-ask-options": "Weçinekê cıgeyrayışê semantiki", + "smw-ui-tooltip-title-property": "Xısusiyet", + "smw-ui-tooltip-title-info": "Melumat", + "smw-ui-tooltip-title-warning": "Xeta", + "smw-ui-tooltip-title-parameter": "Parametre", + "smw-ui-tooltip-title-event": "Fealiyet", + "smw-ui-tooltip-title-note": "Not", + "smw-ui-tooltip-title-legend": "Kıtabek", + "smw-ui-tooltip-title-reference": "Çıme", + "group-smweditor": "Editori (Semantic MediaWiki)", + "smw-admin-idlookup-input": "Cı geyre:", + "smw-admin-tab-maintenance": "Niyadayoğiye", + "smw-admin-configutation-tab-settings": "Eyari", + "smw-admin-configutation-tab-namespaces": "Heruna nameyan", + "smw-admin-maintenance-tab-tasks": "Wezifeyi", + "smw-admin-maintenance-no-description": "Arezekerdış çıniyo.", + "smw-livepreview-loading": "Bar beno...", + "smw-sp-searchbyproperty-resultlist-header": "Lista neticeyan", + "smw-search-syntax": "Reza çekuyan", + "smw-search-profile-sort-title": "Sername", + "smw-search-profile-extended-section-form": "Formi", + "smw-search-profile-extended-section-namespace": "Heruna nameyan", + "smw-search-profile-extended-section-query": "Pers", + "smw-search-show": "Bımocne", + "smw-search-hide": "Bınımne", + "smw-type-tab-types": "Babeti", + "smw-type-tab-errors": "Xeteyi", + "smw-type-primitive": "Bıngeh", + "smw-type-compound": "Beste", + "smw-type-container": "Qab", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|saniye|saniyeyan}}", + "smw-format-datatable-loadingrecords": "Bar beno...", + "smw-format-datatable-processing": "Domneno...", + "smw-format-datatable-search": "Cı geyre:", + "smw-format-datatable-first": "Sıfteyên", + "smw-format-datatable-last": "Peyên", + "smw-format-datatable-next": "Bahdoyên", + "smw-format-datatable-previous": "Verên", + "smw-format-datatable-toolbar-export": "Teberdayış", + "smw-property-reserved-category": "Kategoriye", + "smw-category": "Kategoriye", + "smw-filter": "Parzûn", + "smw-help": "Peşti", + "smw-processing": "Domneno...", + "smw-loading": "Bar beno...", + "smw-fetching": "Ano...", + "smw-preparing": "Beno hazır...", + "smw-expand": "Hera kerê", + "smw-collapse": "Teng ke", + "smw-copy": "Kopya ke", + "smw-jsonview-search-label": "Cı geyre:", + "smw-types-title": "Babet: $1", + "smw-schema-error-violation": "[„$1“, „$2“]", + "smw-schema-summary-title": "Xulasa", + "smw-schema-title": "Teslağ", + "smw-schema-usage": "Gurenayış", + "smw-property-tab-usage": "Gurenayış", + "smw-property-tab-redirects": "Hemmenayıni", + "smw-concept-tab-list": "Liste", + "smw-concept-tab-errors": "Xeteyi", + "smw-ask-tab-result": "Netice", + "smw-ask-tab-debug": "Xetaya tehlili", + "smw-ask-tab-code": "Kod", + "smw-pendingtasks-setup-tasks": "Wezifeyi", + "smw-es-replication-error": "Problemê zêdekerdışi", + "smw-es-replication-error-divergent-date-detail": "*$1 (Cıgeyrayışo elastik)\n*$2 (Mığazaya SQLi)", + "smw-report": "Rapore", + "smw-legend": "Kıtabek", + "smw-entity-examiner-associated-revision-mismatch": "Çımraviyarnayış", + "smw-entity-examiner-deferred-fake": "Sexte", + "smw-indicator-revision-mismatch": "Çımraviyarnayış", + "smw-listingcontinuesabbrev": "dewam...", + "smw-showingresults": "#$2 netican ra {{PLURAL:$1|1 netice cêr dero|$1 neticeyi cêr derê}}." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/dsb.json b/mediawiki/extensions/SemanticMediaWiki/i18n/dsb.json new file mode 100644 index 0000000..af0e9c4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/dsb.json @@ -0,0 +1,270 @@ +{ + "@metadata": { + "authors": [ + "Derbeth", + "Matěj Suchánek", + "Michawiki", + "Qualia", + "아라" + ] + }, + "smw-desc": "Twój wiki pśistupnjejšy cyniś - za mašiny ''a'' luźi\n([https://www.semantic-mediawiki.org/wiki/Help:User_manual dokumentacija online])", + "smw_viewasrdf": "Kanal RDF", + "smw_finallistconjunct": "a", + "smw_isspecprop": "Toś ta kakosć jo specialna kakosć w toś tom wikiju.", + "smw_concept_description": "Wopisanje koncepta \"$1\"", + "smw_no_concept_namespace": "Koncepty daju se jano na bokach w mjenjowem rumje Concept: definěrowaś.", + "smw_multiple_concepts": "Kuždy konceptowy bok móžo jano jadnu konceptowu definiciju měś.", + "smw_concept_cache_miss": "Koncept \"$1\" njedajo se we wokugnuśu wužywaś, dokulaž wikijowa konfiguracija trjeba jón za pśeźěłowanje off-line.\nJolic problem se njezgubujo pó wěstem casu, pšos swójogo sedłowego administratora, aby wón toś ten koncept k dispoziciji stajił.", + "smw_noinvannot": "Gódnoty njedaju se nawopacnym kakosćam pśipokazaś.", + "version-semantic": "Semantiske rozšyrjenja", + "smw_baduri": "URI formy \"$1\" njejsu dowólone.", + "smw_printername_count": "Wuslědki licyś", + "smw_printername_csv": "Ako CSV eksportěrowaś", + "smw_printername_dsv": "DSV-eksport", + "smw_printername_debug": "Wótpšašanje za zmólkami pśepytaś (za ekspertow)", + "smw_printername_embedded": "Bokowe wopśimjeśe zasajźiś", + "smw_printername_json": "Ako JSON eksportěrowaś", + "smw_printername_list": "Lisćina", + "smw_printername_ol": "Nalicenje", + "smw_printername_ul": "Nalistowanje", + "smw_printername_table": "Tabela", + "smw_printername_broadtable": "Šyroka tabela", + "smw_printername_template": "Pśedłoga", + "smw_printername_rdf": "RDF-eksport", + "smw_printername_category": "Kategorija", + "validator-type-class-SMWParamSource": "tekst", + "smw-paramdesc-limit": "Maksimalna licba wuslědkow, kótarež maju se wrośiś", + "smw-paramdesc-offset": "Pozicija prědnego wuslědka", + "smw-paramdesc-headers": "Mjenja głowow resp. atributow zwobrazniś", + "smw-paramdesc-mainlabel": "Pomjenjenje, kótarež ma se głownemu bokoju daś", + "smw-paramdesc-link": "Gódnoty ako wótkaze pokazaś", + "smw-paramdesc-intro": "Tekst, kótaryž ma se pśed napšašowańskimi wuslědkami zwobrazniś, jolic take su", + "smw-paramdesc-outro": "Tekst, kótaryž ma se za napšašowańskimi wuslědkami zwobrazniś, jolic take su", + "smw-paramdesc-default": "Tekst, kótaryž ma se zwobrazniś, jolic napšašowańske wuslědki njejsu", + "smw-paramdesc-sep": "Źěleńske znamuško za gódnoty", + "smw-paramdesc-showsep": "Źěleńske znamuško górjejce w CSV-dataji pokazaś (\"sep=\")", + "smw-paramdesc-distribution": "Město aby se wšykne gódnoty zwobraznili, jich wustupowanja licyś a te pokazaś.", + "smw-paramdesc-distributionsort": "Rozdźělenje gódnotow pó licbje wustupowanjow sortěrowaś.", + "smw-paramdesc-distributionlimit": "Rozdźělenje gódnotow na wěste gódnoty wobgranicowaś.", + "smw-paramdesc-template": "Mjenja pśedłogi, z kótarejuž wuśišće maju se zwobrazniś", + "smw-paramdesc-columns": "Licba słupow, w kótarychž maju se wuslědki zwobrazniś (standard jo $1)", + "smw-paramdesc-userparam": "Gódnota jo se do zawołanje pśedłogi pśepódała, jolic pśedłoga se wužywa", + "smw-paramdesc-introtemplate": "Mě pśedłogi, kótarež ma se zwobrazniś pśed wuslědkami napšašowanja, joli take su", + "smw-paramdesc-outrotemplate": "Mě pśedłogi, kótarež ma se zwobrazniś za wuslědkami napšašowanja, joli take su", + "smw-paramdesc-embedformat": "HTML-toflicka, kótaraž wužywa se, aby definěrowała nadpisma", + "smw-paramdesc-embedonly": "Žedne nadpisma zwobraznis", + "smw-paramdesc-table-class": "Pśidatna CSS-klasa za tabelu", + "smw-paramdesc-rdfsyntax": "RDF-syntaksa, kótaraž ma se wužywaś", + "smw-paramdesc-csv-sep": "Źěleńske znamuško, kótarež ma se wužywaś", + "smw-paramdesc-dsv-separator": "Źěleńske znamuško, kótarež ma se wužywaś", + "smw-paramdesc-dsv-filename": "Mě za DSV-dataju", + "smw-paramdesc-filename": "Mě za wudawańsku dataju", + "smw-smwdoc-description": "Pokazujo tabelu wšych parametrow, kótarež daju se za pódany wuslědkowy format gromaźe ze standardnymi gódnotami a wopisanjami wužywaś.", + "smw-smwdoc-par-format": "Wuslědkowy format, za kótaregož parametry dokumentacija ma se zwobrazniś.", + "smw-smwdoc-par-parameters": "Parametry, kótarež maju se pokazaś: \"specific\" za toś te, kótarež pśidawaju se pśez format, \"base\" za toś te, kótarež stoje we wšych formatach k dispoziciji a \"all\" za wobej.", + "smw-paramdesc-sort": "Kakosć, pó kótarejž napšašowanje ma se sortěrowaś", + "smw-paramdesc-order": "Sortěrowański pórěd za napšašowanje", + "smw-paramdesc-searchlabel": "Tekst za dalšne pytańske wuslědki", + "smw-paramdesc-named_args": "Argumenty, kótarež maju se pśedłoze pśepódaś", + "smw-paramdesc-export": "Eksportowe nastajenje", + "smw-paramdesc-prettyprint": "Njeformatěrowane wudaśe, kótarež zwobraznja pśidatne zasunjenja a nowe smužki", + "smw-paramdesc-source": "Alternatiwne napšašowańske žrědło", + "smw-paramdesc-jsonsyntax": "JSON-syntaksa, kótaraž ma se wužywaś", + "smw-printername-feed": "RSS- a Atom-kanal", + "smw-paramdesc-feedtype": "Kanalowy typ", + "smw-paramdesc-feedtitle": "Tekst, kótaryž ma se ako titel kanala wužywaś", + "smw-paramdesc-feeddescription": "Tekst, kótaryž ma se ako wopisanje kanala wužywaś", + "smw-paramdesc-feedpagecontent": "Wopśimjeśe boka, kótarež ma se z komentarom zwobrazniś", + "smw-label-feed-description": "$2-kanal: $1", + "smw_iq_disabled": "Semantiske wótpšašanja su se znjemóžnili za toś ten wiki.", + "smw_iq_moreresults": "... dalšne wuslědki", + "smw_parseerror": "Zapódana gódnota njejo se rozměła.", + "smw_notitle": "\"$1\" njedajo se ako bokowe mě w toś tom wikiju wužywaś.", + "smw_noproperty": "\"$1\" njedajo se ako mě kakosći w toś tom wikiju wužywaś.", + "smw_wrong_namespace": "Jano boki w mjenjowem rumje \"$1\" su how dowólone.", + "smw_manytypes": "Wěcej ako jaden typ za kakosć definěrowany.", + "smw_emptystring": "Prozne znamješkowe rědy se njeakceptěruju.", + "smw_notinenum": "\"$1\" njejo w lisćinje móžnych gódnotow ($2) za toś tu kakosć.", + "smw_noboolean": "\"$1\" njejo dowólona gódnota typa Boolean (wěrny/njewěrny).", + "smw_true_words": "wěrny, w, jo, j", + "smw_false_words": "njewěrny, ně, n", + "smw_nofloat": "\"$1\" njejo licba.", + "smw_infinite": "Licby, kótarež su dłujke ako \"$1\", se njepódpěraju.", + "smw_unitnotallowed": "\"$1\" njejo ako płaśiwa měrjeńska jadnotka za toś ten atribut póstajił.", + "smw_nounitsdeclared": "Za toś tu kakosć njesu se žedne měrjeńške jadnotki namakali.", + "smw_novalues": "Žedne gódnoty pódane", + "smw_nodatetime": "Datum \"$1\" njejo se rozměł.", + "smw_toomanyclosing": "Zda se, až jo pśewjele wustupowanjow \"$1\" w napšašowanju.", + "smw_noclosingbrackets": "Jadne wustupowanje \"[[\" w twójom napšašanju njejo se pśez wótpowědnej \"]]\" wótzamknuło.", + "smw_misplacedsymbol": "Symbol \"$1\" jo se na městnje wužył, źož njejo wužytny,", + "smw_unexpectedpart": "Źěl \"$1\" wótpšašanja njejo se rozměł.\nWuslědki snaź njejsu ako wócakowane.", + "smw_emptysubquery": "Pódwótpšašanje njama płaśiwe wuměnjenje.", + "smw_misplacedsubquery": "Pódwótpšašanje wužywa se na městnje, źož pódwótpšašanja njejsu dowólone.", + "smw_valuesubquery": "Pódwótpšašanja njepódpěraju se za gódnoty kakosći \"$1\".", + "smw_badqueryatom": "Źěl wótpšašanja \"[[…]]\" njejo se rozměł.", + "smw_propvalueproblem": "Gódnota kakosći \"$1\" njejo se rozměła.", + "smw_noqueryfeature": "Někaka wótpšašowańska funkcije njejo se pódprěła a źěl wótpšašanja jo se wótpórał ($1).", + "smw_noconjunctions": "Konjunkcije (zwězanja A) we wótpšašanjach njepódpěraju se w toś tom wikiju a źěl wótpšašanja jo se wótpórał ($1).", + "smw_nodisjunctions": "Disjunkcije (zwězanja ABO) we wótpšašanjach njepódpěraju se w toś tom wikiju a źěl wótpšašanja jo se wótpórał ($1).", + "smw_querytoolarge": "Dla wikijowych wobgranicowanjow we wjelikosći abo dłymokosći njejo było móžno slědujuce wótpšašańske wuměnjenja zapśimjeś: $1", + "smw_notemplategiven": "Pódaj gódnotu za parameter \"template\", aby napšašowański format funkcioněrował.", + "smw_db_sparqlqueryproblem": "Napšašowański wuslědk njedajo se z datoweje banki SPARQL wótwołaś. Toś ta zmólka by mógła nachylna byś abo programowa zmólka w datowej bance byś.", + "smw_type_header": "Kakosći typa \"$1\"", + "smw_typearticlecount": "$1 {{PLURAL:$1|kakosć pokazujo|kakosći pokazujotej|kakosći pokazuju|kakosćow pokazujo}} se z pomocu toś togo typa.", + "smw_attribute_header": "Boki, kótarež wužywaju kakosć \"$1\"", + "smw_attributearticlecount": "$1 {{PLURAL:$1|bok pokazujo|boka pokazujotej|boki pokazuju|bokow pokazujo}} se z pomocu toś teje kakosći.", + "exportrdf": "Boki ako RDF eksportěrowaś", + "smw_exportrdf_docu": "Toś ten bok śi dowólujo, daty z boka w formaśe RDF dobyś.\nAby boki eksportěrował, zapódaj titele do slědujucego tekstowego póla, jaden titel na smužku.", + "smw_exportrdf_recursive": "Wšykne pśiwuzne boki rekursiwnje eksportěrowaś.\nŹiwaj na to, až wuslědk by mógł wjeliki byś!", + "smw_exportrdf_backlinks": "Teke wšykne boki eksportěrowaś, kótarež póśěgaju se na eksportěrowane boki.\nNapórajo RDF, kótaryž dajo se pśepytaś.", + "smw_exportrdf_lastdate": "Boki njeeksportěrowaś, kótarež njejsu se změnili wót pódanego casa.", + "smw_exportrdf_submit": "Eksportěrowaś", + "uriresolver": "Rezolwer URI", + "properties": "Kakosći", + "smw-categories": "Kategorije", + "smw_properties_docu": "Slědujuce kakosći wužywaju se we wikiju.", + "smw_property_template": "$1 typa $2 ($3 {{PLURAL:$3|wužyśe|wužyśi|wužyśa|wužyśow}})", + "smw_propertylackspage": "Wše kakosći měli se pśez bok wopisaś!", + "smw_propertylackstype": "Za toś tu kakosć njejo se žeden typ pódał (mysli se tuchylu typ $1).", + "smw_propertyhardlyused": "Toś ta kakosć se lěbda we wikiju wužywa!", + "smw-property-name-invalid": "Kakosć $1 njedajo se wužywaś (njepłaśiwe kakostne mě)", + "smw-sp-property-searchform": "Kakosći zwobrazniś, kótarež wopśimuju:", + "smw-sp-property-searchform-inputinfo": "Wudaśe źiwa na wjelikopisanje. Za filtrowanje zwobraznjuju se jano kakosći, kótarež wótpowěduju wuměnjenjeju.", + "concepts": "Koncepty", + "smw-special-concept-header": "Lisćina konceptow", + "smw-special-concept-count": "{{PLURAL:$1|Slědujucy koncept|Slědujucej $1 koncepta|Slědujuce $1 koncepty|Slědujucych $1 konceptow}} {{PLURAL:$1|eksistěrujo|eksistěrujotej|eksistěruju|eksistěrujo}}.", + "smw-special-concept-empty": "Njejo se žeden koncept namakał.", + "unusedproperties": "Njewužywane kakosći", + "smw-unusedproperties-docu": "Slědujuce kakosći eksistěruju, lěcrownož žeden drugi bok je njewužywa.", + "smw-unusedproperty-template": "$1 typa $2", + "wantedproperties": "Póžedane kakosći", + "smw-wantedproperties-docu": "Slědujuce kakosći se we wikiju wužywaju, ale hyšći njamaju bok, kótaryž je wopisujo.", + "smw-wantedproperty-template": "$1 ({{PLURAL:$2|raz|dwójcy|$2 raze|$2 raz}} wužyta)", + "smw_purge": "Aktualizěrowaś", + "types": "Typy", + "smw_types_docu": "Slědujuca lisćina wšych datowych typow, kótarež daju se kakosćam pśipokazaś.", + "smw-special-types-no-such-type": "Pódany datowy typ njeeksistěrujo", + "smw-statistics": "Semantiska statistika", + "smw-statistics-property-instance": "{{PLURAL:$1|Kakostna gódnota|Kakostnej gódnośe|Kakostne gódnoty}} (dogromady)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Kakosć|Kakosći}}]] (dogromady)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Kakosć|Kakosći}} (dogromady)", + "smw-statistics-property-page": "{{PLURAL:$1|Kakosć|Kakosći}} (z bokom zregistrěrowane)", + "smw-statistics-property-type": "{{PLURAL:$1|Kakosć|Kajkosći}} (datowemu typoju pśipokazane)", + "smw-statistics-query-inline": "{{PLURAL:$1|Napšašowanje|Napšašowani|Napšašowanja}}", + "smw-statistics-query-size": "Wjelikosć napšašowanja", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Koncept|Koncepta|Koncepty}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Koncept|Koncepta|Koncepty}}]]", + "smw-statistics-subobject-count": "{{PLURAL:$1|Podobjekt|Podobjekta|Podobjekty}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Datowy typ|Datowej typa|Datowe typy}}]]", + "smw_uri_doc": "Rezolwer URI implementěrujo [$1 W3C TAG finding on httpRange-14].\nStara se za to, až luźe njebudu websedła.", + "ask": "Semantiske pytanje", + "smw_ask_sortby": "Pó słupje sortěrowaś (opcionalny)", + "smw_ask_ascorder": "Stupajucy", + "smw_ask_descorder": "Spadujucy", + "smw_ask_submit": "Wuslědki namakaś", + "smw_ask_editquery": "Wótpšašanje wobźěłaś", + "smw_add_sortcondition": "[Sortěrowańske wuměnjenje pśidaś]", + "smw_ask_hidequery": "[Wótpšašanje schowaś]", + "smw_ask_help": "Wótpšašowańska pomoc", + "smw_ask_queryhead": "Wótpšašanje", + "smw_ask_printhead": "Pśidatne daty, kótarež maju se zwobrazniś", + "smw_ask_printdesc": "(pśidaj jadne atributowe mě na smužku)", + "smw_ask_format_as": "Formatěrowaś ako:", + "smw_ask_defaultformat": "standard", + "smw_ask_otheroptions": "Druge opcije", + "smw-ask-otheroptions-collapsed-info": "Pšosym wužyj plusowy symbol (+), aby se wšykne k dispoziciji stojece opcije woglědał", + "smw_ask_show_embed": "Zasajźony kod pokazaś", + "smw_ask_hide_embed": "Zasajźony kod schowaś", + "smw_ask_embed_instr": "Aby toś to wótpšašanje do wikiboka zasajźił, wužyj slědujucy kod.", + "smw-ask-delete": "[Lašowaś]", + "smw-ask-sorting": "Sortěrowanje", + "smw-ask-format-selection-help": "Za nadrobne wopisanje glej bok $1 pomocy.", + "searchbyproperty": "Pó kakosći pytaś", + "smw_sbv_docu": "Wšykne boki pytaś, kótarež maju wěstu kakosć a gódnotu.", + "smw_sbv_novalue": "Zapódaj płaśiwu gódnotu za kakosć abo woglědaj se wšykne gódnoty za kakosć \"$1\".", + "smw_sbv_displayresultfuzzy": "Lisćina wšych bokow, kótarež maju kakosć \"$1\" z gódnotu \"$2\".\nDokulaž jo jano mało wuslědkow było, zwobraznjuju se pódobne gódnoty.", + "smw_sbv_property": "Kakosć:", + "smw_sbv_value": "Gódnota:", + "smw_sbv_submit": "Wuslědki namakaś", + "browse": "Wiki pśepytaś", + "smw_browselink": "Kakosći pśepytaś", + "smw_browse_article": "Zapódaj mě boka, wót kótaregož ma se pytaś.", + "smw_browse_go": "Pytaś", + "smw_browse_show_incoming": "Kakosći pokazaś, kótarež sem wótkazuju", + "smw_browse_hide_incoming": "Kakosći schowaś, kótarež sem wótkazuju", + "smw_browse_no_outgoing": "Toś ten bok njama kakosći.", + "smw_browse_no_incoming": "Žedne kakosći njewótkazuju k toś tomu bokoju.", + "smw_inverse_label_default": "$1 wót", + "smw_inverse_label_property": "Pomjenjenje nawopacneje kakosći", + "pageproperty": "Pytanje za bokoweju kakosću", + "smw_pp_docu": "Wše gódnoty kakosći na pódanem boku pytaś.\nZapódaj ako bok tak teke kakosć.", + "smw_pp_from": "Wót boka", + "smw_pp_type": "Kakosć", + "smw_pp_submit": "Wuslědki namakaś", + "smw_result_prev": "Slědk", + "smw_result_next": "Pśiducy", + "smw_result_results": "Wuslědki", + "smw_result_noresults": "Žedne wuslědki.", + "smwadmin": "Administratorowe funkcije za Semantic MediaWiki", + "smw-admin-setupsuccess": "Składowańska jadnotka jo se wuspěšnje nastajiła.", + "smw_smwadmin_return": "Slědk k $1", + "smw_smwadmin_updatestarted": "Nowy aktualizěrowański proces za wótnowjenje semantiskich datow jo se startował.\nWšykne skłaźone daty budu se znowego natwarjaś abo pórěźaś, źož trjeba.\nMóžoš póstupoju aktualizacije na toś tom specialnem boku slědowaś.\n\nSlědk k $1.", + "smw_smwadmin_updatenotstarted": "Proces aktualizacije južo běžy.\nNowy se njestartujo.\n\nSlědk k $1.", + "smw_smwadmin_updatestopped": "Wše eksistěrujuce aktualizěrowańske procese su se zastajili.\n\nSlědk k $1.", + "smw_smwadmin_updatenotstopped": "Aby běžecy proces zastajił, musyš kontrolowy kašćik aktiwěrowaś, aby pódał, až sy napšawdu wěsty.\n\nSlědk k $1.", + "smw-admin-docu": "Toś ten specialny bok śi pomaga za instalaciju a aktualizaciju a href=\"https://www.semantic-mediawiki.org\">Semantic MediaWiki. Mysli se na zawěsćenje gódnotnych datow, nježli až wuwjeźoš administratiwne funkcije.", + "smw-admin-db": "Instalacija a aktualizacija datoweje banki", + "smw-admin-dbdocu": "Semantic MediaWiki trjeba rozšyrjenja za datowu banku MediaWiki, aby semantiske daty składował. Slědujuca funkcija zawěsćijo, až twója datowa banka se pórědnje zarědujo.\nZměny, kótarež cynje se w toś tom kšacu, njewobwliwuju zbytk datoweje banki MediaWiki a daju se lažko anulěrowaś, jolic póžedane.\nToś te zarědowańska funkcija móžo se někotare razy wugbaś, mimo až zawinuju škódu, ale jo trěbna jano jaden raz pśi instalaciji abo aktualizaciji.", + "smw-admin-permissionswarn": "Jolic operacija raźi se z SQL-zmólkami, wužywaŕ datoweje banki, kótaregož twój wiki wužywa (skontrolěruj twóju dataja LocalSettings.php), nejskerjej njama dosegajuce pšawa.\nPak zwól toś tomu wužywarjeju pśidatne pšawa za napóranje a lašowanje tabelow, zapódaj nachylu twójo admininistratorowe wužywarske mě w LocalSettings.php, pak wužyj wótglědowański skript setupStore.php, kótarež mógu wósobinske pódaśa administratora wužywaś.", + "smw-admin-dbbutton": "Tabele inicializěrowaś abo aktualizěrowaś", + "smw-admin-announce": "Twój wiki pśipowěźeś", + "smw_smwadmin_datarefresh": "Reparatura a aktualizacija datow", + "smw_smwadmin_datarefreshdocu": "Jo móžno, wšykne daty Semantic MediaWiki wótnowiś, kótarež bazěruju na aktualnem wopśimjeśu wikija.\nTo móžo wužytne byś, aby se wobškóźone daty pórěźili abo daty aktualizěrowali, jolic interny format jo se změnił pśez aktualizaciju softwara.\nAktualizacija pśewjedujo se bok pó boku a njebuźo se ned kóńcyś.\nSlědujuce pokazujo, lěc aktualizacija rowno wótběgujo a dowólujo śi aktualizacije startowaś abo zastajiś (snaźkuli toś ta funkcija jo se wót administratora sedła znjemóžniła).", + "smw_smwadmin_datarefreshprogress": "Aktualizacija se rowno wótměwa.\nJo normalne, až aktualizacija jano pómałem póstupujo, dokulaž aktualizěrujo daty jano w małych porcijach kuždy raz, gaž wužywaŕ ma pśistup na wiki.\nAby skóńcył toś tu aktualizaciju malsnjeje, móžoš wótwardowański skript MediaWiki runJobs.php zawołaś (wužyj opciju --maxjobs 1000, aby wobgranicował licbu aktualizacijow, kótarež se naraz pśewjadu).\nLicony póstup aktualneje aktualizacije:", + "smw_smwadmin_datarefreshbutton": "Aktualizaciju datow zachopiś", + "smw_smwadmin_datarefreshstop": "Toś tu aktualizaciju zastajiś", + "smw_smwadmin_datarefreshstopconfirm": "Jo, som se wěsty.", + "smw-admin-support": "Pódpěru wobstaraś", + "smw-admin-supportdocu": "Wšake resurse mógli śi w paźe problemow pomagaś:", + "smw-admin-installfile": "Joli maš problemy ze swójeju instalaciju, pśecytaj směrnice w dataji INSTALL.", + "smw-admin-smwhomepage": "Dopołna wužywarska dokumentacija za Semantic MediaWiki jo na semantic-mediawiki.org.", + "smw-admin-bugsreport": "Zmólki daju se na GitHub k wěsći daś.", + "smw-admin-questions": "Jolic maš dalšne pšašanja abo naraźenja, pśizamkni se diskusiji na wužywarskem forumje Semantic MediaWiki.", + "smw_adminlinks_datastructure": "Datowa struktura", + "smw_adminlinks_displayingdata": "Daty zwobrazniś", + "smw_adminlinks_inlinequerieshelp": "Pomoc k wótpšašanjam", + "smw-createproperty-isproperty": "To jo kakosć typa $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Dowólona gódnota za toś tu kakosć jo|Dowólonej gódnośe za toś tu kakosć stej|Dowólone gódnoty za toś tu kakosć su|Dowólone gódnoty za toś tu kakosć su}}:", + "smw-paramdesc-category-delim": "Źěleńske znamuško", + "smw-paramdesc-category-template": "Pśedłoga, z kótarejuž zapiski maju se formatěrowaś", + "smw-paramdesc-category-userparam": "Parmeter, kótaryž ma se pśedłoze pśepódaś", + "smw-info-par-message": "Powěsć, kótaraž ma se zwobrazniś.", + "smw-info-par-icon": "Symbol, kótaryž ma se pokazaś, pak \"info\" pak \"warnowanje\".", + "prefs-smw": "Semantic MediaWiki", + "prefs-ask-options": "Semantiske pytańske opcije", + "smw-prefs-ask-options-tooltip-display": "Parametrowy tekst ako spěšne info zwobrazniś", + "smw-ui-tooltip-title-property": "Kakosć", + "smw-ui-tooltip-title-quantity": "Tšocha", + "smw-ui-tooltip-title-info": "Informacije", + "smw-ui-tooltip-title-service": "Słužbne wótkaze", + "smw-ui-tooltip-title-warning": "Zmólka", + "smw-ui-tooltip-title-parameter": "Parameter", + "smw-ui-tooltip-title-event": "Tšojenje", + "smw-ui-tooltip-title-note": "Pokazka", + "smw-ui-tooltip-title-legend": "Legenda", + "smw_unknowntype": "Typ toś teje kakosći jo njepłaśiwy", + "smw-concept-cache-text": "Koncept ma dogromady $1 {{PLURAL:$1|bok|boka|boki|bokow}} a jo se $2 slědny raz zaktualizěrował.", + "smw_concept_header": "Boki koncepta \"$1\"", + "smw_conceptarticlecount": "$1 {{PLURAL:$1|bok se pokazujo|boka se pokazujotej|boki se pokazuju|bokow se pokazujo}}, {{PLURAL:$1|kótaryž słuša|kótarejž słušatej|kótarež słušaju|kótarež słuša}} k tomu konceptoju.", + "right-smw-admin": "Administraciske nadawki (Semantic MediaWiki)", + "group-smwadministrator": "Administratory Semantic MediaWiki", + "group-smwadministrator-member": "{{GENDER:$1|SMW-administrator|SMW-administratorka}}", + "grouppage-smwadministrator": "{{ns:project}}:SMW-administratory", + "action-smw-admin": "administraciske nadawki Semantic MediaWiki", + "smw-sp-properties-header-label": "Lisćina kakosćow", + "smw-sp-admin-settings-button": "Lisćinu nastajenjow napóraś", + "smw-livepreview-loading": "Lodowanje …", + "smw-listingcontinuesabbrev": "dalej", + "smw-showingresults": "How {{PLURAL:|jo '''1''' wuslědk|stej '''$1''' wuslědka|su '''$1''' wuslědki}} wót cysła '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/dty.json b/mediawiki/extensions/SemanticMediaWiki/i18n/dty.json new file mode 100644 index 0000000..44b5db1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/dty.json @@ -0,0 +1,25 @@ +{ + "@metadata": { + "authors": [ + "Nirajan pant", + "रमेश सिंह बोहरा" + ] + }, + "smw-categories": "श्रेणीहरू", + "browse": "ब्राउज विकि", + "smw-ui-tooltip-title-reference": "सन्दर्भ", + "smw-search-input": "आगत रे खोजि", + "smw-search-profile": "विस्तारित", + "smw-datavalue-time-invalid-jd": "\"$2\"को रिपोर्टिङ साथमा इनपुट मान \"$1\" लाई मान्य JD (जुलियन दिन) अङ्कामी इन्टरप्रेट अद्दाइ असफल।", + "smw-datavalue-stripmarker-parse-error": "दियीया: मान \"$1\" मी [https://en.wikipedia.org/wiki/Help:Strip_markers strip markers] रे तबै पर्याप्त व्याख्या अद्द नाइ सकिनो।", + "smw-datavalue-parse-error": "दियिया: मान \"$1\" समझमी आएन।", + "smw-datavalue-type-invalid-typeuri": "\"$1\" किसमलाई मान्य URI निरूपणमी बदेल्ल नाइ सकिनो।", + "smw-format-datatable-loadingrecords": "लोड हुन्नाछ़....", + "smw-format-datatable-search": "खोजऽ:", + "smw-format-datatable-first": "पैल्लो", + "smw-format-datatable-last": "छाड्डीबारको", + "smw-format-datatable-next": "अघबटाको", + "smw-format-datatable-previous": "पछबटाको", + "smw-listingcontinuesabbrev": "निरन्तरता...", + "smw-showingresults": "धेखाउँदै {{PLURAL:$1|'''१''' नतिजा|'''$1''' नतिजाहरू }} , #'''$2''' बठे सुरुहुन्या ।" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ee.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ee.json new file mode 100644 index 0000000..a2f3e7f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ee.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Afimaame", + "Amuzujoe" + ] + }, + "smw-categories": "To Kɔɔ", + "browse": "Kpɔ wiki la ɖa", + "smw_browse_go": "Yi", + "smw-listingcontinuesabbrev": "yi edzi" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/el.json b/mediawiki/extensions/SemanticMediaWiki/i18n/el.json new file mode 100644 index 0000000..e3fe89c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/el.json @@ -0,0 +1,717 @@ +{ + "@metadata": { + "authors": [ + "Consta", + "Crazymadlover", + "FocalPoint", + "Geraki", + "Glavkos", + "KATRINE1992", + "Kghbln", + "Lou", + "McDutchie", + "Nemo bis", + "NikosLikomitros", + "Nikosgranturismogt", + "Norhorn", + "Omnipaedista", + "Protnet", + "Tgkarounos", + "Thodoris", + "ZaDiak", + "Ανώνυμος Βικιπαιδιστής" + ] + }, + "smw-desc": "Κάνοντας το wiki σας πιο προσιτό - σε μηχανές ''και'' ανθρώπους ([https://www.semantic-mediawiki.org/wiki/Help:User_manual ηλεκτρονική τεκμηρίωση])", + "smw-error": "Σφάλμα", + "smw-upgrade-release": "Κυκλοφορία", + "smw-upgrade-progress": "Πρόοδος", + "smw-upgrade-progress-explain": "Η εκτίμηση ως προς το πότε θα ολοκληρωθεί η αναβάθμιση είναι δύσκολο να προβλεφθεί, καθώς εξαρτάται από το μέγεθος του αποθετηρίου δεδομένων και τη διαθέσιμη υλική υποδομή και μπορεί να πάρει λίγο χρόνο για να ολοκληρωθούν μεγαλύτερα wiki.\n\nΕπικοινωνήστε με τον τοπικό σας διαχειριστή για να λάβετε περισσότερες πληροφορίες σχετικά με την πρόοδο.", + "smw-upgrade-progress-create-tables": "Γίνεται δημιουργία (ή ενημέρωση) πινάκων και ευρετηρίων ...", + "smw-upgrade-progress-post-creation": "Γίνεται εκτέλεση εργασιών που έπονται της δημιουργίας ...", + "smw-upgrade-progress-table-optimization": "Γίνεται εκτέλεση βελτιστοποίησης πινάκων ...", + "smw-upgrade-progress-supplement-jobs": "Γίνεται προσθήκη συμπληρωματικών εργασιών ...", + "smw-upgrade-error-title": "Σφάλμα » Σημασιολογικό MediaWiki", + "smw-upgrade-error-why-title": "Γιατί βλέπω αυτήν τη σελίδα;", + "smw-upgrade-error-how-title": "Πώς διορθώνω αυτό το σφάλμα;", + "smw-extensionload-error-why-title": "Γιατί βλέπω αυτήν τη σελίδα;", + "smw-extensionload-error-how-title": "Πώς διορθώνω αυτό το σφάλμα;", + "smw-upgrade-maintenance-title": "Συντήρηση » Σημασιολογικό MediaWiki", + "smw-upgrade-maintenance-why-title": "Γιατί βλέπω αυτήν τη σελίδα;", + "smw-semantics-not-enabled": "Η λειτουργικότητα Σημασιολογικού MediaWiki δεν είναι ενεργοποιημένη για αυτό το wiki.", + "smw_viewasrdf": "Ροή RDF", + "smw_finallistconjunct": " και", + "smw-factbox-head": "... περισσότερα σχετικά με το «$1»", + "smw-factbox-facts": "Γεγονότα", + "smw_isspecprop": "Αυτή η ιδιότητα είναι μια ειδική ιδιότητα σε αυτό το wiki.", + "smw-concept-cache-header": "Χρήση προσωρινής μνήμης", + "smw-concept-cache-count": "Η [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count προσωρινή μνήμη έννοιας] περιέχει {{PLURAL:$1|'''μία''' οντότητα|'''$1''' οντότητες}} ($2).", + "smw-concept-no-cache": "Δεν υπάρχει προσωρινή μνήμη διαθέσιμη.", + "smw_concept_description": "Περιγραφή της έννοιας «$1»", + "smw_no_concept_namespace": "Έννοιες μπορούν να οριστούν μόνο σε σελίδες στον ονοματοχώρο «Έννοια:».", + "smw_multiple_concepts": "Κάθε έννοια μπορεί να έχει μόνο έναν ορισμό έννοιας.", + "smw_concept_cache_miss": "Η έννοια «$1» δεν μπορεί να χρησιμοποιηθεί τη στιγμή, επειδή η ρύθμιση παραμέτρων του wiki απαιτεί να υπολογιστεί εκτός σύνδεσης.\nΕάν μετά την πάροδο κάποιου χρόνου το πρόβλημα δεν έχει λυθεί, ζητήστε από το διαχειριστή του ιστοχώρου να κάνει αυτήν την έννοια διαθέσιμη.", + "smw_noinvannot": "Δεν μπορούν να δοθούν τιμές σε αντίστροφες ιδιότητες.", + "version-semantic": "Σημασιολογικές επεκτάσεις", + "smw_baduri": "Δεν επιτρέπονται URI της μορφής «$1».", + "smw_printername_count": "Καταμέτρηση", + "smw_printername_csv": "Εξαγωγή σε CSV", + "smw_printername_dsv": "Εξαγωγή σε DSV", + "smw_printername_debug": "Ερώτημα αποσφαλμάτωσης (για ειδικούς)", + "smw_printername_embedded": "Ενσωμάτωση περιεχομένων σελίδων", + "smw_printername_json": "Εξαγωγή σε JSON", + "smw_printername_list": "Λίστα", + "smw_printername_ol": "Αριθμημένη λίστα", + "smw_printername_ul": "Λίστα με κουκκίδες", + "smw_printername_table": "Πίνακας", + "smw_printername_broadtable": "Πίνακας πλήρους εύρους", + "smw_printername_template": "Πρότυπο", + "smw_printername_templatefile": "Αρχείο προτύπου", + "smw_printername_rdf": "Εξαγωγή σε RDF", + "smw_printername_category": "Κατηγορία", + "validator-type-class-SMWParamSource": "κείμενο", + "smw-paramdesc-limit": "Ο μέγιστος αριθμός αποτελεσμάτων που θα επιστραφούν", + "smw-paramdesc-offset": "Η μετατόπιση του πρώτου αποτελέσματος", + "smw-paramdesc-headers": "Προβολή των κεφαλίδων/ονομάτων ιδιοτήτων", + "smw-paramdesc-mainlabel": "Η ετικέτα που θα δοθεί στο όνομα της κύριας σελίδας", + "smw-paramdesc-link": "Εμφάνιση τιμών ως σύνδεσμοι", + "smw-paramdesc-intro": "Κείμενο που θα εμφανίζεται πριν από τα αποτελέσματα του ερωτήματος, αν υπάρχουν", + "smw-paramdesc-outro": "Κείμενο που θα εμφανίζεται μετά από τα αποτελέσματα του ερωτήματος, αν υπάρχουν", + "smw-paramdesc-default": "Κείμενο που θα εμφανίζεται αν δεν υπάρχουν αποτελέσματα ερωτήματος", + "smw-paramdesc-sep": "Διαχωριστικό μεταξύ αποτελεσμάτων", + "smw-paramdesc-showsep": "Εμφάνιση διαχωριστικού στην αρχή του αρχείου CSV (\"sep=\")", + "smw-paramdesc-distribution": "Αντί για προβολή όλων των τιμών, καταμέτρηση των εμφανίσεών τους και προβολή αυτών.", + "smw-paramdesc-distributionsort": "Ταξινόμηση της κατανομής τιμών βάσει πλήθους εμφανίσεων.", + "smw-paramdesc-distributionlimit": "Περιορισμός της κατανομής τιμών σε πλήθος μόνο κάποιων τιμών.", + "smw-paramdesc-template": "Το όνομα προτύπου με το οποίο να εμφανίζονται οι εκτυπώσεις", + "smw-paramdesc-columns": "Ο αριθμός των στηλών κειμένου που θα έχει το αποτέλεσμα", + "smw-paramdesc-userparam": "Τιμή που θα περνιέται σε κάθε κλήση πρoτύπου, αν χρησιμοποιείται πρότυπο", + "smw-paramdesc-class": "Μια πρόσθετη κλάση CSS που θα οριστεί για τη λίστα", + "smw-paramdesc-introtemplate": "Όνομα προτύπου που θα εμφανίζεται πριν από τα αποτελέσματα του ερωτήματος, αν υπάρχουν", + "smw-paramdesc-outrotemplate": "Όνομα προτύπου που θα εμφανίζεται μετά από τα αποτελέσματα του ερωτήματος, αν υπάρχουν", + "smw-paramdesc-embedformat": "Ετικέτα HTML που χρησιμοποιείται για τον ορισμό επικεφαλίδων", + "smw-paramdesc-embedonly": "Μη εμφάνιση επικεφαλίδων", + "smw-paramdesc-table-class": "Μια πρόσθετη κλάση CSS για αυτόν τον πίνακα", + "smw-paramdesc-table-transpose": "Παρουσίαση των κεφαλίδων του πίνακα κατακόρυφα και των αποτελεσμάτων οριζόντια", + "smw-paramdesc-rdfsyntax": "Σύνταξη RDF που θα χρησιμοποιηθεί", + "smw-paramdesc-csv-sep": "Διαχωριστικό που θα χρησιμοποιηθεί", + "smw-paramdesc-csv-valuesep": "Διαχωρίζει τις τιμές", + "smw-paramdesc-csv-merge": "Σύμπτυξη σειρών και τιμών στηλών με έναν παρόμοιο δείκτη αναγνώρισης θέματος (aka πρώτη στήλη)", + "smw-paramdesc-csv-bom": "Προσθέστε ένα ΒΟΜ (χαρακτήρα σήματος που στάλθηκε) στο πάνω μέρος του φακέλλου παραγωγής", + "smw-paramdesc-dsv-separator": "Διαχωριστικό που θα χρησιμοποιηθεί", + "smw-paramdesc-dsv-filename": "Όνομα αρχείου DSV", + "smw-paramdesc-filename": "Το όνομα για το αρχείο εξόδου", + "smw-smwdoc-description": "Εμφανίζει έναν πίνακα με όλες τις παραμέτρους που μπορούν να χρησιμοποιηθούν για τη μορφή αποτελέσματος που έχει οριστεί μαζί με προεπιλεγμένες τιμές και περιγραφές.", + "smw-smwdoc-par-format": "Μορφή αποτελέσματος για την οποία να προβληθεί τεκμηρίωση παραμέτρων.", + "smw-smwdoc-par-parameters": "Ποιες παράμετροι να εμφανίζονται. «ειδικές» για όσες προστίθενται από τη μορφή, «βασικές» για όσες είναι διαθέσιμες σε όλες τις μορφές και «όλες» και για τα δύο.", + "smw-paramdesc-sort": "Ιδιότητα βάσει της οποίας να ταξινομηθεί το ερώτημα", + "smw-paramdesc-order": "Σειρά ταξινόμησης του ερωτήματος", + "smw-paramdesc-searchlabel": "Κείμενο για συνέχιση της αναζήτησης", + "smw-paramdesc-named_args": "Ονοματοδοσία στα ορίσματα που πασάρονται στο πρότυπο", + "smw-paramdesc-template-arguments": "Ορίζει τον τρόπο με τον οποίο θα μεταβιβάζονται στο πρότυπο τα επώνυμα ορίσματα.", + "smw-paramdesc-export": "Επιλογή εξαγωγής", + "smw-paramdesc-prettyprint": "Όμορφα μορφοποιημένος κώδικας που εμφανίζει πρόσθετες εσοχές και αλλαγές γραμμής", + "smw-paramdesc-source": "Εναλλακτική προέλευση ερωτήματος", + "smw-paramdesc-jsonsyntax": "Σύνταξη JSON που θα χρησιμοποιηθεί", + "smw-printername-feed": "Ροές RSS και Atom", + "smw-paramdesc-feedtype": "Τύπος ροής", + "smw-paramdesc-feedtitle": "Κείμενο που θα χρησιμοποιείται ως τίτλος της ροής", + "smw-paramdesc-feeddescription": "Κείμενο που θα χρησιμοποιείται ως περιγραφή της ροής", + "smw-paramdesc-feedpagecontent": "Περιεχόμενο σελίδων που θα εμφανίζεται με τη ροή", + "smw-label-feed-description": "ροή $2 για $1", + "smw-paramdesc-mimetype": "Ο τύπος πολυμέσων (τύπος MIME) για το αρχείο εξόδου", + "smw_iq_disabled": "Τα σημασιολογικά ερωτήματα έχουν απενεργοποιηθεί για αυτό το wiki.", + "smw_iq_moreresults": "... περισσότερα αποτελέσματα", + "smw_parseerror": "Η τιμή που δόθηκε δεν έγινε κατανοητή.", + "smw_notitle": "Το «$1» δεν μπορεί να χρησιμοποιηθεί σαν όνομα σελίδας σε αυτό το wiki.", + "smw_noproperty": "Το «$1» δεν μπορεί να χρησιμοποιηθεί σαν όνομα ιδιότητας σε αυτό το wiki.", + "smw_wrong_namespace": "Μόνο οι σελίδες που ανήκουν στον ονοματοχώρο «$1» επιτρέπονται εδώ.", + "smw_manytypes": "Έχουν οριστεί περισσότεροι από έναν τύποι για την ιδιότητα.", + "smw_emptystring": "Κενές συμβολοσειρές δεν γίνονται δεκτές.", + "smw_notinenum": "Το «$1» δεν είναι στη λίστα ($2) [[Property:Allows value|επιτρεπτών τιμών]] για την ιδιότητα «$3».", + "smw-datavalue-constraint-error-allows-value-list": "Το «$1» δεν περιλαμβάνεται στη λίστα ($2) με τις [[Property:Allows value|επιτρεπόμενες τιμές]] για την ιδιότητα «$3».", + "smw-datavalue-constraint-error-allows-value-range": "Το «$1» δεν βρίσκεται εντός του εύρους «$2» που καθορίζεται από τον περιορισμό [[Property:Allows value|επιτρεπτών τιμών]] για την ιδιότητα «$3».", + "smw_noboolean": "Το «$1» δεν αναγνωρίζεται ως Μπουλιανή (αληθές/ψευδές) τιμή.", + "smw_true_words": "αληθές,α,ναι,ν", + "smw_false_words": "ψευδές,ψ,όχι,ο", + "smw_nofloat": "Το «$1» δεν είναι αριθμός.", + "smw_infinite": "Δεν υποστηρίζονται τόσο μεγάλοι αριθμοί σαν τον «$1».", + "smw_unitnotallowed": "Το «$1» δεν έχει δηλωθεί ως έγκυρη μονάδα μέτρησης για αυτήν την ιδιότητα.", + "smw_nounitsdeclared": "Δεν έχουν δηλωθεί μονάδες μέτρησης για αυτήν την ιδιότητα.", + "smw_novalues": "Δεν καθορίστηκαν τιμές.", + "smw_nodatetime": "Η ημερομηνία «$1» δεν έγινε κατανοητή.", + "smw_toomanyclosing": "Φαίνεται ότι το «$1» εμφανίζεται πάρα πολλές φορές μέσα στο ερώτημα.", + "smw_noclosingbrackets": "Κάποιες αγκύλες «[[» στο ερώτημά σας δεν έχουν κλείσει με αντίστοιχο «]]».", + "smw_misplacedsymbol": "Το σύμβολο «$1» χρησιμοποιήθηκε σε σημείο όπου δεν έχει κάποια χρησιμότητα.", + "smw_unexpectedpart": "Το τμήμα «$1» του ερωτήματος δεν έγινε κατανοητό.\nΤα αποτελέσματα ενδέχεται να μην είναι τα αναμενόμενα.", + "smw_emptysubquery": "Κάποιο υποερώτημα δεν έχει έγκυρη συνθήκη.", + "smw_misplacedsubquery": "Κάποιο υποερώτημα χρησιμοποιήθηκε σε σημείο όπου δεν επιτρέπονται υποερωτήματα.", + "smw_valuesubquery": "Δεν υποστηρίζονται υποερωτήματα για τιμές της ιδιότητας «$1».", + "smw_badqueryatom": "Κάποιο τμήμα «[[…]]» του ερωτήματος δεν έγινε κατανοητό.", + "smw_propvalueproblem": "Η τιμή της ιδιότητας «$1» δεν έγινε κατανοητή.", + "smw_noqueryfeature": "Κάποια δυνατότητα των ερωτημάτων δεν υποστηρίζεται σε αυτό το wiki και ένα μέρος του ερωτήματος έχει κοπεί ($1).", + "smw_noconjunctions": "Η λογική σύζευξη ερωτημάτων δεν υποστηρίζεται σε αυτό το wiki και ένα μέρος του ερωτήματος έχει κοπεί ($1).", + "smw_nodisjunctions": "Η λογική διάζευξη ερωτημάτων δεν υποστηρίζεται σε αυτό το wiki και ένα μέρος του ερωτήματος έχει κοπεί ($1).", + "smw_querytoolarge": "{{PLURAL:$2|Η ακόλουθη συνθήκη του ερωτήματος δεν μπόρεσε να ληφθεί|Οι ακόλουθες συνθήκες του ερωτήματος δεν μπόρεσαν να ληφθούν}} υπόψιν λόγω των περιορισμών μεγέθους ή βάθους ερωτήματος αυτού του wiki: $1.", + "smw_notemplategiven": "Δώστε μια τιμή για την παράμετρο «πρότυπο» για αυτήν τη μορφή ερωτήματος για να λειτουργήσει.", + "smw_db_sparqlqueryproblem": "Το αποτέλεσμα του ερωτήματος δεν ήταν δυνατόν να ληφθεί από τη βάση δεδομένων SPARQL. Αυτό το σφάλμα μπορεί να είναι προσωρινό ή να δηλώνει την ύπαρξη προγραμματιστικού σφάλματος στο λογισμικό της βάσης δεδομένων.", + "smw_db_sparqlqueryincomplete": "Το να απαντηθεί το ερώτημα αποδείχτηκε πολύ δύσκολο και η εκτέλεση δεν ολοκληρώθηκε. Μερικά αποτελέσματα μπορεί να είναι ελλειπή. Εάν είναι δυνατόν, προσπαθήστε να χρησιμοποιήσετε απλούστερο ερώτημα.", + "smw_type_header": "Ιδιότητες τύπου «$1»", + "smw_typearticlecount": "Εμφάνιση $1 {{PLURAL:$1|ιδιότητας|ιδιοτήτων}} που χρησιμοποιούν αυτόν τον τύπο.", + "smw_attribute_header": "Σελίδες που χρησιμοποιούν την ιδιότητα «$1»", + "smw_attributearticlecount": "Εμφάνιση $1 {{PLURAL:$1|σελίδας που χρησιμοποιεί|σελίδων που χρησιμοποιούν}} αυτήν την ιδιότητα.", + "smw-propertylist-subproperty-header": "Υποϊδιότητες", + "smw-propertylist-redirect-header": "Συνώνυμα", + "smw-propertylist-error-header": "Σελίδες με ακατάλληλες αναθέσεις", + "smw-propertylist-count": "Εμφάνιση $1 {{PLURAL:$1|συσχετισμένης οντότητας|συσχετισμένων οντοτήτων}}.", + "smw-propertylist-count-with-restricted-note": "Εμφάνιση $1 {{PLURAL:$1|συσχετισμένης οντότητας|συσχετισμένων οντοτήτων}} (περισσότερες είναι διαθέσιμες, αλλά η παρουσίαση περιορίζεται σε «$2»).", + "smw-propertylist-count-more-available": "Εμφάνιση $1 {{PLURAL:$1|συσχετισμένης οντότητας|συσχετισμένων οντοτήτων}} (περισσότερες είναι διαθέσιμες).", + "specialpages-group-smw_group": "Σημασιολογικό MediaWiki", + "specialpages-group-smw_group-maintenance": "Συντήρηση", + "specialpages-group-smw_group-properties-concepts-types": "Ιδιότητες, έννοιες και τύποι", + "exportrdf": "Εξαγωγή σελίδων σε RDF", + "smw_exportrdf_docu": "Αυτή η σελίδα σας επιτρέπει τη λήψη δεδομένων από μια σελίδα σε μορφή RDF.\nΓια να εξαγάγετε σελίδες, πληκτρολογήστε τους τίτλους τους στο πλαίσιο κειμένου παρακάτω, ένας τίτλος ανά γραμμή.", + "smw_exportrdf_recursive": "Εξαγωγή όλων των σχετικών σελίδων αναδρομικά.\nΝα σημειωθεί ότι το αποτέλεσμα μπορεί να είναι μεγάλο!", + "smw_exportrdf_backlinks": "Εξαγωγή επίσης όλων των σελίδων που αναφέρονται στις εξαγόμενες σελίδες.\nΠαράγει RDF με δυνατότητα περιήγησης (δηλαδή με συνδέσμους επιστροφής).", + "smw_exportrdf_lastdate": "Μην εξάγετε σελίδες που δεν έχουν αλλάξει από τη δεδομένη χρονική στιγμή.", + "smw_exportrdf_submit": "Εξαγωγή", + "uriresolver": "Επιλύτης URI", + "properties": "Ιδιότητες", + "smw-categories": "Κατηγορίες", + "smw_properties_docu": "Σε αυτό το wiki χρησιμοποιούνται οι ακόλουθες ιδιότητες.", + "smw_property_template": "$1 τύπου $2 ($3 {{PLURAL:$3|χρήση|χρήσεις}})", + "smw_propertylackspage": "Όλες οι ιδιότητες πρέπει να περιγράφονται από κάποια σελίδα!", + "smw_propertylackstype": "Δεν έχει καθοριστεί τύπος για την ιδιότητα αυτή (προς το παρόν θεωρείται τύπος $1).", + "smw_propertyhardlyused": "Αυτή η ιδιότητα δεν χρησιμοποιείται σχεδόν καθόλου εντός του wiki!", + "smw-property-name-invalid": "Η ιδιότητα $1 δεν μπορεί να χρησιμοποιηθεί (μη έγκυρο όνομα ιδιότητας).", + "smw-property-name-reserved": " Το\"$1\" ταξινομήθηκε ως όνομα καταχώρησης από αποθήκευση και δεν πρέπει να χρησιμοποιείται για ιδία χρήση. Η ακόλουθη ιστοσελίδα [https://www.semantic-mediawiki.org/wiki/Help:Property_naming help page] μπορεί να περιλαμβάνει πληροφορίες όπως το γιατί αυτό το όνομα αποθηκεύτηκε (καταχωρήθηκε).", + "smw-sp-property-searchform": "Προβολή ιδιοτήτων που περιέχουν:", + "smw-sp-property-searchform-inputinfo": "Το πλαίσιο εισαγωγής δεδομένων κάνει διάκριση πεζών-κεφαλαίων και όταν χρησιμοποιείται για φιλτράρισμα, εμφανίζονται μόνο ιδιότητες που ικανοποιούν τη συνθήκη.", + "smw-special-property-searchform": "Παρουσίαση ιδιοτήτων που περιέχουν:", + "smw-special-property-searchform-inputinfo": "Το πλαίσιο εισαγωγής δεδομένων κάνει διάκριση πεζών-κεφαλαίων και όταν χρησιμοποιείται για φιλτράρισμα, εμφανίζονται μόνο ιδιότητες που ικανοποιούν τη συνθήκη.", + "smw-special-property-searchform-options": "Επιλογές", + "smw-special-wantedproperties-filter-label": "Φίλτρο:", + "smw-special-wantedproperties-filter-none": "Κανένα", + "smw-special-wantedproperties-filter-unapproved": "Μη εγκεκριμένο", + "concepts": "Έννοιες", + "smw-special-concept-docu": "Μια [https://www.semantic-mediawiki.org/wiki/Help:Concepts έννοια] μπορεί να θεωρηθεί ως «δυναμική κατηγορία», δηλαδή ως μία συλλογή σελίδων που δεν δημιουργήθηκαν με το χέρι αλλά μέσω υπολογισμών από το Σημασιολογικό MediaWiki από την περιγραφή δεδομένου ερωτήματος.", + "smw-special-concept-header": "Κατάλογος εννοιών", + "smw-special-concept-count": "{{PLURAL:$1|Παρατίθεται η ακόλουθη έννοια|Παρατίθενται οι ακόλουθες $1 έννοιες}}.", + "smw-special-concept-empty": "Δεν βρέθηκε κάποια έννοια.", + "unusedproperties": "Αχρησιμοποίητες ιδιότητες", + "smw-unusedproperties-docu": "Αυτή η σελίδα παρουσιάζει μια λίστα με [https://www.semantic-mediawiki.org/wiki/Unused_properties αχρησιμοποίητες ιδιότητες] που ενώ έχουν οριστεί, δεν χρησιμοποιούνται σε κάποια σελίδα. Μπορείτε σε αντιπαραβολή να δείτε την ειδική σελίδα με [[Special:Properties|όλες τις ιδιότητες]] ή αυτήν με τις [[Special:WantedProperties|ζητούμενες ιδιότητες]].", + "smw-unusedproperty-template": "$1 τύπου $2", + "wantedproperties": "Επιθυμητές ιδιότητες", + "smw-wantedproperties-docu": "Αυτή η σελίδα παρουσιάζει μια λίστα με [https://www.semantic-mediawiki.org/wiki/Wanted_properties ζητούμενες ιδιότητες] που ενώ χρησιμοποιούνται στο wiki, δεν έχουν σελίδα που να τις ορίζει. Μπορείτε σε αντιπαραβολή να δείτε την ειδική σελίδα με [[Special:Properties|όλες τις ιδιότητες]] ή αυτήν με τις [[Special:UnusedProperties|αχρησιμοποίητες ιδιότητες]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|χρήση|χρήσεις}})", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|χρήση|χρήσεις}})", + "smw_purge": "Ανανέωση", + "smw-purge-failed": "Το Σημασιολογικό MediaWiki προσπάθησε να ανανεώσει τη σελίδα αλλά απέτυχε", + "types": "Τύποι", + "smw_types_docu": "Λίστα [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes διαθέσιμων τύπων δεδομένων] με κάθε [https://www.semantic-mediawiki.org/wiki/Help:Datatype τύπο] να αντιπροσωπεύει ένα μοναδικό σύνολο χαρακτηριστικών για να περιγράψει μια τιμή από πλευράς χαρακτηριστικών αποθήκευσης και εμφάνισης που είναι κληρονομικά ως προς κάποια ανατεθειμένη ιδιότητα.", + "smw-special-types-no-such-type": "Το «$1» είναι άγνωστο και δεν έχει καθοριστεί ως έγκυρος τύπος δεδομένων.", + "smw-statistics": "Σημασιολογικά στατιστικά", + "smw-statistics-cached": "Σημασιολογικά στατιστικά (αποθηκευμένα στην προσωρινή μνήμη)", + "smw-statistics-entities-total": "Οντότητες (σύνολο)", + "smw-statistics-property-instance": "{{PLURAL:$1|Τιμή ιδιότητας|Τιμές ιδιοτήτων}} (συνολικά)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Ιδιότητα|Ιδιότητες}}]] (συνολικά)", + "smw-statistics-property-total-info": "Το σύνολο των καταχωρισμένων ιδιοτήτων.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Ιδιότητα|Ιδιότητες}} (συνολικά)", + "smw-statistics-property-used": "{{PLURAL:$1|Ιδιότητα (που χρησιμοποιείται με τουλάχιστον μία τιμή)|Ιδιότητες (που χρησιμοποιούνται με τουλάχιστον μία τιμή)}}", + "smw-statistics-property-page": "{{PLURAL:$1|Ιδιότητα (καταχωρισμένη σε σελίδα)|Ιδιότητες (καταχωρισμένες σε σελίδες)}}", + "smw-statistics-property-page-info": "Αριθμός ιδιοτήτων που έχουν δική τους σελίδα και περιγραφή.", + "smw-statistics-property-type": "{{PLURAL:$1|Ιδιότητα (εκχωρισμένη σε τύπο δεδομένων)|Ιδιότητες (εκχωρισμένες σε τύπους δεδομένων)}}", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Ερώτημα|Ερωτήματα}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Ερώτημα (ενσωματωμένο, σύνολο)|Ερωτήματα}} (ενσωματωμένα, σύνολο)]]", + "smw-statistics-query-format": "μορφή $1", + "smw-statistics-query-size": "Μέγεθος ερωτήματος", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Έννοια|Έννοιες}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Έννοια|Έννοιες}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Υποαντικείμενο|Υποαντικείμενα}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Υποαντικείμενο|Υποαντικείμενα}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Τύπος δεδομένων|Τύποι δεδομένων}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Τιμή ιδιότητας|Τιμές ιδιοτήτων}} ([[Special:ProcessingErrorList|{{PLURAL:$1|ακατάλληλη σημειογραφία|ακατάλληλες σημειογραφίες}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Τιμή ιδιότητας|Τιμές ιδιοτήτων}} ({{PLURAL:$1|ακατάλληλη σημειογραφία|ακατάλληλες σημειογραφίες}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Παρωχημένη οντότητα|Παρωχημένες οντότητες}}]", + "smw-statistics-delete-count-info": "Οντότητες που έχουν επισημανθεί για κατάργηση και πρέπει να απορρίπτονται τακτικά χρησιμοποιώντας τις παρεχόμενες δέσμες ενεργειών συντήρησης.", + "smw_uri_doc": "Ο αναλυτής URI υλοποιεί το [$1 εύρημα της Ομάδας Τεχνικής Αρχιτεκτονικής του W3C σχετικά με το θέμα «httpRange-14»].\nΟυσιαστικά φροντίζει οι άνθρωποι να μην μεταμορφωθούν σε ιστοσελίδες.", + "ask": "Σημασιολογική αναζήτηση", + "smw-ask-help": "Αυτή η ενότητα περιέχει ορισμένους συνδέσμους για να βοηθήσουν στην κατανόηση του πώς να χρησιμοποιήσετε τη σύνταξη #ask.\n\n* Το [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Επιλέγοντας σελίδες] περιγράφει πώς να επιλέγετε σελίδες και να κατασκευάζετε συνθήκες.\n\n*Το [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Τελεστές αναζήτησης] παραθέτει τους διαθέσιμους τελεστές αναζήτησης, συμπεριλαμβανομένων αυτών για ερωτήματα εύρους και ερωτήματα με μπαλαντέρ\n\n\n*Το [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Εμφανίζοντας τις πληροφορίες] περιγράφει τη χρήση των τρόπων εξαγωγής δηλώσεων και τις επιλογές μορφοποίησης", + "smw_ask_sortby": "Ταξινόμηση κατά στήλη (προαιρετικό)", + "smw_ask_ascorder": "Αύξουσα", + "smw_ask_descorder": "Φθίνουσα", + "smw-ask-order-rand": "Τυχαία", + "smw_ask_submit": "Εύρεση αποτελεσμάτων", + "smw_ask_editquery": "Επεξεργασία ερωτήματος", + "smw_add_sortcondition": "[Προσθήκη συνθήκης ταξινόμησης]", + "smw-ask-sort-add-action": "Προσθήκη συνθήκης ταξινόμησης", + "smw_ask_hidequery": "Απόκρυψη ερωτήματος (συμπαγής προβολή)", + "smw_ask_help": "Βοήθεια για τα ερωτήματα", + "smw_ask_queryhead": "Συνθήκη", + "smw_ask_printhead": "Επιλογή ιδιοτήτων προς εμφάνιση", + "smw_ask_printdesc": "(βάλτε μια ιδιότητα ανά γραμμή)", + "smw_ask_format_as": "Μορφοποίηση ως:", + "smw_ask_defaultformat": "προεπιλογή", + "smw_ask_otheroptions": "Άλλες επιλογές", + "smw-ask-otheroptions-info": "Αυτή η ενότητα περιέχει επιλογές που μεταβάλλουν καταστάσεις εκτυπώσεων. Μπορείτε να δείτε τις περιγραφές παραμέτρων περνώντας το ποντίκι από πάνω τους.", + "smw-ask-otheroptions-collapsed-info": "Παρακαλούμε χρησιμοποιήστε το εικονίδιο με το σύμβολο «συν» για να δείτε όλες τις διαθέσιμες επιλογές", + "smw_ask_show_embed": "Εμφάνιση ενσωματωμένου κώδικα", + "smw_ask_hide_embed": "Απόκρυψη ενσωματωμένου κώδικα", + "smw_ask_embed_instr": "Για την ενσωμάτωση αυτού του ερωτήματος σε μια σελίδα wiki, χρησιμοποιήστε τον παρακάτω κώδικα.", + "smw-ask-delete": "Διαγραφή", + "smw-ask-sorting": "Ταξινόμηση", + "smw-ask-options": "Επιλογές", + "smw-ask-options-sort": "Επιλογές ταξινόμησης", + "smw-ask-format-options": "Μορφή και επιλογές", + "smw-ask-parameters": "Παράμετροι", + "smw-ask-search": "Αναζήτηση", + "smw-ask-debug": "Εκσφαλμάτωση", + "smw-ask-no-cache": "Απενεργοποίηση προσωρινής μνήμης ερωτήματος", + "smw-ask-result": "Αποτέλεσμα", + "smw-ask-empty": "Διαγραφή όλων των καταχωρίσεων", + "smw-ask-format": "Μορφοποίηση", + "smw-ask-format-selection-help": "Βοήθεια για την επιλεγμένη μορφή: $1", + "smw-ask-condition-change-info": "Η συνθήκη άλλαξε και η μηχανή αναζήτησης απαιτεί να εκτελέσει ξανά το ερώτημα για να παραγάγει αποτελέσματα που ταιριάζουν με τις νέες απαιτήσεις.", + "smw-ask-input-assistance": "Βοήθεια κατά την εισαγωγή", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Βοήθεια εισαγωγής] παρέχεται για τα πεδία εκτύπωσης, ταξινόμησης και συνθήκης. Το πεδίο συνθήκης απαιτεί τη χρήση ενός από τα ακόλουθα προθέματα:", + "smw-ask-condition-input-assistance-property": "p: για λήψη υποδείξεων για ιδιότητες (π.χ. [[p:Έχει ...)", + "smw-ask-condition-input-assistance-category": "c: για λήψη υποδείξεων για κατηγορίες", + "smw-ask-condition-input-assistance-concept": "con: για λήψη υποδείξεων για έννοιες", + "smw-ask-format-change-info": "Η μορφή τροποποιήθηκε και απαιτείται να εκτελεστεί ξανά το ερώτημα για να ταιριάζει με τις νέες παραμέτρους και επιλογές οπτικοποίησης.", + "smw-ask-format-export-info": "Η επιλεγμένη μορφή είναι μια εξαγώγιμη μορφή που δεν έχει οπτική αναπαράσταση επομένως τα αποτελέσματα παρέχονται μόνο ως κατέβασμα.", + "smw-ask-query-search-info": "Το ερώτημα $1 απαντήθηκε από το {{PLURAL:$3|1=$2 (από προσωρινή μνήμη)|$2 (από προσωρινή μνήμη)|$2}} σε $4 {{PLURAL:$4|δευτερόλεπτο|δευτερόλεπτα}}.", + "searchbyproperty": "Αναζήτηση κατά ιδιότητα", + "processingerrorlist": "Κατάλογος σφαλμάτων επεξεργασίας", + "propertylabelsimilarity": "Αναφορά ομοιότητας μεταξύ ονομάτων ιδιοτήτων", + "smw-processingerrorlist-intro": "Η ακόλουθη λίστα παρέχει μια επισκόπηση σχετικά με τα [https://www.semantic-mediawiki.org/wiki/Processing_errors σφάλματα επεξεργασίας] που εμφανίστηκαν σε σχέση με το [https://www.semantic-mediawiki.org/ Σημασιολογικό MediaWiki]. Συνιστάται η παρακολούθηση αυτής της λίστας σε τακτική βάση και η διόρθωση μη έγκυρης σημειογραφίας τιμών.", + "smw-missingredirects-list": "Σελίδες στις οποίες απουσιάζουν σημειογραφίες", + "smw_sbv_docu": "Αναζήτηση για όλες τις σελίδες που έχουν μια δεδομένη ιδιότητα και τιμή.", + "smw_sbv_novalue": "Εισαγάγετε μια έγκυρη τιμή για την ιδιότητα, ή προβάλετε όλες τις τιμές ιδιοτήτων για «$1».", + "smw_sbv_displayresultfuzzy": "Λίστα με όλες τις σελίδες που έχουν ιδιότητα «$1» με τιμή «$2».\nΔεδομένου ότι υπήρξαν μόνο λίγα αποτελέσματα, εμφανίζονται επίσης κάποιες γειτονικές τιμές.", + "smw_sbv_property": "Ιδιότητα:", + "smw_sbv_value": "Τιμή:", + "smw_sbv_submit": "Εύρεση αποτελεσμάτων", + "browse": "Περιήγηση στο wiki", + "smw_browselink": "Περιήγηση στις ιδιότητες", + "smw_browse_article": "Εισαγάγετε το όνομα της σελίδας από την οποία θέλετε να ξεκινήσετε την περιήγηση.", + "smw_browse_go": "Μετάβαση", + "smw_browse_show_incoming": "Εμφάνιση ιδιοτήτων που συνδέουν εδώ", + "smw_browse_hide_incoming": "Απόκρυψη ιδιοτήτων που συνδέουν εδώ", + "smw_browse_no_outgoing": "Αυτή η σελίδα δεν έχει ιδιότητες.", + "smw_browse_no_incoming": "Δεν υπάρχει ιδιότητα που να έχει σύνδεσμο προς αυτήν τη σελίδα.", + "smw-browse-from-backend": "Οι πληροφορίες ανακτώνται αυτήν τη στιγμή από τη βάση δεδομένων.", + "smw-browse-js-disabled": "Υπάρχει η υποψία ότι το Javascript είναι απενεργοποιημένο ή μη διαθέσιμο και σας συνιστούμε να χρησιμοποιήσετε ένα πρόγραμμα περιήγησης που να υποστηρίζεται. Άλλες επιλογές αναλύονται στη σελίδα ρυθμίσεων της παραμέτρου [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Εμφάνιση ομάδων", + "smw-browse-hide-group": "Απόκρυψη ομάδων", + "smw_inverse_label_default": "$1 από", + "smw_inverse_label_property": "Ετικέτα αντίστροφης ιδιότητας", + "pageproperty": "Αναζήτηση ιδιότητας σελίδας", + "pendingtasklist": "Λίστα εκκρεμών εργασιών", + "smw_pp_docu": "Εισαγάγετε ή μια σελίδα και ιδιότητα, ή απλά μια ιδιότητα για να ανακτήσετε όλες τις ανατεθειμένες τιμές.", + "smw_pp_from": "Από τη σελίδα:", + "smw_pp_type": "Ιδιότητα:", + "smw_pp_submit": "Εύρεση αποτελεσμάτων", + "smw_result_prev": "Προηγούμενο", + "smw_result_next": "Επόμενο", + "smw_result_results": "Αποτελέσματα", + "smw_result_noresults": "Λυπούμαστε, δεν υπάρχουν αποτελέσματα.", + "smwadmin": "Πίνακας ελέγχου Σημασιολογικού MediaWiki", + "smw-admin-statistics-job-title": "Στατιστικά εργασιών", + "smw-admin-statistics-job-docu": "Τα στατιστικά εργασιών παρουσιάζουν πληροφορίες σχετικά με προγραμματισμένες εργασίες του Σημασιολογικού MediaWiki που δεν έχουν ακόμη εκτελεστεί. Ο αριθμός των εργασιών μπορεί να είναι ελαφρώς ανακριβής ή να περιέχει αποτυχημένες προσπάθειες, παρακαλείσθε να συμβουλευτείτε το [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue εγχειρίδιο χρήσης] για περαιτέρω πληροφορίες.", + "smw-admin-statistics-querycache-title": "Προσωρινή μνήμη ερωτημάτων", + "smw-admin-statistics-querycache-disabled": "Η [https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] δεν έχει ενεργοποιηθεί σε αυτό το wiki και δεν προφανώς δεν υπάρχουν διαθέσιμα στατιστικά στοιχεία.", + "smw-admin-statistics-section-explain": "Η ενότητα παρέχει πρόσθετα στατιστικά στοιχεία για τους διαχειριστές.", + "smw-admin-statistics-semanticdata-overview": "Επισκόπηση", + "smw-admin-permission-missing": "Η πρόσβαση σε αυτήν τη σελίδα έχει αποκλειστεί λόγω έλλειψης αδειών. Για λεπτομέρειες σχετικά με τις απαραίτητες ρυθμίσεις, παρακαλούμε συμβουλευτείτε τη σελίδα βοήθειας για τις [https://www.semantic-mediawiki.org/wiki/Help:Permissions άδειες].", + "smw-admin-setupsuccess": "Η μηχανή αποθήκευσης αναδομήθηκε.", + "smw_smwadmin_return": "Επιστροφή στην $1", + "smw_smwadmin_updatestarted": "Ξεκίνησε μια νέα διαδικασία ενημέρωσης για την ανανέωση των σημασιολογικών δεδομένων.\nΌλα τα αποθηκευμένα δεδομένα θα αναδομηθούν ή θα επιδιορθωθούν όπου χρειάζεται.\nΜπορείτε να παρακολουθείτε την πρόοδο της ενημέρωσης από αυτήν την ειδική σελίδα.", + "smw_smwadmin_updatenotstarted": "Υπάρχει ήδη μια διαδικασία ενημέρωσης σε εκτέλεση.\nΔεν πρόκειται να δημιουργηθεί άλλη.", + "smw_smwadmin_updatestopped": "Όλες οι υπάρχουσες διαδικασίες ενημέρωσης έχουν σταματήσει.", + "smw_smwadmin_updatenotstopped": "Για να διακόψετε τη εκτελούμενη διεργασία ενημέρωσης, πρέπει να ενεργοποιήσετε το πλαίσιο ελέγχου για να δηλώσετε ότι είστε πραγματικά βέβαιοι.", + "smw-admin-docu": "Αυτή η ειδική σελίδα σας βοηθά κατά τη διάρκεια της εγκατάστασης, αναβάθμισης, συντήρησης και χρήσης του Σημασιολογικού MediaWiki και επίσης παρέχει περαιτέρω διαχειριστικές λειτουργίες και εργασίες καθώς επίσης και στατιστικά στοιχεία.\nΝα θυμάστε να παίρνετε αντίγραφα ασφαλείας όλων των σημαντικών δεδομένων πριν από την εκτέλεση διαχειριστικών λειτουργιών.", + "smw-admin-environment": "Περιβάλλον λογισμικού", + "smw-admin-db": "Σετάρισμα βάσεως δεδομένων", + "smw-admin-db-preparation": "Η αρχικοποίηση του πίνακα βρίσκεται σε εξέλιξη και μπορεί να πάρει λίγο χρόνο πριν εμφανιστούν τα αποτελέσματα εν αναμονή του μεγέθους και των πιθανών βελτιστοποιήσεων του πίνακα.", + "smw-admin-dbdocu": "Το Σημασιολογικό MediaWiki απαιτεί τη δική του δομή βάσης δεδομένων (και είναι ανεξάρτητη από το MediaWiki συνεπώς δεν επηρεάζει την υπόλοιπη εγκατάσταση του MediaWiki) για να αποθηκεύσει τα σημασιολογικά δεδομένα.\nΑυτή η λειτουργία μπορεί να εκτελεσθεί πολλές φορές χωρίς να προκαλεί ζημιά, αλλά είναι αναγκαία μόνο μία φορά κατά την εγκατάσταση ή αναβάθμιση.", + "smw-admin-permissionswarn": "Εάν η επέμβαση αποτυγχάνει αναφέροντας σφάλματα SQL, ο χρήστης της βάσης δεδομένων τον οποίο χρησιμοποιεί το wiki σας (ελέγξτε το αρχείο σας «LocalSettings.php») μάλλον δεν έχει επαρκή δικαιώματα.\nΉ χορηγήστε σε αυτόν το χρήστη επιπλέον δικαιώματα να δημιουργεί και να διαγράφει πίνακες, ή εισαγάγετε προσωρινά τα στοιχεία του διαχειριστή της βάσης δεδομένων σας στο αρχείο «LocalSettings.php», ή χρησιμοποιήστε τη δέσμη ενεργειών συντήρησης setupStore.php, η οποία μπορεί να χρησιμοποιήσει διαπιστευτήρια διαχειριστή.", + "smw-admin-dbbutton": "Αρχικοποίηση ή αναβάθμιση πινάκων", + "smw-admin-announce": "Αναγγελία του wiki σας", + "smw-admin-announce-text": "Αν το wiki σας είναι δημόσιο, μπορείτε να το καταχωρίσετε στο WikiApiary, το wiki που παρακολουθεί άλλα wiki.", + "smw-admin-deprecation-notice-title": "Ειδοποιήσεις παρωχημένων", + "smw-admin-deprecation-notice-docu": "Η ακόλουθη ενότητα περιέχει ρυθμίσεις που είναι παρωχημένες ή έχουν καταργηθεί αλλά εντοπίστηκαν να είναι ενεργές σε αυτό το wiki. Αναμένεται ότι σε μελλοντικές εκδόσεις θα πάψει η υποστήριξη για αυτές τις ρυθμίσεις.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] is deprecated and will be removed in $2", + "smw-admin-deprecation-notice-config-notice-option": "Το [https://www.semantic-mediawiki.org/wiki/Help:$1 $1] θα καταργήσει (ή θα αντικαταστήσει) {{PLURAL:$2|την ακόλουθη επιλογή|τις ακόλουθες επιλογές}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "Το $1 είναι παρωχημένο και θα καταργηθεί στην έκδοση $2", + "smw-admin-deprecation-notice-config-replacement": "Το [https://www.semantic-mediawiki.org/wiki/Help:$1 $1] αντικαταστάθηκε από το [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-option-list": "Το $1 πρόκειται να αντικατασταθεί από το $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] was removed in $2", + "smw-admin-deprecation-notice-title-notice": "Κατηργημένες ρυθμίσεις", + "smw-admin-deprecation-notice-title-notice-explanation": "Οι παρωχημένες ρυθμίσεις εμφανίζουν ρυθμίσεις που έχουν ανιχνευθεί για χρήση σε αυτό το wiki και σχεδιάζεται να καταργηθούν ή να αλλάξουν σε μελλοντική έκδοση.", + "smw-admin-deprecation-notice-title-replacement": "Αντικατασταθείσες ή μετονομασμένες ρυθμίσεις", + "smw-admin-deprecation-notice-title-replacement-explanation": "Οι αντικατασθείσες ή μετονομασθείσες ρυθμίσεις περιέχουν ρυθμίσεις που μετονομάστηκαν ή τροποποιήθηκαν με κάποιον άλλον τρόπο και συνιστάται να ενημερώσετε αμέσως το όνομα ή τη μορφή τους.", + "smw-admin-deprecation-notice-title-removal": "Κατηργημένες ρυθμίσεις", + "smw-admin-deprecation-notice-section-legend": "Υπόμνημα", + "smw-smwadmin-refresh-title": "Επισκευή και ενημέρωση δεδομένων", + "smw_smwadmin_datarefresh": "Αναδόμηση δεδομένων", + "smw_smwadmin_datarefreshdocu": "Είναι δυνατό να επαναφέρετε όλα τα δεδομένα του Σημασιολογικού MediaWiki βασιζόμενοι στα τρέχοντα περιεχόμενα του wiki.\nΑυτό μπορεί να είναι χρήσιμο στην περίπτωση της επιδιόρθωσης κατεστραμμένων δεδομένων ή για την ανανέωση των δεδομένων εάν έχει αλλάξει η εσωτερική τους μορφή λόγω κάποιας αναβάθμισης λογισμικού.\nΗ ενημέρωση εκτελείται σελίδα σελίδα και δεν θα ολοκληρωθεί άμεσα.\nΤο ακόλουθο δείχνει εάν μια ενημέρωση βρίσκεται σε εξέλιξη και σας επιτρέπει να ξεκινήσετε ή να διακόψετε ενημερώσεις (εκτός εάν αυτή η δυνατότητα έχει απενεργοποιηθεί από το διαχειριστή του ιστοχώρου).", + "smw_smwadmin_datarefreshprogress": "Η ενημέρωση είναι ήδη σε εξέλιξη.\nΕίναι φυσικό η ενημέρωση να εξελίσσεται αργά δεδομένου ότι ανανεώνει τα δεδομένα σε μικρά κομμάτια και μόνο κάθε φορά που ένας χρήστης έχει πρόσβαση σε μια οποιαδήποτε σελίδα του wiki.\nΓια να ολοκληρώσετε αυτήν την ενημέρωση πιο γρήγορα, μπορείτε να εκτελέσετε τη δέσμη ενεργειών συντήρησης runJobs.php του MediaWiki (χρησιμοποιήστε την επιλογή --maxjobs 1000 για να περιορίσετε τον αριθμό των ενημερώσεων που θα γίνουν σε μία δέσμη ενεργειών).\nΕκτιμώμενη πρόοδος της τρέχουσας ενημέρωσης:", + "smw_smwadmin_datarefreshbutton": "Προγραμματισμός αναδόμησης δεδομένων", + "smw_smwadmin_datarefreshstop": "Σταμάτημα αυτής της ενημέρωσης", + "smw_smwadmin_datarefreshstopconfirm": "Ναι, είμαι {{GENDER:$1|σίγουρος|σίγουρη}}.", + "smw-admin-job-scheduler-note": "Οι εργασίες (αυτές που είναι ενεργοποιημένες) σε αυτήν την ενότητα εκτελούνται μέσω της ουράς εργασιών για την αποφυγή καταστάσεων αδιεξόδου κατά την εκτέλεση τους. Η [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue ουρά εργασιών] είναι υπεύθυνη για την επεξεργασία και είναι καίριας σημασίας η δέσμη ενεργειών συντήρησης runJobs.php να έχει κατάλληλη χωρητικότητα (βλ. και παράμετρο διαμόρφωσης $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "Απόρριψη παρωχημένων οντοτήτων", + "smw-admin-outdateddisposal-intro": "Ορισμένες δραστηριότητες (κάποια αλλαγή στον τύπο μιας ιδιότητας, διαγραφή σελίδων wiki ή διόρθωση τιμών σφάλματος) θα έχουν ως αποτέλεσμα [https://www.semantic-mediawiki.org/wiki/Outdated_entities παρωχημένες οντότητες] και προτείνεται η περιοδική διαγραφή τους για να απελευθερώνεται ο χώρος που καταλαμβάνουν στους σχετικούς πίνακες.", + "smw-admin-outdateddisposal-active": "Η εργασία απόρριψης παρωχημένων οντοτήτων έχει προγραμματιστεί.", + "smw-admin-outdateddisposal-button": "Έναρξη προγραμματισμένης απόρριψης", + "smw-admin-feature-disabled": "Αυτή η δυνατότητα έχει απενεργοποιηθεί σε αυτό το wiki, παρακαλούμε να συμβουλευτείτε τη σελίδα βοήθειας περί ρυθμίσεων ή επικοινωνήστε με το διαχειριστή του συστήματος.", + "smw-admin-propertystatistics-title": "Αναδόμηση στατιστικών στοιχείων ιδιοτήτων", + "smw-admin-propertystatistics-intro": "Αναδομεί το σύνολο των στατιστικών στοιχείων χρήσης των ιδιοτήτων και επ' αυτού ενημερώνει και διορθώνει το [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count πλήθος χρήσεων] κάθε ιδιότητας.", + "smw-admin-propertystatistics-active": "Η εργασία αναδόμησης των στατιστικών έχει προγραμματιστεί.", + "smw-admin-propertystatistics-button": "Έναρξης προγραμματισμένης αναδόμησης στατιστικών στοιχείων", + "smw-admin-fulltext-title": "Αναδόμηση αναζήτησης πλήρους κειμένου", + "smw-admin-fulltext-intro": "Αναδομεί το ευρετήριο αναζήτησης από πίνακες ιδιοτήτων με ενεργοποιημένο τύπο δεδομένων [https://www.semantic-mediawiki.org/wiki/Full-text αναζήτησης πλήρους κειμένου]. Αλλαγές στους κανόνες του ευρετηρίου (τροποποιημένες προειδοποιητικές λέξεις κλειδιά, νέο στέλεχος κλπ.) ή/και σε έναν πρόσφατα προστεθέντα ή τροποποιημένο πίνακα απαιτούν εκ νέου την εκτέλεση αυτής της εργασίας.", + "smw-admin-fulltext-active": "Η εργασία αναδόμησης της αναζήτησης πλήρους κειμένου έχει προγραμματιστεί.", + "smw-admin-fulltext-button": "Έναρξης προγραμματισμένης αναδόμησης πλήρους κειμένου", + "smw-admin-support": "Παροχή υποστήριξης", + "smw-admin-supportdocu": "Διάφοροι πόροι παρέχονται για να σας βοηθήσουν σε περίπτωση προβλημάτων:", + "smw-admin-installfile": "Εάν αντιμετωπίζετε προβλήματα με την εγκατάσταση, ξεκινήστε ρίχνοντας μια ματιά στις κατευθυντήριες γραμμές στο αρχείο με τίτλο INSTALL και στη σελίδα εγκατάστασης.", + "smw-admin-smwhomepage": "Η πλήρης τεκμηρίωση χρήσης του Σημασιολογικού MediaWiki βρίσκεται στο semantic-mediawiki.org.", + "smw-admin-bugsreport": "Προγραμματιστικά σφάλματα μπορούν να αναφερθούν στη σελίδα παρακολούθησης προβλημάτων, η σελίδα αναφοράς προγραμματιστικών σφαλμάτων παρέχει κάποιες οδηγίες για το πώς να γράψετε μια αποτελεσματική αναφορά για κάποιο πρόβλημα.", + "smw-admin-questions": "Εάν έχετε περαιτέρω ερωτήσεις ή προτάσεις, λάβετε μέρος στη συζήτηση στη λίστα αλληλογραφίας χρηστών του Σημασιολογικού MediaWiki.", + "smw-admin-other-functions": "Άλλες λειτουργίες", + "smw-admin-statistics-extra": "Στατιστικές λειτουργίες", + "smw-admin-statistics": "Στατιστικά", + "smw-admin-supplementary-section-title": "Συμπληρωματικές λειτουργίες", + "smw-admin-supplementary-section-subtitle": "Υποστηριζόμενες βασικές λειτουργίες", + "smw-admin-supplementary-section-intro": "Αυτή η ενότητα παρέχει πρόσθετες λειτουργίες εκτός του πεδίου των δραστηριοτήτων συντήρησης και είναι πιθανόν ορισμένες λειτουργίες που παρατίθενται (βλ. [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions τεκμηρίωση]) να είναι περιορισμένες ή μη διαθέσιμες και συνεπώς απροσπέλαστες σε αυτό το wiki.", + "smw-admin-supplementary-settings-title": "Διαμόρφωση και ρυθμίσεις", + "smw-admin-supplementary-settings-intro": "Οι $1 εμφανίζουν παραμέτρους που καθορίζουν τη συμπεριφορά του Σημασιολογικού MediaWiki", + "smw-admin-main-title": "Σημασιολογικό MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Στατιστικά λειτουργίας", + "smw-admin-supplementary-operational-statistics-short-title": "στατιστικά λειτουργίας", + "smw-admin-supplementary-operational-statistics-intro": "Παρουσιάζει ένα εκτεταμένο σύνολο από $1", + "smw-admin-supplementary-idlookup-title": "Αναζήτηση και απόρριψη οντότητας", + "smw-admin-supplementary-idlookup-short-title": "Αναζήτηση και απόρριψη οντότητας", + "smw-admin-supplementary-idlookup-intro": "Υποστηρίζει μια απλή λειτουργία $1", + "smw-admin-supplementary-duplookup-title": "Αναζήτηση πληροφοριών για διπλότυπες οντότητες", + "smw-admin-supplementary-duplookup-intro": "$1 για να βρείτε οντότητες που είναι κατηγοριοποιημένες ως διπλότυπες για τον επιλεγμένο πίνακα", + "smw-admin-supplementary-operational-statistics-cache-title": "Στατιστικά προσωρινής έκδοσης", + "smw-admin-supplementary-operational-table-statistics-title": "Στατιστικά πίνακα", + "smw-admin-supplementary-operational-table-statistics-short-title": "στατιστικά πινάκων", + "smw-admin-supplementary-operational-table-statistics-intro": "Παράγει $1 για επιλεγμένο σύνολο πινάκων", + "smw-admin-supplementary-elastic-version-info": "Έκδοση", + "smw-admin-supplementary-elastic-functions": "Υποστηριζόμενες λειτουργίες", + "smw-admin-supplementary-elastic-settings-title": "Ρυθμίσεις (ευρετήρια)", + "smw-admin-supplementary-elastic-mappings-summary": "Περίληψη", + "smw-admin-supplementary-elastic-mappings-fields": "Χαρτογραφήσεις πεδίου", + "smw-admin-supplementary-elastic-nodes-title": "Κόμβοι", + "smw-admin-supplementary-elastic-indices-title": "Ευρετήρια", + "smw-admin-supplementary-elastic-statistics-title": "Στατιστικά", + "smw-admin-supplementary-elastic-status-refresh-interval": "Διάστημα ανανέωσης: $1", + "smw-admin-supplementary-elastic-replication-files": "Αρχεία", + "smw-admin-supplementary-elastic-replication-pages": "Σελίδες", + "smw-admin-supplementary-elastic-config": "Διαμορφώσεις", + "smw-list-count": "Η λίστα περιέχει $1 {{PLURAL:$1|καταχώριση|καταχωρίσεις}}.", + "smw-property-label-uniqueness": "Η ετικέτα «$1» βρέθηκε όμοια με τουλάχιστον μία άλλη λεκτική αναπαράσταση ιδιότητας. Παρακαλούμε συμβουλευτείτε τη [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness σελίδα βοήθειας] σχετικά με τον τρόπο επίλυσης αυτού του ζητήματος.", + "smw-property-label-similarity-title": "Αναφορά ομοιότητας μεταξύ ονομάτων ιδιοτήτων", + "smw-property-label-similarity-intro": "Το $1 υπολογίζει ομοιότητες μεταξύ των υπαρχόντων ονομάτων ιδιοτήτων", + "smw-property-label-similarity-threshold": "Κατώφλιο:", + "smw-property-label-similarity-noresult": "Δεν βρέθηκαν αποτελέσματα για τις συγκεκριμένες επιλογές.", + "smw-admin-operational-statistics": "Αυτή η σελίδα περιέχει στατιστικά στοιχεία λειτουργίας που συλλέγονται σε ή από συναφείς λειτουργίες του Σημασιολογικού MediaWiki. Μια εκτεταμένη λίστα στατιστικών στοιχείων σχετικά με το wiki μπορεί να βρεθεί [[Special:Statistics|εδώ]].", + "smw_adminlinks_datastructure": "Δομή δεδομένων", + "smw_adminlinks_displayingdata": "Παρουσίαση δεδομένων", + "smw_adminlinks_inlinequerieshelp": "Βοήθεια σχετικά με τα ερωτήματα εντός κειμένου", + "smw-page-indicator-usage-count": "Εκτιμώμενο [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count πλήθος χρήσεων]: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "Ιδιότητα ορισμένη από {{PLURAL:$1|χρήστη|το σύστημα}}", + "smw-createproperty-isproperty": "Αυτή είναι ιδιότητα τύπου $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Η επιτρεπτή τιμή|Οι επιτρεπτές τιμές}} για αυτήν την ιδιότητα είναι:", + "smw-paramdesc-category-delim": "Το διαχωριστικό", + "smw-paramdesc-category-template": "Ένα πρότυπο για να μορφοποιήσετε με αυτό τα στοιχεία", + "smw-paramdesc-category-userparam": "Παράμετρος για να την περάσετε στο πρότυπο", + "smw-info-par-message": "Μήνυμα προς εμφάνιση.", + "smw-info-par-icon": "Εικονίδιο για εμφάνιση είτε «πληροφοριών» είτε «προειδοποίησης».", + "prefs-smw": "Σημασιολογικό MediaWiki", + "prefs-general-options": "Γενικές επιλογές", + "prefs-extended-search-options": "Εκτεταμένη αναζήτηση", + "prefs-ask-options": "Σημασιολογική αναζήτηση", + "smw-prefs-intro-text": "Το [https://www.semantic-mediawiki.org/ Σημασιολογικό MediaWiki] και οι συναφείς επεκτάσεις παρέχουν εξατομικευμένες προτιμήσεις για μια ομάδα επιλεγμένων χαρακτηριστικών και λειτουργιών. Μια λίστα μεμονωμένων ρυθμίσεων με την περιγραφή και τα χαρακτηριστικά τους είναι διαθέσιμη στην ακόλουθη [https://www.semantic-mediawiki.org/wiki/Help:User_preferences σελίδα βοηθείας].", + "smw-prefs-ask-options-tooltip-display": "Εμφάνιση κειμένου παραμέτρου ως πληροφορίες στο δείκτη του ποντικιού στην ειδική σελίδα [[Special:Ask|εργαλείο δημιουργίας ερωτημάτων]] με το #ask.", + "smw-prefs-general-options-jobqueue-watchlist": "Εμφάνιση της λίστας παρακολούθησης ουράς εργασιών στην προσωπική μου μπάρα", + "smw-prefs-general-options-disable-editpage-info": "Απενεργοποίηση του εισαγωγικού κειμένου στη σελίδα επεξεργασίας", + "smw-prefs-general-options-disable-search-info": "Απενεργοποίηση των πληροφοριών υποστήριξης σύνταξης στην τυπική σελίδα αναζήτησης", + "smw-prefs-general-options-suggester-textinput": "Ενεργοποίηση της βοήθειας κατά την εισαγωγή για σημασιολογικές οντότητες", + "smw-prefs-help-general-options-suggester-textinput": "Εάν είναι ενεργοποιημένη, επιτρέπει τη χρήση [[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance βοήθειας κατά την εισαγωγή]] για την εύρεση ιδιοτήτων, εννοιών και κατηγοριών από συμφραζόμενα της εισόδου.", + "smw-ui-tooltip-title-property": "Ιδιότητα", + "smw-ui-tooltip-title-quantity": "Μετατροπή μονάδας", + "smw-ui-tooltip-title-info": "Πληροφορίες", + "smw-ui-tooltip-title-service": "Σύνδεσμοι υπηρεσίας", + "smw-ui-tooltip-title-warning": "Προειδοποίηση", + "smw-ui-tooltip-title-error": "Σφάλμα", + "smw-ui-tooltip-title-parameter": "Παράμετρος", + "smw-ui-tooltip-title-event": "Συμβάν", + "smw-ui-tooltip-title-note": "Σημείωση", + "smw-ui-tooltip-title-legend": "Υπόμνημα", + "smw-ui-tooltip-title-reference": "Αναφορά", + "smw_unknowntype": "Ο τύπος «$1» αυτής της ιδιότητας δεν είναι έγκυρος", + "smw-concept-cache-text": "Η έννοια διαθέτει συνολικά $1 {{PLURAL:$1|σελίδα|σελίδες}} και ενημερώθηκε τελευταία φορά στις $2, στις $3.", + "smw_concept_header": "Σελίδες της έννοιας «$1»", + "smw_conceptarticlecount": "Παρακάτω {{PLURAL:$1|εμφανίζεται 1 σελίδα|εμφανίζονται $1 σελίδες}}.", + "smw-qp-empty-data": "Τα ζητούμενα δεδομένα δεν μπορούν να προβληθούν λόγω ανεπαρκών κριτηρίων επιλογής.", + "right-smw-admin": "Πρόσβαση σε διαχειριστικές εργασίες (Σημασιολογικό MediaWiki)", + "right-smw-patternedit": "Πρόσβαση επεξεργασίας για τη συντήρηση των επιτρεπτών κανονικών εκφράσεων και μοτίβων (Σημασιολογικό MediaWiki)", + "action-smw-patternedit": "επεξεργαστείτε κανονικές εκφράσεις που χρησιμοποιούνται από το Σημασιολογικό MediaWiki", + "group-smwadministrator": "Διαχειριστές (Σημασιολογικού MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|διαχειριστής|διαχειρίστρια}} (Σημασιολογικού MediaWiki)", + "grouppage-smwadministrator": "{{ns:project}}:Διαχειριστές (Σημασιολογικού MediaWiki)", + "group-smwcurator": "Επιμελητές (Σημασιολογικό MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|επιμελητής|επιμελήτρια}} (Σημασιολογικό MediaWiki)", + "grouppage-smwcurator": "{{ns:project}}:Επιμελητές (Σημασιολογικό MediaWiki)", + "group-smweditor": "Συντάκτες (Σημασιολογικό MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|συντάκτης|συντάκτρια}} (Σημασιολογικό MediaWiki)", + "grouppage-smweditor": "{{ns:project}}:Συντάκτες (Σημασιολογικού MediaWiki)", + "action-smw-admin": "μεταβείτε στις διαχειριστικές εργασίες του Σημασιολογικού MediaWiki", + "action-smw-ruleedit": "επεξεργαστείτε σελίδες κανόνων (Σημασιολογικό MediaWiki)", + "smw-property-predefined-default": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα του $2.", + "smw-property-predefined-common": "Αυτή η ιδιότητα είναι μια εκ των προτέρων ορισμένη ιδιότητα (γνωστή επίσης ως [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ειδική ιδιότητα]) και συνοδεύεται από επιπλέον διαχειριστικά προνόμια αλλά μπορεί να χρησιμοποιηθεί ακριβώς όπως οποιαδήποτε άλλη [https://www.semantic-mediawiki.org/wiki/Property ιδιότητα που ορίζεται από χρήστη].", + "smw-property-predefined-ask": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα που αναπαριστά μεταπληροφορία (με τη μορφή [https://www.semantic-mediawiki.org/wiki/Subobject υποαντικειμένου]) σχετικά με μεμονωμένα ερωτήματα και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-asksi": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία συλλέγει τον αριθμό των συνθηκών που χρησιμοποιούνται σε ένα ερώτημα και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-askde": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία παρέχει πληροφορίες σχετικά με το βάθος ενός ερωτήματος και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-long-askde": "Είναι μια αριθμητική τιμή που υπολογίζεται με βάση την εμφώλευση υποερωτημάτων, τις αλυσίδες ιδιοτήτων και τα διαθέσιμα στοιχεία περιγραφής με την εκτέλεση ερωτήματος που περιορίζεται από τη ρύθμιση [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-sp-properties-docu": "Αυτή η ειδική σελίδα παρέχει μια λίστα με τις διαθέσιμες [https://www.semantic-mediawiki.org/wiki/Property ιδιότητες] και το πλήθος χρήσεών τους για αυτό το wiki. Για πιο επικαιροποιημένα στατιστικά μετρήσεων συνιστάται η εκτέλεση της δέσμης ενεργειών συντήρησης των [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics στατιστικών στοιχείων των ιδιοτήτων] σε τακτική βάση. Για μια διαφοροποιημένη προβολή, δείτε τις ειδικές σελίδες με τις [[Special:UnusedProperties|μη χρησιμοποιούμενες]] ή τις [[Special:WantedProperties|ζητούμενες ιδιότητες]].", + "smw-sp-properties-cache-info": "Τα δεδομένα που παρατίθενται έχουν ανακτηθεί από την [https://www.semantic-mediawiki.org/wiki/Caching προσωρινή μνήμη] και ενημερώθηκαν τελευταία φορά στις $1.", + "smw-sp-properties-header-label": "Κατάλογος ιδιοτήτων", + "smw-admin-settings-docu": "Παρουσιάζει μια λίστα όλων των προεπιλεγμένων και τοπικοποιημένων ρυθμίσεων που αφορούν στο περιβάλλον του Σημασιολογικού MediaWiki. Για λεπτομέρειες σχετικά με συγκεκριμένες ρυθμίσεις, συμβουλευθείτε τη σελίδα βοήθειας περί [https://www.semantic-mediawiki.org/wiki/Help:Configuration διαμόρφωσης].", + "smw-sp-admin-settings-button": "Δημιουργία λίστας ρυθμίσεων", + "smw-admin-idlookup-title": "Αναζήτηση", + "smw-admin-idlookup-docu": "Αυτή η ενότητα εμφανίζει τεχνικές λεπτομέρειες σχετικά με ένα αναγνωριστικό εσωτερικού αντικειμένου που αντιπροσωπεύει μια μεμονωμένη οντότητα (σελίδα wiki, υποαντικείμενο, ιδιότητα κλπ.) στο Σημασιολογικό MediaWiki. Η είσοδος μπορεί να είναι ένα αναγνωριστικό ή μια τιμή συμβολοσειράς που να ταιριάζει με το σχετικό πεδίο αναζήτησης, ωστόσο οποιαδήποτε αναφορά σε αναγνωριστικό σχετίζεται με το Σημασιολογικό MediaWiki και όχι με σελίδα του MediaWiki ή αναγνωριστικό αναθεώρησης.", + "smw-admin-iddispose-title": "Απόρριψη", + "smw-admin-iddispose-done": "Το αναγνωριστικό «$1» έχει αφαιρεθεί από τη βάση δεδομένων.", + "smw-admin-idlookup-input": "Αναζήτηση:", + "smw-admin-objectid": "Αναγνωριστικό:", + "smw-admin-tab-general": "Επισκόπηση", + "smw-admin-tab-notices": "Ειδοποιήσεις παρωχημένων", + "smw-admin-tab-maintenance": "Συντήρηση", + "smw-admin-tab-supplement": "Συμπληρωματικές λειτουργίες", + "smw-admin-tab-registry": "Μητρώο", + "smw-admin-tab-alerts": "Ειδοποιήσεις", + "smw-admin-alerts-tab-maintenancealerts": "Ειδοποιήσεις συντήρησης", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Βελτιστοποίηση πίνακα", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Παρωχημένες οντότητες", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Μη έγκυρες οντότητες", + "smw-admin-deprecation-notice-section": "Σημασιολογικό MediaWiki", + "smw-admin-configutation-tab-settings": "Ρυθμίσεις", + "smw-admin-configutation-tab-namespaces": "Ονοματοχώροι", + "smw-admin-configutation-tab-schematypes": "Τύποι σημασιολογικού σχήματος", + "smw-admin-maintenance-tab-tasks": "Εργασίες", + "smw-admin-maintenance-tab-scripts": "Δέσμες ενεργειών συντήρησης", + "smw-admin-maintenance-no-description": "Χωρίς περιγραφή.", + "smw-admin-maintenance-script-section-title": "Κατάλογος διαθέσιμων δεσμών ενεργειών συντήρησης", + "smw-admin-maintenance-script-section-intro": "Οι ακόλουθες δέσμες ενεργειών συντήρησης απαιτούν κάποιον διαχειριστή και πρόσβαση στη γραμμή εντολών για να είναι σε θέση να εκτελέσει τις αναφερόμενες δέσμες ενεργειών.", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Επανακατασκευάζει τα στατιστικά χρήσης για όλες τις οντότητες ιδιότητας.", + "smw-livepreview-loading": "Φόρτωση σε εξέλιξη...", + "smw-sp-searchbyproperty-description": "Αυτή η σελίδα παρέχει μια απλή [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces διεπαφή περιήγησης] για την εύρεση οντοτήτων που περιγράφονται από κάποια ιδιότητα και κάποια ονομαστική τιμή. Άλλες διαθέσιμες διεπαφές αναζήτησης περιλαμβάνουν την [[Special:PageProperty|αναζήτηση ιδιοτήτων σελίδας]] και το [[Special:Ask|εργαλείο κατασκευής ερωτημάτων]].", + "smw-sp-searchbyproperty-resultlist-header": "Λίστα αποτελεσμάτων", + "smw-sp-searchbyproperty-nonvaluequery": "Μια λίστα τιμών που έχουν ανατεθειμένη την ιδιότητα «$1».", + "smw-sp-searchbyproperty-valuequery": "Κατάλογος σελίδων που έχουν την ιδιότητα «$1» με σημειωμένη τιμή «$2».", + "smw-datavalue-number-textnotallowed": "Το «$1» δεν μπορεί να εκχωρηθεί σε τύπο που έχει δηλωθεί ως αριθμητικός με τιμή $2.", + "smw-datavalue-number-nullnotallowed": "Το «$1» επέστρεψε «NULL», το οποίο δεν επιτρέπεται ως αριθμός.", + "smw-editpage-annotation-enabled": "Αυτή η σελίδα υποστηρίζει ενδοκειμενική σημασιολογική σημειογραφία (π.χ. «[[Ορίζεται ως::Μνημείο παγκόσμιας πολιτιστικής κληρονομιάς]]») για την κατασκευή δομημένου και ανακτήσιμου μέσω ερωτημάτων περιεχομένου που παρέχεται από το Σημασιολογικό MediaWiki. Για μια ολοκληρωμένη περιγραφή για το πώς να χρησιμοποιείτε αυτή τη σημειογραφία ή τη συνάρτηση του συντακτικού αναλυτή #ask, παρακαλούμε ρίξτε μια ματιά στις σελίδες βοήθειας [https://www.semantic-mediawiki.org/wiki/Help:Getting_started ξεκινώντας], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation ενδοκειμενική σημειογραφία], ή [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries ενδοκειμενικά ερωτήματα].", + "smw-editpage-annotation-disabled": "Σε αυτήν τη σελίδα δεν παρέχεται η δυνατότητα ενδοκειμενικής σημασιολογικής σημειογραφίας λόγω περιορισμών του ονοματοχώρου. Λεπτομέρειες σχετικά με το πώς να ενεργοποιήσετε αυτήν τη δυνατότητα για τον ονοματοχώρο μπορούν να βρεθούν στη σελίδα βοήθειας για τη [https://semantic-mediawiki.org/wiki/Help:Configuration ρύθμιση παραμέτρων].", + "smw-editpage-property-annotation-enabled": "Αυτή η ιδιότητα μπορεί να επεκταθεί χρησιμοποιώντας σημασιολογική σημειογραφία για καθορισμό τύπου δεδομένων (π.χ. «[[Has type::Page]]») ή άλλες υποστηρικτικές δηλώσεις (π.χ. «[[Subproperty of::dc:date]]»). Για περιγραφή σχετικά με το πώς να εμπλουτίσετε αυτή τη σελίδα, δείτε τη [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration δήλωση μιας ιδιότητας] ή τη σελίδα βοήθειας με τη [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes λίστα διαθέσιμων τύπων δεδομένων].", + "smw-editpage-property-annotation-disabled": "Αυτή η ιδιότητα δεν μπορεί να επεκταθεί με σημειογραφία τύπου δεδομένων (π.χ. «[[Has type::Page]]») καθώς είναι ήδη εκ των προτέρων ορισμένη (βλ. σελίδα βοήθειας σχετικά με [https://www.semantic-mediawiki.org/wiki/Help:Special_properties ειδικές ιδιότητες] για περισσότερες πληροφορίες).", + "smw-editpage-concept-annotation-enabled": "Αυτή η έννοια μπορεί να επεκταθεί χρησιμοποιώντας τη συνάρτηση του συντακτικού αναλυτή #concept. Για περιγραφή σχετικά με το πώς να χρησιμοποιήσετε την #concept, δείτε τη σελίδα βοήθειας για τις [https://www.semantic-mediawiki.org/wiki/Help:Concepts έννοιες].", + "smw-search-input": "Εισαγωγή και αναζήτηση", + "smw-search-syntax": "Επισήμανση", + "smw-search-profile-tooltip": "Λειτουργίες αναζήτησης σε σχέση με το Σημασιολογικό MediaWiki", + "smw-search-profile-sort-best": "Καλύτερη αντιστοιχία", + "smw-search-profile-sort-recent": "Πιο πρόσφατο", + "smw-search-profile-sort-title": "Τίτλος", + "smw-search-profile-extended-help-query": "Χρησιμοποιήθηκε το $1 ως ερώτημα.", + "smw-search-profile-extended-help-query-link": "(Για περισσότερες πληροφορίες παρακαλούμε χρησιμοποιήστε το $1).", + "smw-search-profile-extended-help-find-forms": "διαθέσιμες φόρμες", + "smw-search-profile-extended-section-sort": "Ταξινόμηση κατά", + "smw-search-profile-extended-section-form": "Φόρμες", + "smw-search-profile-extended-section-namespace": "Ονοματοχώρος", + "smw-search-profile-extended-section-query": "Ερώτημα", + "smw-search-profile-link-caption-query": "κατασκευαστής ερωτημάτων", + "smw-search-show": "Εμφάνιση", + "smw-search-hide": "Απόκρυψη", + "log-name-smw": "Καταγραφές Σημασιολογικού MediaWiki", + "log-show-hide-smw": "$1 μητρώου Σημασιολογικού MediaWiki", + "logeventslist-smw-log": "Καταγραφές Σημασιολογικού MediaWiki", + "log-description-smw": "Δραστηριότητες για [https://www.semantic-mediawiki.org/wiki/Help:Logging ενεργοποιημένους τύπους συμβάντων] που έχουν αναφερθεί από το Σημασιολογικό MediaWiki και τα συστατικά του.", + "logentry-smw-maintenance": "Γεγονότα σχετικά με συντήρηση που προέρχονται από το Σημασιολογικό MediaWiki", + "smw-datavalue-import-unknown-namespace": "Ο ονοματοχώρος εισαγωγής «$1» είναι άγνωστος. Παρακαλούμε βεβαιωθείτε ότι οι πληροφορίες εισαγωγής OWL είναι διαθέσιμες μέσω του ονοματοχώρου [[MediaWiki:Smw import $1]].", + "smw-datavalue-import-missing-namespace-uri": "Δεν ήταν δυνατόν να βρεθεί URI του ονοματοχώρου «$1» στην [[MediaWiki:Smw import $1|εισαγωγή $1]].", + "smw-datavalue-import-missing-type": "Δεν βρέθηκε ορισμός τύπου του «$1» στην [[MediaWiki:Smw import $2|εισαγωγή $2]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|εισαγωγή $1]]", + "smw-datavalue-import-invalid-value": "Το «$1» δεν είναι έγκυρη μορφή και αναμένεται να αποτελείται από «ονοματοχώρο»:«αναγνωριστικό» (π.χ. «foaf:name»).", + "smw-datavalue-import-invalid-format": "Η συμβολοσειρά «$1» αναμένετο να ήταν χωρισμένη σε τέσσερα μέρη, αλλά η μορφή δεν έγινε κατανοητή.", + "smw-property-predefined-impo": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα που περιγράφει σχέση με [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary εισηγμένο λεξιλόγιο] και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-type": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα που περιγράφει τον [[Special:Types|τύπο δεδομένων]] μιας ιδιότητας και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-sobj": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα που αντιπροσωπεύει ένα κατασκεύασμα σαν [https://www.semantic-mediawiki.org/wiki/Help:Container δοχείο] και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-errp": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα για την παρακολούθηση σφαλμάτων εισόδου από παράτυπη σημειογραφία τιμών και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-long-errp": "Στις περισσότερες περιπτώσεις προξενείται από έναν μη προσαρμοσμένο τύπο ή περιορισμό [[Property:Allows value|τιμής]].", + "smw-property-predefined-pval": "Η [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value «$1»] είναι μια εκ των προτέρων ορισμένη ιδιότητα που ορίζει μια λίστα από επιτρεπτές τιμές για τον περιορισμό των τιμών που μπορεί να ανατίθενται σε μια ιδιότητα και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-datavalue-property-restricted-annotation-use": "Η ιδιότητα ''$1'' έχει περιορισμένη περιοχή εφαρμογής και δεν μπορεί να χρησιμοποιηθεί ως ιδιότητα επισήμανσης από τον χρήστη", + "smw-datavalue-property-restricted-declarative-use": "Η ιδιότητα ''$1'' είναι ιδιότητα που πρέπει να δηλωθεί και μπορεί να χρησιμοποιηθεί μόνο σε μια σελίδα ιδιοτήτων ή κατηγορίας", + "smw-datavalue-restricted-use": "Η τιμή δεδομένων «$1» έχει σημανθεί για χρήση με περιορισμούς.", + "smw-datavalue-invalid-number": "Το «$1» δεν μπορεί να ερμηνευτεί ως αριθμός.", + "smw-query-condition-circular": "Ανιχνεύθηκε πιθανό πρόβλημα κυκλικότητας στο «$1»", + "smw-types-list": "Λίστα τύπων δεδομένων", + "smw-types-default": "Το «$1» είναι ενσωματωμένος τύπος δεδομένων.", + "smw-types-help": "Περισσότερες πληροφορίες και παραδείγματα μπορούν να βρεθούν σε αυτήν τη [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 σελίδα βοήθειας].", + "smw-type-anu": "Το «$1» είναι μια παραλλαγή του τύπου δεδομένων [[Special:Types/URL|URL]] και χρησιμοποιείται κυρίως ως δηλωτικό εξαγωγής ενός «owl:AnnotationProperty».", + "smw-type-boo": "Το «$1» είναι πρωτογενής τύπος δεδομένων που περιγράφει τιμή αληθές/ψευδές.", + "smw-type-cod": "Το «$1» είναι μια παραλλαγή του τύπου δεδομένων [[Special:Types/Text|Text]] για χρήση σε τεχνικά κείμενα αυθαίρετου μήκους, όπως κείμενα πηγαίου κώδικα προγραμμάτων.", + "smw-type-geo": "Το «$1» είναι τύπος δεδομένων που περιγράφει γεωγραφικές τοποθεσίες και απαιτεί την επέκταση [https://www.semantic-mediawiki.org/wiki/Semantic_Maps «Χάρτες»] για την παροχή εκτεταμένης λειτουργικότητας.", + "smw-type-tel": "Το «$1» είναι ειδικός τύπος δεδομένων που περιγράφει διεθνείς τηλεφωνικούς αριθμούς σύμφωνα με το RFC 3966.", + "smw-type-txt": "Το «$1» είναι βασικός τύπος δεδομένων που περιγράφει συμβολοσειρές αυθαίρετου μήκους.", + "smw-type-dat": "Το «$1» είναι πρωτογενής τύπος δεδομένων που αντιπροσωπεύει σημεία στο χρόνο σε μια ενιαία μορφή.", + "smw-type-ema": "Το «$1» είναι ειδικός τύπος δεδομένων που αναπαριστά διεύθυνση ηλεκτρονικού ταχυδρομείου.", + "smw-type-tem": "Το «$1» είναι ειδικός αριθμητικός τύπος δεδομένων που αναπαριστά θερμοκρασία.", + "smw-type-qty": "Το «$1» είναι τύπος δεδομένων που περιγράφει ποσότητες με αριθμητική αναπαράσταση και μονάδα μέτρησης.", + "smw-type-rec": "Το «$1» είναι τύπος δεδομένων σαν δοχείο που καθορίζει λίστα πληκτρολογούμενων ιδιοτήτων σε σταθερή σειρά.", + "smw-type-extra-tem": "Η διάταξη μετατροπής περιλαμβάνει υποστηριζόμενες μονάδες όπως Κέλβιν, Κελσίου, Φαρενάιτ και Ράνκιν.", + "smw-type-tab-properties": "Ιδιότητες", + "smw-type-tab-types": "Τύποι", + "smw-type-tab-type-ids": "Αναγνωριστικά τύπου", + "smw-type-tab-errors": "Σφάλματα", + "smw-type-primitive": "Βασικοί", + "smw-type-compound": "Σύνθετοι", + "smw-property-predefined-errc": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα που παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki] και αντιπροσωπεύει σφάλματα που εμφανίστηκαν σε σχέση με σημειογραφίες ακατάλληλης τιμής ή επεξεργασία κάποιας εισόδου.", + "smw-property-predefined-errt": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία περιέχει κάποια λεκτική περιγραφή σφάλματος και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-mdat": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία αντιστοιχεί στην ημερομηνία της τελευταίας τροποποίησης μιας σελίδας και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-cdat": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία αντιστοιχεί στην ημερομηνία της πρώτης έκδοσης μιας σελίδας και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-newp": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία υποδηλώνει εάν μία σελίδα είναι νέα ή όχι και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-ledt": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία περιέχει το όνομα σελίδας του χρήστη που δημιούργησε την τελευταία αναθεώρηση και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-mime": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία περιγράφει τον τύπο MIME κάποιου ανεβασμένου αρχείου και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-media": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία περιγράφει τον τύπο μέσου κάποιου ανεβασμένου αρχείου και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-askfo": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία αποθηκεύει το όνομα της μορφής αποτελεσμάτων που χρησιμοποιείται σε κάποιο ερώτημα και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-askst": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία περιγράφει τις συνθήκες του ερωτήματος ως συμβολοσειρά και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-askdu": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία περιέχει τη χρονική τιμή (σε δευτερόλεπτα) που απαιτήθηκε για την ολοκλήρωση της εκτέλεσης του ερωτήματος και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-asksc": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα που παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki] η οποία αναγνωρίζει εναλλακτικές (δηλαδή απομακρυσμένες, συνενωμένες) πηγές ερωτημάτων.", + "smw-property-predefined-prec": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα που περιγράφει την [https://www.semantic-mediawiki.org/wiki/Help:Display_precision απεικονιζόμενη ακρίβεια] (σε δεκαδικά ψηφία) για αριθμητικούς τύπους δεδομένων.", + "smw-types-extra-geo-not-available": "Η [https://www.semantic-mediawiki.org/wiki/Extension:Maps επέκταση «Χάρτες»] δεν εντοπίστηκε οπότε η ιδιότητα «$1» έχει περιορισμένες δυνατότητες λειτουργίας.", + "smw-datavalue-monolingual-dataitem-missing": "Απουσιάζει αναμενόμενο στοιχείο για τη δόμηση μονόγλωσσης σύνθετης τιμής.", + "smw-datavalue-languagecode-missing": "Για τη σημειογραφία «$1», ο συντακτικός αναλυτής δεν ήταν σε θέση να προσδιορίσει κωδικό γλώσσας (π.χ. «foo@en»).", + "smw-datavalue-languagecode-invalid": "Το «$1» δεν αναγνωρίστηκε ως κάποιος από τους υποστηριζόμενους κωδικούς γλώσσας.", + "smw-property-predefined-lcode": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία αντιπροσωπεύει κωδικό γλώσσας μορφοποιημένο κατά BCP47 και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-types-extra-mlt-lcode": "Ο τύπος δεδομένων {{PLURAL:$2|απαιτεί|δεν απαιτεί}} κωδικό γλώσσας (δηλαδή μια σημειογραφία τιμής χωρίς κωδικό γλώσσας {{PLURAL:$2|δεν|}} είναι αποδεκτή).", + "smw-property-predefined-text": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία αντιπροσωπεύει κείμενο αυθαίρετου μήκους και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-pdesc": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία επιτρέπει τη λεκτική περιγραφή μιας ιδιότητας σε κάποια γλώσσα και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-list": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα που ορίζει μια λίστα ιδιοτήτων που χρησιμοποιούνται με ιδιότητα τύπου [[Special:Types/Record|record]] και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] Χρόνος συντακτικού αναλυτή για ενδοκειμενική σημειογραφία", + "smw-limitreport-intext-postproctime": "[SMW] χρόνος μετα-επεξεργασίας", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|δευτερόλεπτο|δευτερόλεπτα}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|δευτερόλεπτο|δευτερόλεπτα}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|δευτερόλεπτο|δευτερόλεπτα}}", + "smw_allows_pattern": "Αυτή η σελίδα αναμένεται να περιλαμβάνει μια λίστα από παραπομπές (ακολουθούμενες από [https://en.wikipedia.org/wiki/Regular_expression κανονικές εκφράσεις]) και να γίνουν διαθέσιμες από την ιδιότητα [[Property:Allows pattern|Allows pattern]]. Για να επεξεργαστείτε αυτή τη σελίδα, απαιτείται το δικαίωμα smw-patternedit.", + "smw-datavalue-allows-pattern-mismatch": "Η τιμή «$1» χαρακτηρίστηκε ως μη έγκυρη από την κανονική έκφραση «$2».", + "smw-datavalue-allows-pattern-reference-unknown": "Για την αναφορά μοτίβου «$1» δεν βρέθηκε ταίριασμα με κάποια καταχώριση στο [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-feature-not-supported": "Η λειτουργία «$1» δεν υποστηρίζεται ή έχει απενεργοποιηθεί σε αυτό το wiki.", + "smw-datavalue-constraint-uniqueness-violation": "Η ιδιότητα «$1» επιτρέπει μόνο μοναδικές αναθέσεις τιμών και η τιμή ''$2'' έχει ήδη σημειογραφηθεί στο θέμα «$3».", + "smw-datavalue-constraint-uniqueness-violation-isknown": "Η ιδιότητα «$1» επιτρέπει μόνο μοναδικές σημειογραφήσεις τιμών, το ''$2'' περιέχει ήδη μια ανατεθειμένη τιμή. Το «$3» παραβιάζει τον περιορισμό μοναδικότητας.", + "smw-datavalue-time-invalid-values": "Η τιμή «$1» περιέχει μη ερμηνεύσιμη πληροφορία της μορφής «$2».", + "smw-datavalue-time-invalid-date-components-common": "Η τιμή «$1» περιέχει μη ερμηνεύσιμη πληροφορία.", + "smw-datavalue-time-invalid-date-components-dash": "Η τιμή «$1» περιέχει άλλου τύπου διαχωριστικό ή άλλους χαρακτήρες που δεν είναι έγκυροι για την αναγνώρισή της ως ημερομηνία.", + "smw-datavalue-time-invalid-date-components-empty": "Η τιμή «$1» περιέχει κάποια κενά στοιχεία.", + "smw-datavalue-time-invalid-date-components-three": "Η τιμή «$1» περιέχει περισσότερα από τα τρία στοιχεία που απαιτούνται για την αναγνώρισή της ως ημερομηνία.", + "smw-datavalue-time-invalid-date-components-sequence": "Το «$1» περιέχει μια ακολουθία που δεν ήταν δυνατόν να ερμηνευθεί βάσει του διαθέσιμου πίνακα με τα στοιχεία μορφής ημερομηνιών.", + "smw-datavalue-time-invalid-ampm": "Η τιμή «$1» περιέχει ως ώρα το «$2» το οποίο δεν είναι έγκυρο σε 12-ωρη μορφή.", + "smw-datavalue-external-formatter-invalid-uri": "Το «$1» είναι μη έγκυρη διεύθυνση URL.", + "smw-datavalue-keyword-maximum-length": "Η λέξη-κλειδί υπερέβη το μέγιστο μήκος {{PLURAL:$1|του|των}} $1 {{PLURAL:$1|χαρακτήρα|χαρακτήρων}}.", + "smw-property-predefined-peid": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα η οποία καθορίζει ένα εξωτερικό αναγνωριστικό και παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki].", + "smw-property-predefined-pefu": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα που παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki] για να καθορίσει μια εξωτερική διεύθυνση URI με μεταβλητό τμήμα κειμένου.", + "smw-property-predefined-long-pefu": "Το URI αναμένεται να περιέχει μια μεταβλητή κειμένου που θα λάβει μια τιμή [[Special:Types/External identifier|εξωτερικού αναγνωριστικού]] για να σχηματίσει μια έγκυρη διεύθυνση πόρου.", + "smw-datavalue-parse-error": "Η τιμή «$1» που δόθηκε δεν ήταν κατανοητή.", + "smw-datavalue-propertylist-invalid-property-key": "Η λίστα ιδιοτήτων «$1» περιείχε μη έγκυρο κλειδί ιδιότητας «$2».", + "smw-datavalue-type-invalid-typeuri": "Ο τύπος «$1» δεν θα μπορούσε να μετατραπεί σε έγκυρη αναπαράσταση URI.", + "smw-datavalue-wikipage-invalid-title": "The page type input value \"$1\" contains invalid characters or is incomplete and therefore can cause unexpected results during a query or annotation process.", + "smw-datavalue-wikipage-property-invalid-title": "Property \"$1\" (as page type) with input value \"$2\" contains invalid characters or is incomplete and therefore can cause unexpected results during a query or annotation process.", + "smw-parser-invalid-json-format": "Ο συντακτικός αναλυτής JSON επέστρεψε το σφάλμα «$1».", + "smw-clipboard-copy-link": "Αντιγραφή συνδέσμου στο πρόχειρο", + "smw-property-userdefined-fixedtable": "Η «$1» διαμορφώθηκε ως [https://www.semantic-mediawiki.org/wiki/Fixed_properties σταθερή ιδιότητα] και οποιαδήποτε τροποποίηση στη [https://www.semantic-mediawiki.org/wiki/Type_declaration δήλωση τύπου] της απαιτεί είτε να εκτελέσετε το setupStore.php είτε να ολοκληρώσετε την εργασία [[Special:SemanticMediaWiki|«Εγκατάσταση βάσεως δεδομένων και αναβάθμιση»]].", + "smw-data-lookup": "Γίνεται λήψη των δεδομένων...", + "smw-no-data-available": "Δεν υπάρχουν διαθέσιμα δεδομένα.", + "smw-property-req-violation-change-propagation-locked-error": "Η ιδιότητα \"$1\" τροποποιήθηκε και απαιτεί την επαναξιολόγηση εκχωρισμένων οντοτήτων χρησιμοποιώντας μια διαδικασία [https://www.semantic-mediawiki.org/wiki/Change_propagation διάδοσης αλλαγών]. Η σελίδα της ιδιότητας έχει κλειδωθεί έως ότου ολοκληρωθεί η ενημέρωση της κύριας προδιαγραφής για να αποφευχθούν ενδιάμεσες διακοπές ή αντιφατικές προδιαγραφές. Η διαδικασία μπορεί να πάρει κάποιο χρόνο πριν να ξεκλειδωθεί η σελίδα, καθώς εξαρτάται από το μέγεθος και τη συχνότητα του χρονοπρογραμματιστή [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue ουράς εργασιών].", + "smw-property-req-violation-change-propagation-locked-warning": "Η ιδιότητα «$1» τροποποιήθηκε και απαιτεί την επαναξιολόγηση εκχωρισμένων οντοτήτων χρησιμοποιώντας μια διαδικασία [https://www.semantic-mediawiki.org/wiki/Change_propagation διάδοσης αλλαγών]. Η ενημέρωση μπορεί να πάρει κάποιο χρόνο, καθώς εξαρτάται από το μέγεθος και τη συχνότητα του χρονοπρογραμματιστή [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue ουράς εργασιών] και προτείνεται να αναβληθούν αλλαγές στην ιδιότητα για να αποφευχθούν ενδιάμεσες διακοπές ή αντιφατικές προδιαγραφές.", + "smw-property-req-violation-change-propagation-pending": "Οι ενημερώσεις της [https://www.semantic-mediawiki.org/wiki/Change_propagation διάδοσης αλλαγών] εκκρεμούν ($1 {{PLURAL:$1|εκτιμώμενη|εκτιμώμενες}} [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|εργασία|εργασίες}}]) και συνιστάται να περιμένετε με τις τροποποιήσεις κάποιας ιδιότητας έως ότου ολοκληρωθεί η διαδικασία για να αποφευχθούν ενδιάμεσες διακοπές ή αντιφατικές προδιαγραφές.", + "smw-property-req-error-list": "Η ιδιότητα περιέχει τα ακόλουθα σφάλματα ή προειδοποιήσεις:", + "smw-category-change-propagation-locked-error": "Η κατηγορία «$1» τροποποιήθηκε και απαιτεί την επαναξιολόγηση εκχωρισμένων οντοτήτων χρησιμοποιώντας μια διαδικασία [https://www.semantic-mediawiki.org/wiki/Change_propagation διάδοσης αλλαγών]. Στο μεταξύ, η σελίδα της κατηγορίας έχει κλειδωθεί έως ότου ολοκληρωθεί η ενημέρωση της κύριας προδιαγραφής για να αποφευχθούν ενδιάμεσες διακοπές ή αντιφατικές προδιαγραφές. Η διαδικασία μπορεί να πάρει κάποιο χρόνο πριν να ξεκλειδωθεί η σελίδα, καθώς εξαρτάται από το μέγεθος και τη συχνότητα του χρονοπρογραμματιστή [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue ουράς εργασιών].", + "smw-category-change-propagation-locked-warning": "Η κατηγορία «$1» τροποποιήθηκε και απαιτεί την επαναξιολόγηση εκχωρισμένων οντοτήτων χρησιμοποιώντας μια διαδικασία [https://www.semantic-mediawiki.org/wiki/Change_propagation διάδοσης αλλαγών]. Η ενημέρωση μπορεί να πάρει κάποιο χρόνο, καθώς εξαρτάται από το μέγεθος και τη συχνότητα του χρονοπρογραμματιστή [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue ουράς εργασιών] και προτείνεται να αναβληθούν αλλαγές στην κατηγορία για να αποφευχθούν ενδιάμεσες διακοπές ή αντιφατικές προδιαγραφές.", + "smw-category-change-propagation-pending": "Οι ενημερώσεις της [https://www.semantic-mediawiki.org/wiki/Change_propagation διάδοσης αλλαγών] εκκρεμούν ($1 {{PLURAL:$1|εκτιμώμενη|εκτιμώμενες}} [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|εργασία|εργασίες}}]) και συνιστάται να περιμένετε με τις τροποποιήσεις κάποιας κατηγορίας έως ότου ολοκληρωθεί η διαδικασία για να αποφευχθούν ενδιάμεσες διακοπές ή αντιφατικές προδιαγραφές.", + "smw-category-invalid-value-assignment": "Το «$1» δεν αναγνωρίζεται ως έγκυρη κατηγορία ή σημειογραφία τιμής.", + "smw-edit-protection-enabled": "Προστατευμένη από επεξεργασίες (Σημασιολογικό MediaWiki)", + "smw-patternedit-protection": "Αυτή η σελίδα προστατεύεται και μπορούν να την επεξεργαστούν μόνο χρήστες με την κατάλληλη [https://www.semantic-mediawiki.org/wiki/Help:Permissions άδεια] smw-patternedit .", + "smw-property-predefined-edip": "Η «$1» είναι μια εκ των προτέρων ορισμένη ιδιότητα που παρέχεται από το [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Σημασιολογικό MediaWiki] για να δηλώσει εάν η επεξεργασία είναι προστατευμένη ή όχι.", + "smw-format-datatable-emptytable": "Δεν υπάρχουν δεδομένα στον διαθέσιμο πίνακα", + "smw-format-datatable-info": "Showing _START_ to _END_ of _TOTAL_ entries", + "smw-format-datatable-infoempty": "Showing 0 to 0 of 0 entries", + "smw-format-datatable-infofiltered": "(filtered from _MAX_ total entries)", + "smw-format-datatable-infothousands": ".", + "smw-format-datatable-lengthmenu": "Show _MENU_ entries", + "smw-format-datatable-loadingrecords": "Φόρτωση", + "smw-format-datatable-processing": "Γίνεται επεξεργασία...", + "smw-format-datatable-search": "Αναζήτηση:", + "smw-format-datatable-zerorecords": "Δεν βρέθηκαν εγγραφές που να ταιριάζουν", + "smw-format-datatable-first": "Πρώτο", + "smw-format-datatable-last": "Τελευταίο", + "smw-format-datatable-next": "Επόμενο", + "smw-format-datatable-previous": "Προηγούμενο", + "smw-format-datatable-sortascending": ":Ενεργοποιήστε για να ταξινομήσετε αύξουσα στήλη", + "smw-format-datatable-sortdescending": ": Ενεργοποιήστε για να ταξινομήσετε φθίνουσα στήλη", + "smw-format-datatable-toolbar-export": "Εξαγωγή", + "smw-format-list-other-fields-open": "(", + "smw-parser-function-expensive-execution-limit": "Η συνάρτηση του συντακτικού αναλυτή έχει φτάσει στο όριό της για ακριβές εκτελέσεις (βλ. παράμετρο διαμόρφωσης [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "Το Σημασιολογικό MediaWiki ανανεώνει την τρέχουσα σελίδα με την προϋπόθεση ότι απαιτείται κάποια μετα-επεξεργασία ερωτημάτων.", + "apihelp-smwtask-param-task": "Ορίζει τον τύπο εργασίας", + "smw-api-invalid-parameters": "Μη έγκυρες παράμετροι, «$1»", + "smw-property-page-list-count": "Εμφάνιση $1 {{PLURAL:$1|σελίδας που χρησιμοποιεί|σελίδων που χρησιμοποιούν}} αυτήν την ιδιότητα.", + "smw-property-reserved-category": "Κατηγορία", + "smw-category": "Κατηγορία", + "smw-datavalue-uri-invalid-scheme": "Το \"$1\" δεν έχει καταχωρηθεί ως έγκυρο σχήμα URI .", + "smw-browse-property-group-title": "Ομάδα ιδιοτήτων", + "smw-browse-property-group-label": "Ταμπέλα ομάδας ιδιοτήτων", + "smw-browse-property-group-description": "Περιγραφή ομάδας ιδιοτήτων", + "smw-filter": "Φιλτράρισμα", + "smw-section-expand": "Επέκταση της ενότητας", + "smw-section-collapse": "Σύμπτυξη της ενότητας", + "smw-help": "Βοήθεια", + "smw-cheat-sheet": "Σκονάκι", + "smw-personal-jobqueue-watchlist": "Λίστα παρακολούθησης ουράς εργασιών", + "smw-expand": "Ανάπτυξη", + "smw-collapse": "Σύμπτυξη", + "smw-copy": "Αντιγραφή", + "smw-copy-clipboard-title": "Αντιγράφει περιεχόμενο στο πρόχειρο", + "smw-jsonview-expand-title": "Επεκτείνει την προβολή JSON", + "smw-jsonview-collapse-title": "Συμπτύσσει την προβολή JSON", + "smw-jsonview-search-label": "Αναζήτηση:", + "smw-types-title": "Τύπος: $1", + "smw-schema-error-title": "{{PLURAL:$1|Σφάλμα|Σφάλματα}} επικύρωσης", + "smw-schema-error-json": "Σφάλμα JSON: «$1»", + "smw-schema-validation-schema-title": "Σημασιολογικό σχήμα JSON", + "smw-schema-summary-title": "Σύνοψη", + "smw-schema-title": "Σημασιολογικό σχήμα", + "smw-schema-usage": "Χρήση", + "smw-schema-type": "Τύπος σημασιολογικού σχήματος", + "smw-schema-type-description": "Περιγραφή τύπου", + "smw-schema-description": "Περιγραφή σημασιολογικού σχήματος", + "smw-schema-tag": "{{PLURAL:$1|Ετικέτα|Ετικέτες}}", + "smw-ask-title-keyword-type": "Αναζήτηση με λέξεις κλειδιά", + "smw-parameter-missing": "Η παράμετρος «$1» απουσιάζει.", + "smw-property-tab-usage": "Χρήση", + "smw-property-tab-redirects": "Συνώνυμα", + "smw-property-tab-subproperties": "Υποϊδιότητες", + "smw-property-tab-errors": "Ακατάλληλες αναθέσεις", + "smw-concept-tab-list": "Κατάλογος", + "smw-concept-tab-errors": "Σφάλματα", + "smw-ask-tab-result": "Αποτέλεσμα", + "smw-pendingtasks-setup-tasks": "Εργασίες", + "smw-report": "Αναφορά", + "smw-legend": "Υπόμνημα", + "smw-entity-examiner-associated-revision-mismatch": "Αναθεώρηση", + "smw-listingcontinuesabbrev": "συνεχίζεται", + "smw-showingresults": "Παρακάτω {{PLURAL:$1|εμφανίζεται μέχρι 1 αποτέλεσμα|εμφανίζονται μέχρι $1 αποτελέσματα}} ξεκινώντας από το Νο $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/en-gb.json b/mediawiki/extensions/SemanticMediaWiki/i18n/en-gb.json new file mode 100644 index 0000000..2d1aca8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/en-gb.json @@ -0,0 +1,17 @@ +{ + "@metadata": { + "authors": [ + "Bjh21", + "Chase me ladies, I'm the Cavalry", + "ChrisJr4Eva87", + "Codynguyen1116", + "IancuConstantin-Marian", + "Pierpao", + "Reedy", + "Shirayuki" + ] + }, + "smw_noboolean": "\"$1\" is not recognised as a Boolean (true/false) value.", + "smw-admin-dbbutton": "Initialise or upgrade tables", + "smw-admin-settings-docu": "Displays a list of all default and localised settings that are relevant to the Semantic MediaWiki environment. For details on individual settings, please consult the [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuration] help page." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/en.json b/mediawiki/extensions/SemanticMediaWiki/i18n/en.json new file mode 100644 index 0000000..f5aa609 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/en.json @@ -0,0 +1,1143 @@ +{ + "@metadata": { + "authors": [ + "James Hong Kong", + "Jeroen De Dauw", + "Karsten Hoffmeyer", + "Markus Krötzsch" + ] + }, + "smw-desc": "Making your wiki more accessible - for machines ''and'' humans ([https://www.semantic-mediawiki.org/wiki/Help:User_manual online documentation])", + "smw-title": "Semantic MediaWiki", + "smw-error": "Error", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] was installed and enabled but is missing an appropriate [https://www.semantic-mediawiki.org/wiki/Help:Upgrade upgrade key].", + "smw-upgrade-release": "Release", + "smw-upgrade-progress": "Progress", + "smw-upgrade-progress-explain": "An estimation as to when the upgrade is going to be finished is difficult to predict as it depends on the size of the data repository and the available hardware and can take a moment for larger wikis to complete.\n\nPlease contact your local administrator to get more information about the progress.", + "smw-upgrade-progress-create-tables": "Creating (or updating) tables and indices...", + "smw-upgrade-progress-post-creation": "Running post creation tasks...", + "smw-upgrade-progress-table-optimization": "Running table optimizations...", + "smw-upgrade-progress-supplement-jobs": "Adding supplement jobs...", + "smw-upgrade-error-title": "Error » Semantic MediaWiki", + "smw-upgrade-error-why-title": "Why do I see this page?", + "smw-upgrade-error-why-explain": "Semantic MediaWiki's internal database structure has changed and requires some adjustments to be fully functional. There can be several reasons including:\n* Additional fixed properties (requires additional table setup) were added\n* An upgrade contains some changes to tables or indices making an interception obligatory before accessing the data\n* Changes to the storage or query engine", + "smw-upgrade-error-how-title": "How do I fix this error?", + "smw-upgrade-error-how-explain-admin": "An administrator (or any person with administrator rights) has to run either MediaWiki's [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] or Semantic MediaWiki's [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] maintenance script.", + "smw-upgrade-error-how-explain-links": "You may also consult the following pages for further assistance:\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation Installation] instructions\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting Troubleshooting] help page", + "smw-extensionload-error-why-title": "Why do I see this page?", + "smw-extensionload-error-why-explain": "The extension was not loaded using enableSemantics and instead enabled by other means such as using wfLoadExtension( 'SemanticMediaWiki' ) directly.", + "smw-extensionload-error-how-title": "How do I fix this error?", + "smw-extensionload-error-how-explain": "To enable the extension and avoid issues with namespace declarations and pending configurations it is necessary to use enableSemantics which will ensure required variables are set before loading the extension via the ExtensionRegistry.\n\nPlease have a look at the [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] help page for further assistance.", + "smw-upgrade-maintenance-title": "Maintenance » Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "Why do I see this page?", + "smw-upgrade-maintenance-note": "The system is currently undergoing an [https://www.semantic-mediawiki.org/wiki/Help:Upgrade upgrade] of the [https://www.semantic-mediawiki.org/ Semantic MediaWiki] extension together with its data repository and we would like to ask you for your patience and allow the maintenance to continue before the wiki can be made accessible again.", + "smw-upgrade-maintenance-explain": "The extension tries to minimize the impact and downtime by deferring most of its maintenance tasks to after the update.php but some database related changes are required to finish first to avoid data inconsistencies. It can include:\n* Changing table structures such as adding new or modify existing fields\n* Changing or adding table indices\n* Running table optimizations (when enabled)", + "smw-semantics-not-enabled": "Semantic MediaWiki functionality was not enabled for this wiki.", + "smw_viewasrdf": "RDF feed", + "smw_finallistconjunct": ", and", + "smw-factbox-head": "... more about \"$1\"", + "smw-factbox-facts": "Facts", + "smw-factbox-facts-help": "Shows statements and facts that have been created by a user", + "smw-factbox-attachments": "Attachments", + "smw-factbox-attachments-value-unknown": "N/A", + "smw-factbox-attachments-is-local": "Is local", + "smw-factbox-attachments-help": "Shows available attachments", + "smw-factbox-facts-derived": "Derived facts", + "smw-factbox-facts-derived-help": "Shows facts that have been derived from rules or with the help of other reasoning techniques", + "smw_isspecprop": "This property is a special property in this wiki.", + "smw-concept-cache-header": "Cache usage", + "smw-concept-cache-count": "The [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count concept cache] contains {{PLURAL:$1|'''one''' entity|'''$1''' entities}} ($2).", + "smw-concept-no-cache": "No cache available.", + "smw_concept_description": "Description of concept \"$1\"", + "smw_no_concept_namespace": "Concepts can only be defined on pages in the Concept: namespace.", + "smw_multiple_concepts": "Each concept page can have only one concept definition.", + "smw_concept_cache_miss": "The concept \"$1\" can not be used at the moment, since the wiki configuration requires it to be computed off-line.\nIf the problem does not go away after some time, ask your site administrator to make this concept available.", + "smw_noinvannot": "Values cannot be assigned to inverse properties.", + "version-semantic": "Semantic extensions", + "smw_uri_blacklist": "https://www.w3.org/1999/02/22-rdf-syntax-ns#\n https://www.w3.org/2000/01/rdf-schema#\n https://www.w3.org/2002/07/owl#", + "smw_baduri": "URIs of the form \"$1\" are not allowed.", + "smw_csv_link": "CSV", + "smw_dsv_link": "DSV", + "smw_json_link": "JSON", + "smw_rdf_link": "RDF", + "smw_printername_count": "Count results", + "smw_printername_csv": "CSV export", + "smw_printername_dsv": "DSV export", + "smw_printername_debug": "Debug query (for experts)", + "smw_printername_embedded": "Embed page contents", + "smw_printername_json": "JSON export", + "smw_printername_list": "List", + "smw_printername_plainlist": "Plain list", + "smw_printername_ol": "Numbered list", + "smw_printername_ul": "Bulleted list", + "smw_printername_table": "Table", + "smw_printername_broadtable": "Broad table", + "smw_printername_template": "Template", + "smw_printername_templatefile": "Template file", + "smw_printername_rdf": "RDF export", + "smw_printername_category": "Category", + "validator-type-class-SMWParamSource": "text", + "smw-paramdesc-limit": "The maximum number of results to return", + "smw-paramdesc-offset": "The offset of the first result", + "smw-paramdesc-headers": "Display the headers/property names", + "smw-paramdesc-mainlabel": "The label to give to the main page name", + "smw-paramdesc-link": "Show values as links", + "smw-paramdesc-intro": "The text to display before the query results, if there are any", + "smw-paramdesc-outro": "The text to display after the query results, if there are any", + "smw-paramdesc-default": "The text to display if there are no query results", + "smw-paramdesc-sep": "The separator between results", + "smw-paramdesc-propsep": "The separator between the properties of a result entry", + "smw-paramdesc-valuesep": "The separator between the values for a property of a result", + "smw-paramdesc-showsep": "Show separator in top of CSV file (\"sep=\")", + "smw-paramdesc-distribution": "Instead of displaying all values, count their occurrences, and show these.", + "smw-paramdesc-distributionsort": "Sort the value distribution by occurrence count.", + "smw-paramdesc-distributionlimit": "Limit the value distribution to the count of only some values.", + "smw-paramdesc-aggregation": "Specify to what the aggregation should relate to", + "smw-paramdesc-template": "The name of a template with which to display the printouts", + "smw-paramdesc-columns": "The number of columns in which to display results", + "smw-paramdesc-userparam": "A value passed into each template call, if a template is used", + "smw-paramdesc-class": "An additional CSS class to set for the list", + "smw-paramdesc-introtemplate": "The name of a template to display before the query results, if there are any", + "smw-paramdesc-outrotemplate": "The name of a template to display after the query results, if there are any", + "smw-paramdesc-embedformat": "The HTML tag used to define headings", + "smw-paramdesc-embedonly": "Display no headings", + "smw-paramdesc-table-class": "An additional CSS class to set for the table", + "smw-paramdesc-table-transpose": "Display table headers vertically and results horizontally", + "smw-paramdesc-prefix": "Control display of namespace in printouts", + "smw-paramdesc-rdfsyntax": "The RDF syntax to be used", + "smw-paramdesc-csv-sep": "Specifies a column separator", + "smw-paramdesc-csv-valuesep": "Specifies a value separator", + "smw-paramdesc-csv-merge": "Merge rows and column values with an identical subject identifier (aka first column)", + "smw-paramdesc-csv-bom": "Add a BOM (character to signal endianness) at the top of the output file", + "smw-paramdesc-dsv-separator": "The separator to use", + "smw-paramdesc-dsv-filename": "The name for the DSV file", + "smw-paramdesc-filename": "The name for the output file", + "smw-smwdoc-description": "Shows a table of all parameters that can be used for the specified result format together with default values and descriptions.", + "smw-smwdoc-default-no-parameter-list": "This result format does not provide format specific parameters.", + "smw-smwdoc-par-format": "The result format to display parameter documentation for.", + "smw-smwdoc-par-parameters": "Which parameters to show. \"specific\" for those added by the format, \"base\" for those available in all formats, and \"all\" for both.", + "smw-paramdesc-sort": "Property to sort the query by", + "smw-paramdesc-order": "Order of the query sort", + "smw-paramdesc-searchlabel": "Text for continuing the search", + "smw-paramdesc-named_args": "Name the arguments passed to the template", + "smw-paramdesc-template-arguments": "Sets how the named arguments are passed to the template", + "smw-paramdesc-import-annotation": "Additional annotated data are to be copied during the parsing of a subject", + "smw-paramdesc-export": "Export option", + "smw-paramdesc-prettyprint": "A pretty-print output that displays additional indents and newlines", + "smw-paramdesc-json-unescape": "Output to contain unescaped slashes and multibyte Unicode characters", + "smw-paramdesc-json-type": "Serialization type", + "smw-paramdesc-source": "Alternative query source", + "smw-paramdesc-jsonsyntax": "JSON syntax to be used", + "smw-printername-feed": "RSS and Atom feed", + "smw-paramdesc-feedtype": "Feed type", + "smw-paramdesc-feedtitle": "The text to be used as the title of the feed", + "smw-paramdesc-feeddescription": "The text to be used as the description of the feed", + "smw-paramdesc-feedpagecontent": "Page content to be displayed with the feed", + "smw-label-feed-link": "RSS", + "smw-label-feed-description": "$1 $2 feed", + "smw-paramdesc-mimetype": "The media type (MIME type) for the output file", + "smw_iq_disabled": "Semantic queries have been disabled for this wiki.", + "smw_iq_moreresults": "... further results", + "smw_parseerror": "The given value was not understood.", + "smw_decseparator": ".", + "smw_kiloseparator": ",", + "smw_notitle": "\"$1\" cannot be used as a page name in this wiki.", + "smw_noproperty": "\"$1\" cannot be used as a property name in this wiki.", + "smw_wrong_namespace": "Only pages in namespace \"$1\" are allowed here.", + "smw_manytypes": "More than one type defined for property.", + "smw_emptystring": "Empty strings are not accepted.", + "smw_notinenum": "\"$1\" is not in the list ($2) of [[Property:Allows value|allowed values]] for the \"$3\" property.", + "smw-datavalue-constraint-error-allows-value-list": "\"$1\" is not in the list ($2) of [[Property:Allows value|allowed values]] for the \"$3\" property.", + "smw-datavalue-constraint-error-allows-value-range": "\"$1\" is not within that range of \"$2\" specified by the [[Property:Allows value|allows value]] constraint for the \"$3\" property.", + "smw-constraint-error": "Constraint issue", + "smw-constraint-error-suggestions": "Please check listed violations and properties together with their annotated values to ensure that all constraint requirements are met.", + "smw-constraint-error-limit": "The list will contain a maximum of $1 violations.", + "smw_noboolean": "\"$1\" is not recognized as a Boolean (true/false) value.", + "smw_true_words": "true,t,yes,y", + "smw_false_words": "false,f,no,n", + "smw_nofloat": "\"$1\" is not a number.", + "smw_infinite": "Numbers as large as \"$1\" are not supported.", + "smw_unitnotallowed": "\"$1\" is not declared as a valid unit of measurement for this property.", + "smw_nounitsdeclared": "No units of measurement were declared for this property.", + "smw_novalues": "No values specified.", + "smw_nodatetime": "The date \"$1\" was not understood.", + "smw_toomanyclosing": "There appear to be too many occurrences of \"$1\" in the query.", + "smw_noclosingbrackets": "Some use of \"[[\" in your query was not closed by a matching \"]]\".", + "smw_misplacedsymbol": "The symbol \"$1\" was used in a place where it is not useful.", + "smw_unexpectedpart": "The part \"$1\" of the query was not understood.\nResults might not be as expected.", + "smw_emptysubquery": "Some subquery has no valid condition.", + "smw_misplacedsubquery": "Some subquery was used in a place where no subqueries are allowed.", + "smw_valuesubquery": "Subqueries not supported for values of property \"$1\".", + "smw_badqueryatom": "Some part \"[[...]]\" of the query was not understood.", + "smw_propvalueproblem": "The value of property \"$1\" was not understood.", + "smw_noqueryfeature": "Some query feature was not supported in this wiki and part of the query was dropped ($1).", + "smw_noconjunctions": "Conjunctions in queries are not supported in this wiki and part of the query was dropped ($1).", + "smw_nodisjunctions": "Disjunctions in queries are not supported in this wiki and part of the query was dropped ($1).", + "smw_querytoolarge": "The following {{PLURAL:$2|query condition|$2 query conditions}} could not be considered due to this wiki's restrictions on query size or depth: $1.", + "smw_notemplategiven": "Provide a value for the parameter \"template\" for this query format to work.", + "smw_db_sparqlqueryproblem": "The query result could not be obtained from the SPARQL database. This error might be temporary or indicate a bug in the database software.", + "smw_db_sparqlqueryincomplete": "Answering the query turned out to be too difficult and was aborted. Some results could be missing. If possible, try using a simpler query instead.", + "smw_type_header": "Properties of type \"$1\"", + "smw_typearticlecount": "Showing $1 {{PLURAL:$1|property|properties}} using this type.", + "smw_attribute_header": "Pages using the property \"$1\"", + "smw_attributearticlecount": "Showing $1 {{PLURAL:$1|page|pages}} using this property.", + "smw-propertylist-subproperty-header": "Subproperties", + "smw-propertylist-redirect-header": "Synonyms", + "smw-propertylist-error-header": "Pages with improper assignments", + "smw-propertylist-count": "Showing $1 related {{PLURAL:$1|entity|entities}}.", + "smw-propertylist-count-with-restricted-note": "Showing $1 related {{PLURAL:$1|entity|entities }} (more are available but the display is restricted to \"$2\").", + "smw-propertylist-count-more-available": "Showing $1 related {{PLURAL:$1|entity|entities}} (more are available).", + "specialpages-group-smw_group": "Semantic MediaWiki", + "specialpages-group-smw_group-maintenance": "Maintenance", + "specialpages-group-smw_group-properties-concepts-types": "Properties, concepts, and types", + "specialpages-group-smw_group-search": "Browse and search", + "exportrdf": "Export pages to RDF", + "smw_exportrdf_docu": "This page allows you to obtain data from a page in RDF format.\nTo export pages, enter the titles in the text box below, one title per line.", + "smw_exportrdf_recursive": "Recursively export all related pages.\nNote that the result could be large!", + "smw_exportrdf_backlinks": "Also export all pages that refer to the exported pages.\nGenerates browsable RDF.", + "smw_exportrdf_lastdate": "Do not export pages that were not changed since the given point in time.", + "smw_exportrdf_submit": "Export", + "uriresolver": "URIResolver", + "properties": "Properties", + "smw-categories": "Categories", + "smw_properties_docu": "The following properties are used in the wiki.", + "smw_property_template": "$1 of type $2 ($3 {{PLURAL:$3|use|uses}})", + "smw_property_template_notype": "$1 ($2)", + "smw_propertylackspage": "All properties should be described by a page!", + "smw_propertylackstype": "No type was specified for this property (assuming type $1 for now).", + "smw_propertyhardlyused": "This property is hardly used within the wiki!", + "smw-property-name-invalid": "Property $1 can not be used (invalid property name).", + "smw-property-name-reserved": "\"$1\" was listed as reserved name and should not be used as a property. The following [https://www.semantic-mediawiki.org/wiki/Help:Property_naming help page] may contain information as to why this name was reserved.", + "smw-sp-property-searchform": "Display properties that contain:", + "smw-sp-property-searchform-inputinfo": "The input is case sensitive and when used for filtering, only properties that match the condition are displayed.", + "smw-special-property-searchform": "Display properties that contain:", + "smw-special-property-searchform-inputinfo": "The input is case sensitive and when used for filtering, only properties that match the condition are displayed.", + "smw-special-property-searchform-options": "Options", + "smw-special-wantedproperties-filter-label": "Filter:", + "smw-special-wantedproperties-filter-none": "None", + "smw-special-wantedproperties-filter-unapproved": "Unapproved", + "smw-special-wantedproperties-filter-unapproved-desc": "Filter option used in connection with the authority mode.", + "concepts": "Concepts", + "smw-special-concept-docu": "A [https://www.semantic-mediawiki.org/wiki/Help:Concepts concept] can be viewed as \"dynamic category\", i.e. as a collection of pages that are not created manually, but that are computed by Semantic MediaWiki from a description of a given query.", + "smw-special-concept-header": "List of concepts", + "smw-special-concept-count": "The following {{PLURAL:$1|concept is|$1 concepts are}} being listed.", + "smw-special-concept-empty": "No concept was found.", + "unusedproperties": "Unused properties", + "smw-unusedproperties-docu": "This page lists [https://www.semantic-mediawiki.org/wiki/Unused_properties unused properties] that are declared although no other page makes use of them. For a differentiated view, see the [[Special:Properties|entire]] or [[Special:WantedProperties|wanted properties]] special pages.", + "smw-unusedproperty-template": "$1 of type $2", + "wantedproperties": "Wanted properties", + "smw-wantedproperties-docu": "This page lists [https://www.semantic-mediawiki.org/wiki/Wanted_properties wanted properties] that are used in the wiki but do not have a page describing them. For a differentiated view, see the [[Special:Properties|entire]] or [[Special:UnusedProperties|unused properties]] special pages.", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|use|uses}})", + "smw-special-wantedproperties-docu": "This page lists [https://www.semantic-mediawiki.org/wiki/Wanted_properties wanted properties] that are used in the wiki but do not have a page describing them. For a differentiated view, see the [[Special:Properties|entire]] or [[Special:UnusedProperties|unused properties]] special pages.", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|use|uses}})", + "smw_purge": "Refresh", + "smw-purge-update-dependencies": "Semantic MediaWiki is purging the current page due to some outdated dependencies it has detected which require an update.", + "smw-purge-failed": "Semantic MediaWiki tried to purge the page but failed", + "types": "Types", + "smw_types_docu": "List of [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes available datatypes] with each [https://www.semantic-mediawiki.org/wiki/Help:Datatype type] representing a unique set of attributes to describe a value in terms of storage and display characteristics that are hereditary to an assigned property.", + "smw-special-types-no-such-type": "\"$1\" is unknown or has not been specified as valid datatype.", + "smw-statistics": "Semantic statistics", + "smw-statistics-cached": "Semantic statistics (cached)", + "smw-statistics-entities-total": "Entities (total)", + "smw-statistics-entities-total-info": "An estimated row count of entities. It includes properties, concepts, or any other registered object representation that requires an ID assignment.", + "smw-statistics-property-instance": "Property {{PLURAL:$1|value|values}} (total)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Property|Properties}}]] (total)", + "smw-statistics-property-total-info": "The total of registered properties.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Property|Properties}} (total)", + "smw-statistics-property-used": "{{PLURAL:$1|Property|Properties}} (used with at least one value)", + "smw-statistics-property-page": "{{PLURAL:$1|Property|Properties}} (registered with a page)", + "smw-statistics-property-page-info": "Count for properties that have a dedicated page and description.", + "smw-statistics-property-type": "{{PLURAL:$1|Property|Properties}} (assigned to a datatype)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Query|Queries}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Query|Queries}}]] (embedded, total)", + "smw-statistics-query-format": "$1 format", + "smw-statistics-query-size": "Query size", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Concept|Concepts}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Concept|Concepts}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Subobject|Subobjects}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Subobject|Subobjects}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Datatype|Datatypes}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Property value|Property values}} ([[Special:ProcessingErrorList|{{PLURAL:$1|improper annotation|improper annotations}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Property value|Property values}} ({{PLURAL:$1|improper annotation|improper annotations}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities Outdated {{PLURAL:$1|entity|entities}}]", + "smw-statistics-delete-count-info": "Entities that have been marked for removal should be disposed of regularly using the provided maintenance scripts.", + "smw_uri_doc": "The URI resolver implements the [$1 W3C TAG finding on httpRange-14].\nIt ensures that an RDF representation (for machines) or a wiki page (for humans) is delivered depending on the request.", + "ask": "Semantic search", + "smw_ask_doculink": "https://www.semantic-mediawiki.org/wiki/Help:Semantic_search", + "smw-ask-help": "This section contains some links to help explain how to use the #ask syntax.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selecting pages] describes how to select pages and build conditions\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Search operators] lists available search operators including those for range and wildcard queries\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Displaying information] outlines the use of printout statements and formatting options", + "smw_ask_sortby": "Sort by column (optional)", + "smw_ask_ascorder": "Ascending", + "smw_ask_descorder": "Descending", + "smw-ask-order-rand": "Random", + "smw_ask_submit": "Find results", + "smw_ask_editquery": "Edit query", + "smw_add_sortcondition": "[Add sorting condition]", + "smw-ask-sort-add-action": "Add sorting condition", + "smw_ask_hidequery": "Hide query (compact view)", + "smw_ask_help": "Querying help", + "smw_ask_queryhead": "Condition", + "smw_ask_printhead": "Printout selection", + "smw_ask_printdesc": "(add one property name per line)", + "smw_ask_format_as": "Format as:", + "smw_ask_defaultformat": "default", + "smw_ask_otheroptions": "Other options", + "smw-ask-otheroptions-info": "This section contains options that alter printout statements. Parameter descriptions can be viewed by hovering over them.", + "smw-ask-otheroptions-collapsed-info": "Please use the plus icon to view all available options", + "smw_ask_show_embed": "Show embed code", + "smw_ask_hide_embed": "Hide embed code", + "smw_ask_embed_instr": "To embed this query inline into a wiki page use the code below.", + "smw-ask-delete": "Remove", + "smw-ask-sorting": "Sorting", + "smw-ask-options": "Options", + "smw-ask-options-sort": "Sort options", + "smw-ask-format-options": "Format and options", + "smw-ask-parameters": "Parameters", + "smw-ask-search": "Search", + "smw-ask-debug": "Debug", + "smw-ask-debug-desc": "Generates query debug information", + "smw-ask-no-cache": "Disable query cache", + "smw-ask-no-cache-desc": "Results without query cache", + "smw-ask-result": "Result", + "smw-ask-empty": "Clear all entries", + "smw-ask-download-link-desc": "Download queried results in $1 format", + "smw-ask-format": "Format", + "smw-ask-format-selection-help": "Help with the selected format: $1", + "smw-ask-condition-change-info": "The condition was altered and the search engine needs to rerun the query to produce results that match the new requirements.", + "smw-ask-input-assistance": "Input assistance", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Input assistance] is provided for the printout, sort, and condition field. The condition field requires to use one of following prefixes:", + "smw-ask-condition-input-assistance-property": "p: to fetch property suggestions (e.g. [[p:Has ...)", + "smw-ask-condition-input-assistance-category": "c: to fetch category suggestions", + "smw-ask-condition-input-assistance-concept": "con: to fetch concept suggestions", + "smw-ask-format-change-info": "The format was modified and it is required to execute the query again to match new parameters and visualization options.", + "smw-ask-format-export-info": "The selected format is an export format which has no visual representation therefore results are only provided as download.", + "smw-ask-query-search-info": "The query $1 was answered by the {{PLURAL:$3|1=$2 (from cache)|$2 (from cache)|$2}} in $4 {{PLURAL:$4|second|seconds}}.", + "smw-ask-extra-query-log": "Query log", + "smw-ask-extra-other": "Other", + "searchbyproperty": "Search by property", + "processingerrorlist": "Processing error list", + "constrainterrorlist": "Constraint error list", + "propertylabelsimilarity": "Property label similarity report", + "missingredirectannotations": "Missing redirect annotations", + "smw-processingerrorlist-intro": "The following list provides an overview about [https://www.semantic-mediawiki.org/wiki/Processing_errors processing errors] that appeared in connection with [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. It is recommended to monitor this list on a regular basis and correct invalid value annotations.", + "smw-processingerrorlist-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Processing_errors", + "smw-constrainterrorlist-intro": "The following list provides an overview about [https://www.semantic-mediawiki.org/wiki/Constraint_errors constraint errors] that appeared in connection with [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. It is recommended to monitor this list on a regular basis and correct invalid value annotations.", + "smw-constrainterrorlist-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Constraint_errors", + "smw-missingredirects-intro": "The following section will list pages that are missing [https://www.semantic-mediawiki.org/wiki/Redirects redirect] annotations in Semantic MediaWiki (by comparing with information stored in MediaWiki) and to restore those annotations either manually [https://www.semantic-mediawiki.org/wiki/Help:Purge purge] the page or run the rebuildData.php maintenance script (with option --redirects).", + "smw-missingredirects-list": "Pages with missing annotations", + "smw-missingredirects-list-intro": "Showing $1 {{PLURAL:$1|page|pages}} with missing redirect annotations.", + "smw-missingredirects-noresult": "No missing redirect annotations found.", + "smw_sbv_docu": "Search for all pages that have a given property and value.", + "smw_sbv_novalue": "Enter a valid value for the property, or view all property values for \"$1\".", + "smw_sbv_displayresultfuzzy": "A list of all pages that have property \"$1\" with value \"$2\".\nSince there have been only a few results, also nearby values are displayed.", + "smw_sbv_property": "Property:", + "smw_sbv_value": "Value:", + "smw_sbv_submit": "Find results", + "browse": "Browse wiki", + "smw_browselink": "Browse properties", + "smw_browse_article": "Enter the name of the page to start browsing from.", + "smw_browse_go": "Go", + "smw_browse_more": "...", + "smw_browse_show_incoming": "Show incoming properties", + "smw_browse_hide_incoming": "Hide incoming properties", + "smw_browse_no_outgoing": "This page has no properties.", + "smw_browse_no_incoming": "No properties link to this page.", + "smw-browse-from-backend": "Information is currently being retrieved from the backend.", + "smw-browse-intro": "This page provides details about a subject or entity instance, please enter the name of an object to be inspected.", + "smw-browse-invalid-subject": "The subject validation returned with a \"$1\" error.", + "smw-browse-api-subject-serialization-invalid": "The subject has an invalid serialization format.", + "smw-browse-js-disabled": "It is suspected that JavaScript is disabled or not available. We recommend using a browser where it is supported. Other options are discussed on the [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi] configuration parameter page.", + "smw-browse-show-group": "Show groups", + "smw-browse-hide-group": "Hide groups", + "smw-noscript": "This page or action requires JavaScript to work. Please enable JavaScript in your browser or use a browser where it is supported, so that functionality can be provided as requested. For further assistance, please have a look at the [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript] help page.", + "smw_inverse_label_default": "$1 of", + "smw_inverse_label_property": "Inverse property label", + "pageproperty": "Page property search", + "pendingtasklist": "List of pending tasks", + "facetedsearch": "Faceted search", + "smw_pp_docu": "Either enter a page and property, or just a property to retrieve all assigned values.", + "smw_pp_from": "From page:", + "smw_pp_type": "Property:", + "smw_pp_submit": "Find results", + "smw-prev": "previous {{PLURAL:$1|$1}}", + "smw-next": "next {{PLURAL:$1|$1}}", + "smw_result_prev": "Previous", + "smw_result_next": "Next", + "smw_result_results": "Results", + "smw_result_noresults": "No results.", + "smwadmin": "Semantic MediaWiki Dashboard", + "smw-admin-statistics-job-title": "Job statistics", + "smw-admin-statistics-job-docu": "The job statistics displays information about scheduled Semantic MediaWiki jobs that have not yet been executed. The number of jobs may be slightly inaccurate or contain failed attempts. Please consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue manual] for further information.", + "smw-admin-statistics-querycache-title": "Query cache", + "smw-admin-statistics-querycache-disabled": "The [https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] has not been enabled on this wiki and therefore no statistics are available.", + "smw-admin-statistics-querycache-legend": "The cache statistics is to contain provisional cumulative as well as derived data including:\n* \"misses\" as the total attempts to retrieve data from the cache with unattainable responses, forcing a direct repository (DB, triple-store etc.) retrieval\n* \"deletes\" as the total amount of cache eviction operations (either through a purge or query dependency)\n* \"hits\" contains the amount of cache retrievals from either embedded (queries called from within a wiki page) or non-embedded (if enabled, requested by pages like Special:Ask or the API) sources\n* \"medianRetrievalResponseTime\" is an orientation value of the median response time (in sec.) for cached and non-cached retrieval requests over the time span of the collection process\n* \"noCache\" indicates the amount of no attempt requests (limit=0 queries, 'no-cache' option etc.) to retrieve results from cache", + "smw-admin-statistics-section-explain": "The section provides additional statistics for administrators.", + "smw-admin-statistics-semanticdata-overview": "Overview", + "smw-admin-permission-missing": "The access to this page has been blocked due to missing permissions, please consult the [https://www.semantic-mediawiki.org/wiki/Help:Permissions permissions] help page for details about the necessary settings.", + "smw-admin-setupsuccess": "The storage engine was set up.", + "smw_smwadmin_return": "Return to $1", + "smw_smwadmin_updatestarted": "A new update process for refreshing the semantic data was started.\nAll stored data will be rebuilt or repaired where needed.\nYou can follow the progress of the update on this special page.", + "smw_smwadmin_updatenotstarted": "There is already an update process running.\nNot creating another one.", + "smw_smwadmin_updatestopped": "All existing update processes have been stopped.", + "smw_smwadmin_updatenotstopped": "To stop the running update process, you must activate the checkbox to indicate that you are really sure.", + "smw-admin-docu": "This special page helps you during installation, upgrade, maintenance and usage of Semantic MediaWiki and also provides further administrative functions and tasks as well as statistics.\nRemember to back up valuable data before executing administrative functions.", + "smw-admin-environment": "Software environment", + "smw-admin-db": "Database setup", + "smw-admin-db-preparation": "The table initialization is ongoing and may take a moment before results are displayed pending the size and possible table optimizations.", + "smw-admin-dbdocu": "Semantic MediaWiki requires its own database structure (and is independent from MediaWiki hence do not affect the rest of the MediaWiki installation) in order to store the semantic data.\nThis setup function can be executed multiple times without doing any harm, but it is needed only once on installation or upgrade.", + "smw-admin-permissionswarn": "If the operation fails with SQL errors, the database user employed by your wiki (check your \"LocalSettings.php\" file) probably does not have sufficient permissions.\nEither grant this user additional permissions to create and delete tables, temporarily enter the login of your database root in the \"LocalSettings.php\" file, or use the maintenance script setupStore.php, which can use the credentials of an administrator.", + "smw-admin-dbbutton": "Initialize or upgrade tables", + "smw-admin-announce": "Announce your wiki", + "smw-admin-announce-text": "If your wiki is public, you can register it on WikiApiary, the wiki tracking wiki.", + "smw-admin-deprecation-notice-title": "Deprecation notices", + "smw-admin-deprecation-notice-docu": "The following section contains settings that have been deprecated or removed but were detected to be active on this wiki. It is expected that any future release will remove support for these configurations.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] is deprecated and will be removed in $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] will remove (or replace) the following {{PLURAL:$2|option|options}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 is deprecated and will be removed in $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] was replaced by [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] was replaced by $2", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|option|options}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 is being replaced by $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] was removed in $2", + "smw-admin-deprecation-notice-title-notice": "Deprecated settings", + "smw-admin-deprecation-notice-title-notice-explanation": "Deprecated settings shows settings that have been detected to be used on this wiki and are planned to be removed or changed in a future release.", + "smw-admin-deprecation-notice-title-replacement": "Replaced or renamed settings", + "smw-admin-deprecation-notice-title-replacement-explanation": "Replaced or renamed settings contains settings that were renamed or otherwise modified and it is recommended to forthwith update their name or format.", + "smw-admin-deprecation-notice-title-removal": "Removed settings", + "smw-admin-deprecation-notice-title-removal-explanation": "Removed settings identifies settings that were removed in a previous release but have been detected to be used on this wiki.", + "smw-admin-deprecation-notice-section-legend": "Legend", + "smw-smwadmin-refresh-title": "Data repair and update", + "smw_smwadmin_datarefresh": "Data rebuild", + "smw_smwadmin_datarefreshdocu": "It is possible to restore all Semantic MediaWiki data based on the current contents of the wiki.\nThis can be useful to repair broken data or to refresh the data if the internal format has changed due to some software upgrade.\nThe update is executed page by page and will not be completed immediately.\nThe following shows if an update is in progress and allows you to start or stop updates (unless this feature was disabled by the site administrator).", + "smw_smwadmin_datarefreshprogress": "An update is already in progress.\nIt is normal that the update progresses only slowly since it only refreshes data in small chunks each time a user accesses the wiki.\nTo finish this update more quickly, you can invoke the MediaWiki maintenance script runJobs.php (use the option --maxjobs 1000 to restrict the number of updates done in one batch).\nEstimated progress of current update:", + "smw_smwadmin_datarefreshbutton": "Schedule data rebuild", + "smw_smwadmin_datarefreshstop": "Stop this update", + "smw_smwadmin_datarefreshstopconfirm": "Yes, I am {{GENDER:$1|sure}}.", + "smw-admin-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki", + "smw-admin-job-scheduler-note": "Tasks (those enabled) in this section are performed via the job queue to avoid deadlock situations during their execution. The [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue job queue] is responsible for the processing and it is critical that the runJobs.php maintenance script has an appropriate capacity (see also configuration parameter $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "Outdated entities disposal", + "smw-admin-outdateddisposal-intro": "Some activities (a change to a property type, the removal of wikipages, or the correction of error values) will result in [https://www.semantic-mediawiki.org/wiki/Outdated_entities outdated entities] and it is suggested to remove them periodically to free associated table space.", + "smw-admin-outdateddisposal-active": "An outdated entities disposal job has been scheduled.", + "smw-admin-outdateddisposal-button": "Schedule disposal", + "smw-admin-feature-disabled": "This feature has been disabled on this wiki, please consult the settings help page or contact the system administrator.", + "smw-admin-propertystatistics-title": "Property statistics rebuild", + "smw-admin-propertystatistics-intro": "Rebuilds the entire property usage statistics and therein updates and corrects the [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count usage count] of properties.", + "smw-admin-propertystatistics-active": "A property statistics rebuild job has been scheduled.", + "smw-admin-propertystatistics-button": "Schedule statistics rebuild", + "smw-admin-fulltext-title": "Full-text search rebuild", + "smw-admin-fulltext-intro": "Rebuilds the search index from property tables with an enabled [https://www.semantic-mediawiki.org/wiki/Full-text full-text search] datatype. Changes to the index rules (altered stopwords, new stemmer etc.) and/or a newly added or altered table does require to run this job again.", + "smw-admin-fulltext-active": "A full-text search rebuild job has been scheduled.", + "smw-admin-fulltext-button": "Schedule full-text rebuild", + "smw-admin-support": "Getting support", + "smw-admin-supportdocu": "Various resources are provided to help you in case of problems:", + "smw-admin-installfile": "If you experience problems with your installation, start by checking the guidelines in the INSTALL file and the installation page.", + "smw-admin-smwhomepage": "The complete user documentation to Semantic MediaWiki is at semantic-mediawiki.org.", + "smw-admin-bugsreport": "Bugs can be reported to the issue tracker, the reporting bugs page provides some guidance on how to write an effective issue report.", + "smw-admin-questions": "If you have further questions or suggestions, join the discussion on the Semantic MediaWiki user mailing list.", + "smw-admin-other-functions": "Other functions", + "smw-admin-statistics-extra": "Statistic functions", + "smw-admin-statistics": "Statistics", + "smw-admin-supplementary-section-title": "Supplementary functions", + "smw-admin-supplementary-section-subtitle": "Supported core functions", + "smw-admin-supplementary-section-intro": "This section provides additional functions beyond the scope of maintenance activities and it is possible that some functions which are listed (see the [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions documentation]) are restricted or unavailable and therefore inaccessible on this wiki.", + "smw-admin-supplementary-settings-title": "Configuration and settings", + "smw-admin-supplementary-settings-intro": "$1 shows parameters that define the behaviour of Semantic MediaWiki", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Operational statistics", + "smw-admin-supplementary-operational-statistics-short-title": "operational statistics", + "smw-admin-supplementary-operational-statistics-intro": "Displays an extended set of $1", + "smw-admin-supplementary-idlookup-title": "Entity lookup and disposal", + "smw-admin-supplementary-idlookup-short-title": "entity lookup and disposal", + "smw-admin-supplementary-idlookup-intro": "Supports a simple $1 function", + "smw-admin-supplementary-duplookup-title": "Duplicate entities lookup", + "smw-admin-supplementary-duplookup-intro": "$1 to find entities that are categorized as duplicates for the selected table matrix", + "smw-admin-supplementary-duplookup-docu": "This page lists entries from selected tables that have been categorized as [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities duplicates]. Duplicate entries should (if at all) only occur on rare occasions potentially caused by a terminated update or unsuccessful rollback transaction.", + "smw-admin-supplementary-duplookup-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities", + "smw-admin-supplementary-operational-statistics-cache-title": "Cache statistics", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 shows a selected set of cache related statistics", + "smw-admin-supplementary-operational-table-statistics-title": "Table statistics", + "smw-admin-supplementary-operational-table-statistics-short-title": "table statistics", + "smw-admin-supplementary-operational-table-statistics-intro": "Generates $1 for a selected set of tables", + "smw-admin-supplementary-operational-table-statistics-explain": "This section contains selected table statistics to help administrators and data curators to make informed decisions about that state of the back-end and the storage engine.", + "smw-admin-supplementary-operational-table-statistics-legend": "The legend describes some of the keys used for the table statistics and includes:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count total number of rows in a table", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id last ID currently in use\n* duplicate_count number of duplicates found in the id_table (see also [[Special:SemanticMediaWiki/duplicate-lookup|Duplicate entities lookup]])\n* rows.rev_count number of rows that have a revision_id assigned indicating a direct wikipage link\n* rows.smw_namespace_group_by_count numbers of aggregated rows for namespaces used in the table\n* rows.smw_proptable_hash.query_match_count number of query subobjects with a corresponding table reference\n* rows.smw_proptable_hash.query_null_count number of query subobjects without a table reference (unlinked, floating reference)", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent percentage of terms that are unique (a low percentage rate indicates that repetitive terms occupy the table content and index)\n* rows.terms_occurrence.single_occurrence_total_count number of terms that only appear once\n* rows.terms_occurrence.multi_occurrence_total_count number of terms that appear more than once", + "smw-admin-supplementary-elastic-title": "Elasticsearch", + "smw-admin-supplementary-elastic-version-info": "Version", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 shows details about settings and index statistics", + "smw-admin-supplementary-elastic-docu": "This page contains information about settings, mappings, health, and index statistics related to an Elasticsearch cluster that is connected to Semantic MediaWiki and its [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Supported functions", + "smw-admin-supplementary-elastic-settings-title": "Settings (indices)", + "smw-admin-supplementary-elastic-settings-intro": "$1 used by Elasticsearch to manage Semantic MediaWiki indices", + "smw-admin-supplementary-elastic-mappings-title": "Mappings", + "smw-admin-supplementary-elastic-mappings-intro": "$1 to list indices and field mappings", + "smw-admin-supplementary-elastic-mappings-docu": "This page contains field mapping details used by the current index. It is recommended to monitor the mappings in connection with the index.mapping.total_fields.limit (specifies the maximum number of fields in an index allowed).", + "smw-admin-supplementary-elastic-mappings-docu-extra": "The property_fields refers to the count of indexed core fields while the nested_fields refers to an accumulated count of additional fields assigned to a core field to support specific structured search patterns.", + "smw-admin-supplementary-elastic-mappings-summary": "Summary", + "smw-admin-supplementary-elastic-mappings-fields": "Field mappings", + "smw-admin-supplementary-elastic-nodes-title": "Nodes", + "smw-admin-supplementary-elastic-nodes-intro": "$1 shows node statistics", + "smw-admin-supplementary-elastic-indices-title": "Indices", + "smw-admin-supplementary-elastic-indices-intro": "$1 provides an overview of available indices and their statistics", + "smw-admin-supplementary-elastic-statistics-title": "Statistics", + "smw-admin-supplementary-elastic-statistics-intro": "$1 shows index level statistics", + "smw-admin-supplementary-elastic-statistics-docu": "This page provides an insight on indices statistics for different operations that are happening on an index level, the returned stats are aggregated with primaries and total aggregations. The [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html help page] contains a detailed description of available indices stats.", + "smw-admin-supplementary-elastic-status-replication": "Replication status", + "smw-admin-supplementary-elastic-status-last-active-replication": "Last active replication: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Refresh interval: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Recovery job backlog: $1 (estimation)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Ingest (file) job backlog: $1 (estimation)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Replication locked: $1 (rebuild in-progress)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Replication monitoring (active): $1", + "smw-admin-supplementary-elastic-replication-header-title": "Replication status", + "smw-admin-supplementary-elastic-replication-function-title": "Replication", + "smw-admin-supplementary-elastic-replication-intro": "$1 shows information about failed replications", + "smw-admin-supplementary-elastic-replication-docu": "This page provides information about the [https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring replication status] of entities that were reported to have issues with the Elasticsearch cluster. It is recommended to review listed entities and purge the content in order to confirm that it was a temporary issue.", + "smw-admin-supplementary-elastic-replication-files-docu": "It should be noted that for the list of files, the [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion file ingest] job is required to be executed first and has to finish its processing.", + "smw-admin-supplementary-elastic-replication-files": "Files", + "smw-admin-supplementary-elastic-replication-pages": "Pages", + "smw-admin-supplementary-elastic-endpoints": "Endpoints", + "smw-admin-supplementary-elastic-config": "Configurations", + "smw-admin-supplementary-elastic-no-connection": "The wiki is currently '''unable''' to establish a connection to the Elasticsearch cluster, please contact the wiki administrator to investigate the issue as it incapacitates the index and query ability of the system.", + "smw-list-count": "The list contains $1 {{PLURAL:$1|entry|entries}}.", + "smw-property-label-uniqueness": "The \"$1\" label was matched to at least one other property representation. Please consult the [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness help page] on how to resolve this issue.", + "smw-property-label-similarity-title": "Property label similarity report", + "smw-property-label-similarity-intro": "$1 calculates similarities for existing property labels", + "smw-property-label-similarity-threshold": "Threshold:", + "smw-property-label-similarity-type": "Display Type ID", + "smw-property-label-similarity-noresult": "No results were found for the selected options.", + "smw-property-label-similarity-docu": "This pages compares the [https://www.semantic-mediawiki.org/wiki/Property_similarity similarity distance] (not to be confused with a semantic or lexical similarity) between property labels and reports them if they exceed the threshold. The report may help filter misspelled or equivalent properties that represent the same concept (see the [[Special:Properties|properties]] special page to help clarify concept and usage of reported properties). The threshold can be adjusted to widen or narrow the distance used for the approximate matching. [[Property:$1|$1]] is used to exempt properties from the analysis.", + "smw-admin-operational-statistics": "This page contains operational statistics collected in or from Semantic MediaWiki related functions. An extended list of wiki specific statistics can be found [[Special:Statistics|here]].", + "smw_adminlinks_datastructure": "Data structure", + "smw_adminlinks_displayingdata": "Data display", + "smw_adminlinks_inlinequerieshelp": "Inline queries help", + "smw-page-indicator-usage-count": "Estimated [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count usage count]: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "{{PLURAL:$1|User|System}} defined property", + "smw-property-indicator-last-count-update": "Estimated usage count\nLast updated: $1", + "smw-concept-indicator-cache-update": "Cache count\nLast updated: $1", + "smw-createproperty-isproperty": "It is a property of type $1.", + "smw-createproperty-allowedvals": "The allowed {{PLURAL:$1|value for this property is|values for this property are}}:", + "smw-paramdesc-category-delim": "The delimiter", + "smw-paramdesc-category-template": "A template to format the items with", + "smw-paramdesc-category-userparam": "A parameter to pass to the template", + "smw-info-par-message": "Message to display.", + "smw-info-par-icon": "Icon to show, either \"info\" or \"warning\".", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "General options", + "prefs-extended-search-options": "Extended search", + "prefs-ask-options": "Semantic search", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] and associated extensions provide individual preferences for a group of selected features and functions. A list of individual settings with their description and characteristics is available on the following [https://www.semantic-mediawiki.org/wiki/Help:User_preferences help page].", + "smw-prefs-ask-options-tooltip-display": "Display parameter text as an info tooltip on the #ask [[Special:Ask|query builder]] special page.", + "smw-prefs-ask-options-compact-view-basic": "Enable basic compact view", + "smw-prefs-help-ask-options-compact-view-basic": "If enabled, displays a reduced set of links on the Special:Ask compact view.", + "smw-prefs-general-options-time-correction": "Enable time correction for special pages using the local [[Special:Preferences#mw-prefsection-rendering|time offset]] preference", + "smw-prefs-general-options-jobqueue-watchlist": "Show the job queue watchlist in my personal bar", + "smw-prefs-help-general-options-jobqueue-watchlist": "If enabled, shows a [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist list of] pending selected jobs together with their estimated queue sizes.", + "smw-prefs-general-options-disable-editpage-info": "Disable the introductory text on the edit page", + "smw-prefs-general-options-disable-search-info": "Disable the syntax support information on the standard search page", + "smw-prefs-general-options-suggester-textinput": "Enable input assistance for semantic entities", + "smw-prefs-help-general-options-suggester-textinput": "If enabled, allows to use an [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance input assistance] to find properties, concepts, and categorties from an input context.", + "smw-prefs-general-options-show-entity-issue-panel": "Show the entity issue panel", + "smw-prefs-help-general-options-show-entity-issue-panel": "If enabled, runs integrity checks on each page and shows the [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel Entity issue panel].", + "smw-prefs-factedsearch-profile": "Select a [[Special:FacetedSearch|faceted search]] default profile:", + "smw-ui-tooltip-title-property": "Property", + "smw-ui-tooltip-title-quantity": "Unit conversion", + "smw-ui-tooltip-title-info": "Information", + "smw-ui-tooltip-title-service": "Service links", + "smw-ui-tooltip-title-warning": "Warning", + "smw-ui-tooltip-title-error": "Error", + "smw-ui-tooltip-title-parameter": "Parameter", + "smw-ui-tooltip-title-event": "Event", + "smw-ui-tooltip-title-note": "Note", + "smw-ui-tooltip-title-legend": "Legend", + "smw-ui-tooltip-title-reference": "Reference", + "smw_unknowntype": "The \"$1\" type of this property is invalid", + "smw-concept-cache-text": "The concept has a total of $1 {{PLURAL:$1|page|pages}}, and was last updated $3, $2.", + "smw_concept_header": "Pages of concept \"$1\"", + "smw_conceptarticlecount": "Showing below $1 {{PLURAL:$1|page|pages}}.", + "smw-qp-empty-data": "Requested data could not be displayed due to some insufficient selection criteria.", + "right-smw-admin": "Access to administration tasks (Semantic MediaWiki)", + "right-smw-patternedit": "Edit access to maintain allowed regular expressions and patterns (Semantic MediaWiki)", + "right-smw-pageedit": "Edit access for Is edit protected annotated pages (Semantic MediaWiki)", + "right-smw-schemaedit": "Edit [https://www.semantic-mediawiki.org/wiki/Help:Schema schema pages] (Semantic MediaWiki)", + "right-smw-viewjobqueuewatchlist": "Access to the job queue [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist watchlist] feature (Semantic MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "Access information about an entity associated revision mismatch (Semantic MediaWiki)", + "right-smw-vieweditpageinfo": "View [https://www.semantic-mediawiki.org/wiki/Help:Edit_help edit help] (Semantic MediaWiki)", + "restriction-level-smw-pageedit": "protected (only eligible users)", + "action-smw-patternedit": "edit regular expressions used by Semantic MediaWiki", + "action-smw-pageedit": "edit pages annotated with Is edit protected (Semantic MediaWiki)", + "group-smwadministrator": "Administrators (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|administrator (Semantic MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:Administrators (Semantic MediaWiki)", + "group-smwcurator": "Curators (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|curator (Semantic MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:Curators (Semantic MediaWiki)", + "group-smweditor": "Editors (Semantic MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|editor (Semantic MediaWiki)}}", + "grouppage-smweditor": "{{ns:project}}:Editors (Semantic MediaWiki)", + "action-smw-admin": "access Semantic MediaWiki administration tasks", + "action-smw-ruleedit": "edit rule pages (Semantic MediaWiki)", + "smw-property-namespace-disabled": "The property [https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks namespace] is disabled, attempting to declare a type or other property specific characteristics for this property is not possible.", + "smw-property-predefined-default": "\"$1\" is a predefined property of type $2.", + "smw-property-predefined-common": "This property is pre-deployed (also known as [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property]) and comes with additional administrative privileges but can be used just like any other [https://www.semantic-mediawiki.org/wiki/Property user-defined property].", + "smw-property-predefined-ask": "\"$1\" is a predefined property that represents meta information (in form of a [https://www.semantic-mediawiki.org/wiki/Subobject subobject]) about individual queries and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksi": "\"$1\" is a predefined property that collects the number of conditions used in a query and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askde": "\"$1\" is a predefined property that informs about the depth of a query and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askde": "It is a numerical value computed on the basis of subquery nesting, property chains, and available description elements with the execution of a query being restricted by the [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth] configuration parameter.", + "smw-property-predefined-askpa": "\"$1\" is a predefined property describing parameters that influence a query result and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askpa": "It is part of a collection of properties that specify a [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler query profile].", + "smw-sp-properties-docu": "This page lists [https://www.semantic-mediawiki.org/wiki/Property properties] and their usage counts available for this wiki. For up-to-date count statistics it is recommended that the [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics property statistics] maintenance script is run on a regular basis. For a differentiated view, see the [[Special:UnusedProperties|unused]] or [[Special:WantedProperties|wanted properties]] special pages.", + "smw-sp-properties-cache-info": "The listed data have been retrieved from [https://www.semantic-mediawiki.org/wiki/Caching cache], and were last updated $1.", + "smw-sp-properties-header-label": "List of properties", + "smw-admin-settings-docu": "Displays a list of all default and localized settings that are relevant to the Semantic MediaWiki environment. For details on individual settings, please consult the [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuration] help page.", + "smw-sp-admin-settings-button": "Generate settings list", + "smw-admin-idlookup-title": "Lookup", + "smw-admin-idlookup-docu": "This section shows technical details about an individual entity (wikipage, subobject, property, etc.) in Semantic MediaWiki. The input can be a numeric ID or a string value to match the relevant search field, yet any ID reference relates to Semantic MediaWiki and not to MediaWiki's page or revision ID.", + "smw-admin-iddispose-title": "Disposal", + "smw-admin-iddispose-docu": "It should be noted that the disposal operation is unrestricted and will remove the entity from the storage engine together with all its references in pending tables, if confirmed. Please perform this task with '''caution''' and only after the [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal documentation] has been consulted.", + "smw-admin-iddispose-done": "ID \"$1\" was removed from the storage backend.", + "smw-admin-iddispose-references": "ID \"$1\" has {{PLURAL:$2|no|at least one}} active reference:", + "smw-admin-iddispose-references-multiple": "List of matches with at least one active reference record.", + "smw-admin-iddispose-no-references": "The search was unable to match \"$1\" to a table entry.", + "smw-admin-idlookup-input": "Search:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Overview", + "smw-admin-tab-notices": "Deprecation notices", + "smw-admin-tab-maintenance": "Maintenance", + "smw-admin-tab-supplement": "Supplementary functions", + "smw-admin-tab-registry": "Registry", + "smw-admin-tab-alerts": "Alerts", + "smw-admin-alerts-tab-deprecationnotices": "Deprecation notices", + "smw-admin-alerts-tab-maintenancealerts": "Maintenance alerts", + "smw-admin-alerts-section-intro": "This section shows alerts and notices related to settings, operations, and other activities that have been classified to require attention from an administrator or user with appropriated rights.", + "smw-admin-maintenancealerts-section-intro": "The following alerts and notices should be resolved and while not essential it is expected to help improve system and operational maintainability.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Table optimization", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "The system has found that the last [https://www.semantic-mediawiki.org/wiki/Table_optimization table optimization] was run $2 days ago (record from $1) which exceeds the $3 days maintenance threshold. As mentioned in the documentation, running optimizations will allow the query planner to make better decisions about queries therefore it is suggested to run the table optimization on a regular basis.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Outdated entities", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "The system has counted $1 [https://www.semantic-mediawiki.org/wiki/Outdated_entities outdated entities] and reached a critical level of unattended maintenance by exceeding the threshold of $2. It is recommended to run the [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] maintenance script.", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Invalid entities", + "smw-admin-maintenancealerts-invalidentities-alert": "The system matched $1 [https://www.semantic-mediawiki.org/wiki/Invalid_entities {{PLURAL:$1|entity|entities}}] to an [https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace unmaintained namespace] and it is recommended to run the [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] or [https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php] maintenance script.", + "smw-admin-deprecation-notice-section": "Semantic MediaWiki", + "smw-admin-configutation-tab-settings": "Settings", + "smw-admin-configutation-tab-namespaces": "Namespaces", + "smw-admin-configutation-tab-schematypes": "Schema types", + "smw-admin-maintenance-tab-tasks": "Tasks", + "smw-admin-maintenance-tab-scripts": "Maintenance scripts", + "smw-admin-maintenance-no-description": "No description.", + "smw-admin-maintenance-script-section-title": "List of available maintenance scripts", + "smw-admin-maintenance-script-section-intro": "The following maintenance scripts require an administrator and access to the command line to be able to execute listed scripts.", + "smw-admin-maintenance-script-description-dumprdf": "RDF export of existing triples.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "This script is used to manage concept caches for Semantic MediaWiki where it can create, remove, and update selected caches.", + "smw-admin-maintenance-script-description-rebuilddata": "Recreates all the semantic data in the database, by cycling through all the pages that might have semantic data.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "Rebuilds the Elasticsearch index (only for installations that use the ElasticStore), by cycling through all entities that have semantic data.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Find missing entities in Elasticsearch (only for installations that use the ElasticStore) and schedule appropriate update jobs.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "Rebuilds the SQLStore fulltext search index (for installations where the setting has been enabled).", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Rebuilds the usage statistics for all property entities.", + "smw-admin-maintenance-script-description-removeduplicateentities": "Removes duplicate entities found in selected tables that have no active references.", + "smw-admin-maintenance-script-description-setupstore": "Sets up the storage and query backend as defined in LocalSettings.php.", + "smw-admin-maintenance-script-description-updateentitycollation": "Updates the smw_sort field in the SQLStore (in accordance with the [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] setting).", + "smw-admin-maintenance-script-description-populatehashfield": "Populates the smw_hash field for rows missing the value.", + "smw-admin-maintenance-script-description-purgeentitycache": "Purge cache entries for known entities and their associated data.", + "smw-admin-maintenance-script-description-updatequerydependencies": "Update queries and query dependencies (see the [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore] setting).", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "Dispose of outdated entities and query links.", + "smw-admin-maintenance-script-description-runimport": "Populate and import auto-discovered content from [https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs].", + "smw-admin-maintenance-script-section-update": "Update scripts", + "smw-admin-maintenance-script-section-rebuild": "Rebuild scripts", + "smw-livepreview-loading": "Loading...", + "smw-sp-searchbyproperty-description": "This page provides a simple [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces browsing interface] for finding entities described by a property and a named value. Other available search interfaces include the [[Special:PageProperty|page property search]], and the [[Special:Ask|ask query builder]].", + "smw-sp-searchbyproperty-resultlist-header": "List of results", + "smw-sp-searchbyproperty-nonvaluequery": "A list of values that have the property \"$1\" assigned.", + "smw-sp-searchbyproperty-valuequery": "A list of pages that have property \"$1\" with value \"$2\" annotated.", + "smw-datavalue-number-textnotallowed": "\"$1\" can not be assigned to a declared number type with value $2.", + "smw-datavalue-number-nullnotallowed": "\"$1\" returned with a \"NULL\" which is not allowed as number.", + "smw-editpage-annotation-enabled": "This page supports semantic in-text annotations (e.g. \"[[Is specified as::World Heritage Site]]\") to build structured and queryable content provided by Semantic MediaWiki. For a comprehensive description on how to use annotations or the #ask parser function, please have a look at the [https://www.semantic-mediawiki.org/wiki/Help:Getting_started getting started], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation in-text annotation], or [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries inline queries] help pages.", + "smw-editpage-annotation-disabled": "This page is not enabled for semantic in-text annotations due to namespace restrictions. Details about how to enable the namespace can be found on the [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuration] help page.", + "smw-editpage-property-annotation-enabled": "This property can be extended using semantic annotations to specify a datatype (e.g. \"[[Has type::Page]]\") or other supporting declarations (e.g. \"[[Subproperty of::dc:date]]\"). For a description on how to augment this page, see the [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration declaration of a property] or the [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes list of available data types] help page.", + "smw-editpage-property-annotation-disabled": "This property cannot be extended with a datatype annotation (e.g. \"[[Has type::Page]]\") as it is already predefined (see the [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special properties] help page for more information).", + "smw-editpage-concept-annotation-enabled": "This concept can be extended using the #concept parser function. For a description on how to use #concept, see the [https://www.semantic-mediawiki.org/wiki/Help:Concepts concept] help page.", + "smw-search-syntax-support": "The search input supports the use of the semantic [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search query syntax] to help match results using Semantic MediaWiki.", + "smw-search-input-assistance": "The [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance input assistant] is also enabled to ease the pre-selection of available properties and categories.", + "smw-search-help-intro": "A [[ ... ]] input will signal to the input processor to use the Semantic MediaWiki search back-end. It should be noted that combining [[ ... ]] with an unstructured text search such as [[ ... ]] OR Lorem ipsum is not supported.", + "smw-search-help-structured": "Structured searches:\n\n* [[Category:Lorem ipsum]], [[Has number::123]] (as [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context filtered context])\n\n* [[Has text::~*lorem*]] (with a [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context query context])", + "smw-search-help-proximity": "Proximity searches (a property being unknown, '''only''' available for those back-ends that provide a full-text search integration):\n\n* [[in:lorem ipsum]] (search in all documents for \"lorem\" and \"ipsum\" that have been indexed)\n\n* [[phrase:lorem ipsum]] (match \"lorem ipsum\" as phrase)", + "smw-search-help-ask": "The following links will explain how to use the #ask syntax.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selecting pages] describes how to select pages and build conditions\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Search operators] lists available search operators including those for range and wildcard queries", + "smw-search-input": "Input and search", + "smw-search-help-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Input assistance] is provided for the input field and requires to use one of following prefixes:\n\n* p: to enable property suggestions (e.g. [[p:Has ...)\n\n* c: to enable category suggestions\n\n* con: to enable concept suggestions", + "smw-search-syntax": "Syntax", + "smw-search-profile": "Extended", + "smw-search-profile-tooltip": "Search functions in connection with Semantic MediaWiki", + "smw-search-profile-sort-best": "Best match", + "smw-search-profile-sort-recent": "Most recent", + "smw-search-profile-sort-title": "Title", + "smw-search-profile-extended-help-intro": "The Special:Search [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile extended profile] provides access to search functions specific to Semantic MediaWiki and its supported query backend.", + "smw-search-profile-extended-help-sort": "Specifies a sorting preference for the result display with:", + "smw-search-profile-extended-help-sort-title": "* \"Title\" using the page title (or display title) as sort criteria", + "smw-search-profile-extended-help-sort-recent": "* \"Most recent\" will show the most recent modified entities first (subobject entities will be suppressed as those entities are not annotated with a [[Property:Modification date|Modification date]])", + "smw-search-profile-extended-help-sort-best": "* \"Best match\" will sort entities by [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy relevancy] based on scores provided by the backend", + "smw-search-profile-extended-help-form": "Forms are provided (if maintained) to match specific use cases by exposing different property and value fields to narrow down the input process and make it easy for users to proceed with a search request. (see $1)", + "smw-search-profile-extended-help-namespace": "The namespace selection box will be hidden as soon as a form is selected but can be made visible with the help of the \"show/hide\" button.", + "smw-search-profile-extended-help-search-syntax": "The search input field supports the use of the #ask syntax to define a Semantic MediaWiki specific search context. Useful expressions include:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: to find anything that contains \"...\" and is especially useful when the search context or properties involved are unknown (e.g. in:(lorem && ipsum) is equivalent to [[~~*lorem*]] && [[~~*ipsum*]]).", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: to find anything that contains \"...\" in the exact same order", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: to match any entity with a property \"...\" (e.g. has:(Foo && Bar) is equivalent to [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: to not match any entity that includes \"...\"", + "smw-search-profile-extended-help-search-syntax-prefix": "* Additional custom prefixes are available and defined such as: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* Some expressions are reserved such as: $1", + "smw-search-profile-extended-help-search-syntax-note": "''Some of the listed operations are only useful in connection with an enabled full-text index or the ElasticStore.''", + "smw-search-profile-extended-help-query": "Used $1 as query.", + "smw-search-profile-extended-help-query-link": "For more details, please use the $1.", + "smw-search-profile-extended-help-find-forms": "available forms", + "smw-search-profile-extended-section-sort": "Sort by", + "smw-search-profile-extended-section-form": "Forms", + "smw-search-profile-extended-section-search-syntax": "Search input", + "smw-search-profile-extended-section-namespace": "Namespace", + "smw-search-profile-extended-section-query": "Query", + "smw-search-profile-link-caption-query": "query builder", + "smw-search-show": "Show", + "smw-search-hide": "Hide", + "log-name-smw": "Semantic MediaWiki log", + "log-show-hide-smw": "$1 Semantic MediaWiki log", + "logeventslist-smw-log": "Semantic MediaWiki log", + "log-description-smw": "Activities for [https://www.semantic-mediawiki.org/wiki/Help:Logging enabled event types] that have been reported by Semantic MediaWiki and its components.", + "logentry-smw-maintenance": "Maintenance related events emitted by Semantic MediaWiki", + "smw-datavalue-import-unknown-namespace": "The import namespace \"$1\" is unknown. Please ensure that OWL import details are available via [[MediaWiki:Smw import $1]]", + "smw-datavalue-import-missing-namespace-uri": "Unable to find a \"$1\" namespace URI in the [[MediaWiki:Smw import $1|$1 import]].", + "smw-datavalue-import-missing-type": "No type definition was found for \"$1\" in the [[MediaWiki:Smw import $2|$2 import]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|$1 import]]", + "smw-datavalue-import-invalid-value": "\"$1\" is not a valid format and is expected to consist of \"namespace\":\"identifier\" (e.g. \"foaf:name\").", + "smw-datavalue-import-invalid-format": "Expected the string \"$1\" to be divided into four parts but the format was not understood.", + "smw-property-predefined-impo": "\"$1\" is a predefined property that describes a relation to an [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary imported vocabulary] and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-type": "\"$1\" is a predefined property that describes the [[Special:Types|datatype]] of a property and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-sobj": "\"$1\" is a predefined property representing a [https://www.semantic-mediawiki.org/wiki/Help:Container container] construct and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-sobj": "The container allows to accumulate property-value assignments similar to that of a normal wiki page but within a different entity space while being linked to the embedding subject.", + "smw-property-predefined-errp": "\"$1\" is a predefined property that tracks input errors for irregular value annotations and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-errp": "In most cases it is caused by a type mismatch or a [[Property:Allows value|value]] restriction.", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value \"$1\"] is a predefined property that can define a list of permissible values to restrict value assignments for a property and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list \"$1\"] is a predefined property that can specify a reference to a list that holds permissible values to restrict value assignments for a property and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-datavalue-property-restricted-annotation-use": "Property \"$1\" has a restricted application area and cannot be used as annotation property by a user.", + "smw-datavalue-property-restricted-declarative-use": "Property \"$1\" is a declarative property and can only be used on a property or category page.", + "smw-datavalue-property-create-restriction": "Property \"$1\" doesn't exist and the user is missing the \"$2\" permission (see [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode authority mode]) to create or annotate values with an unapproved property.", + "smw-datavalue-property-invalid-character": "\"$1\" contains a listed \"$2\" character as part of the property label and has therefore been classified as invalid.", + "smw-datavalue-property-invalid-chain": "Using \"$1\" as property chain is not permitted during the annotation process.", + "smw-datavalue-restricted-use": "Datavalue \"$1\" has been marked for restricted use.", + "smw-datavalue-invalid-number": "\"$1\" can not be interpreted as a number.", + "smw-query-condition-circular": "A possible circular condition has been detected in \"$1\".", + "smw-query-condition-empty": "The query description has an empty condition.", + "smw-types-list": "List of datatypes", + "smw-types-default": "\"$1\" is a built-in datatype.", + "smw-types-help": "Further information and examples can be found on this [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 help page].", + "smw-type-anu": "\"$1\" is a variant of the [[Special:Types/URL|URL]] datatype and is mostly used for a ''owl:AnnotationProperty'' export declaration.", + "smw-type-boo": "\"$1\" is a basic datatype to describe a true/false value.", + "smw-type-cod": "\"$1\" is a variant of the [[Special:Types/Text|Text]] datatype to be used for technical texts of arbitrary length, such as source code listings.", + "smw-type-geo": "\"$1\" is a datatype that describes geographic locations and requires the [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"] extension to provide an extended functionality.", + "smw-type-tel": "\"$1\" is a special datatype to describe international telephone numbers according to RFC 3966.", + "smw-type-txt": "\"$1\" is a basic datatype to describe strings of arbitrary length.", + "smw-type-dat": "\"$1\" is a basic datatype to represent points in time in a unified format.", + "smw-type-ema": "\"$1\" is a special datatype to represent an email.", + "smw-type-tem": "\"$1\" is a special numeric datatype to represent a temperature.", + "smw-type-qty": "\"$1\" is a datatype to describe quantities with a numeric representation and a unit of measurement.", + "smw-type-rec": "\"$1\" is a container datatype that specifies a list of typed properties in a fixed order.", + "smw-type-extra-tem": "The conversion schema includes supported units such as Kelvin, Celsius, Fahrenheit, and Rankine.", + "smw-type-tab-properties": "Properties", + "smw-type-tab-types": "Types", + "smw-type-tab-type-ids": "Type IDs", + "smw-type-tab-errors": "Errors", + "smw-type-primitive": "Basic", + "smw-type-contextual": "Contextual", + "smw-type-compound": "Compound", + "smw-type-container": "Container", + "smw-type-no-group": "Unclassified", + "smw-specials-browse-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Special:Browse", + "smw-specials-bytype-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Type_$1", + "smw-specials-types-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Types", + "smw-special-pageproperty-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Special:PageProperty", + "smw-special-pageproperty-description": "This page provides a browsing interface for finding all values of a property and a given page. Other available search interfaces include the [[Special:SearchByProperty|property search]], and the [[Special:Ask|ask query builder]].", + "smw-property-predefined-errc": "\"$1\" is a predefined property provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] and represents errors that appeared in connection with improper value annotations or input processing.", + "smw-property-predefined-long-errc": "Errors are collected in a [https://www.semantic-mediawiki.org/wiki/Help:Container container] that may include a reference to the property that caused the discrepancy.", + "smw-property-predefined-errt": "\"$1\" is a predefined property containing a textual description of an error and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-subobject-parser-invalid-naming-scheme": "A user-defined subobject contained an invalid naming scheme. The dot notation ($1) used within the first five characters is reserved for extensions. You may set a [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier named identifier].", + "smw-datavalue-record-invalid-property-declaration": "The record definition contains the \"$1\" property which itself is declared as record type and that is not permitted.", + "smw-property-predefined-mdat": "\"$1\" is a predefined property that corresponds to the date of the last modification of a subject and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cdat": "\"$1\" is a predefined property that corresponds to the date of the first revision of a subject and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-newp": "\"$1\" is a predefined property that indicates whether a subject is new or not and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-ledt": "\"$1\" is a predefined property that contains the page name of the user who created the last revision and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-mime": "\"$1\" is a predefined property that describes the MIME type of an uploaded file and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-media": "\"$1\" is a predefined property that describes the media type of an uploaded file and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askfo": "\"$1\" is a predefined property that holds the name of the result format used in a query and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askst": "\"$1\" is a predefined property that describes the conditions of the query as a string and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askdu": "\"$1\" is a predefined property containing a time value (in seconds) that was required to complete the query execution and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksc": "\"$1\" is a predefined property provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] that identifies alternative (e.g. remote, federated) query sources.", + "smw-property-predefined-askco": "\"$1\" is a predefined property provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] to describe the state of a query or its components.", + "smw-property-predefined-long-askco": "The number or numbers assigned represent an internal codified state that is explained on the [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler help page].", + "smw-property-predefined-prec": "\"$1\" is a predefined property that describes a [https://www.semantic-mediawiki.org/wiki/Help:Display_precision display precision] (in decimal digits) for numeric datatypes.", + "smw-property-predefined-attch-link": "\"$1\" is a predefined property that collects embedded file and image links found in a page and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-inst": "\"$1\" is an internal predefined property that stores category information independent of MediaWiki and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-unit": "\"$1\" is a declarative predefined property to define units of display for numeric typed properties and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-unit": "A comma-separated list allows to describe units or formats to be used for the display.", + "smw-property-predefined-conv": "\"$1\" is a declarative predefined property to define conversion factor for some unit of a physical quantity and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-serv": "\"$1\" is a declarative predefined property to add service links to a property and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-redi": "\"$1\" is an internal predefined property to record redirects and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-subp": "\"$1\" is a declarative predefined property to define that a property is a [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of subproperty of] another and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-subc": "\"$1\" is a predefined property to define that a category is a [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of subcategory of] another and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-conc": "\"$1\" is an internal predefined property to define an associated concept and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-err-type": "\"$1\" is a predefined property to indentify a group or class of [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors processing errors] and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-skey": "\"$1\" is an internal predefined property to hold a sort reference and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pplb": "\"$1\" is a declarative predefined property to specify a [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label preferred property label] and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-chgpro": "\"$1\" is a predefined property to hold [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation change propagation] information and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-link": " and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-format-schema": " and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-profile-schema": " and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans": " and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-source": " and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-group": " and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cont-len": "\"$1\" is a predefined property to store length information and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-len": "It is used in connection with the [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (and the [https://www.semantic-mediawiki.org/Attachment_processor attachment processor]) to collect and store length information retrieved from an ingested file (if provided).", + "smw-property-predefined-cont-lang": "\"$1\" is a predefined property to store language information and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-lang": "It is used in connection with the [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (and the [https://www.semantic-mediawiki.org/Attachment_processor attachment processor]) to collect and store language information retrieved from an ingested file (if provided).", + "smw-property-predefined-cont-title": "\"$1\" is a predefined property to store title information and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-title": "It is used in connection with the [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (and the [https://www.semantic-mediawiki.org/Attachment_processor attachment processor]) to collect and store title information retrieved from an ingested file (if provided).", + "smw-property-predefined-cont-author": "\"$1\" is a predefined property to store author information and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-author": "It is used in connection with the [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (and the [https://www.semantic-mediawiki.org/Attachment_processor attachment processor]) to collect and store author information retrieved from an ingested file (if provided).", + "smw-property-predefined-cont-date": "\"$1\" is a predefined property to store date information and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-date": "It is used in connection with the [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (and the [https://www.semantic-mediawiki.org/Attachment_processor attachment processor]) to collect and store date information retrieved from an ingested file (if provided).", + "smw-property-predefined-cont-type": "\"$1\" is a predefined property to store file type information and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-type": "It is used in connection with the [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (and the [https://www.semantic-mediawiki.org/Attachment_processor attachment processor]) to collect and store type information retrieved from an ingested file (if provided).", + "smw-property-predefined-cont-keyw": "\"$1\" is a predefined property to represent keywords and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-keyw": "It is used in connection with the [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (and the [https://www.semantic-mediawiki.org/Attachment_processor attachment processor]) to collect and store keywords retrieved from an ingested file (if provided).", + "smw-property-predefined-file-attch": "\"$1\" is a predefined property to represent a container that stores attachment information and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-file-attch": "It is used in connection with the [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (and the [https://www.semantic-mediawiki.org/Attachment_processor attachment processor]) to collect all content specific information retrievable from an ingested file (if provided).", + "smw-types-extra-geo-not-available": "[https://www.semantic-mediawiki.org/wiki/Extension:Maps Extension \"Maps\"] was not detected therefore \"$1\" is restricted in its capacity to operate.", + "smw-datavalue-monolingual-dataitem-missing": "An expected item for building a monolingual compound value is missing.", + "smw-datavalue-monolingual-lcode-parenthesis": "($1)", + "smw-datavalue-languagecode-missing": "For the \"$1\" annotation, the parser was unable to determine a language code (i.e. \"foo@en\").", + "smw-datavalue-languagecode-invalid": "\"$1\" was not recognized as a supported language code.", + "smw-property-predefined-lcode": "\"$1\" is a predefined property that represents a BCP47 formatted language code and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-type-mlt-rec": "\"$1\" is a [https://www.semantic-mediawiki.org/wiki/Help:Container container] datatype that associates a text value with a specific [[Property:Language code|language code]].", + "smw-types-extra-mlt-lcode": "The datatype does {{PLURAL:$2|require|not require}} a language code (i.e. {{PLURAL:$2|a value annotation without a language code is not accepted|a value annotation without a language code is accepted}}).", + "smw-property-predefined-text": "\"$1\" is a predefined property that represents text of arbitrary length and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pdesc": "\"$1\" is a predefined property that allows to describe a property in context of a language and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-list": "\"$1\" is a predefined property to define a list of properties used with a [[Special:Types/Record|record]] typed property and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] In-text annotation parser time", + "smw-limitreport-intext-postproctime": "[SMW] post processing time", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|second|seconds}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|second|seconds}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Store update time (on page purge)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|second|seconds}}", + "smw_allows_pattern": "This page is expected to contain a list of references (followed by [https://en.wikipedia.org/wiki/Regular_expression regular expressions]) to be made available by the [[Property:Allows pattern|Allows pattern]] property. To edit this page, the smw-patternedit right is required.", + "smw-datavalue-allows-pattern-mismatch": "\"$1\" was classified as invalid by the \"$2\" regular expression.", + "smw-datavalue-allows-pattern-reference-unknown": "The \"$1\" pattern reference could not be matched to an entry in [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "The \"$1\" list reference was not matchable to a [[MediaWiki:Smw allows list $1]] page.", + "smw-datavalue-allows-value-list-missing-marker": "The \"$1\" list content is missing items with a * list marker.", + "smw-datavalue-feature-not-supported": "The \"$1\" feature is not supported or was disabled on this wiki.", + "smw-property-predefined-pvap": "\"$1\" is a predefined property that can specify a [[MediaWiki:Smw allows pattern|pattern reference]] to apply [https://en.wikipedia.org/wiki/Regular_expression regular expression] matching and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-dtitle": "\"$1\" is a predefined property that can assign a distinct display title to an entity and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvuc": "\"$1\" is a predefined property provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] to restrict value assignments for each instance to be unique (or one at most).", + "smw-property-predefined-long-pvuc": "Uniqueness is established when two values are not equal in their literal representation and any violation of that constraint will be categorized as error.", + "smw-datavalue-constraint-uniqueness-violation": "Property \"$1\" only permits unique value assignments and ''$2'' was already annotated in subject \"$3\".", + "smw-datavalue-constraint-uniqueness-violation-isknown": "Property \"$1\" only permits unique value annotations, ''$2'' already contains an assigned value. \"$3\" violates the uniqueness constraint.", + "smw-datavalue-constraint-violation-non-negative-integer": "Property \"$1\" has a \"non negative integer\" constraint and value ''$2'' is violating that requirement.", + "smw-datavalue-constraint-violation-must-exists": "Property \"$1\" has a must_exists constraint and value ''$2'' is violating that requirement.", + "smw-datavalue-constraint-violation-single-value": "The \"[[Property:$1|$1]]\" property has a single_value constraint and value \"$2\" is violating that requirement.", + "smw-constraint-violation-uniqueness": "A unique_value_constraint constraint is assigned to the \"[[Property:$1|$1]]\" property which only permits unique value assignments and the ''$2'' value annotation was already found to be annotated in the \"$3\" subject.", + "smw-constraint-violation-uniqueness-isknown": "A unique_value_constraint constraint is assigned to the \"[[Property:$1|$1]]\" property, therefore only unique value annotations are permitted. ''$2'' already contains an annotated value with \"$3\", violating the uniqueness constraint for the current subject.", + "smw-constraint-violation-non-negative-integer": "A non_negative_integer constraint is assigned to the \"[[Property:$1|$1]]\" property and the ''$2'' value annotation is violating the constraint requirement.", + "smw-constraint-violation-must-exists": "A must_exists constraint is assigned to the \"[[Property:$1|$1]]\" property and the ''$2'' value annotation is violating the constraint requirement.", + "smw-constraint-violation-single-value": "A single_value constraint is assigned to the \"[[Property:$1|$1]]\" property and the \"$2\" value annotation is violating the constraint requirement.", + "smw-constraint-violation-class-shape-constraint-missing-property": "A shape_constraint is assigned to the \"[[:$1]]\" category with a property key, the required \"$2\" property is missing.", + "smw-constraint-violation-class-shape-constraint-wrong-type": "A shape_constraint is assigned to the \"[[:$1]]\" category with a property_type key, the \"$2\" property doesn't match the type of \"$3\".", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "A shape_constraint is assigned to the \"[[:$1]]\" category with a max_cardinality key, the \"$2\" property doesn't match the cardinality of \"$3\".", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "A shape_constraint is assigned to the \"[[:$1]]\" category with a min_textlength key, the \"$2\" property doesn't match the length requirement of \"$3\".", + "smw-constraint-violation-class-mandatory-properties-constraint": "A mandatory_properties constraint is assigned to the \"[[:$1]]\" category and requires the following mandatory properties: $2", + "smw-constraint-violation-allowed-namespace-no-match": "A allowed_namespaces constraint is assigned to the \"[[Property:$1|$1]]\" property and \"$2\" violates the namespace requirement, only the following \"$3\" namespaces are allowed.", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "The allowed_namespaces constraint requires a page type.", + "smw-constraint-schema-category-invalid-type": "The annotated \"$1\" schema is invalid for a category, it requires a \"$2\" type.", + "smw-constraint-schema-property-invalid-type": "The annotated \"$1\" schema is invalid for a property, it requires a \"$2\" type.", + "smw-constraint-error-allows-value-list": "\"$1\" is not in the list ($2) of [[Property:Allows value|allowed values]] for the \"$3\" property.", + "smw-constraint-error-allows-value-range": "\"$1\" is not within that range of \"$2\" specified by the [[Property:Allows value|allows value]] constraint for the \"$3\" property.", + "smw-property-predefined-boo": "\"$1\" is a [[Special:Types/Boolean|type]] and predefined property provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] to represent boolean values.", + "smw-property-predefined-num": "\"$1\" is a [[Special:Types/Number|type]] and predefined property provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] to represent numeric values.", + "smw-property-predefined-dat": "\"$1\" is a [[Special:Types/Date|type]] and predefined property provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] to represent date values.", + "smw-property-predefined-uri": "\"$1\" is a [[Special:Types/URL|type]] and predefined property provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] to represent URI/URL values.", + "smw-property-predefined-qty": "\"$1\" is a [[Special:Types/Quantity|type]] and predefined property provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] to represent quantity values.", + "smw-datavalue-time-invalid-offset-zone-usage": "\"$1\" contains an offset and zone identifier which is not supported.", + "smw-datavalue-time-invalid-values": "The \"$1\" value contains uninterpretable information in form of \"$2\".", + "smw-datavalue-time-invalid-date-components-common": "\"$1\" contains some uninterpretable information.", + "smw-datavalue-time-invalid-date-components-dash": "\"$1\" contains an extrinsic dash or other characters that are invalid for a date interpretation.", + "smw-datavalue-time-invalid-date-components-empty": "\"$1\" contains some empty components.", + "smw-datavalue-time-invalid-date-components-three": "\"$1\" contains more than three components required for a date interpretation.", + "smw-datavalue-time-invalid-date-components-sequence": "\"$1\" contains a sequence that could not be interpreted against an available match matrix for date components.", + "smw-datavalue-time-invalid-ampm": "\"$1\" contains \"$2\" as hour element that is invalid for a 12-hour convention.", + "smw-datavalue-time-invalid-jd": "Unable to interpret the \"$1\" input value as valid JD (Julian day) number with \"$2\" being reported.", + "smw-datavalue-time-invalid-prehistoric": "Unable to interpret a prehistoric \"$1\" input value. For example, having specified more than years or a calendar model may return unexpected results in a prehistoric context.", + "smw-datavalue-time-invalid": "Unable to interpret the \"$1\" input value as valid date or time component with \"$2\" being reported.", + "smw-datavalue-external-formatter-uri-missing-placeholder": "Formatter URI is missing the ''$1'' placeholder.", + "smw-datavalue-external-formatter-invalid-uri": " \"$1\" is an invalid URL.", + "smw-datavalue-external-identifier-formatter-missing": "The property is missing an [[Property:External formatter uri|\"External formatter URI\"]] assignment.", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "The \"$1\" external identifier expects a multi field substitution but the current \"$2\" value is missing at least one value parameter to match the requirement.", + "smw-datavalue-keyword-maximum-length": "The keyword exceeded the maximum length of $1 {{PLURAL:$1|character|characters}}.", + "smw-property-predefined-eid": "\"$1\" is a [[Special:Types/External identifier|type]] and predefined property provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] to represent external identifiers.", + "smw-property-predefined-peid": "\"$1\" is a predefined property that specifies an external identifier and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pefu": "\"$1\" is a predefined property provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] to specify an external resource with a placeholder.", + "smw-property-predefined-long-pefu": "The URI is expected to contain a placeholder that will be adjusted with an [[Special:Types/External identifier|external identifier]] value to form a valid resource reference.", + "smw-type-eid": "\"$1\" is a variant of the [[Special:Types/Text|Text]] datatype to describe external resources (URI based) and requires assigned properties to declare an [[Property:External formatter uri|External formatter URI]].", + "smw-property-predefined-keyw": "\"$1\" is a predefined property and [[Special:Types/Keyword|type]] provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] that normalizes a text and has a restricted character length.", + "smw-type-keyw": "\"$1\" is a variant of the [[Special:Types/Text|Text]] datatype that has a restricted character length with a normalized content representation.", + "smw-datavalue-stripmarker-parse-error": "The given value \"$1\" contains [https://en.wikipedia.org/wiki/Help:Strip_markers strip markers] and therefore it cannot be parsed sufficiently.", + "smw-datavalue-parse-error": "The given value \"$1\" was not understood.", + "smw-datavalue-propertylist-invalid-property-key": "The property list \"$1\" contained an invalid property key \"$2\".", + "smw-datavalue-type-invalid-typeuri": "The \"$1\" type could not be transformed into a valid URI representation.", + "smw-datavalue-wikipage-missing-fragment-context": "The wikipage input value \"$1\" cannot be used without a context page.", + "smw-datavalue-wikipage-invalid-title": "The page type input value \"$1\" contains invalid characters or is incomplete and therefore can cause unexpected results during a query or annotation process.", + "smw-datavalue-wikipage-property-invalid-title": "Property \"$1\" (as page type) with input value \"$2\" contains invalid characters or is incomplete and therefore can cause unexpected results during a query or annotation process.", + "smw-datavalue-wikipage-empty": "The wikipage input value is empty (e.g. [[SomeProperty::]], [[]]) and therefore it cannot be used as a name or as part of a query condition.", + "smw-type-ref-rec": "\"$1\" is a [https://www.semantic-mediawiki.org/wiki/Container container] type that allows to record additional information (e.g. provenance data) about a value assignment.", + "smw-datavalue-reference-outputformat": "$1: $2", + "smw-datavalue-reference-invalid-fields-definition": "The [[Special:Types/Reference|Reference]] type expects a list of properties to be declared using the [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] property.", + "smw-parser-invalid-json-format": "The JSON parser returned with a \"$1\".", + "smw-property-preferred-title-format": "$1 ($2)", + "smw-property-preferred-label-language-combination-exists": "\"$1\" cannot be used as preferred label because the language \"$2\" is already assigned to the \"$3\" label.", + "smw-parse": "$1", + "smw-clipboard-copy-link": "Copy link to clipboard", + "smw-property-userdefined-fixedtable": "\"$1\" was configured as [https://www.semantic-mediawiki.org/wiki/Fixed_properties fixed property] and any modification to its [https://www.semantic-mediawiki.org/wiki/Type_declaration type declaration] requires to either run setupStore.php or to complete the special [[Special:SemanticMediaWiki|\"Database installation and upgrade\"]] task.", + "smw-data-lookup": "Fetching data...", + "smw-data-lookup-with-wait": "The request is being processed and may take a moment.", + "smw-no-data-available": "No data available.", + "smw-property-req-violation-missing-fields": "Property \"$1\" is missing a required [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] declaration for this \"$2\" type.", + "smw-property-req-violation-multiple-fields": "Property \"$1\" contains multiple (therefore competing) [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] declarations, only one is expected for this \"$2\" type.", + "smw-property-req-violation-missing-formatter-uri": "Property \"$1\" is missing declaration details for the annotated type by failing to define the External formatter URI property.", + "smw-property-req-violation-predefined-type": "Property \"$1\" as predefined property contains a \"$2\" type declaration that is incompatible with the default type of this property.", + "smw-property-req-violation-import-type": "A type declaration was detected that is incompatible with the predefined type of the imported \"$1\" vocabulary. In general, it is not necessary to declare a type because information are retrieved from the import definition.", + "smw-property-req-violation-change-propagation-locked-error": "Property \"$1\" was altered and requires assigned entities to be reevaluated using a [https://www.semantic-mediawiki.org/wiki/Change_propagation change propagation] process. The property page has been locked until the primary specification update is completed to prevent intermediary interruptions or contradictory specifications. The process may take a moment before the page can be unlocked as it depends on the size and frequency of the [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue job queue] scheduler.", + "smw-property-req-violation-change-propagation-locked-warning": "Property \"$1\" was altered and requires assigned entities to be reevaluated using a [https://www.semantic-mediawiki.org/wiki/Change_propagation change propagation] process. The update may take a moment as it depends on the size and frequency of the [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue job queue] scheduler and it is suggested to postpone changes to the property to prevent intermediary interruptions or contradictory specifications.", + "smw-property-req-violation-change-propagation-pending": "[https://www.semantic-mediawiki.org/wiki/Change_propagation Change propagation] updates are pending ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|job|jobs}}] estimated) and it is recommended to wait with modifications to a property until the process has been finalized to prevent intermediary interruptions or contradictory specifications.", + "smw-property-req-violation-missing-maps-extension": "Semantic MediaWiki was unable to detect the [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"] extension which is a prerequisite and as a consequence limits the functionality (i.e. unable to store or process geographic data) of this property.", + "smw-property-req-violation-type": "The property contains competing type specifications which may result in invalid value annotations therefore it is expected that a user assigns one appropriate type.", + "smw-property-req-error-list": "The property contains the following errors or warnings:", + "smw-property-req-violation-parent-type": "Property \"$1\" and the assigned parent property \"$2\" have different type annotations.", + "smw-property-req-violation-forced-removal-annotated-type": "The [https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance mandatory parent type inheritance] enforcement has been enabled, the annotate type for the \"$1\" property doesn't match its parent property \"$2\" type and has been altered to reflect that requirement. It is recommended to adjust the in-page type definition so that the error message and mandatory enforcement is removed for this property.", + "smw-change-propagation-protection": "This page is locked to prevent accidental data modification while a [https://www.semantic-mediawiki.org/wiki/Change_propagation change propagation] update is run. The process may take a moment before the page is unlocked as it depends on the size and frequency of the [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue job queue] scheduler.", + "smw-category-change-propagation-locked-error": "Category \"$1\" was altered and requires assigned entities to be reevaluated using a [https://www.semantic-mediawiki.org/wiki/Change_propagation change propagation] process. In the meantime, the category page has been locked until the primary specification update is completed to prevent intermediary interruptions or contradictory specifications. The process may take a moment before the page can be unlocked as it depends on the size and frequency of the [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue job queue] scheduler.", + "smw-category-change-propagation-locked-warning": "Category \"$1\" was altered and requires assigned entities to be reevaluated using a [https://www.semantic-mediawiki.org/wiki/Change_propagation change propagation] process. The update may take a moment as it depends on the size and frequency of the [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue job queue] scheduler and it is suggested to postpone changes to the category to prevent intermediary interruptions or contradictory specifications.", + "smw-category-change-propagation-pending": "[https://www.semantic-mediawiki.org/wiki/Change_propagation Change propagation] updates are pending ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|job|jobs}}] estimated) and it is recommended to wait with modifications to a category until the process has been finalized to prevent intermediary interruptions or contradictory specifications.", + "smw-category-invalid-value-assignment": "\"$1\" is not recognized as valid category or value annotation.", + "protect-level-smw-pageedit": "Allow only users with page edit permission (Semantic MediaWiki)", + "smw-create-protection": "Creation of the \"$1\" property is restricted to users with the appropriate \"$2\" right (or [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups user group]) while the [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode authority mode] is enabled.", + "smw-create-protection-exists": "Changes to the \"$1\" property is restricted to users with the appropriate \"$2\" right (or [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups user group]) while the [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode authority mode] is enabled.", + "smw-edit-protection": "This page is [[Property:Is edit protected|protected]] to prevent accidental data modification and can only be edited by users with the appropriate edit right (\"$1\") or [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups user group].", + "smw-edit-protection-disabled": "The edit protection has been disabled therefore \"$1\" cannot be used to protect entity pages from unauthorized editing.", + "smw-edit-protection-auto-update": "Semantic MediaWiki has updated the protection status according to the \"Is edit protected\" property.", + "smw-edit-protection-enabled": "Edit protected (Semantic MediaWiki)", + "smw-patternedit-protection": "This page is protected and can only be edited by users with the appropriate smw-patternedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions permission].", + "smw-property-predefined-edip": "\"$1\" is a predefined property provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] to indicate whether editing is protected or not.", + "smw-property-predefined-long-edip": "While any user is qualified to add this property to a subject, only a user with a dedicated permission can edit or revoke the protection to an entity after it has been added.", + "smw-query-reference-link-label": "Query reference", + "smw-format-datatable-emptytable": "No data available in table", + "smw-format-datatable-info": "Showing _START_ to _END_ of _TOTAL_ entries", + "smw-format-datatable-infoempty": "Showing 0 to 0 of 0 entries", + "smw-format-datatable-infofiltered": "(filtered from _MAX_ total entries)", + "smw-format-datatable-infothousands": ",", + "smw-format-datatable-lengthmenu": "Show _MENU_ entries", + "smw-format-datatable-loadingrecords": "Loading...", + "smw-format-datatable-processing": "Processing...", + "smw-format-datatable-search": "Search:", + "smw-format-datatable-zerorecords": "No matching records found", + "smw-format-datatable-first": "First", + "smw-format-datatable-last": "Last", + "smw-format-datatable-next": "Next", + "smw-format-datatable-previous": "Previous", + "smw-format-datatable-sortascending": ": activate to sort column ascending", + "smw-format-datatable-sortdescending": ": activate to sort column descending", + "smw-format-datatable-toolbar-export": "Export", + "smw-format-list-separator": ", ", + "smw-format-list-property-separator": ", ", + "smw-format-list-value-separator": ", ", + "smw-format-list-field-label-separator": ": ", + "smw-format-list-other-fields-open": " (", + "smw-format-list-other-fields-close": ")", + "smw-category-invalid-redirect-target": "Category \"$1\" contains an invalid redirect target to a non-category namespace.", + "smw-parser-function-expensive-execution-limit": "The parser function has reached the limit for expensive executions (see configuration parameter [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "Semantic MediaWiki is refreshing the current page on the condition of some required query post processing.", + "apihelp-smwinfo-summary": "API module to retrieve information about Semantic MediaWiki statistics and other meta information.", + "apihelp-ask-summary": "API module to query Semantic MediaWiki using the ask language.", + "apihelp-askargs-summary": "API module to query Semantic MediaWiki using the ask language as list of conditions, printouts and parameters.", + "apihelp-browsebyproperty-summary": "API module to retrieve information about a property or list of properties.", + "apihelp-browsebysubject-summary": "API module to retrieve information about a subject.", + "apihelp-smwtask-summary": "API module to execute Semantic MediaWiki related tasks (for internal use only, not for public use).", + "apihelp-smwbrowse-summary": "API module to support browse activities for different entity types in Semantic MediaWiki.", + "apihelp-ask-parameter-api-version": "Output formatting:\n;2:Backwards-compatible format using {} for the result list.\n;3:Experimental format using [] as result list.", + "apihelp-smwtask-param-task": "Defines the task type", + "apihelp-smwtask-param-params": "JSON encoded parameters that match the selected task type requirement", + "smw-apihelp-smwtask-example-update": "Example of running a update task for a particular subject:", + "smw-api-invalid-parameters": "Invalid parameters, \"$1\"", + "smw-parser-recursion-level-exceeded": "The level of $1 recursions was exceeded during a parse process. It is suggested to validate the template structure, or if necessary to adjust the configuration parameter $maxRecursionDepth.", + "smw-property-page-list-count": "Showing $1 {{PLURAL:$1|page|pages}} using this property.", + "smw-property-page-list-search-count": "Showing $1 {{PLURAL:$1|page|pages}} using this property with a \"$2\" value match.", + "smw-property-page-filter-note": "The [https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter search filter] allows the inclusion of [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions query expressions] such as ~ or !. The selected [https://www.semantic-mediawiki.org/wiki/Query_engine query engine] might also support case insensitive matching or other short expressions like:\n\n* in: result should include the term, e.g. 'in:Foo'\n\n* not: result should to not include the term, e.g. 'not:Bar'", + "smw-property-reserved-category": "Category", + "smw-category": "Category", + "smw-datavalue-uri-invalid-scheme": " \"$1\" has not been listed as valid URI scheme.", + "smw-datavalue-uri-invalid-authority-path-component": "\"$1\" has been identified to contain an invalid \"$2\" authority or path component.", + "smw-browse-property-group-title": "Property group", + "smw-browse-property-group-label": "Property group label", + "smw-browse-property-group-description": "Property group description", + "smw-property-predefined-ppgr": "\"$1\" is a predefined property that identifies entities (mainly categories) that are used as grouping instance for properties and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-filter": "Filter", + "smw-section-expand": "Expand the section", + "smw-section-collapse": "Collapse the section", + "smw-ask-format-help-link": "[https://www.semantic-mediawiki.org/wiki/Help:$1_format $1] format", + "smw-help": "Help", + "smw-cheat-sheet": "Cheat sheet", + "smw-personal-jobqueue-watchlist": "Job queue watchlist", + "smw-personal-jobqueue-watchlist-explain": "The numbers indicate an estimation of job queue entries awaiting execution.", + "smw-property-predefined-label-skey": "Sortkey", + "smw-processing": "Processing...", + "smw-loading": "Loading...", + "smw-fetching": "Fetching...", + "smw-preparing": "Preparing...", + "smw-expand": "Expand", + "smw-collapse": "Collapse", + "smw-copy": "Copy", + "smw-copy-clipboard-title": "Copies content to the clipboard", + "smw-jsonview-expand-title": "Expands the JSON view", + "smw-jsonview-collapse-title": "Collapses the JSON view", + "smw-jsonview-search-label": "Search:", + "smw-redirect-target-unresolvable": "The target is unresolvable on the reason of \"$1\"", + "smw-types-title": "Type: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "Changing the content model of a [https://www.semantic-mediawiki.org/wiki/Help:Schema schema page] is not permitted.", + "smw-schema-namespace-edit-protection": "This page is protected and can only be edited by users with the appropriate smw-schemaedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions permission].", + "smw-schema-namespace-edit-protection-by-import-performer": "This page was imported by a listed [https://www.semantic-mediawiki.org/wiki/Import_performer import performer]. This means that changing the content of this page is restricted to only those listed users.", + "smw-schema-error-title": "Validation {{PLURAL:$1|error|errors}}", + "smw-schema-error-schema": "The validation schema '''$1''' found the following inconsistencies:", + "smw-schema-error-miscellaneous": "Miscellaneous error ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "The JSON validator \"$1\" is not accessible (or installed) and is the reason why the \"$2\" file cannot be examined which prevents the current page from being saved or altered.", + "smw-schema-error-validation-file-inaccessible": "The validation file \"$1\" is inaccessible.", + "smw-schema-error-violation": "[\"$1\", \"$2\"]", + "smw-schema-error-type-missing": "The content is missing a type in order for it to be recognized and usable in the [https://www.semantic-mediawiki.org/wiki/Help:Schema schema namespace].", + "smw-schema-error-type-unknown": "The \"$1\" type is not registered and cannot be used for content in the [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema] namespace.", + "smw-schema-error-json": "JSON error: \"$1\"", + "smw-schema-error-input": "The input validation has found the following issues, they need to be addressed before the content can be saved. The [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling schema help] page may provide some advice on how to remove inconsistencies or resolve issues with the schema input.", + "smw-schema-error-input-schema": "The validation schema '''$1''' found the following inconsistencies and they need to be addressed before the content can be saved. The [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling schema help] page may provide some advice on how to resolve these issues.", + "smw-schema-error-title-prefix": "This schema type requires that the title of the schema starts with a \"$1\" prefix.", + "smw-schema-validation-error": "The \"$1\" type is not registered and cannot be used for content in the [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema] namespace.", + "smw-schema-validation-schema-title": "JSON schema", + "smw-schema-summary-title": "Summary", + "smw-schema-title": "Schema", + "smw-schema-type-help-link": "https://www.semantic-mediawiki.org/wiki/Help:Schema/Type/$1", + "smw-schema-usage": "Usage", + "smw-schema-type": "Schema type", + "smw-schema-type-description": "Type description", + "smw-schema-description": "Schema description", + "smw-schema-description-link-format-schema": "This schema type supports the definition of characteristics for creating context sensitive links in connection with a [[Property:Formatter schema|formatter schema]] assigned property.", + "smw-schema-description-search-form-schema": "This schema type supports the definition of input forms and characteristics for the [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch extended search] profile where it contains instructions on how to generate input fields, define default namespaces, or declare prefix expressions for a search request.", + "smw-schema-description-property-profile-schema": "This schema type supports the definition of a profile to declare characteristics to the assigned property and its annotation values.", + "smw-schema-description-facetedsearch-profile-schema": "This schema type supports the definition of profiles used as part of the [[Special:FacetedSearch|Faceted search]] environment.", + "smw-schema-description-property-group-schema": "This schema type supports the definition of [https://www.semantic-mediawiki.org/wiki/Help:Property_group property groups] to help structure the [https://www.semantic-mediawiki.org/wiki/Help:Special:Browse browsing] interface.", + "smw-schema-description-property-constraint-schema": "This supports the definition of constraint rules for a property instance as well as those values assigned to it.", + "smw-schema-description-class-constraint-schema": "This schema type supports the definition of constraint rules for a class instance (a.k.a. category).", + "smw-schema-tag": "{{PLURAL:$1|Tag|Tags}}", + "smw-property-predefined-constraint-schema": "\"$1\" is a predefined property that defines a constraint schema and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-desc": "\"$1\" is a predefined property that stores a schema description and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-def": "\"$1\" is a predefined property that stores the schema content and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-tag": "\"$1\" is a predefined property provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] to identify a collection of schemata.", + "smw-property-predefined-long-schema-tag": "A label that identifies schemata of similar content or characteristics.", + "smw-property-predefined-schema-type": "\"$1\" is a predefined property that describes a type to distinguish a group of schemata and is provided by [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-schema-type": "Each [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type type] provides its own interpretation of syntax elements and application rules and can be expressed with the help of a [https://www.semantic-mediawiki.org/wiki/Help:Schema#validation validation schema].", + "smw-ask-title-keyword-type": "Keyword search", + "smw-ask-message-keyword-type": "This search matches the $1 condition.", + "smw-remote-source-unavailable": "Unable to connect to the remote \"$1\" target.", + "smw-remote-source-disabled": "The '''$1''' source has disabled the remote request support!", + "smw-remote-source-unmatched-id": "The '''$1''' source does not match a version of Semantic MediaWiki that can support a remote request.", + "smw-remote-request-note": "The result is fetched from the '''$1''' remote source and it is likely for generated content to contain information that is not available from within the current wiki.", + "smw-remote-request-note-cached": "The result is '''cached''' from the '''$1''' remote source and it is likely for generated content to contain information that is not available from within the current wiki.", + "smw-parameter-missing": "Parameter \"$1\" is missing.", + "smw-property-tab-usage": "Usage", + "smw-property-tab-profile-schema": "Profile schema", + "smw-property-tab-redirects": "Synonyms", + "smw-property-tab-subproperties": "Subproperties", + "smw-property-tab-errors": "Improper assignments", + "smw-property-tab-constraint-schema": "Constraint schema", + "smw-property-tab-constraint-schema-title": "Compiled constraint schema", + "smw-property-tab-specification": "... more", + "smw-concept-tab-list": "List", + "smw-concept-tab-errors": "Errors", + "smw-ask-tab-result": "Result", + "smw-ask-tab-extra": "Extra", + "smw-ask-tab-debug": "Debug", + "smw-ask-tab-code": "Code", + "smw-helplink-concepts": "https://www.semantic-mediawiki.org/wiki/Help:Concepts", + "smw-install-incomplete-tasks-title": "Incomplete administration tasks", + "smw-install-incomplete-intro": "There are $2 incomplete or [[Special:PendingTaskList|pending]] {{PLURAL:$2|task|tasks}} to finish {{PLURAL:$1|installation|upgrading}} of [https://www.semantic-mediawiki.org Semantic MediaWiki]. An administrator or user with sufficient rights can complete {{PLURAL:$2|it|these}}. This should be done before adding new data to avoid inconsistencies.", + "smw-install-incomplete-intro-note": "This message will disappear after all relevant tasks have been resolved.", + "smw-pendingtasks-intro-empty": "No tasks have been classified as pending, incomplete, or outstanding in connection with Semantic MediaWiki.", + "smw-pendingtasks-intro": "This page provides information about tasks that have been classified as pending, incomplete, or outstanding in connection with Semantic MediaWiki.", + "smw-pendingtasks-setup-no-tasks-intro": "The installation (or upgrade) has been completed, currently there are no pending or outstanding tasks.", + "smw-pendingtasks-tab-setup": "Setup", + "smw-updateentitycollation-incomplete": "The [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] setting was recently altered and requires that the [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php] script is executed so that entities are updated and contain the correct sort field value.", + "smw-updateentitycountmap-incomplete": "The smw_countmap field was added in a recent release and requires that the [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php] script is executed so that functions can access the content of this field.", + "smw-populatehashfield-incomplete": "The smw_hash field population was skipped during the setup. The [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] script must be executed.", + "smw-install-incomplete-populate-hash-field": "The smw_hash field population was skipped during the setup. The [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] script must be executed.", + "smw-install-incomplete-elasticstore-indexrebuild": "The ElasticStore has been selected as [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore default store], yet the extension was unable to find any record that the [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] script was executed, please run the script as instructed.", + "smw-elastic-rebuildelasticindex-run-incomplete": "The ElasticStore has been selected as [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore default store], yet the extension was unable to find any record that the [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] script was executed, please run the script as instructed.", + "smw-pendingtasks-setup-intro": "The {{PLURAL:$1|installation|upgrade}} of Semantic MediaWiki has classified the following tasks as [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade incomplete] and an administrator (or user with sufficient rights) is expected to resolve those tasks before users continue to create or alter content.", + "smw-pendingtasks-setup-tasks": "Tasks", + "smw-helplink": "https://www.semantic-mediawiki.org/wiki/Help:$1", + "smw-filter-count": "Filter count", + "smw-es-replication-check": "Replication check (Elasticsearch)", + "smw-es-replication-error": "Elasticsearch replication issue", + "smw-es-replication-file-ingest-error": "File ingest issue", + "smw-es-replication-maintenance-mode": "Elasticsearch maintenance", + "smw-es-replication-error-missing-id": "The replication monitoring has found that article \"$1\" (ID: $2) is missing from the Elasticsearch backend.", + "smw-es-replication-error-divergent-date": "The replication monitoring has found that for the \"$1\" article (ID: $2) the modification date shows a discrepancy.", + "smw-es-replication-error-divergent-date-short": "The following date information were used for comparison:", + "smw-es-replication-error-divergent-date-detail": "Referenced modification date:\n* Elasticsearch: $1\n* Database: $2", + "smw-es-replication-error-divergent-revision": "The replication monitoring has found that for the \"$1\" article (ID: $2) the associated revision shows a discrepancy.", + "smw-es-replication-error-divergent-revision-short": "The following associated revision data were used for comparison:", + "smw-es-replication-error-divergent-revision-detail": "Referenced associated revision:\n* Elasticsearch: $1\n* Database: $2", + "smw-es-replication-error-maintenance-mode": "The Elasticsearch replication is currently restricted because it operates in a [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode maintenance mode], changes to entities and pages are not immediately visible and query results may contain outdated information.", + "smw-es-replication-error-no-connection": "The replication monitoring is unable to perform any checks since it cannot establish a connection to the Elasticsearch cluster.", + "smw-es-replication-error-bad-request-exception": "The Elasticsearch connection handler has thrown a bad request exception (\"400 conflict http error\") indicating a continuing issue during replication and search requests.", + "smw-es-replication-error-other-exception": "The Elasticsearch connection handler has thrown an exception: \"$1\".", + "smw-es-replication-error-suggestions": "It is suggested to edit or purge the page to remove the discrepancy. If the issue remains then check the Elasticsearch cluster itself (allocator, exceptions, disk space etc.).", + "smw-es-replication-error-suggestions-maintenance-mode": "It is suggested to contact the wiki administrator to check whether an [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild index rebuild] is currently in progress or the refresh_interval hasn't been set to the expected default value.", + "smw-es-replication-error-suggestions-no-connection": "It is suggested to contact the wiki administrator and report the \"no connection\" issue.", + "smw-es-replication-error-suggestions-exception": "Please check the logs for information about the status of Elasticsearch, their indices, and possible misconfiguration issues.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "The replication monitoring has found that \"$1\" is missing a [[Property:File attachment|File attachment]] annotation indicating that the file ingest processor hasn't started or isn't finished.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "Please ensure that the [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion file ingest] job is scheduled and executed before the annotation and file index is made available.", + "smw-report": "Report", + "smw-legend": "Legend", + "smw-datavalue-constraint-schema-category-invalid-type": "The annotated \"$1\" schema is invalid for a category, it requires a \"$2\" type.", + "smw-datavalue-constraint-schema-property-invalid-type": "The annotated \"$1\" schema is invalid for a property, it requires a \"$2\" type.", + "smw-entity-examiner-check": "Running {{PLURAL:$1|an examiner|examiners}} in the background", + "smw-entity-examiner-indicator": "Entity issue panel", + "smw-entity-examiner-deferred-check-awaiting-response": "The \"$1\" examiner is currently awaiting a response from the backend.", + "smw-entity-examiner-deferred-elastic-replication": "Elastic", + "smw-entity-examiner-deferred-constraint-error": "Constraint", + "smw-entity-examiner-associated-revision-mismatch": "Revision", + "smw-entity-examiner-deferred-fake": "Fake", + "smw-entity-examiner-indicator-suggestions": "As part of the entity examination, the following {{PLURAL:$1|issue was|issues were}} found and it is suggested to carefully review {{PLURAL:$1|the issue|them}} and take appropriate {{PLURAL:$1|action|actions}}.", + "smw-indicator-constraint-violation": "{{PLURAL:$1|Constraint|Constraints}}", + "smw-indicator-revision-mismatch": "Revision", + "smw-indicator-revision-mismatch-error": "The [https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner associated revision] check found a mismatch between the revision referenced in MediaWiki and the one being associated in Semantic MediaWiki for this entity.", + "smw-indicator-revision-mismatch-comment": "A mismatch normally indicates that some process interrupted the storage operation in Semantic MediaWiki. It is recommended to review the server logs and look for exceptions or other failures.", + "smw-facetedsearch-intro-text": "The [https://www.semantic-mediawiki.org/wiki/Faceted_search Faceted Search] of Semantic MediaWiki provides users with a simple interface to quickly narrow down query results from a condition with the help of faceted views created from dependent properties and categories.", + "smw-facetedsearch-intro-tips": "* Use category:?, property:?, or concept:? to find available categories, properties, or concepts to build a condition set\n* Use the #ask syntax to describe a condition (e.g. [[Category:Foo]])\n* Use \"OR\", \"AND\", or other query expressions to create complex conditions\n* Expressions like in: or phrase: can be used for full-text matches or unstructured searches, if the selected [https://www.semantic-mediawiki.org/wiki/Query_engine query engine] supports those expressions", + "smw-facetedsearch-profile-label-default": "Default profile", + "smw-facetedsearch-intro-tab-explore": "Explore", + "smw-facetedsearch-intro-tab-search": "Search", + "smw-facetedsearch-explore-intro": "Select a collection and start browsing.", + "smw-facetedsearch-profile-options": "Profile options", + "smw-facetedsearch-size-options": "Paging options", + "smw-facetedsearch-order-options": "Order options", + "smw-facetedsearch-format-options": "Display options", + "smw-facetedsearch-format-table": "Table", + "smw-facetedsearch-input-filter-placeholder": "Filter...", + "smw-facetedsearch-no-filters": "No filters.", + "smw-facetedsearch-no-filter-range": "No filter range.", + "smw-facetedsearch-no-output": "For the selected \"$1\" format, no output was available.", + "smw-facetedsearch-clear-filters": "Clear {{PLURAL:$1|filter|filters}}", + "smw-specials-facetedsearch-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Special:FacetedSearch", + "smw-search-placeholder": "Search...", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "Showing below up to {{PLURAL:$1|1 result|$1 results}} starting with #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/eo.json b/mediawiki/extensions/SemanticMediaWiki/i18n/eo.json new file mode 100644 index 0000000..9c51f6e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/eo.json @@ -0,0 +1,183 @@ +{ + "@metadata": { + "authors": [ + "Fitoschido", + "Lucas", + "Michawiki", + "Mirin", + "Nemo bis", + "Psychoslave", + "Robin van der Vliet", + "Surfo", + "Yekrats" + ] + }, + "smw-error": "Eraro", + "smw-upgrade-progress": "Progreso", + "smw-upgrade-error-title": "Eraro (Semantika MediaVikio)", + "smw_viewasrdf": "RDF-fonto", + "smw_finallistconjunct": ", kaj", + "smw-factbox-head": "… pli pri „$1”", + "smw-factbox-facts": "Faktoj", + "smw-factbox-attachments-is-local": "Ĉu estas loka", + "smw-factbox-facts-derived": "Derivitaj faktoj", + "smw_isspecprop": "Ĉi tiu atributo estas speciala atributo en ĉi tiu vikio.", + "smw_concept_description": "Priskribo de koncepto \"$1\"", + "smw_no_concept_namespace": "Konceptoj povas nur esti difinita en paĝoj en la nomspaco Concept:.", + "smw_baduri": "Bedaŭrinde, URI-oj de la kamparo \"$1\" ne estas permesita.", + "smw_printername_csv": "CSV-elporto", + "smw_printername_dsv": "DSV-elporto", + "smw_printername_json": "JSON-elporto", + "smw_printername_list": "Listo", + "smw_printername_plainlist": "Simpla listo", + "smw_printername_table": "Tabelo", + "smw_printername_broadtable": "Larĝa tabelo", + "smw_printername_template": "Ŝablono", + "smw_printername_templatefile": "Ŝablona dosiero", + "smw_printername_rdf": "RDF-elporto", + "smw_printername_category": "Kategorio", + "validator-type-class-SMWParamSource": "teksto", + "smw-paramdesc-jsonsyntax": "Uzota JSON-sintakso", + "smw-paramdesc-feedtype": "Speco de abonfluo", + "smw_iq_disabled": "Bedaŭrinde, semantikaj informmendoj estis malebligitaj por ĉi tiu vikio.", + "smw_iq_moreresults": "… pluaj rezultoj", + "smw_parseerror": "La donata valoro ne estas komprenita.", + "smw_notitle": "\"$1\" ne eblas esti uzata kiel paĝnomo en ĉi tiu vikio.", + "smw_manytypes": "Pli ol unu tipo estas difinita por atributo.", + "smw_emptystring": "Malplenaj ĉenoj ne estas akceptitaj.", + "smw_notinenum": "\"$1\" ne estas en la listo ($2) de [[Property:Allows value|eblaj valoroj]] por la atributo \"$3\".", + "smw_noboolean": "\"$1\" ne estas agnoskita kiel Bulea (vera/falsa) valoro.", + "smw_true_words": "vera,v,jes,j", + "smw_false_words": "falsa,f,ne,n", + "smw_nofloat": "\"$1\" ne estas nombro.", + "smw_nodatetime": "La dato \"$1\" ne estis komprenita.", + "smw_toomanyclosing": "Verŝajne estas tro da okazoj de \"$1\" en la mendo.", + "smw_misplacedsymbol": "La signo \"$1\" estis uzita en loko kie ĝi ne estas utila.", + "smw_emptysubquery": "Iu submendo havas neniun validan kondiĉon.", + "smw_propvalueproblem": "La valoro de atributo \"$1\" ne estas komprenita.", + "smw_type_header": "Atributoj de tipo \"$1\"", + "smw_typearticlecount": "Montrante $1 {{PLURAL:$1|atributon|atributojn}} uzante ĉi tiun tipon.", + "smw_attribute_header": "Paĝoj uzante la econ \"$1\"", + "smw_attributearticlecount": "Jen $1 {{PLURAL:$1|paĝo havanta|paĝoj havantaj}} ĉi tiun atributon.", + "smw-propertylist-subproperty-header": "Sub-ecoj", + "smw-propertylist-redirect-header": "Sinonimoj", + "exportrdf": "Elporti paĝojn al RDF", + "smw_exportrdf_submit": "Elporti", + "properties": "Atributoj", + "smw-categories": "Kategorioj", + "smw_properties_docu": "La jenaj atributoj estas uzataj en la vikio.", + "smw_property_template": "$1 de datumtipo $2 ($3 {{PLURAL:$3|apero|aperoj}})", + "smw-special-property-searchform-options": "Opcioj", + "smw-special-wantedproperties-filter-label": "Filtrilo:", + "smw-special-wantedproperties-filter-none": "Nenio", + "smw-special-wantedproperties-filter-unapproved": "Neaprobita", + "concepts": "Konceptoj", + "smw-special-concept-header": "Listo de konceptoj", + "unusedproperties": "Neuzitaj atributoj", + "smw-unusedproperty-template": "$1 de datumtipo $2", + "wantedproperties": "Volitaj atributoj", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|uzo|uzoj}})", + "smw_purge": "Refreŝigi", + "types": "Datumtipoj", + "smw_types_docu": "Jen listo de ĉiuj datentipoj kiu povas esti asignitaj al atributoj.\nĈiu datentipo havas paĝon kie plua informo povas esti aldonita.", + "smw-statistics": "Semantika statistiko", + "smw-statistics-entities-total": "Entoj (totalo)", + "ask": "Semantika serĉo", + "smw_ask_sortby": "Ordigi laŭ kolumnoj (nedevige)", + "smw_ask_ascorder": "Kreskante", + "smw_ask_descorder": "Malkreskante", + "smw-ask-order-rand": "Hazarde", + "smw_ask_submit": "Trovi rezultojn", + "smw_ask_editquery": "Redakti serĉomendon", + "smw_add_sortcondition": "[Aldoni ordigan kondiĉon]", + "smw_ask_hidequery": "Kaŝi serĉmendon", + "smw_ask_help": "Helpo pri serĉomendoj", + "smw_ask_queryhead": "Serĉomendo", + "smw_ask_format_as": "Formati kiel:", + "smw_ask_defaultformat": "defaŭlta", + "smw_ask_otheroptions": "Aliaj opcioj", + "smw_ask_show_embed": "Montri enkorpigitan kodon", + "smw_ask_hide_embed": "Kaŝi enkorpigitan kodon", + "smw-ask-delete": "[Forigi]", + "smw-ask-sorting": "Ordigado", + "smw-ask-options": "Opcioj", + "smw-ask-options-sort": "Opcioj pri ordigado", + "smw-ask-format-options": "Aranĝo kaj opcioj", + "smw-ask-parameters": "Parametroj", + "smw-ask-search": "Serĉi", + "smw-ask-debug": "Sencimigi", + "smw-ask-result": "Rezulto", + "smw-ask-format": "Aranĝo", + "smw-ask-input-assistance": "Helpo pri enigado", + "smw-ask-extra-query-log": "Protokolo de informpetoj", + "smw-ask-extra-other": "Alia", + "searchbyproperty": "Serĉi laŭ atributo", + "smw_sbv_property": "Atributo:", + "smw_sbv_value": "Valoro:", + "smw_sbv_submit": "Trovi rezultojn", + "browse": "Foliumi vikion", + "smw_browselink": "Trovidi atributojn", + "smw_browse_article": "Enigi la nomon de la paĝo por komenci retumadon.", + "smw_browse_go": "Ek", + "smw_browse_show_incoming": "malkaŝi atributojn kiu enligiĝas ĉi tien", + "smw_browse_hide_incoming": "kaŝi atributojn kiu enligiĝas ĉi tien", + "smw_browse_no_outgoing": "Ĉi tiu paĝo havas neniujn atributojn.", + "smw_browse_no_incoming": "Neniuj atributojn ligas al ĉi tiun paĝon.", + "smw-browse-show-group": "Montri grupojn", + "smw-browse-hide-group": "Kaŝi grupojn", + "smw_inverse_label_default": "$1 el", + "smw_inverse_label_property": "Inversa atributa etikedo", + "pageproperty": "Serĉo de paĝaj atributoj", + "smw_pp_from": "De paĝo", + "smw_pp_type": "Atributo", + "smw_pp_submit": "Trovi rezultojn", + "smw_result_prev": "Antaŭe", + "smw_result_next": "Sekva", + "smw_result_results": "Rezultoj", + "smw_result_noresults": "Bedaŭrinde, neniuj rezultoj", + "smwadmin": "Administradaj funkcioj por Semantic MediaWiki", + "smw-admin-statistics-job-title": "Statistiko pri taskoj", + "smw-admin-statistics-semanticdata-overview": "Superrigardo", + "smw_smwadmin_return": "Reiri al $1", + "smw-admin-db": "Datenbaza instalado kaj promociado", + "smw-admin-announce": "Anonci vian vikion", + "smw_smwadmin_datarefreshstop": "Halti ĉi tiun ĝisdatigon", + "smw_smwadmin_datarefreshstopconfirm": "Jes, {{GENDER:$1|mi certas}}.", + "smw-admin-support": "Teni subtenon", + "smw-admin-bugsreport": "Cimoj povas esti raportitaj al GitHub.", + "smw-admin-statistics": "Statistiko", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-mappings-summary": "Resumo", + "smw-admin-supplementary-elastic-nodes-title": "Nodoj", + "smw-admin-supplementary-elastic-indices-title": "Indicoj", + "smw-admin-supplementary-elastic-statistics-title": "Statistiko", + "smw-admin-supplementary-elastic-replication-files": "Dosieroj", + "smw-admin-supplementary-elastic-replication-pages": "Paĝoj", + "smw-admin-supplementary-elastic-endpoints": "Finpunktoj", + "smw-property-label-similarity-threshold": "Sojlo:", + "smw_adminlinks_datastructure": "Datumstrukturo", + "smw-property-indicator-type-info": "{{PLURAL:$1|Uzanto|Sistemo}}", + "smw-createproperty-isproperty": "Ĉi tiu estas atributo de speco $1.", + "smw-createproperty-allowedvals": "La {{PLURAL:$1|permesita valoro por ĉi tiu atributo|permesitaj valoroj por ĉi tiuj atributoj}} estas:", + "prefs-general-options": "Ĝeneralaj opcioj", + "prefs-ask-options": "Opcioj pri semantika serĉado", + "smw-ui-tooltip-title-property": "Eco", + "smw-ui-tooltip-title-info": "Informo", + "smw-ui-tooltip-title-warning": "Averto", + "smw-ui-tooltip-title-error": "Eraro", + "smw-ui-tooltip-title-parameter": "Parametro", + "smw-ui-tooltip-title-event": "Evento", + "smw-ui-tooltip-title-note": "Noto", + "smw-ui-tooltip-title-legend": "Klarigo", + "smw-ui-tooltip-title-reference": "Referenco", + "smw_unknowntype": "Nesubtenita datumtipo \"$1\" difinita por atributo.", + "smw_concept_header": "Paĝoj de koncepto \"$1\"", + "group-smwcurator": "Kuratoroj (Semantika MediaVikio)", + "smw-livepreview-loading": "Ŝarĝante...", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|sekundo|sekundoj}}", + "smw-property-predefined-pvuc": "\"$1\" estas predifinita eco, provizita de [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantika Mediavikio] por restrikti valorajn atribuojn por ke ĉiu ekzemplero estas unika (aŭ maksimume ekzemplerigita unufoje).", + "smw-datavalue-parse-error": "La donita valoro \"$1\" ne estis komprenita.", + "smw-format-datatable-next": "Sekva", + "smw-listingcontinuesabbrev": "daŭrigo", + "smw-showingresults": "Montras {{PLURAL:$1|'''1''' trovitan|'''$1''' trovitajn}} ekde la #'''$2'''-a." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/es-formal.json b/mediawiki/extensions/SemanticMediaWiki/i18n/es-formal.json new file mode 100644 index 0000000..23ad666 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/es-formal.json @@ -0,0 +1,61 @@ +{ + "@metadata": { + "authors": [ + "Ciencia Al Poder", + "Fitoschido", + "Ivanhercaz" + ] + }, + "smw-desc": "Hacemos que tu wiki sea más accesible para las máquinas ''y'' las personas ([https://www.semantic-mediawiki.org/wiki/Help:User_manual documentación en línea]).", + "smw-semantics-not-enabled": "No se habilitó el funcionamiento de Semantic MediaWiki para esta wiki.", + "smw_viewasrdf": "Feed RDF", + "smw_finallistconjunct": "y", + "smw-factbox-head": "… más sobre «$1»", + "smw-factbox-facts": "Datos", + "smw-factbox-facts-help": "Mostrar declaraciones y datos que han sido creados por un usuario", + "smw-factbox-facts-derived": "Datos derivados", + "smw-factbox-facts-derived-help": "Mostrar datos que han sido derivados a partir de reglas o con la ayuda de otras técnicas de razonamiento", + "smw_isspecprop": "Esta propiedad es una propiedad especial en esta wiki.", + "smw-concept-cache-header": "Uso de la antememoria", + "smw-concept-cache-count": "La [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count antememoria de conceptos] contiene {{PLURAL:$1|'''una''' entidad|'''$1''' entidades}} ($2).", + "smw-concept-no-cache": "No hay antememoria disponible.", + "smw_concept_description": "Descripción del concepto «$1»", + "smw_no_concept_namespace": "Los conceptos solo pueden definirse en páginas del espacio de nombres Concepto:", + "smw_multiple_concepts": "Cada página de concepto solamente puede tener una definición de concepto.", + "smw_concept_cache_miss": "No se puede utilizar el concepto «$1» en este momento, ya que la configuración de la wiki exige que se compute sin conexión.\nSi el problema persiste después de que pase un tiempo, solicita al administrador del sitio que el concepto esté disponible.", + "smw_noinvannot": "Los valores no pueden asignarse a propiedades invertidas.", + "version-semantic": "Extensiones semánticas", + "smw_baduri": "No están permitidas las URIs con la forma «$1».", + "smw_printername_count": "Contar resultados", + "smw_printername_csv": "Exportar CSV", + "smw_printername_dsv": "Exportar DSV", + "smw_printername_debug": "Consulta de depuración (para expertos)", + "smw_printername_embedded": "Incrustar el contenido de la página", + "smw_printername_json": "Exportar JSON", + "smw_printername_list": "Lista", + "smw_printername_ol": "Enumeración", + "smw_printername_ul": "Lista viñetada", + "smw_printername_table": "Tabla", + "smw_printername_broadtable": "Tabla ancha", + "smw_printername_template": "Plantilla", + "smw_printername_rdf": "Exportar RDF", + "smw_printername_category": "Categoría", + "validator-type-class-SMWParamSource": "texto", + "smw-paramdesc-limit": "La cantidad máxima de resultados a devolver", + "smw-paramdesc-offset": "La compensación del primer resultado", + "smw-paramdesc-headers": "Muestra los nombres de los encabezados/propiedades", + "smw-paramdesc-mainlabel": "La etiqueta a asignar al nombre de la página principal", + "smw-paramdesc-link": "Muestra los valores como enlaces", + "smw-paramdesc-intro": "Si lo hubiese, el texto a mostrar antes de los resultados de la consulta", + "smw-paramdesc-outro": "Si lo hubiese, el texto a mostrar después de los resultados de la consulta", + "smw-paramdesc-default": "El texto a mostrar si la consulta no tiene resultados", + "smw-paramdesc-sep": "El separador para los valores", + "smw-paramdesc-showsep": "Mostrar el separador al comienzo del archivo CSV (\"sep=\")", + "smw-paramdesc-distribution": "En vez de mostrar sus valores, contar y mostrar sus ocurrencias.", + "smw-paramdesc-distributionsort": "Ordenar la distribución de valores por número de ocurrencias.", + "smw-paramdesc-distributionlimit": "Limitar la distribución de valores solo al conteo de algunos valores.", + "smw-paramdesc-aggregation": "Especifica con que debería relacionarse el conjunto", + "smw-paramdesc-template": "El nombre de una plantilla con la que mostrar el listado", + "smw-paramdesc-columns": "El número de columnas en las que mostrar los resultados (por defecto es $1)", + "smw-paramdesc-userparam": "Si se utiliza una plantilla, es un valor pasado en cada llamada de plantilla" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/es.json b/mediawiki/extensions/SemanticMediaWiki/i18n/es.json new file mode 100644 index 0000000..d9a58e0 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/es.json @@ -0,0 +1,890 @@ +{ + "@metadata": { + "authors": [ + "AVIADOR71", + "AlvaroMolina", + "Amaia", + "Amitie 10g", + "Antur", + "ArenaL5", + "Armando-Martin", + "BaRaN6161 TURK", + "Bfvale", + "Bola", + "Caleidoscopic", + "Carlosmg.dg", + "Carmen Jorge García-Reyes", + "Cethos", + "Ciencia Al Poder", + "Codename Noreste", + "Crazymadlover", + "DDPAT", + "DannyS712", + "Dgstranz", + "Dvdgmz", + "Felipe95a", + "Fitoschido", + "Harvest", + "Hasley", + "Ice bulldog", + "Ihojose", + "Imre", + "Indiralena", + "Ivanhercaz", + "JDíaz32", + "Jack30", + "Jakeukalane", + "Javier Calzada Prado", + "Javiersanp", + "Jelou", + "Joanmp17", + "Johny Weissmuller Jr", + "Josecurioso", + "Julián L", + "KATRINE1992", + "Lemondoge", + "Locos epraix", + "Luzcaru", + "Macofe", + "MarcoAurelio", + "MartaEgea", + "MaxSem", + "McDutchie", + "Nemo bis", + "No se", + "Ohlila", + "Peter Bowman", + "RicardoSGZ", + "Ryo567", + "Sanbec", + "Sophivorus", + "Spacebirdy", + "Tifinaghes", + "Translationista", + "Wifidel", + "Yllelder", + "Zarisi", + "아라" + ] + }, + "smw-desc": "Hace tu wiki más accesible para las máquinas y las personas ([https://www.semantic-mediawiki.org/wiki/Help:User_manual documentación en línea])", + "smw-error": "Error", + "smw-upgrade-progress": "Progreso", + "smw-upgrade-error-title": "Error • Semantic MediaWiki", + "smw-upgrade-error-why-title": "¿Por qué veo esta página?", + "smw-upgrade-error-how-title": "¿Cómo corrijo este error?", + "smw-extensionload-error-why-title": "¿Por qué veo esta página?", + "smw-extensionload-error-how-title": "¿Cómo corrijo este error?", + "smw-upgrade-maintenance-title": "Mantenimiento • Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "¿Por qué veo esta página?", + "smw-semantics-not-enabled": "No se ha habilitado la funcionalidad de Semantic MediaWiki para esta wiki.", + "smw_viewasrdf": "Feed RDF", + "smw_finallistconjunct": "y", + "smw-factbox-head": "… más sobre «$1»", + "smw-factbox-facts": "Datos", + "smw-factbox-facts-help": "Mostrar declaraciones y hechos que han sido creados por un usuario", + "smw-factbox-attachments": "Adjuntos", + "smw-factbox-attachments-value-unknown": "N/D", + "smw-factbox-attachments-is-local": "Es local", + "smw-factbox-facts-derived": "Datos derivados", + "smw-factbox-facts-derived-help": "Mostrar datos que han sido derivados de reglas o con la ayuda de otras técnicas de razonamiento", + "smw_isspecprop": "Esta propiedad es una propiedad especial en esta wiki.", + "smw-concept-cache-header": "Uso de antememoria", + "smw-concept-cache-count": "La [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count antememoria de conceptos] contiene {{PLURAL:$1|'''una''' entidad|'''$1''' entidades}} ($2).", + "smw-concept-no-cache": "No hay antememoria disponible.", + "smw_concept_description": "Descripción del concepto «$1»", + "smw_no_concept_namespace": "Los conceptos solo pueden definirse en páginas del espacio de nombres Concepto:.", + "smw_multiple_concepts": "Cada página de concepto solamente puede tener una definición de concepto.", + "smw_concept_cache_miss": "El concepto «$1» no puede ser utilizado en este momento, ya que la configuración de la wiki exige que sea computado sin conexión.\nSi el problema persiste después de pasado algún tiempo, solicita al administrador de tu sitio que haga que este concepto esté disponible.", + "smw_noinvannot": "Los valores no pueden asignarse a propiedades inversas.", + "version-semantic": "Extensiones semánticas", + "smw_baduri": "Las URIs con la forma «$1» no están permitidas.", + "smw_printername_count": "Contar resultados", + "smw_printername_csv": "Exportar a CSV", + "smw_printername_dsv": "Exportar a DSV", + "smw_printername_debug": "Depurar consulta (para expertos)", + "smw_printername_embedded": "Incrustar el contenido de la página", + "smw_printername_json": "Exportar a JSON", + "smw_printername_list": "Lista", + "smw_printername_plainlist": "Lista plana", + "smw_printername_ol": "Lista numerada", + "smw_printername_ul": "Lista viñetada", + "smw_printername_table": "Tabla", + "smw_printername_broadtable": "Tabla ancha", + "smw_printername_template": "Plantilla", + "smw_printername_templatefile": "Archivo de plantilla", + "smw_printername_rdf": "Exportar a RDF", + "smw_printername_category": "Categoría", + "validator-type-class-SMWParamSource": "texto", + "smw-paramdesc-limit": "La cantidad máxima de resultados a devolver", + "smw-paramdesc-offset": "El desplazamiento del primer resultado", + "smw-paramdesc-headers": "Muestra los nombres de encabezados/propiedades", + "smw-paramdesc-mainlabel": "La etiqueta a asignar al nombre de la página principal", + "smw-paramdesc-link": "Muestra los valores como enlaces", + "smw-paramdesc-intro": "Si lo hubiese, sería el texto que se muestra antes de los resultados de la consulta", + "smw-paramdesc-outro": "Si lo hubiese, sería el texto que se muestra después de los resultados de la consulta", + "smw-paramdesc-default": "El texto que mostrar si no hay resultados de consulta", + "smw-paramdesc-sep": "El separador entre resultados", + "smw-paramdesc-propsep": "El separator entre las propiedades de una entrada de resultado", + "smw-paramdesc-valuesep": "El separator entre los valores para una propiedad de un resultado", + "smw-paramdesc-showsep": "Muestra el separador al comienzo del archivo CSV («sep=»)", + "smw-paramdesc-distribution": "Cuenta sus ocurrencias y las muestra, en lugar de mostrar todos los valores.", + "smw-paramdesc-distributionsort": "Ordena la distribución de valores por número de ocurrencias.", + "smw-paramdesc-distributionlimit": "Limita la distribución de valores solamente al recuento de algunos de valores.", + "smw-paramdesc-aggregation": "Especifica con qué debe relacionarse el conjunto", + "smw-paramdesc-template": "El nombre de la plantilla con la que se mostrará el listado", + "smw-paramdesc-columns": "El número de columnas en las que se muestran los resultados", + "smw-paramdesc-userparam": "Si se utiliza una plantilla, es un valor pasado en cada llamada de la plantilla", + "smw-paramdesc-class": "Una clase adicional de CSS a establecer para la lista", + "smw-paramdesc-introtemplate": "Si hay alguna plantilla, es el nombre de la plantilla a mostrar antes de los resultados de la consulta", + "smw-paramdesc-outrotemplate": "Si hay alguna plantilla, es el nombre de una plantilla a mostrar después de los resultados de la consulta", + "smw-paramdesc-embedformat": "La etiqueta HTML utilizada para definir títulos", + "smw-paramdesc-embedonly": "No mostrar ningún título", + "smw-paramdesc-table-class": "Una clase CSS adicional a establecer para la tabla", + "smw-paramdesc-table-transpose": "Mostrar los encabezados de tabla verticalmente y los resultados horizontalmente", + "smw-paramdesc-prefix": "Controlar la visualización del espacio de nombres en las impresiones", + "smw-paramdesc-rdfsyntax": "La sintaxis de RDF a usar", + "smw-paramdesc-csv-sep": "Especifica un separador de columnas", + "smw-paramdesc-csv-valuesep": "Especifica un separador de valores", + "smw-paramdesc-csv-merge": "Fusionar filas y valores de columnas con el mismo identificador de sujeto (aka primera columna)", + "smw-paramdesc-csv-bom": "Añadir un BOM (carácter para indicar la orientación «endian») en la parte superior del archivo de salida", + "smw-paramdesc-dsv-separator": "El separador a usar", + "smw-paramdesc-dsv-filename": "El nombre para el archivo DSV", + "smw-paramdesc-filename": "Nombre del archivo de salida", + "smw-smwdoc-description": "Muestra una tabla de todos los parámetros que se pueden usar para un formato de resultados especificado junto a los valores por defecto y las descripciones.", + "smw-smwdoc-default-no-parameter-list": "Este formato de resultado no brinda parámetros específicos de formato.", + "smw-smwdoc-par-format": "El formato de resultados en el que mostrar la documentación de un parámetro.", + "smw-smwdoc-par-parameters": "Los parámetros que mostrar. \"specific\" para los añadidos por el formato, \"base\" para los disponibles en todos los formatos, y \"all\" para ambos.", + "smw-paramdesc-sort": "Propiedad a partir de la que ordenar la petición", + "smw-paramdesc-order": "Orden de ordenación de la consulta", + "smw-paramdesc-searchlabel": "Texto para continuar la búsqueda", + "smw-paramdesc-named_args": "Nombre los argumentos que se pasan a la plantilla", + "smw-paramdesc-template-arguments": "Establece cómo se pasan los argumentos con nombre a la plantilla", + "smw-paramdesc-import-annotation": "Los datos anotados adicionales se deben copiar durante el análisis de un tema", + "smw-paramdesc-export": "Opción de exportación", + "smw-paramdesc-prettyprint": "Una salida con formato agradable que muestra sangrías y saltos de línea adicionales", + "smw-paramdesc-json-unescape": "La salida contendrá barras sin secuencias de escape y caracteres Unicode de varios bytes", + "smw-paramdesc-json-type": "Tipo de serialización", + "smw-paramdesc-source": "Fuente de consulta alternativa", + "smw-paramdesc-jsonsyntax": "Sintaxis JSON que utilizar", + "smw-printername-feed": "Suministro RSS o Atom", + "smw-paramdesc-feedtype": "Tipo de fuente de noticias", + "smw-paramdesc-feedtitle": "El texto que se empleará como título del suministro", + "smw-paramdesc-feeddescription": "El texto que se utilizará como descripción del suministro", + "smw-paramdesc-feedpagecontent": "Contenido de página que se mostrará con el suministro", + "smw-label-feed-description": "Fuente de noticias $1 $2", + "smw-paramdesc-mimetype": "El tipo de medio (MIME) del archivo de salida", + "smw_iq_disabled": "Se han desactivado las consultas semánticas en esta wiki.", + "smw_iq_moreresults": "... más resultados", + "smw_parseerror": "No se comprendió el valor provisto.", + "smw_decseparator": ",", + "smw_kiloseparator": " ", + "smw_notitle": "\"$1\" no puede usarse como un nombre de página en esta wiki.", + "smw_noproperty": "\"$1\" no puede usarse como un nombre de propiedad en esta wiki.", + "smw_wrong_namespace": "Aquí se permiten solo las páginas en el espacio de nombres \"$1\".", + "smw_manytypes": "Más de un tipo definido para la propiedad.", + "smw_emptystring": "No se aceptan cadenas vacías.", + "smw_notinenum": "«$1» no se encuentra en la lista ($2) de [[Property:Allows value|valores permitidos]] de la propiedad «$3».", + "smw-datavalue-constraint-error-allows-value-range": "\"$1\" no está dentro del rango de \"$2\" especificado por la restricción [[Property:Allows value|permite el valor]] para la propiedad \"$3\".", + "smw-constraint-error-suggestions": "Por favor, compruebas las violaciones y propiedades junto con sus valores anotados para asegurar que se cumplen todos los requisitos de la restricción.", + "smw_noboolean": "\"$1\" no es reconocido como un valor booleano (verdadero/falso).", + "smw_true_words": "verdadero,t,si,s,true", + "smw_false_words": "falso,f,no,n,false", + "smw_nofloat": "«$1» no es un número.", + "smw_infinite": "No se admiten números del tamaño de «$1».", + "smw_unitnotallowed": "\"$1\" no está declarada como una unidad de medida válida para esta propiedad.", + "smw_nounitsdeclared": "No hay unidades de medida declaradas para esta propiedad.", + "smw_novalues": "No se han especificado valores.", + "smw_nodatetime": "La fecha «$1» no ha sido comprendida.", + "smw_toomanyclosing": "Parece haber demasiadas coincidencias de \"$1\" en la consulta.", + "smw_noclosingbrackets": "Algún uso de \"[[\" en tu consulta no se cerró con los correspondientes \"]]\".", + "smw_misplacedsymbol": "El símbolo \"$1\" se ha usado en un lugar donde no es de utilidad.", + "smw_unexpectedpart": "La parte \"$1\" de la consulta no fue entendida.\nLos resultados podrían no ser los esperados.", + "smw_emptysubquery": "Alguna subconsulta no tiene condición válida.", + "smw_misplacedsubquery": "Alguna subconsulta fue usada en un lugar donde las subconsultas no están permitidas.", + "smw_valuesubquery": "Los valores de la propiedad «$1» no admiten las subconsultas.", + "smw_badqueryatom": "Alguna parte \"[[...]]\" de la consulta no fue entendida.", + "smw_propvalueproblem": "El valor de propiedad \"$1\" no fue entendida.", + "smw_noqueryfeature": "Alguna característica de la consulta no se admite en esta wiki, y parte de ella se ha eliminado ($1).", + "smw_noconjunctions": "No se admiten las conjunciones en las consultas en esta wiki y por ello se ha eliminado parte de la consulta ($1).", + "smw_nodisjunctions": "Las disjunciones en las consultas no se admiten en esta wiki y parte de la consulta se ha eliminado ($1).", + "smw_querytoolarge": "No se {{PLURAL:$2|pudo|pudieron}} considerar {{PLURAL:$2|la siguiente condición|las siguientes $2 condiciones}} de consulta debido a restricciones en esta wiki de tamaño o profundidad de consulta: $1.", + "smw_notemplategiven": "Proveer un valor para el parámetro \"plantilla\" para este formato de consulta para funcionar.", + "smw_db_sparqlqueryproblem": "No se pudieron obtener los resultados de la consulta de la base de datos SPARQL. Este error puede ser temporal o indicar un error en el programa de la base de datos.", + "smw_db_sparqlqueryincomplete": "Resultó demasiado difícil responder la consulta y fue abandonada. Es probable que falten algunos resultados. Si fuese posible, intente hacer una consulta más sencilla.", + "smw_type_header": "Propiedades de tipo \"$1\"", + "smw_typearticlecount": "Se {{PLURAL:$1|muestra $1 propiedad que usa|muestran $1 propiedades que usan}} este tipo.", + "smw_attribute_header": "Páginas que usan la propiedad \"$1\"", + "smw_attributearticlecount": "Se {{PLURAL:$1|muestra $1 página que usa|muestran $1 páginas que usan}} esta propiedad.", + "smw-propertylist-subproperty-header": "Subpropiedades", + "smw-propertylist-redirect-header": "Sinónimos", + "smw-propertylist-error-header": "Páginas con asignaciones no apropiadas", + "smw-propertylist-count": "Se {{PLURAL:$1|muestra $1 propiedad relacionada|muestran $1 propiedades relacionadas}}.", + "smw-propertylist-count-with-restricted-note": "Se {{PLURAL:$1|muestra $1 entidad relacionada|muestran $1 entidades relacionadas}}. Hay más disponibles pero la salida está restringida a \"$2\".", + "smw-propertylist-count-more-available": "Se {{PLURAL:$1|muestra $1 entidad relacionada|muestran $1 entidades relacionadas}} (hay más disponibles).", + "specialpages-group-smw_group": "Semantic MediaWiki", + "specialpages-group-smw_group-maintenance": "Mantenimiento", + "specialpages-group-smw_group-search": "Explorar y buscar", + "exportrdf": "Exportar páginas a RDF", + "smw_exportrdf_docu": "Esta página permite obtener datos de una página en formato RDF.\nPara exportar páginas, escribe los títulos en el cuadro de abajo, uno por línea.", + "smw_exportrdf_recursive": "Exportar igualmente todas las páginas pertinentes de forma recurrente. Esta posibilidad puede conseguir un gran número de resultados !", + "smw_exportrdf_backlinks": "Exportar igualmente todas las páginas que reenvían a páginas exportadas. Resulta un RDF en el que se facilita la navegación.", + "smw_exportrdf_lastdate": "No exportar páginas que no fueron cambiadas desde el punto dado en el tiempo.", + "smw_exportrdf_submit": "Exportar", + "uriresolver": "Traductor de URI", + "properties": "Propiedades", + "smw-categories": "Categorías", + "smw_properties_docu": "Las siguientes propiedades se usan en la wiki.", + "smw_property_template": "$1 de tipo $2 ($3 {{PLURAL:$3|uso|usos}})", + "smw_propertylackspage": "Todas las propiedades deberían describirse por una página.", + "smw_propertylackstype": "Ningún tipo fue especificada para esta propiedad (asumiendo tipo $1 por ahora).", + "smw_propertyhardlyused": "¡Esta propiedad se usa escasamente dentro de la wiki!", + "smw-property-name-invalid": "La propiedad $1 no puede usarse (nombre de propiedad no válido).", + "smw-property-name-reserved": "«$1» se marcó como nombre reservado y, por lo tanto, no debería utilizarse como una propiedad. Es posible que esta [https://www.semantic-mediawiki.org/wiki/Help:Property_naming página de ayuda] incluya información sobre el motivo por el que este nombre se reservó.", + "smw-sp-property-searchform": "Mostrar propiedades que contengan:", + "smw-sp-property-searchform-inputinfo": "La entrada distingue mayúsculas y minúsculas y, cuando se utiliza para el filtrado, solo se muestran las propiedades que coinciden con la condición.", + "smw-special-property-searchform": "Mostrar propiedades que contengan:", + "smw-special-property-searchform-inputinfo": "Se hace distinción de mayúsculas y minúsculas en la entrada. Cuando esta se emplee para filtrar, únicamente aparecerán las propiedades que coincidan con la condición.", + "smw-special-property-searchform-options": "Opciones", + "smw-special-wantedproperties-filter-label": "Filtro:", + "smw-special-wantedproperties-filter-none": "Ninguno", + "smw-special-wantedproperties-filter-unapproved": "Sin aprobar", + "smw-special-wantedproperties-filter-unapproved-desc": "La opción de filtrado se utiliza en conjunto con el modo de autoridad.", + "concepts": "Conceptos", + "smw-special-concept-docu": "Un [https://www.semantic-mediawiki.org/wiki/Help:Concepts concepto] puede verse como una \"categoría dinámica\". Es decir, como una colección de páginas que no se crean manualmente, sino que se calculan a través de Semantic MediaWiki a partir de una descripción de una consulta dada.", + "smw-special-concept-header": "Lista de conceptos", + "smw-special-concept-count": "Se {{PLURAL:$1|lista el siguiente concepto|listan los siguientes $1 conceptos}}.", + "smw-special-concept-empty": "No se encontró ningún concepto.", + "unusedproperties": "Propiedades no utilizadas", + "smw-unusedproperties-docu": "Esta página lista las [https://www.semantic-mediawiki.org/wiki/Unused_properties propiedades no utilizadas] que se declaran aunque ninguna otra página hace uso de ellos. Para una visión diferenciada, vea [[Special:Properties|todo]] o la página especial de [[Special:WantedProperties|propiedades buscadas]].", + "smw-unusedproperty-template": "$1 de tipo $2", + "wantedproperties": "Propiedades requeridas", + "smw-wantedproperties-docu": "Esta página lista las [https://www.semantic-mediawiki.org/wiki/Wanted_properties propiedades buscadas] que se utilizan en la wiki pero no tienen una página que las describa. Para una visión diferenciada, vea [[Special:Properties|todo]] o la página especial de [[Special:UnusedProperties|propiedades no utilizadas]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|uso|usos}})", + "smw-special-wantedproperties-docu": "Esta página enumera las [https://www.semantic-mediawiki.org/wiki/Wanted_properties propiedades solicitadas] que se emplean en la wiki pero que no cuentan con una página descriptora. Para obtener una visualización diferenciada, consulta las listas de [[Special:Properties|todas las propiedades]] y de las [[Special:UnusedProperties|propiedades no utilizadas]].", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|uso|usos}})", + "smw_purge": "Actualizar", + "smw-purge-failed": "Semantic MediaWiki intentó purgar la página pero falló", + "types": "Tipos", + "smw_types_docu": "Lista de [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes tipos de datos disponibles] donde cada [https://www.semantic-mediawiki.org/wiki/Help:Datatype tipo] representa un conjunto único de atributos para describir un valor en términos de almacenamiento y características de muestra que son hereditarios a una propiedad asignada.", + "smw-special-types-no-such-type": "El tipo de datos especificado no existe", + "smw-statistics": "Estadísticas de semántica", + "smw-statistics-entities-total": "Entidades (totales)", + "smw-statistics-property-instance": "{{PLURAL:$1|Valor|Valores}} de propiedad (total)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Propiedad|Propiedades}}]] (total)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Propiedad|Propiedades}} (total)", + "smw-statistics-property-used": "{{PLURAL:$1|Propiedad|Propiedades}} (utilizado con al menos un valor)", + "smw-statistics-property-page": "{{PLURAL:$1|Propiedad (registrada con una página)|Propiedades (registradas con una página)}}", + "smw-statistics-property-type": "{{PLURAL:$1|Propiedad (asignada a un tipo de datos)|Propiedades (asignadas a un tipo de datos)}}", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Consulta|Consultas}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Consulta|Consultas}}]]", + "smw-statistics-query-size": "Tamaño de la consulta", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Concepto|Conceptos}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Concepto|Conceptos}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Subobjeto|Subobjetos}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Subobjeto|Subobjetos}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Tipo de datos|Tipos de datos}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Valor|Valores}} de propiedad ([[Special:ProcessingErrorList|{{PLURAL:$1|anotación impropia|anotaciones impropias}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Valor|Valores}} de propiedad ({{PLURAL:$1|anotación impropia|anotaciones impropias}})", + "smw-statistics-delete-count": "{{PLURAL:$1|Entidad desactualizada (marcada para su eliminación)|Entidades desactualizadas (marcadas para su eliminación)}}", + "smw_uri_doc": "El traductor de URI implementa [$1 W3C TAG finding on httpRange-14].\nEsto se preocupa de cosas que los humanos no lo hacen en los sitios web..", + "ask": "Búsqueda semántica", + "smw-ask-help": "Esta sección contiene algunos enlaces para ayudar a explicar cómo utilizar la sintaxis #ask.\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selección de páginas] describe cómo seleccionar páginas y construir condiciones.\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Search_operators Operadores de búsqueda] enumera los operadores de búsqueda disponibles, incluidos los de consulta de intervalo y de caracteres comodines.\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Muestra de información] expone el uso de las declaraciones de salida y las opciones de formato.", + "smw_ask_sortby": "Ordenar por columna (opcional)", + "smw_ask_ascorder": "Ascendente", + "smw_ask_descorder": "Descendente", + "smw-ask-order-rand": "Al azar", + "smw_ask_submit": "Buscar resultados", + "smw_ask_editquery": "Editar consulta", + "smw_add_sortcondition": "[Agregar condición de orden]", + "smw-ask-sort-add-action": "Añadir condición de ordenamiento", + "smw_ask_hidequery": "Ocultar consulta (vista compacta)", + "smw_ask_help": "Ayuda sobre consultas", + "smw_ask_queryhead": "Condición", + "smw_ask_printhead": "Selección de datos para mostrar", + "smw_ask_printdesc": "(añade un nombre de propiedad por línea)", + "smw_ask_format_as": "Formatear como:", + "smw_ask_defaultformat": "predeterminado", + "smw_ask_otheroptions": "Otras opciones", + "smw-ask-otheroptions-info": "Esta sección contiene opciones que alteran los formatos de impresión. Las descripciones de dichas opciones pueden verse pasando el ratón sobre ellas.", + "smw-ask-otheroptions-collapsed-info": "Usa el icono de suma para ver todas las opciones disponibles", + "smw_ask_show_embed": "Mostrar código embebido", + "smw_ask_hide_embed": "Ocultar código embebido", + "smw_ask_embed_instr": "Para incluír esta consulta en línea dentro de una wiki usa el código siguiente:", + "smw-ask-delete": "Quitar", + "smw-ask-sorting": "Ordenación", + "smw-ask-options": "Opciones", + "smw-ask-options-sort": "Opciones de ordenamiento", + "smw-ask-format-options": "Formato y opciones", + "smw-ask-parameters": "Parámetros", + "smw-ask-search": "Buscar", + "smw-ask-debug": "Depuración", + "smw-ask-debug-desc": "Genera información para depurar consultas", + "smw-ask-no-cache": "Deshabilitar la caché de consultas", + "smw-ask-no-cache-desc": "Resultados sin antememoria de consulta", + "smw-ask-result": "Resultado", + "smw-ask-empty": "Borrar todas las entradas", + "smw-ask-download-link-desc": "Descargar los resultados de la consulta en el formato $1", + "smw-ask-format": "Formato", + "smw-ask-format-selection-help": "Ayuda con el formato seleccionado: $1", + "smw-ask-condition-change-info": "La condición se alteró y el motor de búsqueda debe volver a ejecutar la consulta para producir resultados que coincidan con los nuevos requisitos.", + "smw-ask-input-assistance": "Asistencia de entrada", + "smw-ask-condition-input-assistance": "Se brinda [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance asistencia de entrada] para los campos de salida, de ordenación y de condición. Para utilizar este último, es necesario emplear alguno de estos prefijos:", + "smw-ask-condition-input-assistance-property": "p: para buscar sugerencias de propiedades (p. ej., [[p:Has ...)", + "smw-ask-condition-input-assistance-category": "c: para buscar sugerencias de categorías", + "smw-ask-condition-input-assistance-concept": "con: para buscar sugerencias de conceptos", + "smw-ask-format-change-info": "Se modificó el formato y, por tanto, es necesario ejecutar de nuevo la consulta para que corresponda con los parámetros y las opciones de visualización nuevos.", + "smw-ask-format-export-info": "El formato de exportación seleccionado no tiene representación visual, por lo que los resultados se proporcionan solamente para descargar.", + "smw-ask-query-search-info": "{{PLURAL:$3|1=$2 (de la caché)|$2 (de la caché)|$2}} respondió la consulta $1 en $4 {{PLURAL:$4|segundo|segundos}}.", + "smw-ask-extra-query-log": "Registro de consultas", + "searchbyproperty": "Buscar por propiedad", + "processingerrorlist": "Lista de errores de procesamiento", + "constrainterrorlist": "Lista de errores de restricción", + "propertylabelsimilarity": "Informe de similitud de etiquetas de propiedades", + "smw-processingerrorlist-intro": "La siguiente lista proporciona una descripción general de los errores de procesamiento que aparecieron con [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. Se recomienda monitorear esta lista de forma regular y corregir las anotaciones de valores no válidos.", + "smw-constrainterrorlist-intro": "La siguiente lista proporciona una visión general sobre los [https://www.semantic-mediawiki.org/wiki/Constraint_errors errores de restricción] que aparecen conectados con [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. Se recomienda supervisar esta lista regularmente y corregir los valores inválidos de las anotaciones.", + "smw_sbv_docu": "Buscar todas las páginas que tienen una propiedad y un valor determinados.", + "smw_sbv_novalue": "Escribe un valor válido para la propiedad, o ve todos los valores de propiedad para \"$1\".", + "smw_sbv_displayresultfuzzy": "Lista de todas las páginas que tienen la propiedad \"$1\" con valor \"$2\".\nComo hay pocos resultados, también se muestran los valores aproximados.", + "smw_sbv_property": "Propiedad:", + "smw_sbv_value": "Valor:", + "smw_sbv_submit": "Buscar resultados", + "browse": "Explorar la wiki", + "smw_browselink": "Explorar propiedades", + "smw_browse_article": "Escribe el nombre de la página desde donde comenzar a navegar.", + "smw_browse_go": "Ir", + "smw_browse_show_incoming": "Mostrar propiedades entrantes", + "smw_browse_hide_incoming": "Ocultar propiedades entrantes", + "smw_browse_no_outgoing": "Esta página no tiene propiedades.", + "smw_browse_no_incoming": "Ninguna propiedad vincula aquí.", + "smw-browse-from-backend": "Se está recuperando la información del motor.", + "smw-browse-intro": "Esta página proporciona detalles sobre un sujeto o una instancia de entidad, ingrese el nombre de un objeto a inspeccionar.", + "smw-browse-invalid-subject": "La validación del tema devolvió el error \"$1\".", + "smw-browse-api-subject-serialization-invalid": "El tema tiene un formato de serialización no válido.", + "smw-browse-js-disabled": "Es probable que JavaScript esté desactivado o no esté disponible y recomendamos utilizar un navegador que sea compatible. En la página de configuración [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi] se discuten otras opciones.", + "smw-browse-show-group": "Mostrar grupos", + "smw-browse-hide-group": "Ocultar grupos", + "smw-noscript": "Esta pagina o accion necesita Javascript para funcionar, por favor activar el Javascript en su navigador o usar un navigador donde esto es suportado, asi puede funcionar bien y asi es suministrado como se ha solicitado. Para mas ayuda, por favor ver el enlace siguiente en la pagina de ayuda. [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript] .", + "smw_inverse_label_default": "$1 de", + "smw_inverse_label_property": "Etiqueta de propiedad inversa", + "pageproperty": "Búsqueda de propiedades de página", + "pendingtasklist": "Lista de tareas pendientes", + "smw_pp_docu": "Proporciona una página y propiedad o solo una propiedad para recuperar todos los valores asignados.", + "smw_pp_from": "Desde la página:", + "smw_pp_type": "Propiedad:", + "smw_pp_submit": "Encontrar resultados", + "smw-prev": "$1 anterior{{PLURAL:$1||es}}", + "smw-next": "$1 siguiente{{PLURAL:$1||s}}", + "smw_result_prev": "Anterior", + "smw_result_next": "Siguiente", + "smw_result_results": "Resultados", + "smw_result_noresults": "No hay resultados.", + "smwadmin": "Tablero (Semantic MediaWiki)", + "smw-admin-statistics-job-title": "Estadísticas de trabajo", + "smw-admin-statistics-job-docu": "Las estadísticas de trabajo muestran información acerca de los trabajos para Semantic MediaWiki programados que aún no se han ejecutado. El número de trabajos puede ser ligeramente inexacto o contener intentos fallidos, consulte este [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue manual] para información detallada.", + "smw-admin-statistics-querycache-title": "Antememoria de consultas", + "smw-admin-statistics-querycache-disabled": "El [https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] no ha sido habilitado en esta wiki y por lo tanto no hay estadísticas disponibles.", + "smw-admin-permission-missing": "Debido a la falta de los permisos necesarios, se ha bloqueado el acceso a esta página. Consulta la página de ayuda sobre los [https://www.semantic-mediawiki.org/wiki/Help:Permissions permisos] para obtener más información sobre las configuraciones necesarias.", + "smw-admin-setupsuccess": "El motor de almacenamiento se ha configurado.", + "smw_smwadmin_return": "Regresar a $1", + "smw_smwadmin_updatestarted": "Se ha iniciado un proceso de actualización nuevo para actualizar los datos semánticos.\nTodos los datos almacenados se reconstruirán o repararán donde haga falta.\nPuedes hacer un seguimiento del progreso de la actualización en esta página especial.", + "smw_smwadmin_updatenotstarted": "Ya hay un proceso de actualización ejecutándose.\nNo se creará otro.", + "smw_smwadmin_updatestopped": "Se han detenido todos los procesos de actualización existentes.", + "smw_smwadmin_updatenotstopped": "Para detener el proceso de actualización en ejecución, debes marcar la casilla para indicar que estás realmente seguro.", + "smw-admin-docu": "Esta página especial te ayudará durante la instalación, actualización, mantenimiento y uso de Semantic MediaWiki, además de proporcionar funciones administrativas y tareas, así como estadísticas.\n\nRecuerda respaldar cualquier información importante antes de ejecutar funciones administrativas.", + "smw-admin-environment": "Entorno de software", + "smw-admin-db": "Configuración de la base de datos", + "smw-admin-db-preparation": "La inicialización de la tabla está en curso y se puede producir una demora antes de que se muestren los resultados, en función del tamaño y las optimizaciones que deban realizarse.", + "smw-admin-dbdocu": "Semantic MediaWiki necesita algunas extensiones en la base de datos de MediaWiki para poder almacenar la información semántica.\nLa función indicada abajo asegura que tu base de datos está configurada correctamente.\nLos cambios realizados en este paso no afectan el resto de la base de datos de MediaWiki y pueden ser revertidos fácilmente si así se desea.\nEsta función de configuración puede ejecutarse varias veces sin hacer ningún daño, pero es necesaria sólo una vez para la instalación o actualización.", + "smw-admin-permissionswarn": "Si la operación falla con errores SQL, la base de datos de usuarios empleada por su wiki (revise su archivo \"LocalSettings.php\") probablemente no tiene permisos suficientes.\nUd puede conceder a este usuario permisos adicionales para crear y borrar tablas, ingresando temporalmente la clave de acceso de su base de datos raíz en el archivo \"LocalSettings.php\", o bien usar el script de mantenimiento setupStore.php, que puede usar las credenciales de un administrador.", + "smw-admin-dbbutton": "Inicializar o modernizar tablas", + "smw-admin-announce": "Anuncia tu wiki", + "smw-admin-announce-text": "Si tu wiki es pública, lo puedes registrar en WikiApiary, la wiki de seguimiento de wikis.", + "smw-admin-deprecation-notice-title": "Alertas de obsolescencia", + "smw-admin-deprecation-notice-docu": "La siguiente sección contiene ajustes que se han quedado obsoletos o eliminados, pero que fueron detectados para estar activos en esta wiki. Se espera que en el futuro cualquier versión elimine el soporte para estas configuraciones.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] está obsoleto y se eliminará en $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] eliminará (o reemplazará) {{PLURAL:$2|la opción siguiente|las opciones siguientes}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 está desusado y se eliminará en la versión $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] fue reemplazado por [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] tiene {{PLURAL:$2|esta opción|estas opciones}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 se reemplazará por $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] fue eliminado en $2", + "smw-admin-deprecation-notice-title-notice": "Configuraciones obsoletadas", + "smw-admin-deprecation-notice-title-notice-explanation": "Los siguientes ajustes se detectaron para ser usados en esta wiki y está planeado que sean eliminados o cambiados en versiones futuras.", + "smw-admin-deprecation-notice-title-replacement": "Opciones sustituidas o retituladas", + "smw-admin-deprecation-notice-title-replacement-explanation": "La sección siguiente contiene opciones cuyo nombre se ha modificado o han recibido cambios de otro tipo. Se recomienda que se actualice inmediatamente su nombre o su formato.", + "smw-admin-deprecation-notice-title-removal": "Opciones eliminadas", + "smw-admin-deprecation-notice-title-removal-explanation": "Las opciones siguientes se eliminaron en una versión anterior, pero se detectó que aún se utilizan en esta wiki.", + "smw-smwadmin-refresh-title": "Reparación y actualización de datos", + "smw_smwadmin_datarefresh": "Reconstrucción de los datos", + "smw_smwadmin_datarefreshdocu": "Es posible restaurar toda la información de MediaWiki Semántica basándose en los contenidos actuales de la wiki.\nEsto puede ser útil para reparar la información destruida o para volver a cargar la información si el formato interno ha cambiado a causa de alguna actualización de software.\nLa actualización se ejecuta página a página y no se completará de inmediato.\nLo siguiente muestra es hay una actualización en progreso y le permite iniciar o detener actualizaciones (a menos que esta característica haya sido inhabilitada por el administrador del sitio).", + "smw_smwadmin_datarefreshprogress": "Actualización en progreso.\nEs normal que el proceso de actualización se retrase ya que sólo actualiza datos en porciones pequeñas cada vez que un usuario ingresa a la wiki.\nPara finalizar esta actualización en forma más rápida, puedes invocar el script de matenimiento MediaWiki runJobs.php (usa la opción --maxjobs 1000 para restringir el número de actualizaciones hechas en cada paquete).\nProgreso estimado de la actualización:", + "smw_smwadmin_datarefreshbutton": "Programar actualización de datos", + "smw_smwadmin_datarefreshstop": "Detener esta actualización", + "smw_smwadmin_datarefreshstopconfirm": "Sí, estoy {{GENDER:$1|seguro|segura}}.", + "smw-admin-job-scheduler-note": "La mayoría de las actividades de esta sección se realizan como trabajos para evitar situaciones de bloqueo durante su ejecución. El [https://www.mediawiki.org/wiki/Manual:Job_queue planificador de trabajos] es responsable del procesamiento y es fundamental que el script de mantenimiento runJobs.php (véase también el parámetro de configuración $wgRunJobsAsync) tenga la capacidad adecuada.", + "smw-admin-outdateddisposal-title": "Eliminación de entidades obsoletas", + "smw-admin-outdateddisposal-intro": "Algunas actividades (un cambio a un tipo de propiedad, la eliminación de wikipáginas o la corrección de valores de error) resultarán en [https://www.semantic-mediawiki.org/wiki/Outdated_entities entidades anticuadas] y se sugiere eliminarlas periódicamente para liberar el espacio de tablas asociado.", + "smw-admin-outdateddisposal-active": "Se ha puesto en cola un trabajo de eliminación de entidades obsoletas.", + "smw-admin-outdateddisposal-button": "Programar una eliminación", + "smw-admin-feature-disabled": "Se ha deshabilitado esta función en esta wiki. Para más información, consulta la página de configuración o contacta con el administrador del sistema.", + "smw-admin-propertystatistics-title": "Reconstruir las estadísticas de la propiedad", + "smw-admin-propertystatistics-intro": "Reconstruye todas las estadísticas de uso de la propiedad y actualiza y corrige el [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count recuento de uso] de propiedades.", + "smw-admin-propertystatistics-active": "Se ha programado una reconstrucción de estadísticas.", + "smw-admin-propertystatistics-button": "Programar reconstrucción de estadísticas", + "smw-admin-fulltext-title": "Reconstrucción de búsqueda de texto completo", + "smw-admin-fulltext-intro": "Recompila el índice de búsquedas a partir de tablas de propiedades mediante un tipo de datos para [https://www.semantic-mediawiki.org/wiki/Full-text búsquedas de texto completo] que se haya activado. Es necesario ejecutar esta tarea de nuevo si se producen modificaciones en las reglas de indización (cambios de palabras no significativas, un lematizador nuevo, etc.) o se añade o modifica una tabla.", + "smw-admin-fulltext-active": "Se ha programado una tarea de reconstrucción para búsquedas de texto completo.", + "smw-admin-fulltext-button": "Programar reconstrucción de texto completo", + "smw-admin-support": "Obtener asistencia", + "smw-admin-supportdocu": "Se ofrecen algunos recursos para ayudarte si se producen problemas:", + "smw-admin-installfile": "Si experimentas problemas con tu instalación, comienza revisando las directivas en el archivo INSTALL.", + "smw-admin-smwhomepage": "Puede encontrarse la documentación de usuario completa de Semantic MediaWiki en semantic-mediawiki.org.", + "smw-admin-bugsreport": "Se pueden enviar informes de error a GitHub.", + "smw-admin-questions": "Si tienes preguntas o sugerencias adicionales, únete a la discusión en la lista de correo de usuarios de Semantic MediaWiki\n.", + "smw-admin-other-functions": "Otras funciones", + "smw-admin-statistics-extra": "Funciones estadísticas", + "smw-admin-statistics": "Estadísticas", + "smw-admin-supplementary-section-title": "Funciones suplementarias", + "smw-admin-supplementary-section-subtitle": "Funciones de núcleo", + "smw-admin-supplementary-section-intro": "Esta sección proporciona funciones adicionales más allá del alcance del mantenimiento y es posible que algunas funciones que están listadas en la [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions documentación] estén restringidas o no disponibles y por lo tanto inaccesibles en esta wiki.", + "smw-admin-supplementary-settings-title": "Configuración y parámetros", + "smw-admin-supplementary-settings-intro": "$1 muestra parámetros que definen el comportamiento de Semantic MediaWiki", + "smw-admin-supplementary-operational-statistics-title": "Estadísticas operacionales", + "smw-admin-supplementary-operational-statistics-intro": "$1 muestra un conjunto extendido de estadísticas", + "smw-admin-supplementary-idlookup-title": "Búsqueda y eliminación de la entidad", + "smw-admin-supplementary-idlookup-intro": "$1 contiene funciones para buscar y desechar entidades individuales", + "smw-admin-supplementary-duplookup-title": "Búsqueda de entidades duplicadas", + "smw-admin-supplementary-duplookup-intro": "$1 para enumerar entradas que estén categorizadas por contener duplicados en la tabla de entidades", + "smw-admin-supplementary-duplookup-docu": "Esta página lista entradas que han sido categorizadas como duplicadas en la [https://www.semantic-mediawiki.org/wiki/Help:Entity_table tabla de entidades]. Las entradas duplicadas solo deberían ocurrir (como mucho) en raras ocasiones potencialmente causadas por un proceso terminado durante una actualización de la base de datos o una transacción de reversión fallida.", + "smw-admin-supplementary-operational-statistics-cache-title": "Estadísticas de antememoria", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 muestra un conjunto seleccionado de estadísticas relativas a la antememoria", + "smw-admin-supplementary-elastic-version-info": "Versión", + "smw-admin-supplementary-elastic-intro": "$1 informa sobre estadísticas de ajustes e indices", + "smw-admin-supplementary-elastic-docu": "Esta página contiene información sobre ajustes, mapeos, salud y estadísticas de índices relacionados con un clúster de Elasticsearch que está conectado a Semantic MediaWiki y su [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Funciones compatibles", + "smw-admin-supplementary-elastic-settings-title": "Configuración (índices)", + "smw-admin-supplementary-elastic-settings-intro": "$1 utilizado por Elasticsearch para administrar indices de MediaWiki Semántica", + "smw-admin-supplementary-elastic-mappings-title": "Asignaciones", + "smw-admin-supplementary-elastic-mappings-intro": "$1 para listar indices y mapeos de campo", + "smw-admin-supplementary-elastic-mappings-docu": "Esta página contiene detalles de la asignación de campos, ya que se utilizan con los índices actuales. El resumen de mapeo debe ser controlado en conexión con el index.mapping.total_fields.limit que especifica el número máximo de campos en un índice.", + "smw-admin-supplementary-elastic-mappings-summary": "Resumen", + "smw-admin-supplementary-elastic-mappings-fields": "Mapeos de campo", + "smw-admin-supplementary-elastic-nodes-title": "Nodos", + "smw-admin-supplementary-elastic-nodes-intro": "$1 muestra estadísticas de nodo", + "smw-admin-supplementary-elastic-indices-title": "Índices", + "smw-admin-supplementary-elastic-indices-intro": "$1 proporciona una vista general de índices disponibles y sus estadísticas", + "smw-admin-supplementary-elastic-statistics-title": "Estadísticas", + "smw-admin-supplementary-elastic-statistics-intro": "$1 muestra estadísticas de nivel de índice", + "smw-admin-supplementary-elastic-statistics-docu": "Esta página proporciona una visión de las estadísticas de los índices de las diferentes operaciones que están ocurriendo a nivel de índice, las estadísticas devueltas se combinan con las primarias y las totales. La [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html página de ayuda] contiene una descripción detallada de las estadísticas de los índices disponibles.", + "smw-admin-supplementary-elastic-status-replication": "Estado de replicación", + "smw-admin-supplementary-elastic-status-last-active-replication": "Última replicación activa: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Intervalo de refrescado: $1", + "smw-admin-supplementary-elastic-replication-files": "Archivos", + "smw-admin-supplementary-elastic-replication-pages": "Páginas", + "smw-admin-supplementary-elastic-config": "Configuraciones", + "smw-list-count": "La lista contiene $1 {{PLURAL:$1|entrada|entradas}}.", + "smw-property-label-uniqueness": "La etiqueta «$1» corresponde con por lo menos una representación de propiedad diferente. Consulta la [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness página de ayuda] para saber cómo solucionar este problema.", + "smw-property-label-similarity-title": "Informe de similitud de etiqueta de propiedad", + "smw-property-label-similarity-intro": "$1 calcula las semejanzas para etiquetas de propiedades existentes", + "smw-property-label-similarity-threshold": "Umbral:", + "smw-property-label-similarity-type": "Mostrar identificador de tipo", + "smw-property-label-similarity-noresult": "No se encontró ningún resultado para las opciones seleccionadas.", + "smw-property-label-similarity-docu": "Compara y notifica la [https://www.semantic-mediawiki.org/wiki/Property_similarity semejanza sintáctica] (no la semántica) entre dos etiquetas de propiedades, lo que puede ayudar a filtrar propiedades mal escritas o equivalentes que representen el mismo concepto (consulta la página especial [[Special:Properties|Propiedades]] para clarificar los conceptos y los usos de las propiedades notificadas). Puede ajustarse el umbral para aumentar o disminuir la distancia de semejanza. [[Property:$1|$1]] se utiliza para eximir propiedades del análisis.", + "smw-admin-operational-statistics": "Esta página contiene estadísticas operacionales recogidas en o desde funciones relacionadas de la MediaWiki Semántica. Puede encontrar [[Special:Statistics|aquí]] una lista ampliada de estadísticas específicas de la wiki.", + "smw_adminlinks_datastructure": "Estructura de datos", + "smw_adminlinks_displayingdata": "Mostrando datos", + "smw_adminlinks_inlinequerieshelp": "Ayuda de consultas en línea", + "smw-page-indicator-usage-count": "[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count Número de usos] estimado: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "Propiedad definida por el {{PLURAL:$1|usuario|sistema}}", + "smw-property-indicator-last-count-update": "Cuenta estimada de uso\nActualizada por última vez el: $1", + "smw-concept-indicator-cache-update": "Recuento de antememoria\nÚltima actualización: $1", + "smw-createproperty-isproperty": "Es una propiedad de tipo $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|El valor permitido para esta propiedad es|Los valores permitidos para esta propiedad son}}:", + "smw-paramdesc-category-delim": "El delimitador", + "smw-paramdesc-category-template": "Una plantilla con la que dar formato a los elementos", + "smw-paramdesc-category-userparam": "Un parámetro que pasar a la plantilla", + "smw-info-par-message": "El mensaje que mostrar.", + "smw-info-par-icon": "Icono que mostrar: ya sea \"info\" (información) o bien \"warning\" (advertencia).", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Opciones generales", + "prefs-extended-search-options": "Búsqueda ampliada", + "prefs-ask-options": "Búsqueda semántica", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] (o extensiones relacionadas) suministran las opciones mostradas a continuación para permitir la personalización individual de las funciones seleccionadas. Para más información, consulta [https://www.semantic-mediawiki.org/wiki/Help:User_preferences esta página de ayuda].", + "smw-prefs-ask-options-tooltip-display": "Mostrar el texto del parámetro como ayuda informativa", + "smw-prefs-ask-options-compact-view-basic": "Habilitar vista compacta básica", + "smw-prefs-help-ask-options-compact-view-basic": "Si se habilita, muestra un conjunto reducido de enlaces en la vista compacta Special:Ask.", + "smw-prefs-general-options-time-correction": "Activar la corrección horaria en las páginas especiales mediante la preferencia local de [[Special:Preferences#mw-prefsection-rendering|desfase horario]]", + "smw-prefs-general-options-jobqueue-watchlist": "Mostrar la lista de seguimiento de la cola de tareas en mi barra personal", + "smw-prefs-help-general-options-jobqueue-watchlist": "Si está habilitado, muestra una [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist lista de] tareas seleccionadas pendientes junto con sus tamaños de cola estimados.", + "smw-prefs-general-options-disable-editpage-info": "Desactivar el texto introductorio de la página de edición", + "smw-prefs-general-options-disable-search-info": "Desactivar la información de sintaxis admitida en la página estándar de búsquedas", + "smw-prefs-general-options-suggester-textinput": "Habilitar la asistencia de entrada para entidades semánticas", + "smw-prefs-help-general-options-suggester-textinput": "Si está habilitado, permite utilizar una [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance asistencia de entrada] para encontrar propiedades, conceptos y categorías desde un contexto de entrada.", + "smw-prefs-general-options-show-entity-issue-panel": "Mostrar el panel de problemas de la entidad", + "smw-prefs-help-general-options-show-entity-issue-panel": "Si está habilitado, ejecuta verificaciones de integridad en cada página y muestra el [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel Panel de problemas de la entidad].", + "smw-ui-tooltip-title-property": "Propiedad", + "smw-ui-tooltip-title-quantity": "Conversión de unidad", + "smw-ui-tooltip-title-info": "Información", + "smw-ui-tooltip-title-service": "Enlaces de servivio", + "smw-ui-tooltip-title-warning": "Advertencia", + "smw-ui-tooltip-title-error": "Error", + "smw-ui-tooltip-title-parameter": "Parámetro", + "smw-ui-tooltip-title-event": "Evento", + "smw-ui-tooltip-title-note": "Nota", + "smw-ui-tooltip-title-legend": "Leyenda", + "smw-ui-tooltip-title-reference": "Referencia", + "smw_unknowntype": "El tipo «$1» de esta propiedad no es válido", + "smw-concept-cache-text": "El concepto tiene un total de $1 {{PLURAL:$1|página|páginas}}, y se actualizó por última vez el $3 a las $2.", + "smw_concept_header": "Páginas de concepto \"$1\"", + "smw_conceptarticlecount": "Mostrando abajo $1 {{PLURAL:$1|página|páginas}}.", + "smw-qp-empty-data": "Los datos solicitados podrían no mostrarse, debido a algunos criterios de selección insuficientes.", + "right-smw-admin": "Acceder a tareas de administración (Semántica MediaWiki)", + "right-smw-patternedit": "Acceso de edición para mantener expresiones regulares y patrones permitidos (Semantic MediaWiki)", + "right-smw-pageedit": "Acceso de edición para páginas con anotación is edit prrotected (MediaWiki Semántica)", + "right-smw-schemaedit": "Editar [https://www.semantic-mediawiki.org/wiki/Help:Schema páginas de esquema] (Semantic MediaWiki)", + "right-smw-viewjobqueuewatchlist": "Acceso a la función de lista de [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist seguimiento] de la cola de trabajos (Semantic MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "Acceder a información sobre una discrepancia de revisión asociada a una entidad", + "right-smw-vieweditpageinfo": "Ver [https://www.semantic-mediawiki.org/wiki/Help:Edit_help ayuda de edición] (Semantic MediaWiki)", + "restriction-level-smw-pageedit": "protegido (solamente usuarios elegibles)", + "action-smw-patternedit": "editar expresiones regulares utilizadas por Semantic MediaWiki", + "action-smw-pageedit": "editar páginas anotadas con is edit protected (MediaWiki Semántica)", + "group-smwadministrator": "Administradores (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|administrador|administradora}} (Semantic MediaWiki)", + "grouppage-smwadministrator": "{{ns:project}}:Administradores (Semantic MediaWiki)", + "group-smwcurator": "Curadores (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|curador|curadora}} (Semantic MediaWiki)", + "grouppage-smwcurator": "{{ns:project}}:Curadores (Semantic MediaWiki)", + "group-smweditor": "Editores (Semantic MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|editor|editora}} (Semantic MediaWiki)", + "grouppage-smweditor": "{{ns:Proyecto}}:Editores (Semánticos MediaWiki)", + "action-smw-admin": "acceder a tareas de administración de Semantic MediaWiki", + "action-smw-ruleedit": "editar páginas de regla (Semantic MediaWiki)", + "smw-property-predefined-default": "«$1» es una propiedad predefinida de tipo $2.", + "smw-property-predefined-common": "Esta propiedad está implementada previamente (también conocida como [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propiedad especial]) y viene con privilegios administrativos adicionales, pero puede usarse como cualquier otra [https://www.semantic-mediawiki.org/wiki/Property propiedad definida por usuario].", + "smw-property-predefined-ask": "\"$1\" es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que representa metainformación (en forma de un [https://www.semantic-mediawiki.org/wiki/Subobject subobjeto]) sobre consultas individuales.", + "smw-property-predefined-asksi": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que recopila el número de condiciones utilizadas en una consulta.", + "smw-property-predefined-askde": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que informa sobre la profundidad de una consulta.", + "smw-property-predefined-long-askde": "Es un valor numérico calculado con base en el anidamiento de subconsultas, en las cadenas de propiedades y en los elementos descriptores disponibles, con la ejecución de una consulta restringida por el parámetro de configuración [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-property-predefined-askpa": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que describe parámetros que influyen el resultado de una consulta.", + "smw-property-predefined-long-askpa": "Es parte de una colección de propiedades que especifican un [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler perfil de consulta].", + "smw-sp-properties-docu": "Esta página muestra las [https://www.semantic-mediawiki.org/wiki/Property propiedades] y el número de usos disponible de cada una de ellas para esta wiki. Para obtener estadísticas actualizadas, se recomienda ejecutar regularmente el script de mantenimiento de [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics estadísticas de propiedades]. Para una vista diferenciada, véanse las páginas especiales «[[Special:UnusedProperties|Propiedades sin uso]]» o «[[Special:WantedProperties|Propiedades requeridas]]».", + "smw-sp-properties-cache-info": "Los datos listados se han obtenido de la [https://www.semantic-mediawiki.org/wiki/Caching caché], y fueron actualizados por última vez el $1.", + "smw-sp-properties-header-label": "Lista de propiedades", + "smw-admin-settings-docu": "Muestra una lista de todas las preferencias predeterminadas y localizadas que son relevantes para el entorno de Semantic MediaWiki. Para más detalles sobre preferencias individuales, consulta la página de ayuda de [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuración].", + "smw-sp-admin-settings-button": "Generar lista de preferencias", + "smw-admin-idlookup-title": "Buscar", + "smw-admin-idlookup-docu": "Esta sección muestra detalles técnicos sobre una entidad individual (página de wiki, subobjeto, propiedad, etc.) de Semantic MediaWiki. La entrada puede ser un identificador numérico o una cadena que corresponda con el campo de búsqueda relevante. Observa que las referencias de los identificadores se relacionan con Semantic MediaWiki y no con los identificadores de página o de revisión de MediaWiki.", + "smw-admin-iddispose-title": "Eliminación", + "smw-admin-iddispose-docu": "Cabe resaltar que la operación de eliminación no está restringida y, si se confirma, quitará, del motor de almacenamiento, la entidad junto con todas sus referencias en las tablas pendientes. Por favor, realiza esta tarea con '''precaución''' y sólo después de haber consultado la [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal documentación].", + "smw-admin-iddispose-done": "El identificador «$1» se eliminó del motor de almacenamiento.", + "smw-admin-iddispose-references": "El identificador «$1» {{PLURAL:$2|no tiene ninguna|tiene al menos una}} referencia activa:", + "smw-admin-iddispose-references-multiple": "Lista de correspondencias con al menos un registro de referencias activo.", + "smw-admin-iddispose-no-references": "No se pudo relacionar «$1» con ninguna entrada de la tabla.", + "smw-admin-idlookup-input": "Buscar:", + "smw-admin-objectid": "Identificador:", + "smw-admin-tab-general": "Visión general", + "smw-admin-tab-notices": "Avisos de obsolescencia", + "smw-admin-tab-supplement": "Funciones suplementarias", + "smw-admin-tab-registry": "Registro", + "smw-admin-tab-alerts": "Alertas", + "smw-admin-alerts-tab-deprecationnotices": "Avisos de obsolescencia", + "smw-admin-alerts-tab-maintenancealerts": "Alertas de mantenimiento", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Optimización de tablas", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Entidades no válidas", + "smw-livepreview-loading": "Cargando…", + "smw-sp-searchbyproperty-description": "Esta página proporciona una [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces interfaz de exploración] simple para encontrar entidades descritas por una propiedad y un valor con nombre. Otras interfaces de búsqueda disponibles incluyen la [[Special:PageProperty|búsqueda de propiedades de página]] y el [[Special:Ask|constructor de consultas]].", + "smw-sp-searchbyproperty-resultlist-header": "Lista de resultados", + "smw-sp-searchbyproperty-nonvaluequery": "Una lista de valores que tienen asignada la propiedad \"$1\".", + "smw-sp-searchbyproperty-valuequery": "Una lista de las páginas que tienen la propiedad \"$1\" con el valor \"$2\" anotado.", + "smw-datavalue-number-textnotallowed": "\"$1\" no puede asignarse a un tipo de número declarado con valor $2.", + "smw-datavalue-number-nullnotallowed": "«$1» devolvió «NULL», el cual no se permite como número.", + "smw-editpage-annotation-enabled": "Esta página admite anotaciones semánticas en el texto (p. ej. \"[[Is specified as::World Heritage Site]]\") para construir contenido estructurado y consultable provisto por Semantic MediaWiki. Para una descripción completa sobre cómo usar anotaciones o la función analizadora #ask, consulta a las páginas de ayuda [https://www.semantic-mediawiki.org/wiki/Help:Getting_started primeros pasos], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation anotaciones en el texto] o [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries consultas en línea].", + "smw-editpage-annotation-disabled": "Esta página no tiene habilitadas las anotaciones semánticas dentro del texto debido a restricciones en el espacio de nombres. Puedes encontrar instrucciones sobre cómo habilitar el espacio de nombres en la página de ayuda de la [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuración].", + "smw-editpage-property-annotation-enabled": "Esta propiedad puede extenderse usando anotaciones semánticas para especificar un tipo de dato (p. ej. \"[[Has type::Page]]\") u otras declaraciones de asistencia (e.g. \"[[Subproperty of::dc:date]]\"). Para saber cómo aumentar esta página, consulta las páginas de ayuda [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration declaración de una propiedad] o [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes lista de los tipos de datos disponibles].", + "smw-editpage-property-annotation-disabled": "Esta propiedad no puede extenderse con una anotación de tipo de dato (p. ej. \"[[Has type::Page]]\") porque ya está predefinida (para más información, consulta la página de ayuda [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propiedades especiales]).", + "smw-editpage-concept-annotation-enabled": "Es posible extender este concepto por medio de la función #concept del analizador. Para saber cómo utilizar #concept, consulta la página de ayuda de los [https://www.semantic-mediawiki.org/wiki/Help:Concepts conceptos].", + "smw-search-syntax-support": "En las búsquedas se puede utilizar la [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search sintaxis de consultas semánticas] para encontrar correspondencias mediante Semantic MediaWiki.", + "smw-search-input-assistance": "El [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance asistente de entrada] se activa también para facilitar la preselección de las entidades disponibles.", + "smw-search-help-ask": "Los siguientes enlaces explicarán cómo usar la sintaxis #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Seleccionar páginas] describe cómo seleccionar páginas y crear condiciones\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Operadores de búsqueda] enumera los operadores de búsqueda disponibles, incluidos los de consultas de rango y comodín", + "smw-search-input": "Entrada y busqueda", + "smw-search-help-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Asistencia de entrada] se proporciona para el campo de entrada y requiere usar uno de los siguientes prefijos:\n\n*p: para habilitar sugerencias de propiedad (por ejemplo, [[p:Has ...)\n\n*c: para habilitar sugerencias de categoría\n\n*con: para habilitar sugerencias de concepto", + "smw-search-syntax": "Sintaxis", + "smw-search-profile": "Extendido", + "smw-search-profile-tooltip": "Busca funciones en conexión con MediaWiki Semántica", + "smw-search-profile-sort-best": "Mejor coincidencia", + "smw-search-profile-sort-recent": "Más reciente", + "smw-search-profile-sort-title": "Título", + "smw-search-profile-extended-help-intro": "El [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile perfil extendido] Special:Search proporciona acceso para buscar funciones concretas a Semantic MediaWiki y su backend de consulta admitido.", + "smw-search-profile-extended-help-sort": "Especifica una preferencia de ordenamiento para mostrar los resultados con:", + "smw-search-profile-extended-help-sort-title": "* \"Título\" usando el título de la página (o el título en pantalla) como criterio de clasificación", + "smw-search-profile-extended-help-sort-recent": "* \"Más reciente\" mostrará primero las entidades modificadas más recientemente ( las entidades de subobjeto serán suprimidas así como las entidades que no están anotadas con una [[Propiedad:fecha de Modificación|de fecha de Modificación]])", + "smw-search-profile-extended-help-sort-best": "* \"Mejor coincidencia\" ordenará las entidades por [https://www.semantic-mediawiki.org/wiki/help:ElasticStore/Relevancy relevancia] basándose en las puntuaciones provistas por el backend", + "smw-search-profile-extended-help-form": "Se proporcionan formularios (si se actualizan) para que coincidan con casos de uso específicos, exponiendo diferentes campos de propiedades y valores para reducir el proceso de entrada y facilitar a los usuarios la tarea de realizar una solicitud de búsqueda. (ver $1)", + "smw-search-profile-extended-help-namespace": "La caja de selección del espacio de nombres estará oculta en cuanto se seleccione una forma, pero puede ser hecha visible con la ayuda del botón \"mostrar/ocultar\".", + "smw-search-profile-extended-help-search-syntax": "El campo de entrada de la búsqueda perimite el uso de la sintaxis #preguntar para definir una búsqueda concreta contextual con Semántica MediaWiki . Las expresiones útiles incluyen:", + "smw-search-profile-extended-help-search-syntax-prefix": "* Prefijos adicionales personalizados están disponibles y definidos cada uno como: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* Algunas expresiones están reservadas como: $1", + "smw-search-profile-extended-help-search-syntax-note": "' Algunas de las operaciones listadas son sólo útiles en conexión con un índice habilitado de texto lleno o el ElasticStore.''", + "smw-search-profile-extended-help-query": "Se utilizó $1 como consulta.", + "smw-search-profile-extended-help-query-link": "(Para más detalles $1).", + "smw-search-profile-extended-help-find-forms": "formularios disponibles", + "smw-search-profile-extended-section-sort": "Ordenar por", + "smw-search-profile-extended-section-form": "Formularios", + "smw-search-profile-extended-section-search-syntax": "Entrada de búsqueda", + "smw-search-profile-extended-section-namespace": "Espacio de nombres", + "smw-search-profile-extended-section-query": "Consulta", + "smw-search-profile-link-caption-query": "ver", + "smw-search-show": "Mostrar", + "smw-search-hide": "Ocultar", + "log-name-smw": "Registro de Semantic MediaWiki", + "log-show-hide-smw": "$1 el registro de Semantic MediaWiki", + "logeventslist-smw-log": "Registro de Semantic MediaWiki", + "log-description-smw": "Actividades para [https://www.semantic-mediawiki.org/wiki/Help:Logging tipos de evento habilitados] que han sido notificados por la MediaWiki Semántica y sus componentes.", + "logentry-smw-maintenance": "Sucesos relacionados con el mantenimiento emitidos por Semantic MediaWiki", + "smw-datavalue-import-unknown-namespace": "El espacio de nombres de importación «$1» es desconocido. Comprueba que los detalles de importación de OWL estén disponibles a través de [[MediaWiki:Smw import $1]]", + "smw-datavalue-import-missing-namespace-uri": "No se pudo encontrar el URI del espacio de nombres «$1» en la [[MediaWiki:Smw import $1|importación de $1]].", + "smw-datavalue-import-missing-type": "No se encontró ninguna definición de tipos para «$1» en la [[MediaWiki:Smw import $2|importación de $2]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|Importación de $1]]", + "smw-datavalue-import-invalid-value": "\"$1\" no tiene un formato válido. Se espera que conste de \"espacio de nombres\":\"identificador\" (por ejemplo, \"foaf:name\").", + "smw-datavalue-import-invalid-format": "Se esperaba que la cadena «$1» estuviese dividida en cuatro partes, pero no se comprendió su formato.", + "smw-property-predefined-impo": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que describe relaciones con [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary vocabulario importado].", + "smw-property-predefined-type": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que describe el [[Special:Types|tipo de datos]] de una propiedad.", + "smw-property-predefined-sobj": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que representa una construcción de [https://www.semantic-mediawiki.org/wiki/Help:Container contenedor].", + "smw-property-predefined-long-sobj": "El contenedor permite acumular pares de asignaciones propiedad-valor semejantes a los de páginas wiki normales pero ubicadas en un espacio de entidades diferente y con enlaces al sujeto que lo incluye.", + "smw-property-predefined-errp": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que permite rastrear anotaciones de valores irregulares en los errores de entrada.", + "smw-property-predefined-long-errp": "En la mayoría de los casos lo provoca un error de correspondencia de tipos o una restricción de [[Property:Allows value|valores]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value «$1»] es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que puede definir una lista de valores permitidos para restringir las asignaciones de valores de alguna propiedad.", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list «$1»] es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que permite especificar una referencia a una lista que contenga valores permitidos para restringir las asignaciones de valores en propiedades.", + "smw-datavalue-property-restricted-annotation-use": "La propiedad «$1» tiene aplicaciones limitadas y los usuarios no pueden utilizarla como propiedad de anotación.", + "smw-datavalue-property-restricted-declarative-use": "La propiedad «$1» es declarativa y solo puede utilizarse en páginas de propiedad o de categoría.", + "smw-datavalue-property-create-restriction": "No existe la propiedad «$1» y el usuario carece del permiso «$2» (consulta [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode Modo de autoridad]) para crear o anotar valores con una propiedad no aprobada.", + "smw-datavalue-property-invalid-character": "«$1» contiene el carácter registrado «$2» como parte de la etiqueta de una propiedad. Por ello, se ha clasificado como no válido.", + "smw-datavalue-property-invalid-chain": "No se permite el uso de «$1» como cadena de propiedades durante el proceso de anotación.", + "smw-datavalue-restricted-use": "El valor de datos \"$1\" ha sido marcado para uso restringido.", + "smw-datavalue-invalid-number": "No se puede interpretar a \"$1\" como un número.", + "smw-query-condition-circular": "Se detectó una posible condición circular en \"$1\".", + "smw-types-list": "Lista de tipos de datos", + "smw-types-default": "\"$1\" es un tipo de datos.", + "smw-types-help": "Más información y ejemplos en esta [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 página de ayuda].", + "smw-type-anu": "«$1» es una variante del tipo de datos [[Special:Types/URL|URL]] y se utiliza en gran parte para declaraciones de exportación del tipo ''owl:AnnotationProperty''.", + "smw-type-boo": "«$1» es un tipo de datos básico para describir un valor de verdadero/falso.", + "smw-type-cod": "«$1» es una variante del tipo de datos [[Special:Types/Text|Text]] que está destinado para utilizarse con textos técnicos de cualquier longitud, tales como listados de código fuente.", + "smw-type-geo": "«$1» es un tipo de datos que describe ubicaciones geográficas y necesita la extensión [https://www.semantic-mediawiki.org/wiki/Extension:Maps Maps] para proveer más funciones.", + "smw-type-tel": "«$1» es un tipo de datos especial para describir números telefónicos internacionales de conformidad con RFC 3966.", + "smw-type-txt": "«$1» es un tipo de datos básico que describe cadenas de longitud arbitraria.", + "smw-type-dat": "«$1» es un tipo de datos básico para representar puntos en el tiempo en un formato unificado.", + "smw-type-tab-type-ids": "Identificadores de tipo", + "smw-type-container": "Contenedor", + "smw-type-no-group": "Sin clasificar", + "smw-special-pageproperty-description": "Esta página provee una interfaz de búsqueda para encontrar todos los valores de una propiedad o página dada. Otras interfazes de búsqueda incluyen [[Special:SearchByProperty|búsqueda de propiedad]] y el [[Special:Ask|constructor de preguntas]].", + "smw-property-predefined-errc": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que representa errores que aparecen en la conexión con anotaciones de valores o procesamiento de entradas inapropiados.", + "smw-property-predefined-long-errc": "Los errores se recopilan en un [https://www.semantic-mediawiki.org/wiki/Help:Container contenedor] que puede que incluya una referencia a la propiedad que provocó la discrepancia.", + "smw-property-predefined-errt": "«$1» es una propiedad predefinida, proporcionada [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que contiene una descripción textual de un error.", + "smw-subobject-parser-invalid-naming-scheme": "Un subobjeto definido por el usuario tenía un esquema de nombres invalido. La notación de punto ($1) utilizada en los primeros cinco caracteres está reservada para las extensiones. Puedes establecer un [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier identificador].", + "smw-datavalue-record-invalid-property-declaration": "La definición del registro contiene la propiedad «$1», la cual está declarada ella misma como tipo de registro. Esto no se permite.", + "smw-property-predefined-mdat": "\"$1\" es una propiedad predefinida proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] que corresponde con la fecha de la última modificación de un sujeto.", + "smw-property-predefined-cdat": "\"$1\" es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que corresponde con la fecha de la primera revisión de un asunto.", + "smw-property-predefined-newp": "\"$1\" es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que indica si un sujeto es nuevo o no.", + "smw-property-predefined-ledt": "\"$1\" es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que contiene el nombre de la página del usuario que creó la última revisión.", + "smw-property-predefined-mime": "«$1» es una propiedad predefinida, proporcioada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que describe el tipo MIME de un archivo cargado.", + "smw-property-predefined-media": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que describe el tipo de multimedia de un archivo cargado.", + "smw-property-predefined-askfo": "\"$1\" es una propiedad predefinida, proporcionada [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que guarda el nombre del formato de resultado usado en una consulta.", + "smw-property-predefined-askst": "\"$1\" es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que describe las condiciones de la consulta como una cadena.", + "smw-property-predefined-askdu": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que contiene un valor de tiempo (en segundos) necesario para completar la ejecución de la consulta.", + "smw-property-predefined-asksc": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que identifica fuentes alternativas de consultas (por ejemplo, fuentes remotas o federadas).", + "smw-property-predefined-askco": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para describir el estado de una consulta o de sus componentes.", + "smw-property-predefined-long-askco": "El número o los números asignados representan un estado codificado interno que está explicado en la [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler página de ayuda].", + "smw-property-predefined-prec": "«$1» es una propiedad predefinida que describe una [https://www.semantic-mediawiki.org/wiki/Help:Display_precision precisión de muestra] (en dígitos decimales) para tipos de datos numéricos.", + "smw-types-extra-geo-not-available": "No se ha detectado la extensión [https://www.semantic-mediawiki.org/wiki/Extension:Maps Maps], por lo tanto, la capacidad para operar de «$1» está restringida.", + "smw-datavalue-monolingual-dataitem-missing": "Falta un elemento esperado para construir un valor compuesto monolingüe.", + "smw-datavalue-languagecode-missing": "El analizador sintáctico no pudo determinar el código de idioma de la anotación «$1» (p. ej., «algo@es»).", + "smw-datavalue-languagecode-invalid": "No se reconoce «$1» como un código de idioma admitido.", + "smw-property-predefined-lcode": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que representa un código de idioma con formato BCP47.", + "smw-type-mlt-rec": "\"$1\" es un tipo de datos [https://www.semantic-mediawiki.org/wiki/Help:Container contenedor] que asocia un valor de texto con un [[Property:Language code|código de idioma]] específico.", + "smw-types-extra-mlt-lcode": "El tipo de datos{{PLURAL:$2|requiere|no requiere}} un código de idioma (o sea, {{PLURAL:$2|no se acepta|se acepta}} una anotación de valor sin un código de idioma).", + "smw-property-predefined-text": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que representa un texto de longitud arbitraria.", + "smw-property-predefined-pdesc": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que permite describir una propiedad en el contexto de un idioma.", + "smw-property-predefined-list": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que define una lista de propiedades usadas con una propiedad de tipo [[Special:Types/Record|registro]].", + "smw-limitreport-intext-parsertime": "[SMW] Analizador de tiempo de la anotación en el texto", + "smw-limitreport-intext-postproctime": "[SMW] duración de posprocesamiento", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|segundo|segundos}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|segundo|segundos}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Tiempo de actualización del almacenaje (en la purga de la página)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|segundo|segundos}}", + "smw_allows_pattern": "Esta página debería contener una lista de referencias (seguido de [https://es.wikipedia.org/wiki/Expresi%C3%B3n_regular expresiones regulares]) para estar disponible por la propiedad [[Property:Allows pattern|Permite patrón]]. Para editar esta página, se requiere el permiso smw-patternedit.", + "smw-datavalue-allows-pattern-mismatch": "La expresión regular \"$2\" clasificó a \"$1\" como no válida.", + "smw-datavalue-allows-pattern-reference-unknown": "La referencia del patrón \"$1\" no corresponde a ninguna entrada de [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "La referencia de lista «$1» no se corresponde con ninguna página de [[MediaWiki:Smw allows list $1]].", + "smw-datavalue-allows-value-list-missing-marker": "Al contenido de la lista «$1» le faltan elementos con un marcador de lista *.", + "smw-datavalue-feature-not-supported": "La funcionalidad \"$1\" no es compatible o se desactivó en esta wiki.", + "smw-property-predefined-pvap": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que puede especificar una [[MediaWiki:Smw allows pattern|patrón de referencia]] para que coincida con una [https://es.wikipedia.org/wiki/Expresi%C3%B3n_regular expresión regular].", + "smw-property-predefined-dtitle": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que puede asignar un título de visualización diferente a una entidad.", + "smw-property-predefined-pvuc": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que restringe las asignaciones de valores para cada instancia a valores únicos.", + "smw-property-predefined-long-pvuc": "La singularidad se establece cuando dos valores no son iguales en su representación literal, cualquier violación de esta restricción se clasifica como errónea.", + "smw-datavalue-constraint-uniqueness-violation": "La propiedad \"$1\" sólo permite que el único valor de las cesiones y \"$2\" ya fue anotado en el \" asunto \"$3\".", + "smw-datavalue-constraint-uniqueness-violation-isknown": "La propiedad \"$1\" sólo permite anotaciones de valores exclusivos. ''$2'' ya contiene un valor asignado. \"$3\" viola la restricción de exclusividad.", + "smw-datavalue-constraint-violation-non-negative-integer": "La propiedad «$1» tiene una restricción de «entero no negativo» y el valor ''$2'' incumple ese requisito.", + "smw-datavalue-constraint-violation-single-value": "La \"[[Property:$1|$1]]\" tiene una restricción valor_singular y el valor \"$2\" está violando este requisito.", + "smw-property-predefined-boo": "«$1» es un [[Special:Types/Boolean|tipo]] y una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para representar valores boleanos.", + "smw-property-predefined-num": "«$1» es un [[Especial:Tipos/Número|tipo]] y propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para representar valores numéricos.", + "smw-property-predefined-dat": "«$1» es un [[Especial:Tipos/Fecha|tipo]] y propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para representar valores de fecha.", + "smw-property-predefined-uri": "«$1» es un [[Special:Types/URL|tipo]] y propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para representar valores URI/URL.", + "smw-property-predefined-qty": "«$1» es una [[Special:Types/Quantity|tipo]] y propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para representar valores de cantidad.", + "smw-datavalue-time-invalid-offset-zone-usage": "«$1» contiene una diferencia y un identificador de huso no admitidos.", + "smw-datavalue-time-invalid-values": "El valor «$1» contiene información que no se puede interpretar en forma de «$2».", + "smw-datavalue-time-invalid-date-components-common": "«$1» contiene alguna información que no se puede interpretar.", + "smw-datavalue-time-invalid-date-components-dash": "«$1» contiene un guión extrínseco u otros caracteres que son inválidos para la interpretación de una fecha.", + "smw-datavalue-time-invalid-date-components-empty": "«$1» contiene algunos componentes vacíos.", + "smw-datavalue-time-invalid-date-components-three": "«$1» contiene más de tres componentes necesarios para la interpretación de una fecha.", + "smw-datavalue-time-invalid-date-components-sequence": "\"$1\" contiene una secuencia que no se ha podido interpretar contra una matriz disponible de correspondencias para componentes de una fecha.", + "smw-datavalue-time-invalid-ampm": "«$1» contiene «$2» como elemento de hora que no es válido en el formato convencional de 12 horas.", + "smw-datavalue-time-invalid-jd": "No se puede interpretar el valor de entrada «$1» como un DJ (día juliano) valido al ser reportado «$2».", + "smw-datavalue-time-invalid-prehistoric": "No se puede interpretar un valor de entrada prehistórico «$1». Por ejemplo, al haber especificado más años o un modelo de calendario que podría devolver resultados inesperados en un contexto prehistórico (anterior al año 10000).", + "smw-datavalue-time-invalid": "No se puede interpretar el valor de entrada «$1» como una fecha o componente temporal valido al ser reportado «$2».", + "smw-datavalue-external-formatter-uri-missing-placeholder": "Falta el marcador de posición «$1» en el URL del formateador.", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\" es una dirección URL no válida.", + "smw-datavalue-external-identifier-formatter-missing": "A la propiedad le falta una asignación de [[Propiedad:URI del formateador externo|«URI del formateador externo»]].", + "smw-datavalue-keyword-maximum-length": "La palabra clave superó la longitud máxima de $1 {{PLURAL:$1|carácter|caracteres}}", + "smw-property-predefined-eid": "«$1» es una [[Special:Types/External identifier|tipo]] y propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para representar identificadores externos.", + "smw-property-predefined-peid": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que especifica un identificador externo.", + "smw-property-predefined-pefu": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para especificar un recurso externo con un marcador de posición.", + "smw-property-predefined-long-pefu": "Se espera que el URI contenga un marcador de posición que se ajustará con un valor de [[Special:Types/External identifier|identificador externo]] para formar una referencia de recurso válida.", + "smw-type-eid": "«$1» es una variante del tipo de dato [[Special:Types/Text/Texto]] que requiere propiedades asignadas para declarar una [[Propiedad:URI del formateador externo|URI del formateador externo]].", + "smw-property-predefined-keyw": "«$1» es una propiedad predefina y un [[Special:Types/Keyword|tipo]], proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que normaliza un texto y tiene una longitud de caracteres restringida.", + "smw-type-keyw": "«$1» es una variante del tipo de dato [[Special:Types/Text|texto]] que tiene una longitud de caracteres restringida y normaliza su representación del contenido.", + "smw-datavalue-stripmarker-parse-error": "El valor aportado «$1» contiene [https://en.wikipedia.org/wiki/Help:Strip_markers ''strip markers''] (marcadores de tira), por lo que no puede ser analizado suficientemente.", + "smw-datavalue-parse-error": "No se comprendió el valor «$1» proporcionado.", + "smw-datavalue-propertylist-invalid-property-key": "La lista de propiedades «$1» contenía una clave de propiedad no válida, «$2».", + "smw-datavalue-type-invalid-typeuri": "No se pudo transformar el tipo «$1» en una representación de URI válida.", + "smw-datavalue-wikipage-missing-fragment-context": "El valor de entrada wikipágina «$1» no puede ser utilizado sin una página de contexto.", + "smw-datavalue-wikipage-invalid-title": "El valor de entrada de tipo página «$1» contiene caracteres inválidos o está incompleto, por lo que puede causar resultados inesperados durante una consulta o proceso de anotación.", + "smw-datavalue-wikipage-property-invalid-title": "La propiedad «$1» (como tipo de página) con el valor de entrada «$2» contiene caracteres inválidos o está incompleto, por lo que puede causar resultados inesperados durante una consulta o proceso de anotación.", + "smw-datavalue-wikipage-empty": "El valor de entrada wikipágina está vacío (p. ej., [[SomeProperty::]], [[]]), por lo que no puede ser utilizado como un nombre o como parte de una condición de consulta.", + "smw-type-ref-rec": "«$1» es un tipo [https://www.semantic-mediawiki.org/wiki/Container contenedor] que permite registrar información adicional (p. ej., el origen de los datos) sobre la asignación de un valor.", + "smw-datavalue-reference-invalid-fields-definition": "El tipo [[Special:Types/Reference|referencia]] espera una lista de propiedades para ser declaradas usando la propiedad [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Tiene campos].", + "smw-parser-invalid-json-format": "El analizador de JSON devolvió «$1».", + "smw-property-preferred-label-language-combination-exists": "No se puede utilizar «$1» como etiqueta preferida porque el idioma «$2» ya se ha asignado a la etiqueta «$3».", + "smw-clipboard-copy-link": "Copiar enlace en el portapapeles", + "smw-property-userdefined-fixedtable": "«$1» fue configurada como una [https://www.semantic-mediawiki.org/wiki/Fixed_properties propiedad fijada] y cualquier modificación de su [https://www.semantic-mediawiki.org/wiki/Type_declaration tipo de declaración] requiere que se ejecute setupStore.php o completar la tarea especial [[Special:SemanticMediaWiki|«Instalación y actualización de la base de datos»]].", + "smw-data-lookup": "Obteniendo datos...", + "smw-data-lookup-with-wait": "La solicitud está procesándose y puede tomar algo de tiempo.", + "smw-no-data-available": "No hay datos disponibles.", + "smw-property-req-violation-missing-fields": "A la propiedad «$1» le faltan detalles de declaración para el tipo «$2» anotado al no definir la propiedad Tiene campos.", + "smw-property-req-violation-missing-formatter-uri": "A la propiedad «$1» le faltan detalles de declaración para el tipo anotado al no definir la propiedad URI del formateador externo.", + "smw-property-req-violation-predefined-type": "La propiedad «$1», como propiedad predefinida, contiene un tipo de declaración «$2» que es incompatible con el tipo predeterminado de esta propiedad.", + "smw-property-req-violation-import-type": "Fue decteado un tipo de declaración que es incompatible con el tipo predefinido del vocabulario importado «$1». En general, no es necesario declarar un tipo porque la información se recupera de la definición de importación.", + "smw-property-req-violation-change-propagation-locked-error": "La propiedad «$1» fue alterada y necesita que las entidades asignadas sean reevaluadas usando un proceso de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagación de cambios]. La página de la propiedad ha sido protegida hasta que la actualización de especificación primaria se haya completado para prevenir interrupciones intermedias o especificaciones contradictorias. El proceso puede tomar un momento antes de que la página pueda ser desprotegida, este dependerá del tamaño y la frecuencia del planificador de la [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cola de trabajo] del planificador.", + "smw-property-req-violation-change-propagation-locked-warning": "La propiedad «$1» fue alterada y necesita que las entidades asignadas sean reevaluadas usando un proceso de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagación de cambios]. La actualización puede tomar un momento que dependerá del tamaño y la frecuencia del planificador de la [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cola de trabajo] del planificador. Se sugiere que se posponga cambios en la propiedad para prevenir interrupciones intermedias o especificaciones contradictorias.", + "smw-property-req-violation-change-propagation-pending": "La actualización de la [https://www.semantic-mediawiki.org/wiki/Change_propagation propagación de cambios] está pendiente ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|trabajo|trabajos}}] {{PLURAL:$1|estimado|estimados}}) y se recomienda esperar a realizar modificaciones a una propiedad hasta que el proceso haya finalizado para prevenir interrupciones intermedias y especificaciones de contradictorias.", + "smw-property-req-violation-missing-maps-extension": "MediaWiki Semántica no fue capaz de detectar la extensión [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"], la cual es un prerequisito para el tipo seleccionado y como consecuencia limita la funcionalidad de esta propiedad.", + "smw-property-req-violation-type": "", + "smw-change-propagation-protection": "Esta página está bloqueada para evitar modificaciones accidentales de los datos durante la ejecución de una actualización de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagación de cambios]. El proceso puede demorar unos momentos antes de que se desbloquee la página, ya que depende del tamaño y de la frecuencia del programador de la [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cola de tareas].", + "smw-category-change-propagation-locked-error": "La categoría «$1» fue alterada y necesita que las entidades asignadas sean reevaluadas usando un proceso de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagación de cambios]. Mientras tanto, la página de la categoría ha sido protegida hasta que se haya completado la actualización de especificación primaria para prevenir interrupciones intermedias o especificaciones contradictorias. El proceso puede tomar un momento antes de que la página pueda ser desprotegida, este dependerá del tamaño y la frecuencia del planificador de la [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cola de trabajo] del planificador.", + "smw-category-change-propagation-locked-warning": "La categoría «$1» fue alterada y necesita que las entidades asignadas sean reevaluadas usando un proceso de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagación de cambios]. La actualización puede tomar un momento que dependerá del tamaño y la frecuencia del planificador de la [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cola de trabajo] del planificador. Se sugiere que se posponga cambios en la propiedad para prevenir interrupciones intermedias o especificaciones contradictorias.", + "smw-category-change-propagation-pending": "Las actualizaciones de la [https://www.semantic-mediawiki.org/wiki/Change_propagation propagación de cambios] están pendientes ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|trabajo|trabajos}}] {{PLURAL:$1|estimado|estimados}}) y se recomienda esperar a realizar modificaciones en la categoría hasta que el proceso haya finalizado para prevenir interrupciones intermedias o especificaciones contradictorias.", + "smw-category-invalid-value-assignment": "\"$1\" no es reconocido como una categoría válida o una anotación válida.", + "protect-level-smw-pageedit": "Permitir únicamente usuarios con el permiso de edición de páginas (Semantic MediaWiki)", + "smw-create-protection": "La creación de la propiedad «$1» está restringida a los usuarios que cuenten con el privilegio (o pertenezcan al [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups grupo de usuarios]) «$2» adecuado, siempre que esté activado el [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoridad].", + "smw-create-protection-exists": "Las modificaciones a la propiedad «$1» están restringidas a los usuarios que cuenten con el privilegio (o pertenezcan al [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups grupo de usuarios]) «$2» adecuado, siempre que esté activado el [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoridad].", + "smw-edit-protection": "Esta página está [[Propiedad:Está protegida de edición|protegida]] para prevenir la modificación accidental de datos y solo puede ser editada por usuarios con los derechos de edición apropiados («$1») o por un [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups grupo de usuarios].", + "smw-edit-protection-disabled": "Se desactivó la protección contra ediciones; por ello, no se puede utilizar «$1» para proteger las páginas de entidades de ediciones no autorizadas.", + "smw-edit-protection-auto-update": "Semantic MediaWiki ha actualizado el estado de protección conforme a la propiedad «Está protegida de edición».", + "smw-edit-protection-enabled": "Edición protegida (Semantic MediaWiki)", + "smw-patternedit-protection": "Esta página está protegida y solo pueden modificarla aquellos usuarios que cuenten con el [https://www.semantic-mediawiki.org/wiki/Help:Permissions permiso] smw-patternedit adecuado.", + "smw-property-predefined-edip": "«$1» es una propiedad predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para señalar si la edición está protegida o no.", + "smw-property-predefined-long-edip": "Aunque cualquier usuario puede añadir esta propiedad a un tema, solo aquellos usuarios que posean un privilegio especializado pueden editar o revocar la protección de una entidad después de haberse añadido esta.", + "smw-query-reference-link-label": "Referencia de consulta", + "smw-format-datatable-emptytable": "No hay datos disponibles en la tabla", + "smw-format-datatable-info": "Se muestran las entradas _START_ a _END_, de _TOTAL_", + "smw-format-datatable-infoempty": "Se muestran de 0 a 0 de 0 entradas", + "smw-format-datatable-infofiltered": "(filtradas de un total de _MAX_ entradas)", + "smw-format-datatable-infothousands": " ", + "smw-format-datatable-lengthmenu": "Mostrar _MENU_ entradas", + "smw-format-datatable-loadingrecords": "Cargando…", + "smw-format-datatable-processing": "Procesando…", + "smw-format-datatable-search": "Buscar:", + "smw-format-datatable-zerorecords": "No se encontró ningún registro que coincidiera", + "smw-format-datatable-first": "Primer", + "smw-format-datatable-last": "Último", + "smw-format-datatable-next": "Siguiente", + "smw-format-datatable-previous": "Anterior", + "smw-format-datatable-sortascending": ": actívalo para ordenar la columna ascendentemente", + "smw-format-datatable-sortdescending": ": actívalo para ordenar la columna descendentemente", + "smw-format-datatable-toolbar-export": "Exportar", + "smw-format-list-other-fields-open": "(", + "smw-category-invalid-redirect-target": "La categoría «$1» contiene un objetivo de redirección no válido a un espacio de nombres que no es de categoría.", + "smw-parser-function-expensive-execution-limit": "La función de análisis ha alcanzado el limite para ejecuciones costosas (véase el parámetro de configuración [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "Semantic MediaWiki está actualizando la página actual siempre y cuando haya consultas que necesiten posprocesamiento.", + "apihelp-smwinfo-summary": "Módulo de la API para recuperar información sobre las estadísticas de Semantic MediaWiki y otros metadatos.", + "apihelp-ask-summary": "Módulo de la API para realizar consultas en Semantic MediaWiki mediante el lenguaje Ask.", + "apihelp-askargs-summary": "Módulo de la API para realizar consultas en Semantic MediaWiki mediante el lenguaje Ask en forma de lista de condiciones, visualizaciones y parámetros.", + "apihelp-browsebyproperty-summary": "Módulo de la API para recuperar información sobre alguna propiedad o lista de propiedades.", + "apihelp-browsebysubject-summary": "Módulo de la API para recuperar información sobre algún tema.", + "apihelp-smwtask-summary": "Módulo de la API para ejecutar tareas relacionadas con Semantic MediaWiki (para uso interno solamente, no apto para uso público).", + "apihelp-smwbrowse-summary": "Módulo API para añadir compatibilidad con las actividades de exploración en diferentes tipos de entidades de Semantic MediaWiki.", + "apihelp-ask-parameter-api-version": "Formato de salida:\n;2:Formato compatible con el formato antiguo utilizando {} en la lista de resultados.\n;3:Formato experimental utilizando [] en la lista de resultados.", + "smw-api-invalid-parameters": "Parámetros no válidos: \"$1\"", + "smw-parser-recursion-level-exceeded": "Se ha excedido el límite de $1 recursiones durante el análisis. Se sugiere validar la estructura de la plantilla o, de ser preciso, ajustar el parámetro $maxRecursionDepth.", + "smw-property-page-list-count": "Se {{PLURAL:$1|muestra $1 página que utiliza|muestran $1 páginas que utilizan}} esta propiedad.", + "smw-property-page-list-search-count": "Se {{PLURAL:$1|muestra $1 página que utiliza|muestran $1 páginas que utilizan}} esta propiedad con una correspondencia de valor «$2».", + "smw-property-reserved-category": "Categoría", + "smw-category": "Categoría", + "smw-datavalue-uri-invalid-scheme": "No se incluyó «$1» en los esquemas de URI válidos.", + "smw-browse-property-group-title": "Grupo de propiedades", + "smw-browse-property-group-label": "Etiqueta de grupo de propiedades", + "smw-browse-property-group-description": "Descripción de grupo de propiedades", + "smw-property-predefined-ppgr": "«$1» es una propiedad predefinida, provista por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que identifica entidades (principalmente categorías) empleadas como instancias de agrupamiento para las propiedades.", + "smw-filter": "Filtro", + "smw-section-expand": "Expandir la sección", + "smw-section-collapse": "Contraer la sección", + "smw-ask-format-help-link": "Formato [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Ayuda", + "smw-cheat-sheet": "Hoja de referencia", + "smw-personal-jobqueue-watchlist": "Lista de seguimiento (cola de tareas)", + "smw-property-predefined-label-skey": "Clave de ordenación", + "smw-processing": "Procesando…", + "smw-loading": "Cargando...", + "smw-preparing": "Preparando...", + "smw-expand": "Expandir", + "smw-collapse": "Contraer", + "smw-copy": "Copiar", + "smw-jsonview-search-label": "Buscar:", + "smw-redirect-target-unresolvable": "El destino es irresoluble por el motivo «$1»", + "smw-types-title": "Tipo: $1", + "smw-schema-error-title": "{{PLURAL:$1|Error|Errores}} de validación", + "smw-schema-error-validation-json-validator-inaccessible": "No se puede acceder a (o no se ha instalado) el validador de JSON «$1»; este es el motivo por el cual no puede examinarse el archivo «$2», lo cual no permite guardar ni modificar la página actual.", + "smw-schema-summary-title": "Resumen", + "smw-schema-type": "Tipo de esquema", + "smw-schema-type-description": "Descripción del tipo", + "smw-schema-description": "Descripción del esquema", + "smw-schema-description-property-profile-schema": "Este tipo de esquema soporta la definición de un perfil para declarar características a la propiedad asignada y sus valores de anotación.", + "smw-ask-title-keyword-type": "Búsqueda de palabras clave", + "smw-ask-message-keyword-type": "Esta búsqueda coincide con la condición $1.", + "smw-remote-source-unavailable": "No se puede conectar con el destino remoto «$1».", + "smw-remote-source-disabled": "El origen '''$1''' ha desactivado las solicitudes remotas.", + "smw-remote-source-unmatched-id": "La fuente '''$1''' no concuerda con la versión de MediaWiki Semántica que soporta solicitudes remotas.", + "smw-remote-request-note": "El resultado se recupera a partir del origen remoto '''$1'''. Es probable que el contenido generado contenga información no disponible en la wiki actual.", + "smw-remote-request-note-cached": "El resultado se '''almacena temporalmente''' a partir del origen remoto '''$1'''. Es probable que el contenido generado contenga información no disponible en la wiki actual.", + "smw-parameter-missing": "Falta el parámetro \"$1\".", + "smw-property-tab-usage": "Uso", + "smw-property-tab-redirects": "Sinónimos", + "smw-property-tab-subproperties": "Subpropiedades", + "smw-property-tab-errors": "Asignaciones incorrectas", + "smw-property-tab-constraint-schema": "Esquema de restricción", + "smw-property-tab-specification": "... más", + "smw-concept-tab-list": "Lista", + "smw-concept-tab-errors": "Errores", + "smw-ask-tab-result": "Resultado", + "smw-ask-tab-extra": "Extras", + "smw-ask-tab-debug": "Depuración", + "smw-ask-tab-code": "Código", + "smw-pendingtasks-setup-tasks": "Tareas", + "smw-legend": "Leyenda", + "smw-entity-examiner-deferred-constraint-error": "Restricción", + "smw-entity-examiner-associated-revision-mismatch": "Revisión", + "smw-indicator-constraint-violation": "{{PLURAL:$1|Restricción|Restricciones}}", + "smw-search-placeholder": "Buscar...", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "Abajo se muestran {{PLURAL:$1|1 resultado|hasta $1 resultados}} comenzando con el n.º $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/et.json b/mediawiki/extensions/SemanticMediaWiki/i18n/et.json new file mode 100644 index 0000000..80b7ee7 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/et.json @@ -0,0 +1,54 @@ +{ + "@metadata": { + "authors": [ + "Avjoska", + "Pikne", + "Roland" + ] + }, + "smw_viewasrdf": "RDF-voog", + "smw_finallistconjunct": " ja", + "smw_isspecprop": "See omadus on selles vikis eriomadus.", + "smw_concept_description": "Mõiste \"$1\" kirjeldus", + "version-semantic": "Semantilised lisad", + "smw_printername_list": "Loend", + "smw_printername_table": "Tabel", + "smw_printername_template": "Mall", + "smw_printername_category": "Kategooria", + "validator-type-class-SMWParamSource": "tekst", + "smw-paramdesc-link": "Näita väärtuseid linkidena", + "smw-paramdesc-embedonly": "Näita ilma pealkirjadeta", + "smw-paramdesc-feedtype": "Vootüüp", + "smw-label-feed-description": "$2-voog: $1", + "smw_iq_disabled": "Semantilised päringud on siin vikis keelatud.", + "smw_iq_moreresults": "... rohkem tulemusi", + "smw_parseerror": "Sisestatud väärtusest ei saadud aru.", + "smw_notitle": "Väärtust \"$1\" ei saa siin vikis lehekülje pealkirjana kasutada.", + "smw_emptystring": "Tühjad sõned ei sobi.", + "smw_true_words": "tõene,t,jah,j", + "smw_false_words": "väär,v,ei,e", + "smw_nofloat": "\"$1\" pole number.", + "smw-categories": "Kategooriad", + "smw_purge": "Värskenda", + "smw_types_docu": "[https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes Saada olevate andmetüüpide] loend, kus igale [https://www.semantic-mediawiki.org/wiki/Help:Datatype tüübile] vastab kordumatu komplekt atribuute. Omistatud omadus pärib mõne komplekti, mis kirjeldab väärtuse talletus- ja kuvakarakteristikuid.", + "smw-special-types-no-such-type": "\"$1\" on tundmatu või seda pole määratud kehtivaks andmetüübiks.", + "smw-statistics": "Semantilised arvandmed", + "smw-statistics-property-instance": "Omaduse {{PLURAL:$1|väärtus|väärtusi}} (kokku)", + "smw-ask-delete": "Eemalda", + "smw_sbv_submit": "Otsi tulemusi", + "browse": "Viki sirvimine", + "smw_browse_go": "Mine", + "smw_pp_type": "Omadus:", + "smw_result_prev": "Eelmised", + "smw_result_next": "Järgmised", + "smw_smwadmin_datarefreshstopconfirm": "Jah, olen {{GENDER:$1|kindel}}.", + "smw-createproperty-isproperty": "Selle omaduse tüüp on $1.", + "smw-ui-tooltip-title-property": "Omadus", + "smw-ui-tooltip-title-warning": "Hoiatus", + "smw-ui-tooltip-title-event": "Sündmus", + "smw_unknowntype": "Selle omaduse tüüp \"$1\" on vigane.", + "smw-property-predefined-default": "\"$1\" on eelmääratletud omadus tüübiga $2.", + "smw-livepreview-loading": "Laadimine...", + "smw-listingcontinuesabbrev": "jätk", + "smw-showingresults": "Allpool näidatakse '''{{PLURAL:$1|ühte|$1}}''' tulemust alates '''$2'''. tulemusest." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/eu.json b/mediawiki/extensions/SemanticMediaWiki/i18n/eu.json new file mode 100644 index 0000000..fac8901 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/eu.json @@ -0,0 +1,327 @@ +{ + "@metadata": { + "authors": [ + "Amaia", + "An13sa", + "Atzerritik", + "EukeneFL", + "Fitoschido", + "Joseba", + "Kobazulo", + "McDutchie", + "Mikel Ibaiba", + "Sator", + "Subi", + "Theklan", + "Xabier Armendaritz", + "පසිඳු කාවින්ද" + ] + }, + "smw-semantics-not-enabled": "MediaWiki Semantikoaren funtzionalitatea ez da wiki honetarako gaitu.", + "smw_viewasrdf": "RDF jarioa", + "smw_finallistconjunct": ", eta", + "smw-factbox-head": "... \"$1\"-ren inguruko gehiago", + "smw-factbox-facts": "Gertaerak", + "smw-factbox-facts-help": "Erabiltzaile batek sortutako adierazpen eta ekintzak erakusten ditu.", + "smw-factbox-facts-derived": "Ondoriozko gertaerak", + "smw-factbox-facts-derived-help": "Arau batetik edo beste arrazoimen teknika baten laguntzaz eratorritako ekintzak erakusten ditu.", + "smw_isspecprop": "Propietate hau wiki honetan propietate berezia da.", + "smw-concept-cache-header": "Katxearen erabilera", + "smw-concept-no-cache": "Ez dago katxerik.", + "smw_concept_description": "\"$1\" kontzeptuaren deskribapena", + "smw_multiple_concepts": "Kontzeptu orri bakoitzak kontzeptu definizio bat bakarrik izan dezake.", + "smw_concept_cache_miss": "\"$1\" kontzeptua ezin da momentu honetan erabili, wiki ezarpenek konexiorik gabe konputatzea eskatzen dutelako. \nDenbora pasa ahala arazoak badiau, eskatu zure guneko administratzaileari kontzeptu hau erabilgarri jartzeko.", + "smw_noinvannot": "Balioak ezin dira alderantzizko propietateetara egokitu.", + "version-semantic": "Luzapen semantikoak", + "smw_baduri": "\"$1\" formako URIak ez daude onartuak.", + "smw_printername_count": "Emaitzak zenbatu", + "smw_printername_csv": "CSV esportatu", + "smw_printername_dsv": "DSV esportatu", + "smw_printername_debug": "Araztu eskaera (adituentzat)", + "smw_printername_embedded": "Txertatu orriaren edukia", + "smw_printername_json": "JSON esportatu", + "smw_printername_list": "Zerrenda", + "smw_printername_plainlist": "Zerrenda laua", + "smw_printername_ol": "Zerrenda", + "smw_printername_table": "Taula", + "smw_printername_broadtable": "Taula zabala", + "smw_printername_template": "Txantiloia", + "smw_printername_templatefile": "Txantiloi fitxategia", + "smw_printername_rdf": "RDF esportatu", + "smw_printername_category": "Kategoria", + "validator-type-class-SMWParamSource": "testua", + "smw-paramdesc-limit": "Bueltatzeko gehienezko emaitza kopurua.", + "smw-paramdesc-headers": "Erakutsi goiburu/propietate izenak", + "smw-paramdesc-link": "Balioak link moduan erakutsi", + "smw-paramdesc-intro": "Eskaera emaitzen aurretik erakusteko testua, baldin balego", + "smw-paramdesc-outro": "Eskaera emaitzen ondoren erakusteko testua, baldin balego", + "smw-paramdesc-default": "Eskaerak emaitzik ez izatekotan erakusteko testua", + "smw-paramdesc-sep": "Balioen arteko banaketa", + "smw-paramdesc-valuesep": "Emaitza baten propietate baten balioen arteko banatzailea.", + "smw-paramdesc-distributionlimit": "Balio distribuzioa balio batzuen zenbaketara mugatu.", + "smw-paramdesc-columns": "Emaitzak zenbat zutabetan erakutsi", + "smw-paramdesc-embedonly": "Goibururik ez erakutsi", + "smw-paramdesc-rdfsyntax": "Erabiltzeko RDF sintaxia", + "smw-paramdesc-csv-sep": "Zutabe bereizle bat zehazten du", + "smw-paramdesc-csv-valuesep": "Balio bereizle bat zehazten du", + "smw-paramdesc-dsv-separator": "Erabiliko den banaketa", + "smw-paramdesc-dsv-filename": "DSV fitxategirako izena", + "smw-paramdesc-filename": "Irtengo den fitxategirako izena", + "smw-paramdesc-sort": "Eskaera ordenatzeko erabili egingo den jabetza", + "smw-paramdesc-searchlabel": "Bilaketa jarraitzeko testua", + "smw-paramdesc-named_args": "Izendatu txantiloira pasatutako argudioak", + "smw-paramdesc-template-arguments": "Izendatutako argumentuak txantiloiara nola igarotzen diren ezartzen du", + "smw-paramdesc-export": "Esportatze aukera", + "smw-paramdesc-json-type": "Serializazio mota", + "smw-paramdesc-source": "Eskaera iturri alternatiboa", + "smw-paramdesc-jsonsyntax": "Erabiliko den JSON sintaxia", + "smw-printername-feed": "RSS eta Atom feed", + "smw-paramdesc-feedtype": "Feed mota", + "smw_iq_disabled": "Eskaera semantikoak desgaitu egin dira wiki honetarako.", + "smw_iq_moreresults": "... emaitza gehiago", + "smw_parseerror": "Emandako balioa ez da ulertu.", + "smw_notitle": "Wiki honetan, «$1» ezin da orri izentzat erabili.", + "smw_noproperty": "Wiki honetan \"$1\" ezin da erabili propietate izen gisa.", + "smw_wrong_namespace": "Hemen orriak \"$1\" izen-eremuan soilik onartzen dira.", + "smw_manytypes": "Propietaterako definitutako mota bat baino gehiago.", + "smw_emptystring": "Hutsik dauden kateak ez dira onartzen.", + "smw_true_words": "egia,e,bai,b", + "smw_false_words": "gezurra,g,ez,e", + "smw_nofloat": "\"$1\" ez da zenbakia.", + "smw_infinite": "\"$1\" bezain zenbaki handiak ez dira onartzen.", + "smw_unitnotallowed": "«$1» ez dago baliozko neurri unitatetzat izendatuta propietate honetarako.", + "smw_nounitsdeclared": "Neurketa unitaterik ez da deklaratu jabetza honetarako.", + "smw_novalues": "Ez da baliorik zehaztu.", + "smw_nodatetime": "$1 data ez da ulertu.", + "smw_misplacedsubquery": "Azpi-eskaeraren bat onartzen ez diren leku batean erabilia izan da.", + "smw_type_header": "$1 motatako propietateak", + "smw_typearticlecount": "{{PLURAL:$1|Propietate $1|$1 propietate}} mota hau darabiltenak erakusten.", + "smw_attribute_header": "\"$1\" protietatea erabiltzen ari diren orriak", + "smw_attributearticlecount": "Propietate hau {{PLURAL:$1|darabilen orri $1|darabilten $1 orri}} erakusten.", + "smw-propertylist-subproperty-header": "Azpipropietateak", + "smw-propertylist-redirect-header": "Sinonimoak", + "smw-propertylist-error-header": "Eleipen desegokia duten orrialdeak", + "smw-propertylist-count": "$1 erakusten {{PLURAL:$1|entity|entities}}rekin erlazionatuta.", + "smw-propertylist-count-with-restricted-note": "$1 erakusten {{PLURAL:$1|entity|entities}}rekin erlazionatuta (gehiago daude baina erakusketa \"$2\"ra murriztuta dago).", + "smw-propertylist-count-more-available": "$1 erakusten {{PLURAL:$1|entity|entities}}rekin erlazionatuta (erabilgarri gehiago).", + "exportrdf": "Orriak RDFra esportatu", + "smw_exportrdf_docu": "Orri honek RDF formatuan dauden datuak eskuratzen usten dizu. Orriak esportatzeko, idatzi izenburuan beheko testu-koadroan, izenburu bat lerro bakoitzeko.", + "smw_exportrdf_backlinks": "Esportatutako orriari erreferentzia egiten dioten orri guztiak ere esportatu. Bertan nabiga daitekeen RDFa sortzen du.", + "smw_exportrdf_lastdate": "Ez esportatu zehaztutako epearen ondoren aldatu ez diren orriak.", + "smw_exportrdf_submit": "Esportatu", + "uriresolver": "URIKonpontzailea", + "properties": "Propietateak", + "smw-categories": "Kategoriak", + "smw_properties_docu": "Hurrengo propietateak wikian erabiltzen dira.", + "smw_propertylackspage": "Propietate guztiak orri batek deskribatutakoak izan beharko lukete!", + "smw_propertylackstype": "Ez da motarik zehaztu propietate honetarako (oraingoz $1 mota onartuta).", + "smw_propertyhardlyused": "Propietate hau gutxi erabiltzen da wiki barruan!", + "smw-property-name-invalid": "Ezin da $1 propietatea erabili (propietate izen baliogabea).", + "smw-property-name-reserved": "«$1» zerrendatuta dago izen erreserbatutzat. Beraz, ez litzateke propietate izentzat erabili beharko. Baliteke [https://www.semantic-mediawiki.org/wiki/Help:Property_naming laguntza orrian] izen hau zergatik erreserbatu den azalduta egotea.", + "smw-sp-property-searchform": "Hurrengoa daramaten propietateak aurkeztu:", + "smw-special-property-searchform": "Hurrengoa daramaten propietateak aurkeztu:", + "smw-special-property-searchform-options": "Aukerak", + "smw-special-wantedproperties-filter-label": "Iragazkia:", + "smw-special-wantedproperties-filter-none": "Ezer ez", + "smw-special-wantedproperties-filter-unapproved": "Ezetsia", + "concepts": "Kontzeptuak", + "smw-special-concept-header": "Kontzeptu-zerrenda", + "smw-special-concept-count": "Ondorengo {{PLURAL:$1|kontzeptua zerrendatzen da|$1 kontzeptuak zerrendatzen dira}}.", + "smw-special-concept-empty": "Ez da kontzepturik aurkitu.", + "unusedproperties": "Erabili gabeko propietateak", + "smw-unusedproperty-template": "$2 motatako $1", + "wantedproperties": "Eskatutako propietateak", + "smw-wantedproperty-template": "$1 ({{PLURAL:$2|behin|$2 aldiz}} erabilia)", + "smw-special-wantedproperties-template": "$1 ({{PLURAL:$2|behin|$2 aldiz}} erabilia)", + "smw_purge": "Eguneratu", + "smw-purge-failed": "Freskatzeak kale egin du", + "types": "Motak", + "smw-special-types-no-such-type": "Zehaztutako data mota ez da existitzen", + "smw-statistics": "Estatistika semantikoak", + "smw-statistics-property-instance": "Propietate {{PLURAL:$1|balioa|balioak}} (guztira)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Propietatea|Propietateak}}]] (guztira)", + "smw-statistics-query-size": "Kontsultaren tamaina", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Kontzeptua|Kontzeptuak}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Kontzeptua|Kontzeptuak}}]]", + "smw-statistics-datatype-count": "[[Special:Motak|{{PLURAL:$1|Datu mota|Datu motak}}]]", + "ask": "Bilaketa semantikoa", + "smw_ask_sortby": "Zutabeka sailkatu (hautazkoa)", + "smw_ask_ascorder": "Gorantz", + "smw_ask_descorder": "Beherantz", + "smw-ask-order-rand": "Ausazkoa", + "smw_ask_submit": "Emaitzak bilatu", + "smw_ask_editquery": "Kontsulta aldatu", + "smw_add_sortcondition": "[Gehitu sailkapen baldintza]", + "smw-ask-sort-add-action": "Gehitu sailkapen baldintza", + "smw_ask_hidequery": "Ezkutuko eskaera", + "smw_ask_help": "Laguntza eskatuz", + "smw_ask_queryhead": "Baldintza", + "smw_ask_printhead": "Hautapena inprimatu", + "smw_ask_printdesc": "(gehitu propietate izen bat lerro bakoitzeko)", + "smw_ask_format_as": "Formatua honela:", + "smw_ask_defaultformat": "lehenetsia", + "smw_ask_otheroptions": "Beste aukerak", + "smw-ask-otheroptions-info": "Sekzio honek inprimatze formatuak aldatzen dituzten aukerak ditu. Parametroen deskribapenak arratoria gainetik igarota ikus daitezke.", + "smw-ask-otheroptions-collapsed-info": "Mesedez, erabili gehi ikurra eskuragarri dauden aukera guztiak ikusteko", + "smw-ask-delete": "Kendu", + "smw-ask-sorting": "Sailkapena", + "smw-ask-options": "Aukerak", + "smw-ask-options-sort": "Sailkapen aukerak", + "smw-ask-format-options": "Formatua eta aukerak", + "smw-ask-parameters": "Parametroak", + "smw-ask-search": "Bilatu", + "smw-ask-no-cache": "Cache-rik ez", + "smw-ask-no-cache-desc": "Eskaera cacherik gabeko emaitzak", + "smw-ask-result": "Emaitza", + "smw-ask-empty": "Sarrera guztiak ezabatu", + "smw-ask-format": "Formatua", + "smw-ask-format-selection-help": "Lagundu hautatutako formatuarekin: $1", + "smw-ask-condition-input-assistance-property": "p: propietate bilaketa", + "smw-ask-condition-input-assistance-category": "c: kategoria bilaketa bat aktibatzeko", + "smw-ask-condition-input-assistance-concept": "con: kontzeptu bilaketa bay aktibatzeko", + "smw-ask-format-change-info": "Formatua aldatua izan da eta eskaera berriro exekutatu beharra dago parametro berri eta bistaratze aukera berriekin bat egiteko.", + "searchbyproperty": "Propietateen arabera bilatu", + "processingerrorlist": "Akats zerrenda prozesatzen", + "smw_sbv_property": "Propietatea:", + "smw_sbv_value": "Balioa:", + "smw_sbv_submit": "Emaitzak bilatu", + "browse": "Arakatu wikia", + "smw_browselink": "Propietateak arakatu", + "smw_browse_article": "Arakatzen hasiko den orriaren izena sartu.", + "smw_browse_go": "Joan", + "smw_browse_show_incoming": "Sarrera propietateak erakutsi", + "smw_browse_hide_incoming": "Sarrerako propietateak ezkutatu", + "smw_browse_no_outgoing": "Orrialde honek ez du propietaterik.", + "smw_browse_no_incoming": "Horri honetara propietaterik ez da linkatzen.", + "smw-browse-show-group": "Taldeak erakutsi", + "smw-browse-hide-group": "Taldeak ezkutatu", + "smw_inverse_label_default": "$1ren", + "pageproperty": "Orri propietate bilaketa", + "smw_pp_from": "Orritik:", + "smw_pp_type": "Propietatea:", + "smw_pp_submit": "Emaitzak bilatu", + "smw_result_prev": "Aurrekoa", + "smw_result_next": "Hurrengoa", + "smw_result_results": "Emaitzak", + "smw_result_noresults": "Ez dago emaitzarik.", + "smwadmin": "Funtzio administratiboak", + "smw-admin-statistics-job-title": "Lan estatistikak", + "smw-admin-statistics-querycache-title": "Kontsulta \"cache\" estatistikak", + "smw_smwadmin_return": "$1-(e)ra itzuli", + "smw-admin-announce": "Zure wikia iragarri", + "smw-admin-deprecation-notice-title-notice": "Datozten aldaketak", + "smw-admin-deprecation-notice-title-replacement": "Ordeztutako edo berriro izendatutako aukerak", + "smw-admin-deprecation-notice-title-removal": "Kendutako ezarpenak", + "smw-admin-deprecation-notice-title-removal-explanation": "Aukera hauek ezabatuak izan ziren aurreko bertsioren batean, baina wiki honetan oraindik erabiltzen dira detektatu da.", + "smw-smwadmin-refresh-title": "Datuen konponketa eta eguneraketa", + "smw_smwadmin_datarefreshdocu": "Semantic MediaWiki-ko datuak berreskuratzeko aukera dago wikiaren oraingo edukian oinarrituta.\nHau erabilgarria izan daiteke arazoak dituzten datuak konpontzeko edo datuak freskatzeko, softwarearen eguneraketaren baten ondorioz barneko formatua aldatu bada.\nEguneraketa orriz orri exekutatzen da eta ez da berealakoan burutuko.\nOndokoak, eguneraketaren bat abian dagoen erakusten du eta eguneraketak abiaraztea eta gelditzea ahalbidetzen dizu (administratzaileak ezaugarri hau desgaitu ez badu behintzat).", + "smw_smwadmin_datarefreshbutton": "Datuak eguneratzen hasi", + "smw_smwadmin_datarefreshstop": "Igoera hau eten", + "smw_smwadmin_datarefreshstopconfirm": "Bai, {{GENDER:$1|ziur}} nago.", + "smw-admin-outdateddisposal-title": "Zaharkitutako entitateen ezabaketa", + "smw-admin-outdateddisposal-active": "Zaharkitutako entitateen ezabaketa lana programatua izan da.", + "smw-admin-outdateddisposal-button": "Ezabatze bat programatu", + "smw-admin-propertystatistics-title": "Propietatearen estatistikak berreraiki", + "smw-admin-propertystatistics-active": "Propietatearen estatistiken berreraiketa lan bat programatua izan da.", + "smw-admin-propertystatistics-button": "Estatistika berreraiketa programatu", + "smw-admin-support": "Laguntza eskatu", + "smw-admin-supportdocu": "Baliabide batzuk eskaintzen dira arazoak izatekotan zuri laguntzeko:", + "smw-admin-other-functions": "Beste funtzio batzuk", + "smw-admin-supplementary-section-title": "Funtzio osagarriak", + "smw-admin-supplementary-section-subtitle": "Erabilgarri dauden funtzioak", + "smw-admin-supplementary-section-intro": "Zerrendatutako funtzio batzuk mugatuak egon daitezke sekzio honetan eta beraz, ez daude eskuragarri wiki honetan.", + "smw-admin-supplementary-settings-title": "Konfigurazioa eta ezarpenak", + "smw-admin-supplementary-operational-statistics-title": "Estatistika operatiboak", + "smw-admin-supplementary-idlookup-title": "Entitate bilaketa eta ezabaketa", + "smw-admin-supplementary-duplookup-title": "Entitateak bikoiztu", + "smw-admin-supplementary-operational-statistics-cache-title": "Cachearen estatistikak", + "smw-admin-supplementary-elastic-title": "Elasticsearch (Bilaketa elastikoa)", + "smw-admin-supplementary-elastic-functions": "Erabilgarri dauden funtzioak", + "smw-admin-supplementary-elastic-settings-title": "Ezarpenak", + "smw-admin-supplementary-elastic-nodes-title": "Nodoak", + "smw-admin-supplementary-elastic-indices-title": "Indizeak", + "smw-admin-supplementary-elastic-statistics-title": "Estatistikak", + "smw-property-label-similarity-type": "ID mota erakutsi", + "smw-property-label-similarity-noresult": "Ez da emaitzarik aurkitu hautatutako aukerarentzat.", + "smw_adminlinks_datastructure": "Datuen egitura", + "smw_adminlinks_displayingdata": "Datu erakusketa", + "smw-paramdesc-category-delim": "Mugatzailea", + "smw-paramdesc-category-template": "Elementuei formatua emateko txantiloi bat", + "smw-paramdesc-category-userparam": "Txantiloira pasatzeko parametro bat", + "smw-info-par-message": "Erakusteko mezua.", + "prefs-smw": "MediaWiki semantikoa", + "prefs-general-options": "Aukera orokorrak", + "prefs-ask-options": "Special:Ask aukerak", + "smw-prefs-general-options-disable-editpage-info": "Ezgaitu orrialde informazioa", + "smw-ui-tooltip-title-property": "Propietatea", + "smw-ui-tooltip-title-quantity": "Unitate bihurketa", + "smw-ui-tooltip-title-info": "Informazioa", + "smw-ui-tooltip-title-service": "Zerbitzu linkak", + "smw-ui-tooltip-title-warning": "Abisua", + "smw-ui-tooltip-title-error": "Errorea", + "smw-ui-tooltip-title-parameter": "Parametroa", + "smw-ui-tooltip-title-event": "Gertaera", + "smw-ui-tooltip-title-note": "Oharra", + "smw-ui-tooltip-title-legend": "Azalpena", + "smw-ui-tooltip-title-reference": "Erreferentzia", + "smw_unknowntype": "Propietate honen mota ez du balio", + "smw_concept_header": "\"$1\" kontzeptuko orriak", + "restriction-level-smw-pageedit": "babestua (hautagaiak diren erabiltzaileak soilik)", + "group-smwadministrator": "Administratzaileak (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|administratzaile (Semantic MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:Administratzaileak (Semantic MediaWiki)", + "group-smwcurator": "Komisarioak (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|komisario (Semantic MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:Komisarioak (Semantic MediaWiki)", + "smw-property-predefined-default": "\"$1\" lehenestutako propietatea da.", + "smw-sp-properties-header-label": "Propietate zerrenda", + "smw-sp-admin-settings-button": "Ezarpen zerrenda sortu", + "smw-admin-idlookup-docu": "Atal honetan, banako entitate bati buruzko xehetasun teknikoak (wikipagea, azpigaiak, propietatea eta abar) erakusten ditu Semantic MediaWiki-n. Sarrerak aukera ematen du IDa edo kate bat hautatzeko eremuarekin bat etortzeko. Kontutan izan ID erreferentzia bat ez dela MediaWiki orri edo berrikuspen ID batekin nahastu behar.", + "smw-admin-iddispose-title": "ID eskuratzea", + "smw-admin-idlookup-input": "Bilatu:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Ikuspegi orokorra", + "smw-admin-tab-supplement": "Funtzio osagarriak", + "smw-admin-tab-registry": "Erregistroa", + "smw-livepreview-loading": "Kargatzen…", + "smw-sp-searchbyproperty-resultlist-header": "Emaitzen zerrenda", + "smw-search-input": "Sarrera eta bilaketa", + "smw-search-syntax": "Sintaxia", + "smw-search-profile": "Hedatua", + "smw-search-profile-tooltip": "Bilatu funtzioak Semantic MediaWiki-rekin konexioan", + "log-name-smw": "MediaWiki sarrera semantikoa", + "smw-datavalue-invalid-number": "«$1» ezin da zenbakitzat interpretatu.", + "smw-types-list": "Datu-moten zerrenda", + "smw-limitreport-intext-parsertime-value": "{{PLURAL:$1|segundo bat|$1 segundo}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|segundu bat|$1 segundu}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "{{PLURAL:$1|segundo bat|$1 segundo}}", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\" baliogabeko URLa da.", + "smw-datavalue-parse-error": "Emandako \"$1\" balioa ez da ulertu.", + "smw-data-lookup-with-wait": "Eskaera abian dago eta apur bat luza daiteke.", + "smw-no-data-available": "Data ez dago eskuragarri.", + "smw-property-req-violation-change-propagation-pending": "[https://www.semantic-mediawiki.org/wiki/Change_propagation Change propagation] eguneratzearen zain ($1 [https://www.mediawiki.org/wiki/Manual:Job_queue {{PLURAL:$1|job|jobs}}] espero da) eta gomendagarria da aldaketei itxarotea prozesu osoa amaitu arte, modu honetan geldialdiak saihestuko dira edo nahi ez diren emaitzak.", + "smw-query-reference-link-label": "Kontsulta erreferentzia", + "smw-format-datatable-emptytable": "Ez dago daturik eskuragarri taulan", + "smw-format-datatable-info": "_START_ to _END_ of _TOTAL_ sarrerak erakusten", + "smw-format-datatable-lengthmenu": "_MENU_ sarrerak erakutsi", + "smw-format-datatable-loadingrecords": "Kargatzen...", + "smw-format-datatable-processing": "Prozesatzen...", + "smw-format-datatable-search": "Bilatu:", + "smw-format-datatable-first": "Lehena", + "smw-format-datatable-last": "Azkena", + "smw-format-datatable-next": "Hurrengoa", + "smw-format-datatable-previous": "Aurrekoa", + "smw-format-datatable-toolbar-export": "Esportatu", + "smw-property-reserved-category": "Kategoria", + "smw-category": "Kategoria", + "smw-browse-property-group-title": "Propietate taldea", + "smw-browse-property-group-label": "Talde propietate etiketa", + "smw-browse-property-group-description": "Propietate talde deskripzioa", + "smw-section-expand": "Zabaldu atala", + "smw-section-collapse": "Atala kolapsatu", + "smw-ask-format-help-link": "[https://www.semantic-mediawiki.org/wiki/Help:$1_format $1] formatua", + "smw-help": "Laguntza", + "smw-processing": "Prozesatzen...", + "smw-listingcontinuesabbrev": "jarr.", + "smw-showingresults": "Jarraian {{PLURAL:$1|emaitza bat ageri da.|$1 emaitza ageri dira, #'''$2'''.etik hasita.}}" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ext.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ext.json new file mode 100644 index 0000000..3ce9aff --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ext.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Better" + ] + }, + "smw-categories": "Categorias", + "smw-livepreview-loading": "Cargandu…", + "smw-listingcontinuesabbrev": "acont.", + "smw-showingresults": "Embahu se {{PLURAL:$1|muestra '''1''' resurtau qu'esmiença|muestran hata '''$1''' resurtaus qu'esmiençan}} pol #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/SemanticMediaWiki.alias.php b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/SemanticMediaWiki.alias.php new file mode 100644 index 0000000..93b0df9 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/SemanticMediaWiki.alias.php @@ -0,0 +1,847 @@ + [ 'Ask' ], + 'Browse' => [ 'Browse' ], + 'ExportRDF' => [ 'ExportRDF' ], + 'PageProperty' => [ 'PageProperty' ], + 'Properties' => [ 'Properties' ], + 'Concepts' => [ 'Concepts' ], + 'SMWAdmin' => [ 'SemanticMediaWiki', 'SMWAdmin' ], + 'PendingTaskList' => [ 'PendingTaskList' ], + 'SearchByProperty' => [ 'SearchByProperty' ], + 'ProcessingErrorList' => [ 'ProcessingErrorList' ], + 'ConstraintErrorList' => [ 'ConstraintErrorList' ], + 'PropertyLabelSimilarity' => [ 'PropertyLabelSimilarity' ], + 'MissingRedirectAnnotations' => [ 'MissingRedirectAnnotations' ], + 'Types' => [ 'Types' ], + 'URIResolver' => [ 'URIResolver' ], + 'UnusedProperties' => [ 'UnusedProperties' ], + 'WantedProperties' => [ 'WantedProperties' ], + 'FacetedSearch' => [ 'FacetedSearch' ], +]; + +/** Afrikaans (Afrikaans) */ +$specialPageAliases['af'] = [ + 'Ask' => [ 'Vra' ], + 'Properties' => [ 'Eienskappe' ], + 'Concepts' => [ 'Konsepte' ], + 'Types' => [ 'Tipes' ], +]; + +/** Arabic (العربية) */ +$specialPageAliases['ar'] = [ + 'Ask' => [ 'سؤال' ], + 'Browse' => [ 'تصفح' ], + 'ExportRDF' => [ 'تصدير_RDF' ], + 'PageProperty' => [ 'صفحة_خصيصة' ], + 'Properties' => [ 'خصائص' ], + 'Concepts' => [ 'مفاهيم' ], + 'SMWAdmin' => [ 'إدارة_سمو', 'إدارة_ميدياويكي_دلالية' ], + 'SearchByProperty' => [ 'بحث_بالخصيصة' ], + 'Types' => [ 'أنواع' ], + 'URIResolver' => [ 'حال_URI' ], + 'UnusedProperties' => [ 'خصائص_غير_مستخدمة' ], + 'WantedProperties' => [ 'خصائص_مطلوبة' ], +]; + +/** Aramaic (ܐܪܡܝܐ) */ +$specialPageAliases['arc'] = [ + 'Ask' => [ 'ܫܐܠ' ], + 'Browse' => [ 'ܦܐܬ' ], + 'PageProperty' => [ 'ܦܐܬܐ_ܕܕܝܠܝܘ̈ܬܐ' ], + 'Properties' => [ 'ܕܝܠܝܘܬ̈ܐ' ], + 'SearchByProperty' => [ 'ܒܨܝ_ܒܝܕ_ܕܝܠܝܘ̈ܬܐ' ], + 'Types' => [ 'ܐܕ̈ܫܐ' ], + 'UnusedProperties' => [ 'ܕܝܠܝܘ̈ܬܐ_ܠܐ_ܦܠܝܚ̈ܬܐ' ], + 'WantedProperties' => [ 'ܕܝܠܝܘ̈ܬܐ_ܣܢܝܩ̈ܬܐ' ], +]; + +/** Egyptian Arabic (مصرى) */ +$specialPageAliases['arz'] = [ + 'Ask' => [ 'سؤال' ], + 'Browse' => [ 'براوز' ], + 'ExportRDF' => [ 'تصدير_RDF' ], + 'PageProperty' => [ 'خاصية_الصفحه' ], + 'Properties' => [ 'خصايص' ], + 'Concepts' => [ 'مبادئ' ], + 'SMWAdmin' => [ 'ادارى_SMW' ], + 'SearchByProperty' => [ 'دوّر_بالخاصيه' ], + 'Types' => [ 'انواع' ], + 'URIResolver' => [ 'محلل_يو_ار_اى' ], + 'UnusedProperties' => [ 'خصايص_مش_مستعمله' ], + 'WantedProperties' => [ 'خصايص_مطلوبه' ], +]; + +/** Assamese (অসমীয়া) */ +$specialPageAliases['as'] = [ + 'Ask' => [ 'সোধক' ], + 'Browse' => [ 'ব্ৰাউজ' ], + 'ExportRDF' => [ 'RDF_ৰপ্তানি' ], + 'Types' => [ 'প্ৰকাৰসমূহ' ], +]; + +/** Western Balochi (بلوچی رخشانی) */ +$specialPageAliases['bgn'] = [ + 'Ask' => [ 'سوال_و_سوج_ئان' ], + 'Browse' => [ 'بروز' ], + 'ExportRDF' => [ 'آر_ڈی_اف_ئی_ڈن_کورتین' ], + 'PageProperty' => [ 'تاکدیمی_مالومات' ], + 'Properties' => [ 'مالومات' ], + 'Concepts' => [ 'موّزو_ئان' ], + 'SMWAdmin' => [ 'اس_ام_ڈبلیو_ئی_مدیر' ], + 'SearchByProperty' => [ 'گشتین_به_مالوماتی_اساس_ئا' ], + 'Types' => [ 'ڈوّل_ئان' ], + 'URIResolver' => [ 'یو_آر_آی_هل_کنۆک' ], + 'UnusedProperties' => [ 'ایستیپاده_نه_بوته_ئین_مالومات' ], + 'WantedProperties' => [ 'لوٹی_ته_بوته_ئین_مالومات' ], +]; + +/** Banjar (Bahasa Banjar) */ +$specialPageAliases['bjn'] = [ + 'Ask' => [ 'Takun' ], + 'Browse' => [ 'Ambahi' ], + 'Types' => [ 'Janis' ], +]; + +/** Breton (brezhoneg) */ +$specialPageAliases['br'] = [ + 'Ask' => [ 'Goulenn' ], + 'Browse' => [ 'Furchal' ], + 'ExportRDF' => [ 'EzorzhiañRDF' ], + 'PageProperty' => [ 'PerzhioùPajenn' ], + 'Properties' => [ 'Perzhioù' ], + 'Types' => [ 'Seurtoù' ], +]; + +/** Bosnian (bosanski) */ +$specialPageAliases['bs'] = [ + 'Ask' => [ 'Upit' ], + 'Browse' => [ 'Pregledanje' ], + 'ExportRDF' => [ 'IzvozRDF' ], + 'Properties' => [ 'Svojstva' ], +]; + +/** Min Dong Chinese (Mìng-dĕ̤ng-ngṳ̄) */ +$specialPageAliases['cdo'] = [ + 'Ask' => [ '問' ], + 'Browse' => [ '瀏覽' ], + 'ExportRDF' => [ '導出RDF' ], + 'PageProperty' => [ '頁面屬性' ], +]; + +/** German (Deutsch) */ +$specialPageAliases['de'] = [ + 'Ask' => [ 'Semantische_Suche' ], + 'Browse' => [ 'Durchsuchen', 'Browsen' ], + 'ExportRDF' => [ 'RDF_exportieren', 'Exportiere_RDF' ], + 'PageProperty' => [ 'Seitenattribut' ], + 'Properties' => [ 'Attribute' ], + 'Concepts' => [ 'Konzepte' ], + 'SMWAdmin' => [ 'SemanticMediaWiki', 'SMW-Administration', 'SMW-Einrichtung' ], + 'SearchByProperty' => [ 'Suche_mittels_Attribut' ], + 'ProcessingErrorList' => [ 'Liste_der_Verarbeitungsfehler' ], + 'PropertyLabelSimilarity' => [ 'Ähnliche_Attributbezeichnungen' ], + 'MissingRedirectAnnotations' => [ 'Fehlende_Weiterleitungsannotationen' ], + 'FacetedSearch' => [ 'Facettierte_Suche', 'Facettensuche' ], + 'Types' => [ 'Datentypen' ], + 'URIResolver' => [ 'URI-Auflöser' ], + 'UnusedProperties' => [ 'Verwaiste_Attribute' ], + 'WantedProperties' => [ 'Gewünschte_Attribute' ], +]; + +/** Zazaki (Zazaki) */ +$specialPageAliases['diq'] = [ + 'Ask' => [ 'Pers' ], + 'Browse' => [ 'Bıgeyré' ], + 'ExportRDF' => [ 'RDFTeberde' ], + 'PageProperty' => [ 'BeğsaPeran' ], + 'Properties' => [ 'Bexsiyeti' ], + 'Concepts' => [ 'Konsepti' ], + 'SMWAdmin' => [ 'SMWXızmetkar' ], + 'SearchByProperty' => [ 'ĞısusiyetkarCıgeyrayış' ], + 'Types' => [ 'Babeti' ], + 'URIResolver' => [ 'URIAgozne' ], + 'UnusedProperties' => [ 'ĞısusiyetéNékaréné' ], + 'WantedProperties' => [ 'ĞısusiyetéWaşténé' ], +]; + +/** Lower Sorbian (dolnoserbski) */ +$specialPageAliases['dsb'] = [ + 'Ask' => [ 'Semantiske pytanhje' ], + 'Browse' => [ 'Pśepytaś' ], + 'ExportRDF' => [ 'RDF eksportěrowaś' ], + 'PageProperty' => [ 'Bokowa kakosć' ], + 'Properties' => [ 'Kakosći' ], + 'SearchByProperty' => [ 'Z kakosću pytaś' ], + 'Types' => [ 'Datowe typy' ], + 'UnusedProperties' => [ 'Njewužywane kakosći' ], + 'WantedProperties' => [ 'Póžedane kakosći' ], +]; + +/** Divehi (ދިވެހިބަސް) */ +$specialPageAliases['dv'] = [ + 'Ask' => [ 'އައްސަވާ' ], +]; + +/** Greek (Ελληνικά) */ +$specialPageAliases['el'] = [ + 'Ask' => [ 'Ερώτημα' ], + 'Browse' => [ 'Περιήγηση' ], + 'ExportRDF' => [ 'ΕξαγωγήRDF' ], + 'PageProperty' => [ 'ΙδιότηταΣελίδας' ], + 'Properties' => [ 'Ιδιότητες' ], + 'Concepts' => [ 'Έννοιες' ], + 'SMWAdmin' => [ 'ΔιαχείρισηSMW' ], + 'SearchByProperty' => [ 'ΑναζήτησηΜεΙδιότητα' ], + 'Types' => [ 'Τύποι' ], + 'URIResolver' => [ 'ΑναλυτήςURI' ], + 'UnusedProperties' => [ 'ΜηΧρησιμοποιούμενεςΙδιότητες' ], + 'WantedProperties' => [ 'ΖητούμενεςΙδιότητες' ], +]; + +/** Esperanto (Esperanto) */ +$specialPageAliases['eo'] = [ + 'Ask' => [ 'Peti' ], + 'Browse' => [ 'Foliumi' ], + 'ExportRDF' => [ 'Elporti_RDF', 'Eksporti_RDF' ], + 'PageProperty' => [ 'Ecoj_de_paĝo' ], + 'Properties' => [ 'Ecoj' ], + 'Types' => [ 'Specoj' ], +]; + +/** Spanish (español) */ +$specialPageAliases['es'] = [ + 'Properties' => [ 'Propiedades' ], + 'SearchByProperty' => [ 'BuscarPorPropiedad' ], + 'Types' => [ 'Tipos' ], + 'UnusedProperties' => [ 'PropiedadesNoUsadas' ], + 'WantedProperties' => [ 'PropiedadesRequeridas' ], +]; + +/** Persian (فارسی) */ +$specialPageAliases['fa'] = [ + 'Ask' => [ 'پرسش' ], + 'Browse' => [ 'مرور' ], + 'ExportRDF' => [ 'برونریزی_آردی‌اف' ], + 'PageProperty' => [ 'جزئیات_صفحه' ], + 'Properties' => [ 'جزئیات' ], + 'Concepts' => [ 'مفاهیم' ], + 'SMWAdmin' => [ 'مدیر_اس‌ام‌دبلیو' ], + 'SearchByProperty' => [ 'جستجو_بر_پایهٔ_جزئیات' ], + 'Types' => [ 'نوع‌ها' ], + 'URIResolver' => [ 'حل‌کننده_یو‌آر‌آی' ], + 'UnusedProperties' => [ 'جزئیات_استفاده_نشده' ], + 'WantedProperties' => [ 'جزئیات_درخواستی' ], +]; + +/** Finnish (suomi) */ +$specialPageAliases['fi'] = [ + 'Ask' => [ 'Kysy' ], + 'Browse' => [ 'Selaa' ], + 'ExportRDF' => [ 'RDF-vienti' ], + 'Properties' => [ 'Ominaisuudet' ], + 'SMWAdmin' => [ 'Semanttisen_Mediawikin_ylläpito' ], + 'Types' => [ 'Tyypit' ], + 'UnusedProperties' => [ 'Käyttämättömät_ominaisuudet' ], + 'WantedProperties' => [ 'Halutut_ominaisuudet' ], +]; + +/** French (français) */ +$specialPageAliases['fr'] = [ + 'Ask' => [ 'Requêter' ], + 'Browse' => [ 'Parcourir' ], + 'ExportRDF' => [ 'Export_RDF' ], + 'PageProperty' => [ 'Propriétés_de_la_page' ], + 'Properties' => [ 'Propriétés' ], + 'Concepts' => [ 'Concepts' ], + 'SearchByProperty' => [ 'Recherche_par_propriété' ], + 'Types' => [ 'Types' ], + 'UnusedProperties' => [ 'Propriétés_inutilisées' ], + 'WantedProperties' => [ 'Propriétés_demandées' ], +]; + +/** Galician (galego) */ +$specialPageAliases['gl'] = [ + 'Ask' => [ 'Preguntar' ], + 'Browse' => [ 'Navegar' ], + 'ExportRDF' => [ 'Exportar_RDF' ], + 'PageProperty' => [ 'Propiedades_da_páxina' ], + 'Properties' => [ 'Propiedades' ], + 'Concepts' => [ 'Conceptos' ], + 'SearchByProperty' => [ 'Procurar_por_propiedades' ], + 'Types' => [ 'Tipos' ], + 'UnusedProperties' => [ 'Propiedades_sen_uso' ], + 'WantedProperties' => [ 'Propiedades_requiridas' ], +]; + +/** Swiss German (Alemannisch) */ +$specialPageAliases['gsw'] = [ + 'Ask' => [ 'Semantischi_Suech' ], + 'Browse' => [ 'Duresueche' ], + 'ExportRDF' => [ 'Exportier_ADF' ], + 'PageProperty' => [ 'Syteattribut' ], + 'Properties' => [ 'Attribut' ], + 'SMWAdmin' => [ 'SMW-Yyrichtig' ], + 'SearchByProperty' => [ 'Suech_no_Attribut' ], + 'Types' => [ 'Datetype' ], + 'URIResolver' => [ 'URI-Ufflöser' ], + 'UnusedProperties' => [ 'Verwaisti_Attribut' ], + 'WantedProperties' => [ 'Gwinschti_Attribut' ], +]; + +/** Hebrew (עברית) */ +$specialPageAliases['he'] = [ + 'Ask' => [ 'שאלה' ], + 'Browse' => [ 'עיון' ], + 'ExportRDF' => [ 'ייצור_RDF' ], + 'PageProperty' => [ 'מאפיין_דף' ], + 'Properties' => [ 'מאפיינים' ], + 'Concepts' => [ 'רעיונות' ], + 'SMWAdmin' => [ 'ניהול_SMW' ], + 'SearchByProperty' => [ 'חיפוש_לפי_שאילתה' ], + 'Types' => [ 'סוגים' ], + 'URIResolver' => [ 'פותר_URI' ], + 'UnusedProperties' => [ 'מאפיינים_שאינם_בשימוש' ], + 'WantedProperties' => [ 'מאפיינים_מבוקשים' ], +]; + +/** Hindi (हिन्दी) */ +$specialPageAliases['hi'] = [ + 'Ask' => [ 'पूछो' ], +]; + +/** Upper Sorbian (hornjoserbsce) */ +$specialPageAliases['hsb'] = [ + 'Ask' => [ 'Semantiske_pytanje' ], + 'Browse' => [ 'Přepytać' ], + 'ExportRDF' => [ 'RDF_eksportować' ], + 'PageProperty' => [ 'Kajkosć_strony' ], + 'Properties' => [ 'Kajkosće' ], + 'Concepts' => [ 'Koncepty' ], + 'SMWAdmin' => [ 'SMW-administracija' ], + 'SearchByProperty' => [ 'Pytanje_po_kajkosći' ], + 'Types' => [ 'Datowe_typy' ], + 'UnusedProperties' => [ 'Njewužiwane_kajkosće' ], + 'WantedProperties' => [ 'Falowace_kajkosće' ], +]; + +/** Haitian (Kreyòl ayisyen) */ +$specialPageAliases['ht'] = [ + 'Ask' => [ 'Mande' ], + 'Browse' => [ 'Navige' ], + 'ExportRDF' => [ 'EkspòteRDF' ], + 'PageProperty' => [ 'ProprietePaj' ], + 'Properties' => [ 'Propriete' ], + 'SMWAdmin' => [ 'AdminSMW' ], + 'SearchByProperty' => [ 'ChachePaPropriete' ], + 'Types' => [ 'Tip' ], + 'UnusedProperties' => [ 'ProprietePaSèvi' ], + 'WantedProperties' => [ 'ProprieteKiMande' ], +]; + +/** Hungarian (magyar) */ +$specialPageAliases['hu'] = [ + 'Ask' => [ 'Kérdez' ], + 'Browse' => [ 'Böngészés' ], + 'Properties' => [ 'Tulajdonságok' ], + 'Types' => [ 'Típusok' ], + 'URIResolver' => [ 'URI-feloldó' ], + 'UnusedProperties' => [ 'Nem_használt_tulajdonságok' ], + 'WantedProperties' => [ 'Keresett_tulajdonságok' ], +]; + +/** Interlingua (interlingua) */ +$specialPageAliases['ia'] = [ + 'Ask' => [ 'Consultar' ], + 'Browse' => [ 'Percurrer' ], + 'ExportRDF' => [ 'Exportar_RDF' ], + 'PageProperty' => [ 'Proprietate_de_pagina' ], + 'Properties' => [ 'Proprietates' ], + 'SMWAdmin' => [ 'Admin_SMW' ], + 'SearchByProperty' => [ 'Cercar_per_proprietate' ], + 'Types' => [ 'Typos' ], + 'URIResolver' => [ 'Resolvitor_de_URIs' ], + 'UnusedProperties' => [ 'Proprietates_non_usate' ], + 'WantedProperties' => [ 'Proprietates_dsesirate' ], +]; + +/** Indonesian (Bahasa Indonesia) */ +$specialPageAliases['id'] = [ + 'Ask' => [ 'Tanya' ], + 'Browse' => [ 'Jelajahi' ], + 'ExportRDF' => [ 'EksporRDF' ], + 'PageProperty' => [ 'PropertiHalaman' ], + 'Properties' => [ 'Properti' ], + 'SMWAdmin' => [ 'AdminSMW' ], + 'SearchByProperty' => [ 'PencarianProperti' ], + 'Types' => [ 'Tipe' ], + 'URIResolver' => [ 'PenguraiURI' ], + 'UnusedProperties' => [ 'PropertiTakDigunakan' ], + 'WantedProperties' => [ 'PropertiDiinginkan' ], +]; + +/** Italian (italiano) */ +$specialPageAliases['it'] = [ + 'Ask' => [ 'Chiedi' ], + 'Browse' => [ 'Esplora' ], + 'ExportRDF' => [ 'EsportaRDF' ], + 'PageProperty' => [ 'ProprietàPagina' ], + 'Properties' => [ 'Proprietà' ], + 'Concepts' => [ 'Concetti' ], + 'SMWAdmin' => [ 'AdminSMW' ], + 'SearchByProperty' => [ 'CercaPerProprietà' ], + 'Types' => [ 'Tipi' ], + 'URIResolver' => [ 'RisolutoreURI' ], + 'UnusedProperties' => [ 'ProprietàNonUtilizzate' ], + 'WantedProperties' => [ 'ProprietàRichieste' ], +]; + +/** Japanese (日本語) */ +$specialPageAliases['ja'] = [ + 'Ask' => [ '問い合わせ', '意味的検索' ], + 'Browse' => [ '閲覧' ], + 'ExportRDF' => [ 'RDF書き出し', 'RDFエクスポート', 'RDFエクスポート' ], + 'PageProperty' => [ 'ページプロパティ' ], + 'Properties' => [ 'プロパティ一覧' ], + 'Concepts' => [ '概念' ], + 'SMWAdmin' => [ 'SMW管理', 'SMW管理' ], + 'SearchByProperty' => [ 'プロパティによる検索' ], + 'Types' => [ '型一覧' ], + 'URIResolver' => [ 'URIリゾルバー', 'URIリゾルバー' ], + 'UnusedProperties' => [ '使われていないプロパティ' ], + 'WantedProperties' => [ '望まれているプロパティ' ], +]; + +/** Georgian (ქართული) */ +$specialPageAliases['ka'] = [ + 'Types' => [ 'ტიპები' ], +]; + +/** Khmer (ភាសាខ្មែរ) */ +$specialPageAliases['km'] = [ + 'Browse' => [ 'រាវរក' ], + 'Properties' => [ 'លក្ខណៈ' ], + 'Types' => [ 'ប្រភេទ' ], +]; + +/** Korean (한국어) */ +$specialPageAliases['ko'] = [ + 'Ask' => [ '묻기' ], + 'Browse' => [ '찾아보기' ], + 'ExportRDF' => [ 'RDF내보내기' ], + 'PageProperty' => [ '문서속성' ], + 'Properties' => [ '속성목록' ], + 'Concepts' => [ '개념목록' ], + 'SMWAdmin' => [ 'SMW관리자' ], + 'SearchByProperty' => [ '속성별검색', '속성별찾기' ], + 'Types' => [ '종류목록' ], + 'URIResolver' => [ 'URI해결' ], + 'UnusedProperties' => [ '안쓰는속성', '쓰이지않는속성' ], + 'WantedProperties' => [ '필요한속성' ], +]; + +/** Colognian (Ripoarisch) */ +$specialPageAliases['ksh'] = [ + 'Ask' => [ 'Froore' ], + 'Browse' => [ 'Bläddere' ], + 'ExportRDF' => [ 'RDF', 'RDF Äxpotteere' ], + 'PageProperty' => [ 'Eijeschaffte vun Sigge' ], + 'Properties' => [ 'Eijeschaffte' ], + 'SMWAdmin' => [ 'Semantesch MediaWiki Ennreschte' ], + 'SearchByProperty' => [ 'Noh Eijeschaffte söke' ], + 'Types' => [ 'Zoote vun Daate' ], + 'UnusedProperties' => [ 'Eijeschaffte di nit jebruch wääde' ], + 'WantedProperties' => [ 'Eijeschaffte di noch jebruch wääde' ], +]; + +/** Cornish (kernowek) */ +$specialPageAliases['kw'] = [ + 'Ask' => [ 'Govyn' ], + 'Browse' => [ 'Peuri' ], + 'ExportRDF' => [ 'EsperthiRDF' ], + 'PageProperty' => [ 'GnasFolen' ], + 'Properties' => [ 'Gnasow' ], + 'SearchByProperty' => [ 'HwilasHerwydhGnas' ], +]; + +/** Luxembourgish (Lëtzebuergesch) */ +$specialPageAliases['lb'] = [ + 'Ask' => [ 'Froen' ], + 'Browse' => [ 'Browsen' ], + 'ExportRDF' => [ 'RDF_exportéieren' ], + 'PageProperty' => [ 'Säiten-Eegeschaften' ], + 'Properties' => [ 'Eegeschaften' ], + 'Concepts' => [ 'Konzepter' ], + 'SMWAdmin' => [ 'SMW-Administratioun' ], + 'SearchByProperty' => [ 'No_Eegeschaft_sichen' ], + 'Types' => [ 'Datentypen' ], + 'UnusedProperties' => [ 'Netbenotzt_Eegeschaften' ], + 'WantedProperties' => [ 'Gewënscht_Eegeschaften' ], +]; + +/** Lombard (lumbaart) */ +$specialPageAliases['lmo'] = [ + 'Ask' => [ 'Ciama' ], +]; + +/** Macedonian (македонски) */ +$specialPageAliases['mk'] = [ + 'Ask' => [ 'Прашај' ], + 'Browse' => [ 'Прелистај' ], + 'ExportRDF' => [ 'ИзвезиRDF' ], + 'PageProperty' => [ 'СвојстваНаСтраница' ], + 'Properties' => [ 'Својства' ], + 'Concepts' => [ 'Концепти' ], + 'SMWAdmin' => [ 'СМВАдминистратор' ], + 'SearchByProperty' => [ 'ПребарајПоСвојство' ], + 'Types' => [ 'Типови' ], + 'URIResolver' => [ 'URIРешавач' ], + 'UnusedProperties' => [ 'НекористениСвојства' ], + 'WantedProperties' => [ 'ПотребниСвојства' ], +]; + +/** Malayalam (മലയാളം) */ +$specialPageAliases['ml'] = [ + 'Ask' => [ 'ചോദിക്കുക' ], + 'Browse' => [ 'ബ്രൗസ്' ], + 'Types' => [ 'തരങ്ങൾ' ], +]; + +/** Marathi (मराठी) */ +$specialPageAliases['mr'] = [ + 'Ask' => [ 'विचारा' ], + 'Browse' => [ 'न्याहाळा' ], + 'ExportRDF' => [ 'आरडीएफनिर्यात' ], + 'PageProperty' => [ 'पानवैशिष्ट्ये' ], + 'Properties' => [ 'वैशिष्ट्ये' ], + 'Concepts' => [ 'संकल्पना' ], + 'SMWAdmin' => [ 'एसएमडब्ल्यूप्रचालक' ], + 'SearchByProperty' => [ 'वैशिष्ट्येनुसारशोध' ], + 'Types' => [ 'प्रकार' ], + 'URIResolver' => [ 'यूआरायरिझॉल्व्हर' ], + 'UnusedProperties' => [ 'नवापरलेलीवैशिष्ट्ये' ], + 'WantedProperties' => [ 'हवीअसलेलीवैशिष्ट्ये' ], +]; + +/** Maltese (Malti) */ +$specialPageAliases['mt'] = [ + 'Ask' => [ 'Staqsi' ], + 'Browse' => [ 'Esplora' ], +]; + +/** Norwegian Bokmål (norsk bokmål) */ +$specialPageAliases['nb'] = [ + 'Ask' => [ 'Spør' ], + 'Browse' => [ 'Se_gjennom' ], + 'ExportRDF' => [ 'Eksporter_RDF' ], + 'PageProperty' => [ 'Sideegenskaper' ], + 'Properties' => [ 'Egenskaper' ], + 'Concepts' => [ 'Konsepter' ], + 'SMWAdmin' => [ 'SMW-administrasjon' ], + 'SearchByProperty' => [ 'Søk_etter_egenskap' ], + 'Types' => [ 'Typer' ], + 'URIResolver' => [ 'URI-løser' ], + 'UnusedProperties' => [ 'Ubrukte_egenskaper' ], + 'WantedProperties' => [ 'Ønskede_egenskaper' ], +]; + +/** Low Saxon (Netherlands) (Nedersaksies) */ +$specialPageAliases['nds-nl'] = [ + 'Ask' => [ 'Vragen' ], + 'Browse' => [ 'Bekieken' ], + 'ExportRDF' => [ 'RDF_uutvoeren' ], + 'PageProperty' => [ 'Ziedeigenschap' ], + 'Properties' => [ 'Eigenschappen' ], + 'Concepts' => [ 'Konsepten' ], + 'SMWAdmin' => [ 'SMW-beheer' ], + 'SearchByProperty' => [ 'Op_eigenschap_zeuken' ], + 'Types' => [ 'Soorten' ], + 'URIResolver' => [ 'URI-oplosser' ], + 'UnusedProperties' => [ 'Ongebruukten_eigenschappen' ], + 'WantedProperties' => [ 'Gewunste_eigenschappen' ], +]; + +/** Dutch (Nederlands) */ +$specialPageAliases['nl'] = [ + 'Ask' => [ 'Vragen' ], + 'Browse' => [ 'Bekijken' ], + 'ExportRDF' => [ 'RDFExporteren' ], + 'PageProperty' => [ 'Paginaeigenschap' ], + 'Properties' => [ 'Eigenschappen' ], + 'Concepts' => [ 'Concepten' ], + 'SMWAdmin' => [ 'SMWBeheer' ], + 'SearchByProperty' => [ 'OpEigenschapZoeken' ], + 'Types' => [ 'Typen' ], + 'UnusedProperties' => [ 'OngebruikteEigenschappen' ], + 'WantedProperties' => [ 'GewensteEigenschappen' ], + 'FacetedSearch' => [ 'GefacetteerdZoeken' ] +]; + +/** Occitan (occitan) */ +$specialPageAliases['oc'] = [ + 'Browse' => [ 'Percórrer' ], + 'Properties' => [ 'Proprietats' ], + 'Types' => [ 'Tipes' ], + 'UnusedProperties' => [ 'Proprietats inutilizadas', 'ProprietatsInutilizadas' ], + 'WantedProperties' => [ 'Proprietats demandadas', 'ProprietatsDemandadas' ], +]; + +/** Oriya (ଓଡ଼ିଆ) */ +$specialPageAliases['or'] = [ + 'Ask' => [ 'ପଚାରନ୍ତୁ' ], + 'Browse' => [ 'ଖୋଜିବା' ], + 'PageProperty' => [ 'ପୃଷ୍ଠାର_ଗୁଣ' ], + 'Properties' => [ 'ଗୁଣ' ], + 'UnusedProperties' => [ 'ବ୍ୟବହାର_ହୋଇନଥିବା_ଗୁଣ' ], + 'WantedProperties' => [ 'ଦରକାରୀ_ଗୁଣ' ], +]; + +/** Punjabi (ਪੰਜਾਬੀ) */ +$specialPageAliases['pa'] = [ + 'Ask' => [ 'ਪੁੱਛੋ' ], + 'Browse' => [ 'ਫੇਰੀ_ਪਾਓ' ], + 'Types' => [ 'ਕਿਸਮਾਂ' ], +]; + +/** Polish (polski) */ +$specialPageAliases['pl'] = [ + 'Ask' => [ 'Pytanie' ], + 'Browse' => [ 'Przegląd' ], + 'ExportRDF' => [ 'EksportRDF' ], + 'PageProperty' => [ 'WłasnośćStrony' ], + 'Properties' => [ 'Własności' ], + 'Concepts' => [ 'Koncepty' ], + 'SMWAdmin' => [ 'AdminSMW' ], + 'SearchByProperty' => [ 'SzukanieWgWłasności' ], + 'Types' => [ 'Typy' ], + 'URIResolver' => [ 'ResolverURI' ], + 'UnusedProperties' => [ 'NieużywaneWłasności' ], + 'WantedProperties' => [ 'PotrzebneWłasności' ], +]; + +/** Pashto (پښتو) */ +$specialPageAliases['ps'] = [ + 'Ask' => [ 'پوښتل' ], + 'Browse' => [ 'سپړل' ], + 'PageProperty' => [ 'د مخ ځانتياوې' ], + 'Properties' => [ 'ځانتياوې' ], + 'Types' => [ 'ډولونه' ], + 'UnusedProperties' => [ 'ناکارېدلې ځانتياوې' ], +]; + +/** Portuguese (português) */ +$specialPageAliases['pt'] = [ + 'Ask' => [ 'Consultar' ], + 'Browse' => [ 'Navegar' ], + 'ExportRDF' => [ 'ExportarRDF' ], + 'PageProperty' => [ 'Propriedade_de_página' ], + 'Properties' => [ 'Propriedades' ], + 'Concepts' => [ 'Conceitos' ], + 'SearchByProperty' => [ 'Pesquisa_por_propriedade' ], + 'Types' => [ 'Tipos' ], + 'UnusedProperties' => [ 'Propriedades_não_utilizadas' ], + 'WantedProperties' => [ 'Propriedades_desejadas' ], +]; + +/** Brazilian Portuguese (português do Brasil) */ +$specialPageAliases['pt-br'] = [ + 'Ask' => [ 'Consultar' ], + 'Browse' => [ 'Navegar' ], + 'Concepts' => [ 'Conceitos' ], + 'ExportRDF' => [ 'ExportarRDF' ], + 'PageProperty' => [ 'Propriedade_de_página' ], + 'ProcessingErrorList' => [ 'Lista_de_erro_de_processamento' ], + 'Properties' => [ 'Propriedades' ], + 'PropertyLabelSimilarity' => [ 'Similaridade_de_nome_de_propriedade' ], + 'SearchByProperty' => [ 'Pesquisar_por_propriedade' ], + 'SMWAdmin' => [ 'SemanticMediaWiki', 'SMWAdmin' ], + 'Types' => [ 'Tipos' ], + 'UnusedProperties' => [ 'Propriedades_não_utilizadas' ], + 'URIResolver' => [ 'URIResolver' ], + 'WantedProperties' => [ 'Propriedades_desejadas' ], +]; + +/** Romanian (română) */ +$specialPageAliases['ro'] = [ + 'Browse' => [ 'Răsfoieşte' ], +]; + +/** Sicilian (sicilianu) */ +$specialPageAliases['scn'] = [ + 'Ask' => [ 'Chiedi' ], + 'Browse' => [ 'Esplora' ], + 'ExportRDF' => [ 'EsportaRDF' ], + 'PageProperty' => [ 'ProprietàPagina' ], + 'Properties' => [ 'Proprietà' ], + 'SMWAdmin' => [ 'AdminSMW' ], + 'SearchByProperty' => [ 'CercaPerProprietà' ], + 'Types' => [ 'Tipi' ], + 'URIResolver' => [ 'RisolutoreURI' ], + 'UnusedProperties' => [ 'ProprietàNonUtilizzate' ], + 'WantedProperties' => [ 'ProprietàRichieste' ], +]; + +/** Slovak (slovenčina) */ +$specialPageAliases['sk'] = [ + 'Ask' => [ 'SpýtaťSa' ], + 'Browse' => [ 'Prehliadať' ], + 'PageProperty' => [ 'VlastnostiStránky' ], + 'Properties' => [ 'Vlastnosti' ], + 'SMWAdmin' => [ 'SprávcaSMW' ], + 'SearchByProperty' => [ 'HľadaniePodľaVlastností' ], + 'Types' => [ 'Typy' ], + 'URIResolver' => [ 'PrekladURI' ], + 'UnusedProperties' => [ 'NepoužívanéVlastnosti' ], + 'WantedProperties' => [ 'ŽiadanéVlastnosti' ], +]; + +/** Albanian (shqip) */ +$specialPageAliases['sq'] = [ + 'Ask' => [ 'Pyet' ], + 'Browse' => [ 'Sille' ], +]; + +/** Serbian (Cyrillic script) (српски (ћирилица)‎) */ +$specialPageAliases['sr-ec'] = [ + 'Ask' => [ 'Питај' ], + 'Browse' => [ 'Потражи' ], + 'Properties' => [ 'Својства' ], + 'Types' => [ 'Врсте' ], + 'UnusedProperties' => [ 'НекоришћенаСвојства', 'Некоришћена_својства' ], + 'WantedProperties' => [ 'ТраженаСвојства', 'Тражена_својства' ], +]; + +/** Swedish (svenska) */ +$specialPageAliases['sv'] = [ + 'Ask' => [ 'Fråga' ], + 'Browse' => [ 'Bläddra' ], + 'ExportRDF' => [ 'Exportera_RDF' ], + 'Properties' => [ 'Egenskaper' ], + 'Types' => [ 'Typer' ], +]; + +/** Swahili (Kiswahili) */ +$specialPageAliases['sw'] = [ + 'Ask' => [ 'Uliza' ], + 'Browse' => [ 'Fungua' ], + 'Types' => [ 'Aina' ], +]; + +/** Telugu (తెలుగు) */ +$specialPageAliases['te'] = [ + 'Ask' => [ 'అడుగు' ], +]; + +/** Tagalog (Tagalog) */ +$specialPageAliases['tl'] = [ + 'Ask' => [ 'Magtanong' ], + 'Browse' => [ 'Tumingin-tingin' ], + 'ExportRDF' => [ 'Iluwas_ang_RDF' ], + 'PageProperty' => [ 'Pag-aari_ng_pahina' ], + 'Properties' => [ 'Mga_pag-aari' ], + 'SMWAdmin' => [ 'Tagapangasiwa_ng_SMW' ], + 'SearchByProperty' => [ 'Maghanap_ayon_sa_pag-aari' ], + 'Types' => [ 'Mga_uri' ], + 'URIResolver' => [ 'Tagapaglutas_ng_URI' ], + 'UnusedProperties' => [ 'Mga_pag-aaring_hindi_ginagamit' ], + 'WantedProperties' => [ 'Mga_pag-aaring_ninanais' ], +]; + +/** Turkish (Türkçe) */ +$specialPageAliases['tr'] = [ + 'Ask' => [ 'Sor' ], + 'Browse' => [ 'Gezin' ], + 'ExportRDF' => [ 'RDFAktar' ], + 'PageProperty' => [ 'SayfaÖzelliği' ], + 'Properties' => [ 'Özellikler' ], + 'SMWAdmin' => [ 'SMWHizmetlisi', 'SMWYöneticisi' ], + 'SearchByProperty' => [ 'ÖzelliğeGöreAra' ], + 'Types' => [ 'Türler', 'Tipler' ], + 'URIResolver' => [ 'URIÇözücü' ], + 'UnusedProperties' => [ 'KullanılmayanÖzellikler' ], + 'WantedProperties' => [ 'İstenenÖzellikler' ], +]; + +/** Ukrainian (українська) */ +$specialPageAliases['uk'] = [ + 'Properties' => [ 'Властивості' ], + 'Types' => [ 'Типи' ], +]; + +/** Urdu (اردو) */ +$specialPageAliases['ur'] = [ + 'Ask' => [ 'پوچھیں' ], + 'Types' => [ 'اقسام' ], +]; + +/** Venetian (vèneto) */ +$specialPageAliases['vec'] = [ + 'Browse' => [ 'Sfója' ], + 'Properties' => [ 'Proprietà' ], + 'Types' => [ 'Tipi' ], +]; + +/** Vietnamese (Tiếng Việt) */ +$specialPageAliases['vi'] = [ + 'Ask' => [ 'Hỏi' ], + 'Browse' => [ 'Duyệt' ], + 'ExportRDF' => [ 'Xuất_RDF' ], + 'PageProperty' => [ 'Thuộc_tính_trang' ], + 'Properties' => [ 'Thuộc_tính' ], + 'Concepts' => [ 'Khái_niệm' ], + 'SMWAdmin' => [ 'Quản_lý_SMW', 'Quản_lí_SMW' ], + 'SearchByProperty' => [ 'Tìm_theo_thuộc_tính' ], + 'Types' => [ 'Kiểu' ], + 'URIResolver' => [ 'Bộ_giải_URI' ], + 'UnusedProperties' => [ 'Thuộc_tính_không_dùng' ], + 'WantedProperties' => [ 'Thuộc_tính_cần_thiết' ], +]; + +/** Simplified Chinese (中文(简体)‎) */ +$specialPageAliases['zh-hans'] = [ + 'Ask' => [ '询问' ], + 'Browse' => [ '浏览' ], + 'ExportRDF' => [ '导出RDF' ], + 'PageProperty' => [ '页面属性' ], + 'Properties' => [ '属性' ], + 'Concepts' => [ '概念' ], + 'SMWAdmin' => [ '语义MediaWiki', 'SMW管理' ], + 'PendingTaskList' => [ '待处理任务列表' ], + 'SearchByProperty' => [ '按属性搜索' ], + 'ProcessingErrorList' => [ '处理错误列表' ], + 'ConstraintErrorList' => [ '约束错误列表' ], + 'PropertyLabelSimilarity' => [ '属性标签相似性' ], + 'MissingRedirectAnnotations' => [ '丢失的重定向注释' ], + 'Types' => [ '类型' ], + 'URIResolver' => [ 'URI解析器' ], + 'UnusedProperties' => [ '未使用的属性' ], + 'WantedProperties' => [ '需要的属性' ], +]; + +/** Traditional Chinese (中文(繁體)‎) */ +$specialPageAliases['zh-hant'] = [ + 'Ask' => [ '詢問' ], + 'Browse' => [ '瀏覽' ], + 'ExportRDF' => [ '匯出_RDF' ], + 'PageProperty' => [ '頁面屬性' ], + 'Properties' => [ '屬性' ], + 'Concepts' => [ '概念' ], + 'SMWAdmin' => [ 'SMW_管理員' ], + 'SearchByProperty' => [ '依屬性搜尋' ], + 'Types' => [ '型態' ], + 'URIResolver' => [ 'URI_分解器' ], + 'UnusedProperties' => [ '未使用屬性' ], + 'WantedProperties' => [ '需要的屬性' ], +]; diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/SemanticMediaWiki.magic.php b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/SemanticMediaWiki.magic.php new file mode 100644 index 0000000..a15442b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/SemanticMediaWiki.magic.php @@ -0,0 +1,413 @@ + + * @file + * @ingroup Extensions + * @ingroup SMWLanguage + */ + +$magicWords = []; + +/** English (English) */ +$magicWords['en'] = [ + 'ask' => [ 0, 'ask' ], + 'show' => [ 0, 'show' ], + 'info' => [ 0, 'info' ], + 'concept' => [ 0, 'concept' ], + 'subobject' => [ 0, 'subobject' ], + 'smwdoc' => [ 0, 'smwdoc' ], + 'set' => [ 0, 'set' ], + 'set_recurring_event' => [ 0, 'set_recurring_event' ], + 'declare' => [ 0, 'declare' ], + 'SMW_NOFACTBOX' => [ 0, '__NOFACTBOX__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__SHOWFACTBOX__' ], +]; + +/** Afrikaans (Afrikaans) */ +$magicWords['af'] = [ + 'ask' => [ 0, 'vra', 'ask' ], + 'show' => [ 0, 'wys', 'show' ], + 'concept' => [ 0, 'konsep', 'concept' ], + 'set' => [ 0, 'stel', 'set' ], + 'declare' => [ 0, 'verklaar', 'declare' ], +]; + +/** Arabic (العربية) */ +$magicWords['ar'] = [ + 'ask' => [ 0, 'سؤال' ], + 'show' => [ 0, 'عرض' ], + 'info' => [ 0, 'معلومات' ], + 'concept' => [ 0, 'مفهوم' ], + 'subobject' => [ 0, 'كائن_فرعي' ], + 'smwdoc' => [ 0, 'وثائق_سمو', 'توثيق_سمو' ], + 'set' => [ 0, 'تعيين' ], // من تعيين القيمة للمتغير\الكائن + 'set_recurring_event' => [ 0, 'تعيين_حدث_متكرر' ], + 'declare' => [ 0, 'إقرار', 'إعلان' ], + 'SMW_NOFACTBOX' => [ 0, '__لا_صندوق_حقائق__', '__لا_صندوق_حقيقة__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__عرض_صندوق_الحقائق__', '__عرض_صندوق_الحقيقة__', ] +]; + +/** Egyptian Arabic (مصرى) */ +$magicWords['arz'] = [ + 'ask' => [ 0, 'سؤال' ], + 'show' => [ 0, 'عرض' ], + 'info' => [ 0, 'معلومات' ], + 'concept' => [ 0, 'مبدأ' ], + 'subobject' => [ 0, 'كائن_فرعى' ], + 'smwdoc' => [ 0, 'توثيق_سمو' ], + 'set' => [ 0, 'مجموعة' ], + 'set_recurring_event' => [ 0, 'ضبط_حدث_جارى' ], + 'declare' => [ 0, 'إعلان' ], + 'SMW_NOFACTBOX' => [ 0, '__لا_صندوق_حقيقة__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__عرض_صندوق_الحقيقة__' ], +]; + +/** Assamese (অসমীয়া) */ +$magicWords['as'] = [ + 'ask' => [ 0, 'সোধক' ], + 'show' => [ 0, 'দেখুৱাওক' ], + 'info' => [ 0, 'তথ্য' ], +]; + +/** Breton (brezhoneg) */ +$magicWords['br'] = [ + 'ask' => [ 0, 'goulenn' ], + 'show' => [ 0, 'diskouez' ], + 'info' => [ 0, 'keloù' ], + 'concept' => [ 0, 'meizad' ], + 'declare' => [ 0, 'disklêriañ' ], +]; + +/** Czech (čeština) */ +$magicWords['cs'] = [ + 'ask' => [ 0, 'otázka' ], + 'show' => [ 0, 'zobrazit' ], + 'set' => [ 0, 'nastavit' ], +]; + +/** Chuvash (Чӑвашла) */ +$magicWords['cv'] = [ + 'SMW_NOFACTBOX' => [ 0, '__NOFACTBOX__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__SHOWFACTBOX__' ], +]; + +/** German (Deutsch) */ +$magicWords['de'] = [ + 'ask' => [ 0, 'frage' ], + 'show' => [ 0, 'zeige' ], + 'info' => [ 0, 'informiere' ], + 'concept' => [ 0, 'konzept' ], + 'subobject' => [ 0, 'unterobjekt' ], + 'smwdoc' => [ 0, 'smwdok' ], + 'set' => [ 0, 'setze' ], + 'set_recurring_event' => [ 0, 'setze_wiederholung' ], + 'declare' => [ 0, 'deklariere' ], + 'SMW_NOFACTBOX' => [ 0, '__KEINE_FAKTENANZEIGE__', '__KEINEFAKTENANZEIGE__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__FAKTENANZEIGE__' ], +]; + +/** Zazaki (Zazaki) */ +$magicWords['diq'] = [ + 'ask' => [ 0, 'perske' ], + 'show' => [ 0, 'bımocne' ], + 'info' => [ 0, 'zanışe' ], + 'concept' => [ 0, 'konsept' ], + 'subobject' => [ 0, 'bınobce' ], + 'set' => [ 0, 'saz' ], + 'declare' => [ 0, 'ilaniye' ], + 'SMW_NOFACTBOX' => [ 0, '__DORARAŞTAYÇINİYA__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__DORARAŞTAYBIMOCNE__' ], +]; + +/** Spanish (español) */ +$magicWords['es'] = [ + 'ask' => [ 0, 'preguntar', 'pregunta' ], + 'show' => [ 0, 'muestra', 'mostrar' ], + 'info' => [ 0, 'informacion', 'información' ], + 'concept' => [ 0, 'concepto' ], + 'set' => [ 0, 'establecer', 'determinar' ], + 'set_recurring_event' => [ 0, 'establecer_evento_recurrente', 'determinar_evento_recurrente' ], + 'declare' => [ 0, 'declarar', 'declara' ], +]; + +/** Persian (فارسی) */ +$magicWords['fa'] = [ + 'ask' => [ 0, 'پرسش', 'سوال' ], + 'show' => [ 0, 'نمایش' ], + 'info' => [ 0, 'اطلاع' ], + 'concept' => [ 0, 'مفهوم' ], + 'subobject' => [ 0, 'جزءشیء' ], + 'smwdoc' => [ 0, 'smwdoc' ], + 'set' => [ 0, 'مجموعه' ], + 'set_recurring_event' => [ 0, 'set_recurring_event' ], + 'declare' => [ 0, 'declare' ], + 'SMW_NOFACTBOX' => [ 0, '__NOFACTBOX__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__SHOWFACTBOX__' ], +]; + +/** French (français) */ +$magicWords['fr'] = [ + 'ask' => [ 0, 'demander' ], + 'show' => [ 0, 'afficher' ], + 'info' => [ 0, 'infos' ], + 'concept' => [ 0, 'concept' ], + 'subobject' => [ 0, 'sousobjet' ], + 'smwdoc' => [ 0, 'docsmw' ], + 'set' => [ 0, 'définit' ], + 'set_recurring_event' => [ 0, 'définit_périodique' ], + 'declare' => [ 0, 'déclare' ], + 'SMW_NOFACTBOX' => [ 0, '__SANSBOÎTEFAITS__', '__SANSBOITEFAITS__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__AFFICHERBOÎTEFAITS__', '__AFFICHERBOITEFAITS__' ], +]; + +/** Western Frisian (Frysk) */ +$magicWords['fy'] = [ + 'info' => [ 0, 'ynfo' ], +]; + +/** Hebrew (עברית) */ +$magicWords['he'] = [ + 'ask' => [ 0, 'שאל' ], +]; + +/** Indonesian (Bahasa Indonesia) */ +$magicWords['id'] = [ + 'ask' => [ 0, 'tanya' ], + 'show' => [ 0, 'tampilkan' ], + 'info' => [ 0, 'info' ], + 'concept' => [ 0, 'konsep' ], + 'set' => [ 0, 'tetapkan' ], + 'declare' => [ 0, 'deklarasi' ], +]; + +/** Igbo (Igbo) */ +$magicWords['ig'] = [ + 'ask' => [ 0, 'jüo', 'ask' ], +]; + +/** Georgian (ქართული) */ +$magicWords['ka'] = [ + 'ask' => [ 0, 'კითხვა' ], + 'show' => [ 0, 'ჩვენება' ], + 'info' => [ 0, 'ინფო' ], +]; + +/** Korean (한국어) */ +$magicWords['ko'] = [ + 'ask' => [ 0, '묻기' ], + 'show' => [ 0, '보이기' ], + 'info' => [ 0, '정보' ], + 'concept' => [ 0, '생각' ], + 'subobject' => [ 0, '하위객체' ], + 'smwdoc' => [ 0, 'smw문서' ], + 'set' => [ 0, '설정' ], + 'set_recurring_event' => [ 0, '반복_일정_설정' ], + 'declare' => [ 0, '선언' ], + 'SMW_NOFACTBOX' => [ 0, '__사실상자숨김__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__사실상자보이기__', '__사실상자표시__' ], +]; + +/** Cornish (kernowek) */ +$magicWords['kw'] = [ + 'ask' => [ 0, 'govyn' ], + 'show' => [ 0, 'diskwedhes' ], + 'info' => [ 0, 'kedhlow' ], + 'set' => [ 0, 'settya' ], +]; + +/** Luxembourgish (Lëtzebuergesch) */ +$magicWords['lb'] = [ + 'ask' => [ 0, 'froen' ], + 'show' => [ 0, 'weisen' ], + 'concept' => [ 0, 'Konzept' ], +]; + +/** Macedonian (македонски) */ +$magicWords['mk'] = [ + 'ask' => [ 0, 'прашај' ], + 'show' => [ 0, 'прикажи' ], + 'info' => [ 0, 'инфо' ], + 'concept' => [ 0, 'поим' ], + 'subobject' => [ 0, 'подобјект' ], + 'smwdoc' => [ 0, 'смвдок' ], + 'set' => [ 0, 'постави' ], + 'set_recurring_event' => [ 0, 'постави_повторлив_настан' ], + 'declare' => [ 0, 'изјави' ], + 'SMW_NOFACTBOX' => [ 0, '__БЕЗФАКТКУТИЈА__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__ПРИКАЖИФАКТКУТИЈА__' ], +]; + +/** Malayalam (മലയാളം) */ +$magicWords['ml'] = [ + 'ask' => [ 0, 'ചോദിക്കുക' ], + 'show' => [ 0, 'പ്രദർശിപ്പിക്കുക' ], + 'info' => [ 0, 'വിവരം' ], + 'concept' => [ 0, 'ആശയം' ], + 'set' => [ 0, 'ഗണം' ], + 'declare' => [ 0, 'പ്രഖ്യാപിക്കുക' ], +]; + +/** Marathi (मराठी) */ +$magicWords['mr'] = [ + 'ask' => [ 0, 'विचारा' ], + 'show' => [ 0, 'दाखवा' ], + 'info' => [ 0, 'माहिती' ], + 'concept' => [ 0, 'कंसेप्ट', 'कल्पना' ], + 'set' => [ 0, 'प्रयुक्त', 'सेट', 'स्थापित' ], + 'set_recurring_event' => [ 0, 'प्रयुक्त_पुर्न_कार्य' ], + 'declare' => [ 0, 'प्रकटकरा' ], + 'SMW_NOFACTBOX' => [ 0, '__फॅक्टबॉक्सनाही__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__फॅक्टबॉक्सदाखवा__' ], +]; + +/** Low Saxon (Netherlands) (Nedersaksies) */ +$magicWords['nds-nl'] = [ + 'concept' => [ 0, 'konsept' ], + 'set_recurring_event' => [ 0, 'herhaolende_gebeurtenisse_instellen' ], + 'declare' => [ 0, 'deklareren' ], + 'SMW_NOFACTBOX' => [ 0, '__GIENFEITENKAODER__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__FEITENKAODERWEERGEVEN__' ], +]; + +/** Dutch (Nederlands) */ +$magicWords['nl'] = [ + 'ask' => [ 0, 'vragen' ], + 'show' => [ 0, 'weergeven' ], + 'subobject' => [ 0, 'onderobject' ], + 'set' => [ 0, 'instellen' ], + 'set_recurring_event' => [ 0, 'herhalende_gebeurtenis_instellen' ], + 'declare' => [ 0, 'declareren' ], + 'SMW_NOFACTBOX' => [ 0, '__GEENFEITENKADER__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__FEITENKADERWEERGEVEN__' ], +]; + +/** Punjabi (ਪੰਜਾਬੀ) */ +$magicWords['pa'] = [ + 'ask' => [ 0, 'ਪੁੱਛੋ' ], + 'show' => [ 0, 'ਵਿਖਾਓ' ], + 'info' => [ 0, 'ਜਾਣਕਾਰੀ' ], +]; + +/** Polish (polski) */ +$magicWords['pl'] = [ + 'ask' => [ 0, 'pytanie' ], + 'show' => [ 0, 'pokaż' ], + 'info' => [ 0, 'informacja' ], + 'concept' => [ 0, 'koncept' ], + 'set' => [ 0, 'ustaw' ], + 'declare' => [ 0, 'zadeklaruj' ], +]; + +/** Pashto (پښتو) */ +$magicWords['ps'] = [ + 'ask' => [ 0, 'پوښتل', 'ask' ], + 'show' => [ 0, 'ښکاره_کول', 'show' ], + 'info' => [ 0, 'مالومات', 'info' ], +]; + +/** Portuguese (português) */ +$magicWords['pt'] = [ + 'ask' => [ 0, 'consultar' ], + 'show' => [ 0, 'mostrar' ], + 'concept' => [ 0, 'conceito' ], + 'subobject' => [ 0, 'subobjeto' ], + 'set' => [ 0, 'definir' ], + 'set_recurring_event' => [ 0, 'definir_evento_recorrente' ], + 'declare' => [ 0, 'declarar' ], + 'SMW_NOFACTBOX' => [ 0, '__SEMCAIXADEFATOS__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__EXIBIRCAIXADEFATOS__' ], +]; + +/** Brazilian Portuguese (português do Brasil) */ +$magicWords['pt-br'] = [ + 'ask' => [ 0, 'consultar' ], + 'show' => [ 0, 'mostrar' ], + 'info' => [ 0, 'info' ], + 'concept' => [ 0, 'conceito' ], + 'subobject' => [ 0, 'subobjeto' ], + 'smwdoc' => [ 0, 'smwdoc' ], + 'set' => [ 0, 'definir' ], + 'set_recurring_event' => [ 0, 'definir_evento_recorrente' ], + 'declare' => [ 0, 'declarar' ], + 'SMW_NOFACTBOX' => [ 0, '__SEMCAIXADEFATOS__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__EXIBIRCAIXADEFATOS__' ], +]; + +/** Serbian (Cyrillic script) (српски (ћирилица)‎) */ +$magicWords['sr-ec'] = [ + 'ask' => [ 0, 'питај' ], + 'show' => [ 0, 'прикажи' ], + 'info' => [ 0, 'подаци' ], + 'concept' => [ 0, 'концепт' ], + 'subobject' => [ 0, 'подобјекат' ], + 'set' => [ 0, 'постави' ], + 'set_recurring_event' => [ 0, 'постави_периодични_догађај' ], + 'declare' => [ 0, 'одреди' ], + 'SMW_NOFACTBOX' => [ 0, '__БЕЗЧИЊЕНИЦА__', '__БЕЗ_ЧИЊЕНИЦА__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__ПРИКАЖИЧИЊЕНИЦЕ__', '__ПРИКАЖИ_ЧИЊЕНИЦЕ__' ], +]; + +/** Serbian (Latin script) (srpski (latinica)‎) */ +$magicWords['sr-el'] = [ + 'ask' => [ 0, 'pitaj' ], + 'show' => [ 0, 'prikaži' ], + 'info' => [ 0, 'podaci' ], + 'concept' => [ 0, 'koncept' ], + 'subobject' => [ 0, 'podobjekat' ], + 'set' => [ 0, 'postavi' ], + 'set_recurring_event' => [ 0, 'postavi_periodični_događaj' ], + 'declare' => [ 0, 'odredi' ], + 'SMW_NOFACTBOX' => [ 0, '__BEZČINJENICA__', '__BEZ_ČINJENICA__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__PRIKAŽIČINJENICE__', '__PRIKAŽI_ČINJENICE__' ], +]; + +/** Swedish (svenska) */ +$magicWords['sv'] = [ + 'ask' => [ 0, 'fråga', 'ask' ], + 'show' => [ 0, 'visa', 'show' ], + 'concept' => [ 0, 'koncept', 'concept' ], +]; + +/** Tatar (Cyrillic script) (татарча) */ +$magicWords['tt-cyrl'] = [ + 'ask' => [ 0, 'сорау' ], + 'show' => [ 0, 'күрсәт' ], + 'info' => [ 0, 'мәгълүмат' ], +]; + +/** Vietnamese (Tiếng Việt) */ +$magicWords['vi'] = [ + 'ask' => [ 0, 'hỏi' ], + 'show' => [ 0, 'hiển_thị' ], + 'info' => [ 0, 'thông_tin' ], + 'concept' => [ 0, 'khái_niệm' ], + 'set' => [ 0, 'đặt' ], +]; + +/** Simplified Chinese (中文(简体)‎) */ +$magicWords['zh-hans'] = [ + 'ask' => [ 0, '询问' ], + 'show' => [ 0, '显示', '展示' ], + 'info' => [ 0, '信息' ], + 'concept' => [ 0, '概念' ], + 'subobject' => [ 0, '子对象' ], + 'smwdoc' => [ 0, 'smw文档' ], + 'set' => [ 0, '设置' ], + 'set_recurring_event' => [ 0, '设置循环事件', '设置重复事件' ], + 'declare' => [ 0, '声明' ], + 'SMW_NOFACTBOX' => [ 0, '__无事实框__' ], + 'SMW_SHOWFACTBOX' => [ 0, '__显示事实框__', '__展示事实框__' ], +]; + +/** Traditional Chinese (中文(繁體)‎) */ +$magicWords['zh-hant'] = [ + 'ask' => [ 0, '訪問' ], + 'show' => [ 0, '顯示' ], + 'info' => [ 0, '資訊' ], + 'smwdoc' => [ 0, 'SMW檔案' ], + 'set' => [ 0, '設定' ], + 'set_recurring_event' => [ 0, '設定循環活動', '設置定期活動' ], +]; diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ar.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ar.json new file mode 100644 index 0000000..7d2dbfb --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ar.json @@ -0,0 +1,189 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "خاصية", + "SMW_NS_PROPERTY_TALK": "نقاش_الخاصية", + "SMW_NS_CONCEPT": "مبدأ", + "SMW_NS_CONCEPT_TALK": "نقاش_المبدأ" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "الصفحة", + "_txt": "نص", + "_cod": "كود", + "_boo": "منطقي", + "_num": "عدد", + "_geo": "الإحداثيات الجغرافية", + "_tem": "الحرارة", + "_dat": "التاريخ", + "_ema": "البريد الإلكتروني", + "_uri": "مسار", + "_anu": "التعليق علي معرف الموارد الموحد", + "_tel": "رقم الهاتف", + "_rec": "تسجيل", + "_qty": "Quantity", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_ref_rec": "Reference" + }, + "aliases": { + "URI": "_uri", + "Float": "_num", + "Integer": "_num", + "سلسلة": "_txt", + "Enumeration": "_txt" + } + }, + "property": { + "labels": { + "_TYPE": "لديه نوع", + "_URI": "معرف الموارد الموحد معادلة", + "_SUBP": "الخاصية الفرعية ل", + "_SUBC": "تصنيف فرعي من", + "_UNIT": "عرض الوحدات", + "_IMPO": "المستوردة من", + "_CONV": "يقابل", + "_SERV": "يوفر الخدمة", + "_PVAL": "يسمح بالقيمة", + "_MDAT": "تاريخ التعديل", + "_CDAT": "Creation date", + "_NEWP": "Is a new page", + "_LEDT": "Last editor is", + "_ERRP": "يمتلك قيمة غير صحيحة ل", + "_LIST": "يمتلك حقول", + "_SOBJ": "Has subobject", + "_ASK": "Has query", + "_ASKST": "Query string", + "_ASKFO": "Query format", + "_ASKSI": "Query size", + "_ASKDE": "Query depth", + "_ASKDU": "Query duration", + "_MEDIA": "Media type", + "_MIME": "MIME type", + "_ERRC": "Has processing error", + "_ERRT": "Has processing error text", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Has property description", + "_PVAP": "Allows pattern", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter uri", + "_ASKSC": "Query source" + }, + "aliases": { + "عرض الوحدة": "_UNIT" + } + }, + "date": { + "months": [ + [ + "يناير", + "يناير" + ], + [ + "فبراير", + "فبراير" + ], + [ + "مارس", + "مارس" + ], + [ + "أبريل", + "أبريل" + ], + [ + "مايو", + "مايو" + ], + [ + "يونيو", + "يونيو" + ], + [ + "يوليو", + "يوليو" + ], + [ + "أغسطس", + "أغسطس" + ], + [ + "سبتمبر", + "سبتمبر" + ], + [ + "أكتوبر", + "أكتوبر" + ], + [ + "نوفمبر", + "نوفمبر" + ], + [ + "ديسمبر", + "ديسمبر" + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thursday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_MDY", + "SMW_DMY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/arz.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/arz.json new file mode 100644 index 0000000..794d22c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/arz.json @@ -0,0 +1,189 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "خاصية", + "SMW_NS_PROPERTY_TALK": "نقاش_الخاصية", + "SMW_NS_CONCEPT": "مبدأ", + "SMW_NS_CONCEPT_TALK": "نقاش_المبدأ" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "الصفحة", + "_txt": "نص", + "_cod": "كود", + "_boo": "منطقى", + "_num": "عدد", + "_geo": "الإحداثيات الجغرافية", + "_tem": "الحرارة", + "_dat": "التاريخ", + "_ema": "البريد الإلكترونى", + "_uri": "مسار", + "_anu": "التعليق علي معرف الموارد الموحد", + "_tel": "Telephone number", + "_rec": "Record", + "_qty": "Quantity", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_ref_rec": "Reference" + }, + "aliases": { + "URI": "_uri", + "Float": "_num", + "Integer": "_num", + "سلسلة": "_txt", + "Enumeration": "_txt" + } + }, + "property": { + "labels": { + "_TYPE": "لديه نوع", + "_URI": "معرف الموارد الموحد معادلة", + "_SUBP": "الخاصية الفرعية ل", + "_SUBC": "Subcategory of", + "_UNIT": "عرض الوحدات", + "_IMPO": "المستوردة من", + "_CONV": "يقابل", + "_SERV": "يوفر الخدمة", + "_PVAL": "يسمح بالقيمة", + "_MDAT": "Modification date", + "_CDAT": "Creation date", + "_NEWP": "Is a new page", + "_LEDT": "Last editor is", + "_ERRP": "Has improper value for", + "_LIST": "Has fields", + "_SOBJ": "Has subobject", + "_ASK": "Has query", + "_ASKST": "Query string", + "_ASKFO": "Query format", + "_ASKSI": "Query size", + "_ASKDE": "Query depth", + "_ASKDU": "Query duration", + "_MEDIA": "Media type", + "_MIME": "MIME type", + "_ERRC": "Has processing error", + "_ERRT": "Has processing error text", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Has property description", + "_PVAP": "Allows pattern", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter uri", + "_ASKSC": "Query source" + }, + "aliases": { + "عرض الوحدة": "_UNIT" + } + }, + "date": { + "months": [ + [ + "يناير", + "يناير" + ], + [ + "فبراير", + "فبراير" + ], + [ + "مارس", + "مارس" + ], + [ + "أبريل", + "أبريل" + ], + [ + "مايو", + "مايو" + ], + [ + "يونيو", + "يونيو" + ], + [ + "يوليو", + "يوليو" + ], + [ + "أغسطس", + "أغسطس" + ], + [ + "سبتمبر", + "سبتمبر" + ], + [ + "أكتوبر", + "أكتوبر" + ], + [ + "نوفمبر", + "نوفمبر" + ], + [ + "ديسمبر", + "ديسمبر" + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thursday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_MDY", + "SMW_DMY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ca.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ca.json new file mode 100644 index 0000000..8a566a9 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ca.json @@ -0,0 +1,200 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Propietat", + "SMW_NS_PROPERTY_TALK": "Propietat_Discussió", + "SMW_NS_CONCEPT": "Concepte", + "SMW_NS_CONCEPT_TALK": "Concepte_Discussió" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Pàgina", + "_txt": "Text", + "_cod": "Codi", + "_boo": "Booleà", + "_num": "Nombre", + "_geo": "Coordenades geogràfiques", + "_tem": "Temperatura", + "_dat": "Data", + "_ema": "Adreça electrònica", + "_uri": "URL", + "_anu": "URI-Anotació", + "_tel": "Número de telèfon", + "_rec": "Registre", + "_qty": "Quantitat", + "_mlt_rec": "Text monolingüe", + "_eid": "Identificador extern", + "_keyw": "Paraula clau", + "_ref_rec": "Referència" + }, + "aliases": { + "URI": "_uri", + "Decimal": "_num", + "Enter": "_num", + "Cadena": "_txt", + "Enumeració": "_txt", + "Número de telèfon": "_tel", + "Adreça electrònica": "_ema", + "Coordenada geogràfica": "_geo", + "Polígon geogràfic": "_gpo" + } + }, + "property": { + "labels": { + "_TYPE": "Té tipus", + "_URI": "URI equivalent", + "_SUBP": "Subpropietat de", + "_SUBC": "Subcategoria de", + "_UNIT": "Unitats de mesura", + "_IMPO": "Importat de", + "_CONV": "Correspon a", + "_SERV": "Proporciona servei", + "_PVAL": "Permet valor", + "_MDAT": "Data de modificació", + "_CDAT": "Data de creació", + "_NEWP": "És pàgina nova", + "_LEDT": "Darrer editor és", + "_ERRP": "Té valor incorrecte per a", + "_LIST": "Té camps", + "_SOBJ": "Té subobjecte", + "_ASK": "Té consulta", + "_ASKST": "Cadena de consulta", + "_ASKFO": "Format de consulta", + "_ASKSI": "Mida de consulta", + "_ASKDE": "Profunditat de consulta", + "_ASKDU": "Durada de consulta", + "_ASKSC": "Font de consulta", + "_ASKPA": "Paràmetres de consulta", + "_MEDIA": "Tipus Media", + "_MIME": "Tipus MIME", + "_ERRC": "Té error de processament", + "_ERRT": "Té text d'error de processament", + "_PREC": "Precisió a mostrar de", + "_LCODE": "Codi d'idioma", + "_TEXT": "Text", + "_PDESC": "Té descripció de propietat", + "_PVAP": "Permet patró", + "_PVALI": "Permet llista de valors", + "_DTITLE": "Títol a mostrar de", + "_PVUC": "Té restricció única", + "_PEID": "Identificador extern", + "_PEFU": "URI del formatador extern", + "_PPLB": "Té etiqueta de propietat preferida", + "_EDIP": "Té protecció de modificació", + "_CHGPRO": "Propagació de canvi", + "_PPGR": "És grup de propietat" + }, + "aliases": { + "Unitat de mesura": "_UNIT" + } + }, + "date": { + "months": [ + [ + "gener", + "gen" + ], + [ + "febrer", + "febr" + ], + [ + "març", + "març" + ], + [ + "abril", + "abr" + ], + [ + "maig", + "maig" + ], + [ + "juny", + "juny" + ], + [ + "juliol", + "jul" + ], + [ + "agost", + "ag" + ], + [ + "setembre", + "set" + ], + [ + "octubre", + "oct" + ], + [ + "novembre", + "nov" + ], + [ + "desembre", + "des" + ] + ], + "days": [ + [ + "dilluns", + "dl" + ], + [ + "dimarts", + "dm" + ], + [ + "dimecres", + "dc" + ], + [ + "dijous", + "dj" + ], + [ + "divendres", + "dv" + ], + [ + "dissabte", + "ds" + ], + [ + "diumenge", + "dg" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_MDY", + "SMW_DMY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/de-at.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/de-at.json new file mode 100644 index 0000000..53eef64 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/de-at.json @@ -0,0 +1,7 @@ +{ + "@metadata": { + "authors": [] + }, + "isLanguageRedirect": true, + "fallback_language": "de" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/de-ch.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/de-ch.json new file mode 100644 index 0000000..53eef64 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/de-ch.json @@ -0,0 +1,7 @@ +{ + "@metadata": { + "authors": [] + }, + "isLanguageRedirect": true, + "fallback_language": "de" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/de-formal.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/de-formal.json new file mode 100644 index 0000000..53eef64 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/de-formal.json @@ -0,0 +1,7 @@ +{ + "@metadata": { + "authors": [] + }, + "isLanguageRedirect": true, + "fallback_language": "de" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/de.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/de.json new file mode 100644 index 0000000..b9ce993 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/de.json @@ -0,0 +1,270 @@ +{ + "@metadata": { + "authors": [ + "Karsten Hoffmeyer", + "Markus Krötzsch" + ] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Attribut", + "SMW_NS_PROPERTY_TALK": "Attribut_Diskussion", + "SMW_NS_CONCEPT": "Konzept", + "SMW_NS_CONCEPT_TALK": "Konzept_Diskussion", + "SMW_NS_SCHEMA": "SMW/Schema", + "SMW_NS_SCHEMA_TALK": "SMW/Schema_Diskussion" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Seite", + "_txt": "Text", + "_cod": "Quellcode", + "_boo": "Wahrheitswert", + "_num": "Zahl", + "_geo": "Geografische Koordinaten", + "_tem": "Temperatur", + "_dat": "Datum", + "_ema": "E-Mail", + "_uri": "URL", + "_anu": "URI-Annotation", + "_tel": "Telefonnummer", + "_rec": "Verbund", + "_qty": "Maß", + "_mlt_rec": "Einsprachiger Text", + "_eid": "Externe Kennung", + "_keyw": "Stichwort", + "_ref_rec": "Referenzierung" + }, + "aliases": { + "URI": "_uri", + "Ganze Zahl": "_num", + "Dezimalzahl": "_num", + "Aufzählung": "_txt", + "Zeichenkette": "_txt", + "Menge": "_qty", + "Schlagwort": "_keyw" + } + }, + "property": { + "labels": { + "_TYPE": "Datentyp", + "_URI": "Gleichwertige URI", + "_SUBP": "Unterattribut von", + "_SUBC": "Unterkategorie von", + "_UNIT": "Einheiten", + "_IMPO": "Importiert aus", + "_CONV": "Entspricht", + "_SERV": "Bietet Service", + "_PVAL": "Erlaubt Wert", + "_MDAT": "Zuletzt geändert", + "_CDAT": "Erstellt", + "_NEWP": "Ist eine neue Seite", + "_LEDT": "Letzter Bearbeiter ist", + "_ERRP": "Hat unpassenden Wert für", + "_LIST": "Hat Komponenten", + "_SOBJ": "Hat Unterobjekt", + "_ASK": "Hat Abfrage", + "_ASKST": "Abfragetext", + "_ASKFO": "Abfrageformat", + "_ASKSI": "Abfragegröße", + "_ASKDE": "Abfragetiefe", + "_ASKDU": "Abfragedauer", + "_ASKPA": "Abfrageparameter", + "_ASKSC": "Abfragequelle", + "_ASKCO": "Abfragestatuscode", + "_MEDIA": "Medientyp", + "_MIME": "MIME-Typ", + "_ERRC": "Verarbeitungsfehler", + "_ERRT": "Verarbeitungsfehlerhinweis", + "_ERR_TYPE": "Verarbeitungsfehlertyp", + "_PREC": "Anzeigegenauigkeit", + "_LCODE": "Sprachcode", + "_TEXT": "Text", + "_PDESC": "Attributbeschreibung", + "_PPLB": "Attributbezeichnung", + "_PVAP": "Erlaubt Muster", + "_DTITLE": "Anzeigetitel", + "_PVUC": "Erlaubt Wert einmal", + "_PVALI": "Erlaubt Werteliste", + "_PEID": "Kennung zur externen URI", + "_PEFU": "Formatierungsanweisung zur externen URI", + "_EDIP": "Ist bearbeitungsgeschützt", + "_CHGPRO": "Änderungsweitergabe", + "_PPGR": "Attributgruppe", + "_SCHEMA_DESC": "Schemabeschreibung", + "_SCHEMA_TAG": "Schemakennzeichen", + "_SCHEMA_TYPE": "Schematyp", + "_SCHEMA_DEF": "Schemadefinition", + "_SCHEMA_LINK": "Schemalink", + "_FORMAT_SCHEMA": "Formatierungsregel", + "_CONSTRAINT_SCHEMA": "Beschränkungsregel", + "_PROFILE_SCHEMA": "Profilregel", + "_FILE_ATTCH": "Dateianhang", + "_ATTCH_LINK": "Dateianhangslink", + "_CONT_TYPE": "Inhaltstyp", + "_CONT_AUTHOR": "Inhaltsautor", + "_CONT_LEN": "Inhaltslänge", + "_CONT_LANG": "Inhaltssprache", + "_CONT_TITLE": "Inhaltstitel", + "_CONT_DATE": "Inhaltsdatum", + "_CONT_KEYW": "Inhaltsstichwort", + "_TRANS": "Übersetzung", + "_TRANS_SOURCE": "Übersetzungsquelle", + "_TRANS_GROUP": "Übersetzungsgruppe" + }, + "aliases": { + "Hat Datentyp": "_TYPE", + "Hat erlaubten Wert": "_PVAL", + "Hat Einheiten": "_UNIT", + "Hat Medientyp": "_MEDIA", + "Hat MIME-Typ": "_MIME", + "Abfrage": "_ASK", + "Unterobjekt": "_SOBJ", + "Komponenten": "_LIST", + "Neue Seite": "_NEWP", + "Letzer Bearbeiter": "_LEDT", + "Ausgabeeinheit": "_UNIT", + "Gleichwertige URI von": "_URI", + "Unpassender Wert": "_ERRP", + "Hat Verarbeitungsfehler": "_ERRC", + "Hat Verarbeitungsfehlerhinweis": "_ERRT", + "Hat Verarbeitungsfehlertyp": "_ERR_TYPE", + "Hat Sprachcode": "_LCODE", + "Hat Anzeigegenauigkeit": "_PREC", + "Hat Attributbezeichnung": "_PPLB", + "Hat Attributbeschreibung": "_PDESC", + "Hat Anzeigetitel": "_DTITLE", + "Hat einmal erlaubten Wert": "_PVUC", + "Externe Kennung": "_PEID", + "Bearbeitungsgeschützt": "_EDIP", + "Ist Änderungsweitergabe": "_CHGPRO", + "Ist Attributgruppe": "_PPGR", + "Hat Schemabeschreibung": "_SCHEMA_DESC", + "Hat Schemakennzeichen": "_SCHEMA_TAG", + "Hat Schematyp": "_SCHEMA_TYPE", + "Hat Schemadefinition": "_SCHEMA_DEF", + "Hat Schemalink": "_SCHEMA_LINK", + "Hat Formatierungsregel": "_FORMAT_SCHEMA", + "Hat Beschränkungsregel": "_CONSTRAINT_SCHEMA", + "Hat Profilregel": "_PROFILE_SCHEMA", + "Hat Dateianhang": "_FILE_ATTCH", + "Hat Dateianhangslink": "_ATTCH_LINK", + "Hat Inhaltstyp": "_CONT_TYPE", + "Hat Inhaltsautor": "_CONT_AUTHOR", + "Hat Inhaltslänge": "_CONT_LEN", + "Hat Inhaltssprache": "_CONT_LANG", + "Hat Inhaltstitel": "_CONT_TITLE", + "Hat Inhaltsdatum": "_CONT_DATE", + "Hat Inhaltsstichwort": "_CONT_KEYW", + "Hat Übersetzung": "_TRANS", + "Hat Übersetzungsquelle": "_TRANS_SOURCE", + "Hat Übersetzungsgruppe": "_TRANS_GROUP" + } + }, + "date": { + "months": [ + [ + "Januar", + "Jan" + ], + [ + "Februar", + "Feb" + ], + [ + "März", + "Mär" + ], + [ + "April", + "Apr" + ], + [ + "Mai", + "Mai" + ], + [ + "Juni", + "Jun" + ], + [ + "Juli", + "Jul" + ], + [ + "August", + "Aug" + ], + [ + "September", + "Sep" + ], + [ + "Oktober", + "Okt" + ], + [ + "November", + "Nov" + ], + [ + "Dezember", + "Dez" + ] + ], + "days": [ + [ + "Montag", + "Mo" + ], + [ + "Dienstag", + "Di" + ], + [ + "Mittwoch", + "Mi" + ], + [ + "Donnerstag", + "Do" + ], + [ + "Freitag", + "Fr" + ], + [ + "Samstag", + "Sa" + ], + [ + "Sonntag", + "So" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "j. F Y", + "SMW_PREC_YMDT": "j. F Y, H:i:s" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_DMY", + "SMW_MDY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/en.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/en.json new file mode 100644 index 0000000..72e6a57 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/en.json @@ -0,0 +1,316 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": false, + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Property", + "SMW_NS_PROPERTY_TALK": "Property_talk", + "SMW_NS_CONCEPT": "Concept", + "SMW_NS_CONCEPT_TALK": "Concept_talk", + "SMW_NS_SCHEMA": "smw/schema", + "SMW_NS_SCHEMA_TALK": "smw/schema_talk" + }, + "aliases": { + "Property": "SMW_NS_PROPERTY", + "Property_talk": "SMW_NS_PROPERTY_TALK", + "Concept": "SMW_NS_CONCEPT", + "Concept_talk": "SMW_NS_CONCEPT_TALK", + "smw/schema": "SMW_NS_SCHEMA", + "smw/schema_talk": "SMW_NS_SCHEMA_TALK" + } + }, + "datatype": { + "labels": { + "_wpg": "Page", + "_txt": "Text", + "_cod": "Code", + "_boo": "Boolean", + "_num": "Number", + "_geo": "Geographic coordinates", + "_tem": "Temperature", + "_dat": "Date", + "_ema": "Email", + "_uri": "URL", + "_anu": "Annotation URI", + "_tel": "Telephone number", + "_rec": "Record", + "_qty": "Quantity", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_keyw": "Keyword", + "_ref_rec": "Reference" + }, + "aliases": { + "URL": "_uri", + "URI": "_uri", + "Page": "_wpg", + "Text": "_txt", + "Enumeration": "_txt", + "String": "_txt", + "Code": "_cod", + "Boolean": "_boo", + "Number": "_num", + "Float": "_num", + "Integer": "_num", + "Geographic coordinates": "_geo", + "Geographic coordinate": "_geo", + "Geographic polygon": "_gpo", + "Temperature": "_tem", + "Quantity": "_qty", + "Date": "_dat", + "Email": "_ema", + "E-mail": "_ema", + "Annotation URI": "_anu", + "Telephone number": "_tel", + "Phone number": "_tel", + "Record": "_rec", + "Monolingual text": "_mlt_rec", + "External identifier": "_eid", + "Keyword": "_keyw", + "Reference": "_ref_rec" + } + }, + "property": { + "labels": { + "_TYPE": "Has type", + "_URI": "Equivalent URI", + "_SUBP": "Subproperty of", + "_SUBC": "Subcategory of", + "_UNIT": "Display units", + "_IMPO": "Imported from", + "_CONV": "Corresponds to", + "_SERV": "Provides service", + "_PVAL": "Allows value", + "_MDAT": "Modification date", + "_CDAT": "Creation date", + "_NEWP": "Is a new page", + "_LEDT": "Last editor is", + "_ERRP": "Has improper value for", + "_LIST": "Has fields", + "_SOBJ": "Has subobject", + "_ASK": "Has query", + "_ASKST": "Query string", + "_ASKFO": "Query format", + "_ASKSI": "Query size", + "_ASKDE": "Query depth", + "_ASKDU": "Query duration", + "_ASKSC": "Query source", + "_ASKPA": "Query parameters", + "_ASKCO": "Query state", + "_MEDIA": "Media type", + "_MIME": "MIME type", + "_ERRC": "Processing error", + "_ERRT": "Processing error message", + "_ERR_TYPE": "Processing error type", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Property description", + "_PVAP": "Allows pattern", + "_PVALI": "Allows value list", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter URI", + "_PPLB": "Preferred property label", + "_EDIP": "Is edit protected", + "_CHGPRO": "Change propagation", + "_PPGR": "Is property group", + "_SCHEMA_DESC": "Schema description", + "_SCHEMA_TAG": "Schema tag", + "_SCHEMA_TYPE": "Schema type", + "_SCHEMA_DEF": "Schema definition", + "_SCHEMA_LINK": "Schema link", + "_FORMAT_SCHEMA": "Formatter schema", + "_CONSTRAINT_SCHEMA": "Constraint schema", + "_PROFILE_SCHEMA": "Profile schema", + "_ATTCH_LINK": "Attachment link", + "_FILE_ATTCH": "File attachment", + "_CONT_TYPE": "Content type", + "_CONT_AUTHOR": "Content author", + "_CONT_LEN": "Content length", + "_CONT_LANG": "Content language", + "_CONT_TITLE": "Content title", + "_CONT_DATE": "Content date", + "_CONT_KEYW": "Content keyword", + "_TRANS": "Translation", + "_TRANS_SOURCE": "Translation source", + "_TRANS_GROUP": "Translation group" + }, + "aliases": { + "Display unit": "_UNIT", + "Display units": "_UNIT", + "Has type": "_TYPE", + "Equivalent URI": "_URI", + "Subproperty of": "_SUBP", + "Subcategory of": "_SUBC", + "Imported from": "_IMPO", + "Corresponds to": "_CONV", + "Provides service": "_SERV", + "Allows value": "_PVAL", + "Has allows value list": "_PVALI", + "Modification date": "_MDAT", + "Creation date": "_CDAT", + "Is a new page": "_NEWP", + "Last editor is": "_LEDT", + "Has improper value for": "_ERRP", + "Has fields": "_LIST", + "Has subobject": "_SOBJ", + "Has query": "_ASK", + "Has query string": "_ASKST", + "Has query format": "_ASKFO", + "Has query size": "_ASKSI", + "Has query depth": "_ASKDE", + "Has query duration": "_ASKDU", + "Has query source": "_ASKSC", + "Has query parameters": "_ASKPA", + "Has query state": "_ASKCO", + "Has query status code": "_ASKCO", + "Has media type": "_MEDIA", + "Has mime type": "_MIME", + "Has processing error": "_ERRC", + "Has processing error text": "_ERRT", + "Has processing error message": "_ERRT", + "Has processing error type": "_ERR_TYPE", + "Display precision of": "_PREC", + "Display precision": "_PREC", + "Language code": "_LCODE", + "Text": "_TEXT", + "Has property description": "_PDESC", + "Property description": "_PDESC", + "Has allows pattern": "_PVAP", + "Has display title of": "_DTITLE", + "Has uniqueness constraint": "_PVUC", + "Uniqueness constraint": "_PVUC", + "IsFunctionalProperty": "_PVUC", + "External identifier": "_PEID", + "External formatter URI": "_PEFU", + "External formatter uri": "_PEFU", + "External formatter URL": "_PEFU", + "Has preferred property label": "_PPLB", + "Is edit protected": "_EDIP", + "IsEditProtected": "_EDIP", + "Change propagation": "_CHGPRO", + "Property group": "_PPGR", + "Schema description": "_SCHEMA_DESC", + "Schema tag": "_SCHEMA_TAG", + "Schema type": "_SCHEMA_TYPE", + "Schema definition": "_SCHEMA_DEF", + "Schema link": "_SCHEMA_LINK", + "Formatter schema": "_FORMAT_SCHEMA", + "Constraint schema": "_CONSTRAINT_SCHEMA", + "Property constraint schema": "_CONSTRAINT_SCHEMA", + "Profile schema": "_PROFILE_SCHEMA", + "Property profile schema": "_PROFILE_SCHEMA", + "File attachment": "_FILE_ATTCH", + "Has file attachment": "_FILE_ATTCH", + "Has translation":"_TRANS" + } + }, + "date": { + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y", + "SMW_PREC_YMDTZ": "H:i:s T, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_MDY", + "SMW_DMY", + "SMW_YMD", + "SMW_YDM" + ] + ], + "months": [ + [ + "January", + "Jan" + ], + [ + "February", + "Feb" + ], + [ + "March", + "Mar" + ], + [ + "April", + "Apr" + ], + [ + "May", + "May" + ], + [ + "June", + "Jun" + ], + [ + "July", + "Jul" + ], + [ + "August", + "Aug" + ], + [ + "September", + "Sep" + ], + [ + "October", + "Oct" + ], + [ + "November", + "Nov" + ], + [ + "December", + "Dec" + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thrusday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/es.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/es.json new file mode 100644 index 0000000..a5d0cda --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/es.json @@ -0,0 +1,202 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Propiedad", + "SMW_NS_PROPERTY_TALK": "Propiedad_discusión", + "SMW_NS_CONCEPT": "Concepto", + "SMW_NS_CONCEPT_TALK": "Concepto_discusión" + }, + "aliases": { + "Atributo": "SMW_NS_PROPERTY", + "Atributo_discusión": "SMW_NS_PROPERTY_TALK" + } + }, + "datatype": { + "labels": { + "_wpg": "Página", + "_txt": "Texto", + "_cod": "Código", + "_boo": "Booleano", + "_num": "Número", + "_geo": "Coordenadas geográficas", + "_tem": "Temperatura", + "_dat": "Fecha", + "_ema": "Dirección electrónica", + "_uri": "URL", + "_anu": "Anotación-URI", + "_tel": "Número de teléfono", + "_rec": "Registro", + "_qty": "Cantidad", + "_mlt_rec": "Texto monolingüe", + "_eid": "Identificador externo", + "_keyw": "Palabra clave", + "_ref_rec": "Referencia" + }, + "aliases": { + "URI": "_uri", + "Número entero": "_num", + "Número con coma": "_num", + "Cadena de caracteres": "_txt", + "Enumeración": "_txt" + } + }, + "property": { + "labels": { + "_TYPE": "Tiene tipo de datos", + "_URI": "URI equivalente", + "_SUBP": "Subpropiedad de", + "_SUBC": "Subcategoría de", + "_UNIT": "Unidades de medida", + "_IMPO": "Importado de", + "_CONV": "Corresponde a", + "_SERV": "Provee servicio", + "_PVAL": "Permite el valor", + "_MDAT": "Fecha de modificación", + "_CDAT": "Fecha de creación", + "_NEWP": "Es una página nueva", + "_LEDT": "Último editor es", + "_ERRP": "Tiene valor incorrecto para", + "_LIST": "Tiene campos", + "_SOBJ": "Tiene subobjeto", + "_ASK": "Tiene consulta", + "_ASKST": "Cadena de consulta", + "_ASKFO": "Formato de consulta", + "_ASKSI": "Tamaño de consulta", + "_ASKDE": "Profundidad de consulta", + "_ASKDU": "Duración de consulta", + "_ASKSC": "Fuente de consulta", + "_ASKPA": "Parámetros de consulta", + "_ASKCO": "Código de estado de consulta", + "_MEDIA": "Tipo Media", + "_MIME": "Tipo MIME", + "_ERRC": "Tiene error de procesamiento", + "_ERRT": "Tiene texto de error procesamiento", + "_PREC": "Mostrar precisión de", + "_LCODE": "Código de lenguaje", + "_TEXT": "Texto", + "_PDESC": "Tiene descripción de propiedad", + "_PVAP": "Permite patrón", + "_PVALI": "Permite lista de valores", + "_DTITLE": "Mostrar título de", + "_PVUC": "Tiene restricción de singularidad", + "_PEID": "Identificador externo", + "_PEFU": "URI del formateador externo", + "_PPLB": "Etiqueta de propiedad preferida", + "_EDIP": "Está protegida de edición", + "_CHGPRO": "Propagación de cambio", + "_PPGR": "Es un grupo de propiedad" + }, + "aliases": { + "Es página nueva": "_NEWP", + "Tiene restricción de unicidad": "_PVUC", + "Unidad de medida": "_UNIT" + } + }, + "date": { + "months": [ + [ + "enero", + "ene" + ], + [ + "febrero", + "feb" + ], + [ + "marzo", + "mar" + ], + [ + "abril", + "abr" + ], + [ + "mayo", + "may" + ], + [ + "junio", + "jun" + ], + [ + "julio", + "jul" + ], + [ + "agosto", + "ago" + ], + [ + "septiembre", + "sep" + ], + [ + "octubre", + "oct" + ], + [ + "noviembre", + "nov" + ], + [ + "diciembre", + "dic" + ] + ], + "days": [ + [ + "Lunes", + "Lun" + ], + [ + "Martes", + "Mar" + ], + [ + "Miércoles", + "Mie" + ], + [ + "Jueves", + "Jue" + ], + [ + "Viernes", + "Vie" + ], + [ + "Sábado", + "Sab" + ], + [ + "Domingo", + "Dom" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "M Y", + "SMW_PREC_YMD": "j M Y", + "SMW_PREC_YMDT": "H:i:s j M Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_DMY", + "SMW_MDY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/fi.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/fi.json new file mode 100644 index 0000000..f2970c3 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/fi.json @@ -0,0 +1,183 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Ominaisuus", + "SMW_NS_PROPERTY_TALK": "Keskustelu_ominaisuudesta", + "SMW_NS_CONCEPT": "Konsepti", + "SMW_NS_CONCEPT_TALK": "Keskustelu_konseptista" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Sivu", + "_txt": "Teksti", + "_cod": "Lähdekoodi", + "_boo": "Boolean", + "_num": "Luku", + "_geo": "Maantieteellinen koordinaatti", + "_tem": "Lämpötila", + "_dat": "Päiväys", + "_ema": "Sähköposti", + "_uri": "URL-osoite", + "_anu": "Annotation URI", + "_tel": "Puhelinnumero", + "_rec": "Tietue", + "_qty": "Määrä", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_ref_rec": "Reference" + }, + "aliases": { + "Merkkijono": "_txt" + } + }, + "property": { + "labels": { + "_TYPE": "On tyypiltään", + "_URI": "Yhtäpitävä URI", + "_SUBP": "Yläominaisuus", + "_SUBC": "Yläluokka", + "_UNIT": "Tulostusyksikkö", + "_IMPO": "Tuotu sanastosta", + "_CONV": "Vastaa määrää", + "_SERV": "Tarjoaa palvelun", + "_PVAL": "Mahdollinen arvo", + "_MDAT": "Muokkausaika", + "_CDAT": "Creation date", + "_NEWP": "Is a new page", + "_LEDT": "Last editor is", + "_ERRP": "Sopimaton arvo kentälle", + "_LIST": "Koostuu kentistä", + "_SOBJ": "Has subobject", + "_ASK": "Has query", + "_ASKST": "Query string", + "_ASKFO": "Query format", + "_ASKSI": "Query size", + "_ASKDE": "Query depth", + "_ASKDU": "Query duration", + "_MEDIA": "Media type", + "_MIME": "Mime type", + "_ERRC": "Has processing error", + "_ERRT": "Has processing error text", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Has property description", + "_PVAP": "Allows pattern", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter uri", + "_ASKSC": "Query source" + }, + "aliases": [] + }, + "date": { + "months": [ + [ + "tammikuu", + "tammikuu" + ], + [ + "helmikuu", + "helmikuu" + ], + [ + "maaliskuu", + "maaliskuu" + ], + [ + "huhtikuu", + "huhtikuu" + ], + [ + "toukokuu", + "toukokuu" + ], + [ + "kesäkuu", + "kesäkuu" + ], + [ + "heinäkuu", + "heinäkuu" + ], + [ + "elokuu", + "elokuu" + ], + [ + "syyskuu", + "syyskuu" + ], + [ + "lokakuu", + "lokakuu" + ], + [ + "marraskuu", + "marraskuu" + ], + [ + "joulukuu", + "joulukuu" + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thursday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_DMY", + "SMW_MDY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/fr.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/fr.json new file mode 100644 index 0000000..67cf4dd --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/fr.json @@ -0,0 +1,189 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Attribut", + "SMW_NS_PROPERTY_TALK": "Discussion_attribut", + "SMW_NS_CONCEPT": "Concept", + "SMW_NS_CONCEPT_TALK": "Discussion_concept" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Page", + "_txt": "Texte", + "_cod": "Code", + "_boo": "Booléen", + "_num": "Nombre", + "_geo": "Coordonnées géographiques", + "_tem": "Température", + "_dat": "Date", + "_ema": "Adresse électronique", + "_uri": "URL", + "_anu": "Annotation-URI", + "_tel": "Numéro de téléphone", + "_rec": "Enregistrement", + "_qty": "Quantité", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_ref_rec": "Reference" + }, + "aliases": { + "URI": "_uri", + "Nombre entier": "_num", + "Nombre décimal": "_num", + "Chaîne de caractères": "_txt", + "Énumeration": "_txt" + } + }, + "property": { + "labels": { + "_TYPE": "A le type", + "_URI": "URI équivalente", + "_SUBP": "Sous-propriété de", + "_SUBC": "Sous-catégorie de", + "_UNIT": "Unités de mesure", + "_IMPO": "Importé de", + "_CONV": "Correspond à", + "_SERV": "Fournit le service", + "_PVAL": "Valeur possible", + "_MDAT": "Date de modification", + "_CDAT": "Date de création", + "_NEWP": "Est une nouvelle page", + "_LEDT": "Le dernier contributeur est", + "_ERRP": "A une valeur incorrecte pour", + "_LIST": "A le champ", + "_SOBJ": "Possède un sous-objet", + "_ASK": "Possède une requête", + "_ASKST": "Champ de requête", + "_ASKFO": "Format de requête", + "_ASKSI": "Taille de la requête", + "_ASKDE": "Profondeur de la requête", + "_ASKDU": "Durée de la requête", + "_MEDIA": "Media type", + "_MIME": "Mime type", + "_ERRC": "Has processing error", + "_ERRT": "Has processing error text", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Has property description", + "_PVAP": "Allows pattern", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter uri", + "_ASKSC": "Query source" + }, + "aliases": { + "Unité de mesure": "_UNIT" + } + }, + "date": { + "months": [ + [ + "janvier", + "jan" + ], + [ + "février", + "fév" + ], + [ + "mars", + "mar" + ], + [ + "avril", + "avr" + ], + [ + "mai", + "mai" + ], + [ + "juin", + "jun" + ], + [ + "juillet", + "jul" + ], + [ + "août", + "aoû" + ], + [ + "septembre", + "sep" + ], + [ + "octobre", + "oct" + ], + [ + "novembre", + "nov" + ], + [ + "décembre", + "déc" + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thursday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_MDY", + "SMW_DMY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/he.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/he.json new file mode 100644 index 0000000..f0ae4a7 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/he.json @@ -0,0 +1,188 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "תכונה", + "SMW_NS_PROPERTY_TALK": "שיחת_תכונה", + "SMW_NS_CONCEPT": "רעיון", + "SMW_NS_CONCEPT_TALK": "שיחת_רעיון" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "עמוד", + "_txt": "טקסט", + "_cod": "קוד", + "_boo": "נכוןלאנכון", + "_num": "מספר", + "_geo": "קורדינטות גיאוגרפיות", + "_tem": "טמפרטורה", + "_dat": "תאריך", + "_ema": "דואל", + "_uri": "כתובת כללית", + "_anu": "מזהה יחודי לפירוש", + "_tel": "Telephone number", + "_rec": "Record", + "_qty": "Quantity", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_ref_rec": "Reference" + }, + "aliases": { + "מזהה יחודי": "_uri", + "שלם": "_num", + "נקודהצפה": "_num", + "מחרוזת": "_txt" + } + }, + "property": { + "labels": { + "_TYPE": "מטיפוס", + "_URI": "מזהה יחודי תואם", + "_SUBP": "רכוש כפוף ל", + "_SUBC": "תת קטגוריה של", + "_UNIT": "יחידות מידה", + "_IMPO": "יובא מ", + "_CONV": "מתורגם ל", + "_SERV": "מספק שירות", + "_PVAL": "ערך אפשרי", + "_MDAT": "תאריך לשינוי", + "_CDAT": "תאריך יצירה", + "_NEWP": "האם הדף חדש", + "_LEDT": "העורך האחרון", + "_ERRP": "יש ערך תקין בשביל", + "_LIST": "Has fields", + "_SOBJ": "Has subobject", + "_ASK": "Has query", + "_ASKST": "מחרוזת השאילתא", + "_ASKFO": "פורמט השאילתא", + "_ASKSI": "גודל השאילתא", + "_ASKDE": "עומק שאילתא", + "_ASKDU": "Query duration", + "_MEDIA": "Media type", + "_MIME": "Mime type", + "_ERRC": "Has processing error", + "_ERRT": "Has processing error text", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Has property description", + "_PVAP": "Allows pattern", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter uri", + "_ASKSC": "Query source" + }, + "aliases": { + "יחידת הצגה": "_UNIT" + } + }, + "date": { + "months": [ + [ + "ינואר", + "ינואר" + ], + [ + "פברואר", + "פברואר" + ], + [ + "מרץ", + "מרץ" + ], + [ + "אפריל", + "אפריל" + ], + [ + "מאי", + "מאי" + ], + [ + "יוני", + "יוני" + ], + [ + "יולי", + "יולי" + ], + [ + "אוגוסט", + "אוגוסט" + ], + [ + "ספטמבר", + "ספטמבר" + ], + [ + "אוקטובר", + "אוקטובר" + ], + [ + "נובמבר", + "נובמבר" + ], + [ + "דצמבר", + "דצמבר" + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thursday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_DMY", + "SMW_MDY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/hu.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/hu.json new file mode 100644 index 0000000..1f23e03 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/hu.json @@ -0,0 +1,181 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Tulajdonság", + "SMW_NS_PROPERTY_TALK": "Tulajdonságvita", + "SMW_NS_CONCEPT": "Koncepció", + "SMW_NS_CONCEPT_TALK": "Koncepcióvita" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Oldal", + "_txt": "Szöveg", + "_cod": "Forráskód", + "_boo": "Logikai", + "_num": "Szám", + "_geo": "Földrajzi koordináta", + "_tem": "Hőmérséklet", + "_dat": "Dátum", + "_ema": "E-Mail", + "_uri": "URL", + "_anu": "Annotált URI", + "_tel": "Telefonszám", + "_rec": "Rekord", + "_qty": "Mennyiség", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_ref_rec": "Reference" + }, + "aliases": { + "URI": "_uri" + } + }, + "property": { + "labels": { + "_TYPE": "Típusa", + "_URI": "Megegyező URL", + "_SUBP": "Altulajdonsága", + "_SUBC": "Alkategóriája", + "_UNIT": "Mértékegysége", + "_IMPO": "Importálva", + "_CONV": "Egyenértékű", + "_SERV": "Nyújtott szolgáltatása", + "_PVAL": "Lehetséges értéke", + "_MDAT": "Utolsó módosítása", + "_CDAT": "Létrehozva", + "_NEWP": "Új oldal", + "_LEDT": "Utolsó szerkesztője", + "_ERRP": "Érvénytelen értéke", + "_LIST": "Mezője", + "_SOBJ": "Alobjektuma", + "_ASK": "Lekérdezése", + "_ASKST": "Lekérdezése szövege", + "_ASKFO": "Lekérdezése formátuma", + "_ASKSI": "Lekérdezése nagysága", + "_ASKDE": "Lekérdezése mélysége", + "_ASKDU": "Lekérdezése időtartama", + "_MEDIA": "Médiatípusa", + "_MIME": "MIME-Típusa", + "_ERRC": "Has processing error", + "_ERRT": "Has processing error text", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Has property description", + "_PVAP": "Allows pattern", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter uri", + "_ASKSC": "Query source" + }, + "aliases": { + "Adattípusa": "_TYPE" + } + }, + "date": { + "months": [ + [ + "Január", + "Jan" + ], + [ + "Február", + "Feb" + ], + [ + "Március", + "Már" + ], + [ + "Április", + "Ápr" + ], + [ + "Május", + "Máj" + ], + [ + "Június", + "Jún" + ], + [ + "Július", + "Júl" + ], + [ + "Augusztus", + "Aug" + ], + [ + "Szeptember", + "Sze" + ], + [ + "Október", + "Okt" + ], + [ + "November", + "Nov" + ], + [ + "December", + "Dec" + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thursday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_YM" + ], + [ + "SMW_YMD" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/id.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/id.json new file mode 100644 index 0000000..58c6bea --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/id.json @@ -0,0 +1,187 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Properti", + "SMW_NS_PROPERTY_TALK": "Pembicaraan_Properti", + "SMW_NS_CONCEPT": "Konsep", + "SMW_NS_CONCEPT_TALK": "Pembicaraan_Konsep" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Halaman", + "_txt": "Teks", + "_cod": "Kode", + "_boo": "Boole", + "_num": "Angka", + "_geo": "Koordinat geografis", + "_tem": "Suhu", + "_dat": "Tanggal", + "_ema": "Surel", + "_uri": "URL", + "_anu": "URI anotasi", + "_tel": "Nomor telepon", + "_rec": "Rekaman", + "_qty": "Quantity", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_ref_rec": "Reference" + }, + "aliases": { + "URI": "_uri", + "Enumerasi": "_txt", + "Nomor telepon": "_tel" + } + }, + "property": { + "labels": { + "_TYPE": "Memiliki tipe", + "_URI": "URI ekuivalen", + "_SUBP": "Subproperti dari", + "_SUBC": "Subkategori dari", + "_UNIT": "Unit tampilan", + "_IMPO": "Diimpor dari", + "_CONV": "Berhubungan dengan", + "_SERV": "Memberikan layanan", + "_PVAL": "Mengizinkan nilai", + "_MDAT": "Tanggal modifikasi", + "_CDAT": "Creation date", + "_NEWP": "Is a new page", + "_LEDT": "Last editor is", + "_ERRP": "Memiliki nilai yang tidak tepat untuk", + "_LIST": "Memiliki bidang", + "_SOBJ": "Has subobject", + "_ASK": "Has query", + "_ASKST": "Query string", + "_ASKFO": "Query format", + "_ASKSI": "Query size", + "_ASKDE": "Query depth", + "_ASKDU": "Query duration", + "_MEDIA": "Media type", + "_MIME": "Mime type", + "_ERRC": "Has processing error", + "_ERRT": "Has processing error text", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Has property description", + "_PVAP": "Allows pattern", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter uri", + "_ASKSC": "Query source" + }, + "aliases": { + "Unit tampilan": "_UNIT" + } + }, + "date": { + "months": [ + [ + "Januari", + "Jan" + ], + [ + "Februari", + "Feb" + ], + [ + "Maret", + "Mar" + ], + [ + "April", + "Apr" + ], + [ + "Mei", + "Mei" + ], + [ + "Juni", + "Jun" + ], + [ + "Juli", + "Jul" + ], + [ + "Agustus", + "Agu" + ], + [ + "September", + "Sep" + ], + [ + "Oktober", + "Okt" + ], + [ + "November", + "Nov" + ], + [ + "Desember", + "Des" + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thursday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_MDY", + "SMW_DMY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/it.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/it.json new file mode 100644 index 0000000..da39108 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/it.json @@ -0,0 +1,191 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Proprietà", + "SMW_NS_PROPERTY_TALK": "Discussione proprietà", + "SMW_NS_CONCEPT": "Concetto", + "SMW_NS_CONCEPT_TALK": "Discussione concetto" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Pagina", + "_txt": "Testo", + "_cod": "Code", + "_boo": "Booleano", + "_num": "Numero", + "_geo": "Coordinate geografiche", + "_tem": "Temperatura", + "_dat": "Data", + "_ema": "Email", + "_uri": "URL", + "_anu": "Annotazione URI", + "_tel": "Telephone number", + "_rec": "Record", + "_qty": "Quantity", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_ref_rec": "Reference" + }, + "aliases": { + "URI": "_uri", + "Float": "_num", + "Integer": "_num", + "Intero": "_num", + "Enumeration": "_txt", + "Enumerazione": "_txt", + "Stringa": "_txt" + } + }, + "property": { + "labels": { + "_TYPE": "Ha tipo", + "_URI": "URI equivalente", + "_SUBP": "Sottoproprietà di", + "_SUBC": "Subcategory of", + "_UNIT": "Visualizza unità", + "_IMPO": "Importato da", + "_CONV": "Corrisponde a", + "_SERV": "Fornisce servizio", + "_PVAL": "Ammette valore", + "_MDAT": "Data di modifica", + "_CDAT": "Creation date", + "_NEWP": "Is a new page", + "_LEDT": "Last editor is", + "_ERRP": "Ha un valore improprio per", + "_LIST": "Has fields", + "_SOBJ": "Has subobject", + "_ASK": "Has query", + "_ASKST": "Query string", + "_ASKFO": "Query format", + "_ASKSI": "Query size", + "_ASKDE": "Query depth", + "_ASKDU": "Query duration", + "_MEDIA": "Media type", + "_MIME": "Mime type", + "_ERRC": "Has processing error", + "_ERRT": "Has processing error text", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Has property description", + "_PVAP": "Allows pattern", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter uri", + "_ASKSC": "Query source" + }, + "aliases": { + "Display unit": "_UNIT" + } + }, + "date": { + "months": [ + [ + "gennaio", + "gen" + ], + [ + "febbraio", + "feb" + ], + [ + "marzo", + "mar" + ], + [ + "aprile", + "apr" + ], + [ + "maggio", + "mag" + ], + [ + "giugno", + "giu" + ], + [ + "luglio", + "lug" + ], + [ + "agosto", + "ago" + ], + [ + "settembre", + "set" + ], + [ + "ottobre", + "ott" + ], + [ + "novembre", + "nov" + ], + [ + "dicembre", + "dic" + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thursday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_DMY", + "SMW_MDY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ja.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ja.json new file mode 100644 index 0000000..94d03c9 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ja.json @@ -0,0 +1,44 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": [], + "aliases": [] + }, + "datatype": { + "labels": [], + "aliases": [] + }, + "property": { + "labels": [], + "aliases": [] + }, + "date": { + "months": [], + "days": [], + "precision": { + "SMW_PREC_Y": "Y年", + "SMW_PREC_YM": "Y年n月", + "SMW_PREC_YMD": "Y年n月j日 (D)", + "SMW_PREC_YMDT": "Y年n月j日 (D) H:i:s", + "SMW_PREC_YMDTZ": "Y年n月j日 (D) H:i:s T" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_YM", + "SMW_MY" + ], + [ + "SMW_YMD", + "SMW_MDY", + "SMW_DMY", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ko.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ko.json new file mode 100644 index 0000000..fc2e100 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ko.json @@ -0,0 +1,129 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "속성", + "SMW_NS_PROPERTY_TALK": "속성토론", + "SMW_NS_CONCEPT": "개념", + "SMW_NS_CONCEPT_TALK": "개념토론", + "SMW_NS_SCHEMA": "smw/스키마", + "SMW_NS_SCHEMA_TALK": "smw/스키마토론" + }, + "aliases": [] + }, + "datatype": { + "labels": [], + "aliases": [] + }, + "property": { + "labels": [], + "aliases": [] + }, + "date": { + "precision": { + "SMW_PREC_Y": "Y년", + "SMW_PREC_YM": "Y년n월", + "SMW_PREC_YMD": "Y년n월j일", + "SMW_PREC_YMDT": "Y년n월j일 H:i:s", + "SMW_PREC_YMDTZ": "Y년n월j일 H:i:s T" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_MDY", + "SMW_DMY", + "SMW_YMD", + "SMW_YDM" + ] + ], + "months": [ + [ + "1월", + "1월" + ], + [ + "2월", + "2월" + ], + [ + "3월", + "3월" + ], + [ + "4월", + "4월" + ], + [ + "5월", + "5월" + ], + [ + "6월", + "6월" + ], + [ + "7월", + "7월" + ], + [ + "8월", + "8월" + ], + [ + "9월", + "9월" + ], + [ + "10월", + "10월" + ], + [ + "11월", + "11월" + ], + [ + "12월", + "12월" + ] + ], + "days": [ + [ + "월요일", + "월" + ], + [ + "화요일", + "화" + ], + [ + "수요일", + "수" + ], + [ + "목요일", + "목" + ], + [ + "금요일", + "금" + ], + [ + "토요일", + "토" + ], + [ + "일요일", + "일" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/nb.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/nb.json new file mode 100644 index 0000000..3e03612 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/nb.json @@ -0,0 +1,201 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Egenskap", + "SMW_NS_PROPERTY_TALK": "Egenskap-diskusjon", + "SMW_NS_CONCEPT": "Konsept", + "SMW_NS_CONCEPT_TALK": "Konsept-diskusjon" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Side", + "_txt": "Tekst", + "_cod": "Kode", + "_boo": "Boolsk", + "_num": "Tall", + "_geo": "Geografisk koordinat", + "_tem": "Temperatur", + "_dat": "Dato", + "_ema": "E-post", + "_uri": "URL", + "_anu": "URI-merknad", + "_tel": "Telefonnummer", + "_rec": "Post", + "_qty": "Størrelse", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_ref_rec": "Reference" + }, + "aliases": { + "Lang tekst": "_txt", + "Kort tekst": "_txt", + "Streng": "_txt", + "Linje": "_txt", + "Hellall": "_num", + "Desimaltall": "_num", + "Liste": "_txt", + "Kildekode": "_cod", + "Koordinat": "_geo", + "Epost": "_ema", + "URI": "_uri", + "Nettadresse": "_uri", + "Mål": "_qty", + "Record": "_rec" + } + }, + "property": { + "labels": { + "_TYPE": "Har type", + "_URI": "Ekvivalent URI", + "_SUBP": "Underegenskap av", + "_SUBC": "Underkategori av", + "_UNIT": "Visningsenhet", + "_IMPO": "Importert fra", + "_CONV": "Svarer til", + "_SERV": "Tilbyr tjeneste", + "_PVAL": "Tillater verdi", + "_MDAT": "Endringsdato", + "_CDAT": "Opprettelsesdato", + "_NEWP": "Er en ny side", + "_LEDT": "Siste redaktør er", + "_ERRP": "Feilaktig verdi for", + "_LIST": "Har feltene", + "_SOBJ": "Har underobjekt", + "_ASK": "Har spørring", + "_ASKST": "Spørringsstreng", + "_ASKFO": "Spørringsformat", + "_ASKSI": "Spørringsstørrelse", + "_ASKDE": "Spørringsdybde", + "_ASKDU": "Spørringsvarighet", + "_MEDIA": "Mediatype", + "_MIME": "MIME-type", + "_ERRC": "Has processing error", + "_ERRT": "Has processing error text", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Has property description", + "_PVAP": "Allows pattern", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter uri", + "_ASKSC": "Query source" + }, + "aliases": { + "Type": "_TYPE", + "Enhet": "_UNIT", + "Synonym URI": "_URI", + "Synonym adresse": "_URI" + } + }, + "date": { + "months": [ + [ + "januar", + "jan." + ], + [ + "februar", + "feb." + ], + [ + "mars", + "mars" + ], + [ + "april", + "april" + ], + [ + "mai", + "mai" + ], + [ + "juni", + "juni" + ], + [ + "juli", + "juli" + ], + [ + "august", + "aug." + ], + [ + "september", + "sep." + ], + [ + "oktober", + "okt." + ], + [ + "november", + "nov." + ], + [ + "desember", + "des." + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thursday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_DMY", + "SMW_MDY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/nl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/nl.json new file mode 100644 index 0000000..4fdb357 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/nl.json @@ -0,0 +1,193 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Eigenschap", + "SMW_NS_PROPERTY_TALK": "Overleg_eigenschap", + "SMW_NS_CONCEPT": "Concept", + "SMW_NS_CONCEPT_TALK": "Overleg_concept" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Pagina", + "_txt": "Tekst", + "_cod": "Code", + "_boo": "Booleaans", + "_num": "Getal", + "_geo": "Geografische coördinaat", + "_tem": "Temperatuur", + "_dat": "Datum", + "_ema": "E-mail", + "_uri": "URL", + "_anu": "Annotatie-URI", + "_tel": "Telefoonnummer", + "_rec": "Record", + "_qty": "Hoeveelheid", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_ref_rec": "Reference" + }, + "aliases": { + "URI": "_uri", + "Drijvende komma": "_num", + "Integer": "_num", + "Opsomming": "_txt", + "String": "_txt" + } + }, + "property": { + "labels": { + "_TYPE": "Heeft type", + "_URI": "Equivalent URI", + "_SUBP": "Subeigenschap van", + "_SUBC": "Subcategorie van", + "_UNIT": "Weergaveeenheden", + "_IMPO": "Geïmporteerd uit", + "_CONV": "Komt overeen met", + "_SERV": "Verleent dienst", + "_PVAL": "Geldige waarde", + "_MDAT": "Wijzigingsdatum", + "_CDAT": "Creatiedatum", + "_NEWP": "Is een nieuwe pagina", + "_LEDT": "Laatste redacteur is", + "_ERRP": "Heeft ongeldige waarde voor", + "_LIST": "Heeft velden", + "_SOBJ": "Heeft subobject", + "_ASK": "Heeft bevraging", + "_ASKST": "Zoekstring", + "_ASKFO": "Zoekopdracht-opmaak", + "_ASKSI": "Zoekopdracht-omvang", + "_ASKDE": "Zoekdiepte", + "_ASKDU": "Zoekduur", + "_MEDIA": "Heeft Mediatype", + "_MIME": "Heeft MIME-type", + "_ERRC": "Has processing error", + "_ERRT": "Has processing error text", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Has property description", + "_PVAP": "Allows pattern", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter uri", + "_ASKSC": "Query source" + }, + "aliases": { + "Weergave-eenheid": "_UNIT", + "Bevragingsstring": "_ASKST", + "Bevragingsopmaak": "_ASKFO", + "Bevragingsgrootte": "_ASKSI", + "Bevragingsdiepgang": "_ASKDE" + } + }, + "date": { + "months": [ + [ + "januari", + "jan" + ], + [ + "februari", + "feb" + ], + [ + "maart", + "mar" + ], + [ + "april", + "apr" + ], + [ + "mei", + "mei" + ], + [ + "juni", + "jun" + ], + [ + "juli", + "jul" + ], + [ + "augustus", + "aug" + ], + [ + "september", + "sep" + ], + [ + "oktober", + "okt" + ], + [ + "november", + "nov" + ], + [ + "december", + "dec" + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thursday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_DMY", + "SMW_MDY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/pl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/pl.json new file mode 100644 index 0000000..8bb1f7a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/pl.json @@ -0,0 +1,235 @@ +{ + "@metadata": { + "authors": [ + "Ostrzyciel", + "UnknownSkyrimPasserby" + ] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Atrybut", + "SMW_NS_PROPERTY_TALK": "Dyskusja_atrybutu", + "SMW_NS_CONCEPT": "Pojęcie", + "SMW_NS_CONCEPT_TALK": "Dyskusja_pojęcia", + "SMW_NS_SCHEMA": "Semantyczny_Schemat", + "SMW_NS_SCHEMA_TALK": "Dyskusja_semantycznego_schematu" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Strona", + "_txt": "Tekst", + "_cod": "Kod", + "_boo": "Wartość logiczna", + "_num": "Liczba", + "_geo": "Współrzędne geograficzne", + "_tem": "Temperatura", + "_dat": "Data", + "_ema": "Email", + "_uri": "URL", + "_anu": "URI adnotacji", + "_tel": "Numer telefonu", + "_rec": "Rekord", + "_qty": "Wielkość", + "_mlt_rec": "Tekst z tagiem języka", + "_eid": "Identyfikator zewnętrzny", + "_keyw": "Słowo kluczowe", + "_ref_rec": "Przypis" + }, + "aliases": { + "URI": "_uri", + "Liczba zmiennoprzecinkowa": "_num", + "Liczba całkowita": "_num", + "Wyliczenie": "_txt", + "Łańcuch znaków": "_txt" + } + }, + "property": { + "labels": { + "_TYPE": "Ma typ", + "_URI": "Równoważne URI", + "_SUBP": "Jest podwłasnością", + "_SUBC": "Podkategoria", + "_UNIT": "Wyświetlane jednostki", + "_IMPO": "Zaimportowane z", + "_CONV": "Odpowiada", + "_SERV": "Zapewnia usługę", + "_PVAL": "Dopuszcza wartość", + "_MDAT": "Data modyfikacji", + "_CDAT": "Data utworzenia", + "_NEWP": "Jest nową stroną", + "_LEDT": "Ostatni redaktor to", + "_ERRP": "Ma niewłaściwą wartość", + "_LIST": "Ma pola", + "_SOBJ": "Ma podobiekt", + "_ASK": "Zawiera zapytanie", + "_ASKST": "Ciąg zapytania", + "_ASKFO": "Format zapytania", + "_ASKSI": "Rozmiar zapytania", + "_ASKDE": "Głębokość zapytania", + "_ASKDU": "Czas trwania zapytania", + "_ASKSC": "Źródło zapytania", + "_ASKPA": "Parametry zapytania", + "_ASKCO": "Status zapytania", + "_MEDIA": "Typ mediów", + "_MIME": "Typ Mime", + "_ERRC": "Ma błąd przetwarzania", + "_ERRT": "Ma błąd przetwarzania tekst", + "_ERR_TYPE": "Typ błędu przetwarzania", + "_PREC": "Wyświetl precyzję", + "_LCODE": "Kod języka", + "_TEXT": "Tekst", + "_PDESC": "Ma opis właściwości", + "_PVAP": "Zezwala na wzorzec", + "_PVALI": "Lista dopuszczalnych wartości", + "_DTITLE": "Wyświetla tytuł", + "_PVUC": "Ma unikalne ograniczenie", + "_PEID": "Identyfikator zewnętrzny", + "_PEFU": "Zewnętrzny formatyzator uri", + "_PPLB": "Preferowana etykieta właściwości", + "_EDIP": "Jest chroniony przed edycją", + "_CHGPRO": "Zmień propagację", + "_PPGR": "Jest grupą właściwości", + "_SCHEMA_DESC": "Opis schematu", + "_SCHEMA_TAG": "Tag schematu", + "_SCHEMA_TYPE": "Typ schematu", + "_SCHEMA_DEF": "Definicja schematu", + "_SCHEMA_LINK": "Link do schematu", + "_FORMAT_SCHEMA": "Schemat formatyzera", + "_CONSTRAINT_SCHEMA": "Schemat ograniczeń", + "_PROFILE_SCHEMA": "Schemat profilu", + "_ATTCH_LINK": "Link do załącznika", + "_FILE_ATTCH": "Załącznik", + "_CONT_TYPE": "Typ zawartości", + "_CONT_AUTHOR": "Autor zawartości", + "_CONT_LEN": "Długość zawartości", + "_CONT_LANG": "Język zawartości", + "_CONT_TITLE": "Tytuł zawartości", + "_CONT_DATE": "Data zawartości", + "_CONT_KEYW": "Słowo kluczowe zawartości", + "_TRANS": "Tłumaczenie", + "_TRANS_SOURCE": "Źródło tłumaczenia", + "_TRANS_GROUP": "Grupa tłumacząca" + }, + "aliases": { + "Wyświetlana jednostka": "_UNIT" + } + }, + "date": { + "months": [ + [ + "styczeń", + "sty", + "stycznia" + ], + [ + "luty", + "lut", + "lutego" + ], + [ + "marzec", + "mar", + "marca" + ], + [ + "kwiecień", + "kwi", + "kwietnia" + ], + [ + "maj", + "maj", + "maja" + ], + [ + "czerwiec", + "cze", + "czerwca" + ], + [ + "lipiec", + "lip", + "lipca" + ], + [ + "sierpień", + "sie", + "sierpnia" + ], + [ + "wrzesień", + "wrz", + "września" + ], + [ + "październik", + "paź", + "października" + ], + [ + "listopad", + "lis", + "listopada" + ], + [ + "grudzień", + "gru", + "grudnia" + ] + ], + "days": [ + [ + "poniedziałek", + "pon." + ], + [ + "wtorek", + "wt." + ], + [ + "środa", + "śr." + ], + [ + "czwartek", + "czw." + ], + [ + "piątek", + "pt." + ], + [ + "sobota", + "sob." + ], + [ + "niedziela", + "niedz." + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "j F Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_DMY", + "SMW_YMD", + "SMW_MDY", + "SMW_YDM" + ] + ] + } +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/pt-br.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/pt-br.json new file mode 100644 index 0000000..1be788b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/pt-br.json @@ -0,0 +1,236 @@ +{ + "@metadata": { + "authors": ["Jaider Andrade Ferreira"] + }, + "fallback_language": "pt", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Propriedade", + "SMW_NS_PROPERTY_TALK": "Propriedade_Discussão", + "SMW_NS_CONCEPT": "Conceito", + "SMW_NS_CONCEPT_TALK": "Conceito_Discussão" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Página", + "_txt": "Texto", + "_cod": "Código", + "_boo": "Booleano", + "_num": "Número", + "_geo": "Coordenadas geográficas", + "_tem": "Temperatura", + "_dat": "Data", + "_ema": "Email", + "_uri": "URL", + "_anu": "URI", + "_tel": "Número de telefone", + "_rec": "Registro", + "_qty": "Quantidade", + "_mlt_rec": "Texto monolingue", + "_eid": "Identificador externo", + "_keyw": "Palavra-chave", + "_ref_rec": "Referência" + }, + "aliases": { + "Entidade": "_wpg", + "Recurso": "_wpg", + "Ponto flutuante": "_num", + "Inteiro": "_num", + "Coordenadas": "_geo", + "E-mail": "_ema", + "Anotação de URI": "_uri", + "Telefone": "_tel", + "URI": "_uri", + "Número inteiro": "_num", + "Variável Booléen": "_boo", + "Valor booleano": "_boo", + "Cadeia": "_txt", + "ID externo": "_eid" + } + }, + "property": { + "labels": { + "_TYPE": "Possui tipo", + "_URI": "URI equivalente", + "_SUBP": "Subpropriedade de", + "_SUBC": "Subcategoria de", + "_UNIT": "Unidades de exibição", + "_IMPO": "Importada de", + "_CONV": "Corresponde a", + "_SERV": "Fornece serviço", + "_PVAL": "Permite valor", + "_MDAT": "Data de modificação", + "_CDAT": "Data de criação", + "_NEWP": "É uma nova página", + "_LEDT": "Último editor é", + "_ERRP": "Possui valor impróprio para", + "_LIST": "Possui campos", + "_SOBJ": "Possui subobjeto", + "_ASK": "Possui consulta", + "_ASKST": "Texto da consulta", + "_ASKFO": "Formato da consulta", + "_ASKSI": "Tamanho da consulta", + "_ASKDE": "Profundidade da consulta", + "_ASKDU": "Duração da consulta", + "_ASKSC": "Fonte da consulta", + "_ASKPA": "Parâmetros da consulta", + "_ASKCO": "Status da consulta", + "_MEDIA": "Tipo de mídia", + "_MIME": "Tipo MIME", + "_ERRC": "Erro de processamento", + "_ERRT": "Mensagem de erro de processamento", + "_ERR_TYPE": "Tipo de erro de processamento", + "_PREC": "Exibe a precisão de", + "_LCODE": "Código de idioma", + "_TEXT": "Texto", + "_PDESC": "Descrição da propriedade", + "_PVAP": "Permite o padrão", + "_PVALI": "Lista de permissão de valores", + "_DTITLE": "Título de exibição", + "_PVUC": "Possui restrição de unicidade", + "_PEID": "Identificador externo", + "_PEFU": "Formato de URI externo", + "_PPLB": "Rótulo preferido para a propriedade", + "_EDIP": "Edição protegida", + "_CHGPRO": "Propagação de alteração", + "_PPGR": "Grupo de propriedade", + "_SCHEMA_DESC": "Descrição do esquema", + "_SCHEMA_TAG": "Palavra-chave do esquema", + "_SCHEMA_TYPE": "Tipo de esquema", + "_SCHEMA_DEF": "Definição do esquema", + "_SCHEMA_LINK": "Link do esquema", + "_FORMAT_SCHEMA": "Formatador do esquema", + "_CONSTRAINT_SCHEMA": "Esquema de restrição", + "_PROFILE_SCHEMA": "Esquema de perfil", + "_ATTCH_LINK": "Link de anexo", + "_FILE_ATTCH": "Anexo de arquivo", + "_CONT_TYPE": "Tipo de conteúdo", + "_CONT_AUTHOR": "Autor do conteúdo", + "_CONT_LEN": "Tamanho do conteúdo", + "_CONT_LANG": "Idioma do conteúdo", + "_CONT_TITLE": "Título do conteúdo", + "_CONT_DATE": "Data do conteúdo", + "_CONT_KEYW": "Palavra-chave do conteúdo", + "_TRANS": "Tradução", + "_TRANS_SOURCE": "Fonte de tradução", + "_TRANS_GROUP": "Grupo de tradução" + }, + "aliases": { + "Exibe unidade": "_UNIT", + "Exibe unidades": "_UNIT", + "É do tipo": "_TYPE", + "Possui URI equivalente": "_URI", + "Importado de": "_IMPO", + "Corresponde ao": "_CONV", + "Tem o tipo": "_TYPE", + "Unidade de amostra": "_UNIT", + "Perfil do esquema": "_PROFILE_SCHEMA" + } + }, + "date": { + "months": [ + [ + "janeiro", + "jan" + ], + [ + "fevereiro", + "fev" + ], + [ + "março", + "mar" + ], + [ + "abril", + "abr" + ], + [ + "maio", + "mai" + ], + [ + "junho", + "jun" + ], + [ + "julho", + "jul" + ], + [ + "agosto", + "ago" + ], + [ + "setembro", + "set" + ], + [ + "outubro", + "out" + ], + [ + "novembro", + "nov" + ], + [ + "dezembro", + "dez" + ] + ], + "days": [ + [ + "segunda-feira", + "seg" + ], + [ + "terça-feira", + "ter" + ], + [ + "quarta-feira", + "qua" + ], + [ + "quinta-feira", + "qui" + ], + [ + "sexta-feira", + "sex" + ], + [ + "sábado", + "sáb" + ], + [ + "domingo", + "dom" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "j F Y", + "SMW_PREC_YMDT": "H:i:s, j F Y", + "SMW_PREC_YMDTZ": "H:i:s T, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_MDY", + "SMW_DMY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/pt.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/pt.json new file mode 100644 index 0000000..8160584 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/pt.json @@ -0,0 +1,209 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Propriedade", + "SMW_NS_PROPERTY_TALK": "Discussão_propriedade", + "SMW_NS_CONCEPT": "Conceito", + "SMW_NS_CONCEPT_TALK": "Discussão_conceito" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Página", + "_txt": "Texto", + "_cod": "Código", + "_boo": "Booleano", + "_num": "Número", + "_geo": "Coordenadas geográficas", + "_tem": "Temperatura", + "_dat": "Data", + "_ema": "Email", + "_uri": "URL", + "_anu": "URI", + "_tel": "Número de telefone", + "_rec": "Registro", + "_qty": "Quantidade", + "_mlt_rec": "Texto monolingue", + "_eid": "Identificador externo", + "_ref_rec": "Referência" + }, + "aliases": { + "Entidade": "_wpg", + "Recurso": "_wpg", + "Ponto flutuante": "_num", + "Inteiro": "_num", + "Coordenadas": "_geo", + "E-mail": "_ema", + "Anotação de URI": "_uri", + "Telefone": "_tel", + "URI": "_uri", + "Número inteiro": "_num", + "Folga": "_num", + "Variável Booléen": "_boo", + "Valor booleano": "_boo", + "Enumeração": "_txt", + "Cadeia": "_txt", + "ID externo": "_eid" + } + }, + "property": { + "labels": { + "_TYPE": "Possui tipo", + "_URI": "URI equivalente", + "_SUBP": "Subpropriedade de", + "_SUBC": "Subcategoria de", + "_UNIT": "Unidades de exibição", + "_IMPO": "Importada de", + "_CONV": "Corresponde a", + "_SERV": "Fornece serviço", + "_PVAL": "Permite valor", + "_MDAT": "Data de modificação", + "_CDAT": "Data de criação", + "_NEWP": "É uma nova página", + "_LEDT": "Último editor", + "_ERRP": "Possui valor impróprio para", + "_LIST": "Possui campos", + "_SOBJ": "Possui subobjeto", + "_ASK": "Possui consulta", + "_ASKST": "Texto da consulta", + "_ASKFO": "Formato da consulta", + "_ASKSI": "Tamanho da consulta", + "_ASKDE": "Profundidade da consulta", + "_ASKDU": "Duração da consulta", + "_MEDIA": "Tipo de mídia", + "_MIME": "Tipo MIME", + "_ERRC": "Possui erro de processamento", + "_ERRT": "Possui texto de erro de processamento", + "_PREC": "Exibe a precisão de", + "_LCODE": "Código de idioma", + "_TEXT": "Texto", + "_PDESC": "Possui a descrição da propriedade", + "_PVAP": "Permite o padrão", + "_DTITLE": "Possui título de exibição", + "_PVUC": "Possui restrição de unicidade", + "_PEID": "Identificador externo", + "_PEFU": "Formato de URI externo", + "_PPLB": "Rótulo preferido para a propriedade", + "_ASKSC": "Fonte de consulta" + }, + "aliases": { + "Exibe unidade": "_UNIT", + "Exibe unidades": "_UNIT", + "É do tipo": "_TYPE", + "Possui URI equivalente": "_URI", + "Importado de": "_IMPO", + "Corresponde ao": "_CONV", + "Tem o tipo": "_TYPE", + "Unidade de amostra": "_UNIT" + } + }, + "date": { + "months": [ + [ + "Janeiro", + "Jan" + ], + [ + "Fevereiro", + "Fev" + ], + [ + "Março", + "Mar" + ], + [ + "Abril", + "Abr" + ], + [ + "Maio", + "Mai" + ], + [ + "Junho", + "Jun" + ], + [ + "Julho", + "Jul" + ], + [ + "Agosto", + "Ago" + ], + [ + "Setembro", + "Set" + ], + [ + "Outubro", + "Out" + ], + [ + "Novembro", + "Nov" + ], + [ + "Dezembro", + "Dez" + ] + ], + "days": [ + [ + "Segunda-feira", + "Seg" + ], + [ + "Terça-feira", + "Ter" + ], + [ + "Quarta-feira", + "Qua" + ], + [ + "Quinta-feira", + "Qui" + ], + [ + "Sexta-feira", + "Sex" + ], + [ + "Sábado", + "Sáb" + ], + [ + "Domingo", + "Dom" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y", + "SMW_PREC_YMDTZ": "H:i:s T, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_MDY", + "SMW_DMY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ru.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ru.json new file mode 100644 index 0000000..34c2f98 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/ru.json @@ -0,0 +1,192 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Свойство", + "SMW_NS_PROPERTY_TALK": "Обсуждение_свойства", + "SMW_NS_CONCEPT": "Концепция", + "SMW_NS_CONCEPT_TALK": "Обсуждение_концепции" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Страница", + "_txt": "Текст", + "_cod": "Исходный код", + "_boo": "Булево", + "_num": "Число", + "_geo": "Географические координаты", + "_tem": "Температура", + "_dat": "Дата", + "_ema": "Почта", + "_uri": "URL", + "_anu": "URI аннотации", + "_tel": "Номер телефона", + "_rec": "Запись", + "_qty": "Количество", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_ref_rec": "Reference" + }, + "aliases": { + "URI": "_uri", + "Целое": "_num", + "Десятичное": "_num", + "Плавающее": "_num", + "Перечисление": "_txt", + "Строка": "_txt", + "Телефон": "_tel" + } + }, + "property": { + "labels": { + "_TYPE": "Имеет тип", + "_URI": "Эквивалентный URI", + "_SUBP": "Подчиненное свойству", + "_SUBC": "Вложенная категория", + "_UNIT": "Отображаемые единицы", + "_IMPO": "Импортировано из", + "_CONV": "Относится к", + "_SERV": "Предоставляет сервис", + "_PVAL": "Допустимое значение", + "_MDAT": "Дата последней правки", + "_CDAT": "Дата создания", + "_NEWP": "Новая страница", + "_LEDT": "Последний редактор", + "_ERRP": "Содержит некорректное значение", + "_LIST": "Имеет поля", + "_SOBJ": "Содержит субобъект", + "_ASK": "Содержит запрос", + "_ASKST": "Строка запроса", + "_ASKFO": "Формат запроса", + "_ASKSI": "Размер запроса", + "_ASKDE": "Глубина запроса", + "_ASKDU": "Длительность запроса", + "_MEDIA": "Тип медиа", + "_MIME": "MIME-тип", + "_ERRC": "Has processing error", + "_ERRT": "Has processing error text", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Has property description", + "_PVAP": "Allows pattern", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter uri", + "_ASKSC": "Query source" + }, + "aliases": { + "Тип данных": "_TYPE", + "Отображаемая единица": "_UNIT" + } + }, + "date": { + "months": [ + [ + "января", + "янв" + ], + [ + "февраля", + "фев" + ], + [ + "марта", + "мар" + ], + [ + "апреля", + "апр" + ], + [ + "мая", + "мая" + ], + [ + "июня", + "июн" + ], + [ + "июля", + "июл" + ], + [ + "августа", + "авг" + ], + [ + "сентября", + "сен" + ], + [ + "октября", + "окт" + ], + [ + "ноября", + "ноя" + ], + [ + "декабря", + "дек" + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thursday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_DMY", + "SMW_MDY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/sk.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/sk.json new file mode 100644 index 0000000..bd9a252 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/sk.json @@ -0,0 +1,188 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Atribút", + "SMW_NS_PROPERTY_TALK": "Diskusia o atribúte", + "SMW_NS_CONCEPT": "Concept", + "SMW_NS_CONCEPT_TALK": "Concept_talk" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Stránka", + "_txt": "Text", + "_cod": "Kód", + "_boo": "Pravdivostná hodnota", + "_num": "Číslo", + "_geo": "Zemepisné súradnice", + "_tem": "Teplota", + "_dat": "Dátum", + "_ema": "Email", + "_uri": "URL", + "_anu": "URI anotácie", + "_tel": "Telefónne číslo", + "_rec": "Record", + "_qty": "Rozmer", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_ref_rec": "Reference" + }, + "aliases": { + "URI": "_uri", + "Celé číslo": "_num", + "Desatinné číslo": "_num", + "Reťazec": "_txt" + } + }, + "property": { + "labels": { + "_TYPE": "Má typ", + "_URI": "Ekvivalent URI", + "_SUBP": "Je podatribútom", + "_SUBC": "Je podkategóriou", + "_UNIT": "Zobrazovacie jednotky", + "_IMPO": "Importovaný z", + "_CONV": "Zodpovedá", + "_SERV": "Poskytuje službu", + "_PVAL": "Povolená hodnota", + "_MDAT": "Dátum zmeny", + "_CDAT": "Dátum vytvorenia", + "_NEWP": "Nová stránka", + "_LEDT": "Posledný editor", + "_ERRP": "Má nesprávnu hodnotu pre", + "_LIST": "Has fields", + "_SOBJ": "Má podobjekt", + "_ASK": "Má požiadavku", + "_ASKST": "Reťazec požiadavky", + "_ASKFO": "Formát požiadavky", + "_ASKSI": "Veľkosť požiadavky", + "_ASKDE": "Hĺbka požiadavky", + "_ASKDU": "Query duration", + "_MEDIA": "Media type", + "_MIME": "Mime type", + "_ERRC": "Has processing error", + "_ERRT": "Has processing error text", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Has property description", + "_PVAP": "Allows pattern", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter uri", + "_ASKSC": "Query source" + }, + "aliases": { + "Zobrazovacia jednotka": "_UNIT" + } + }, + "date": { + "months": [ + [ + "January", + "January" + ], + [ + "February", + "February" + ], + [ + "March", + "March" + ], + [ + "April", + "April" + ], + [ + "May", + "May" + ], + [ + "June", + "June" + ], + [ + "July", + "July" + ], + [ + "August", + "August" + ], + [ + "September", + "September" + ], + [ + "October", + "October" + ], + [ + "November", + "November" + ], + [ + "December", + "December" + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thursday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ], + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_DMY", + "SMW_MDY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/uk.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/uk.json new file mode 100644 index 0000000..7d9e042 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/uk.json @@ -0,0 +1,226 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "Властивість", + "SMW_NS_PROPERTY_TALK": "Обговорення_властивості", + "SMW_NS_CONCEPT": "Концепція", + "SMW_NS_CONCEPT_TALK": "Обговорення_концепції", + "SMW_NS_SCHEMA": "smw/schema", + "SMW_NS_SCHEMA_TALK": "smw/schema_talk" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "Сторінка", + "_txt": "Текст", + "_cod": "Вихідний код", + "_boo": "Булеве", + "_num": "Число", + "_geo": "Географічні координати", + "_tem": "Температура", + "_dat": "Дата", + "_ema": "Електронна пошта", + "_uri": "URL", + "_anu": "URI аннотації", + "_tel": "Номер телефону", + "_rec": "Запис", + "_qty": "Кількість", + "_mlt_rec": "Одномовний текст", + "_eid": "Зовнішній ідентифікатор", + "_keyw": "Ключове слово", + "_ref_rec": "Посилання" + }, + "aliases": { + "URI": "_uri", + "Перечислення": "_txt", + "Рядок": "_txt", + "Код": "_cod", + "Логічне": "_boo", + "Ціле": "_num", + "Десяткове": "_num", + "Географічна координата": "_geo", + "Географічний полігон": "_gpo", + "Пошта": "_ema", + "E-mail": "_ema", + "Телефон": "_tel" + } + }, + "property": { + "labels": { + "_TYPE": "Має тип", + "_URI": "Еквівалентний URI", + "_SUBP": "Підвластивість", + "_SUBC": "Підкатегорія", + "_UNIT": "Відображені одиниці", + "_IMPO": "Імпортовано з", + "_CONV": "Відповідає", + "_SERV": "Надає сервіс", + "_PVAL": "Дозволяє значення", + "_MDAT": "Дата останнього редагування", + "_CDAT": "Дата створення", + "_NEWP": "Нова сторінка", + "_LEDT": "Останній редактор", + "_ERRP": "Має неправильне значення", + "_LIST": "Має поля", + "_SOBJ": "Має підоб’єкт", + "_ASK": "Має запит", + "_ASKST": "Рядок запиту", + "_ASKFO": "Формат запиту", + "_ASKSI": "Розмір запиту", + "_ASKDE": "Глибина запиту", + "_ASKDU": "Тривалість запиту", + "_ASKSC": "Джерело запиту", + "_ASKPA": "Параметри запиту", + "_ASKCO": "Стан запиту", + "_MEDIA": "Тип медіа", + "_MIME": "Тип MIME", + "_ERRC": "Помилка обробки", + "_ERRT": "Повідомлення помилки обробки", + "_ERR_TYPE": "Тип помилки обробки", + "_PREC": "Точність відображення", + "_LCODE": "Код мови", + "_TEXT": "Текст", + "_PDESC": "Опис властивості", + "_PVAP": "Дозволяє шаблон", + "_PVALI": "Дозволяє список значень", + "_DTITLE": "Відображувана назва", + "_PVUC": "Має обмеження унікальності", + "_PEID": "Зовнішній ідентифікатор", + "_PEFU": "URI зовнішнього форматувача", + "_PPLB": "Бажана назва властивості", + "_EDIP": "Захищено від редагувань", + "_CHGPRO": "Поширення змін", + "_PPGR": "Є групою властивостей", + "_SCHEMA_DESC": "Опис схеми", + "_SCHEMA_TAG": "Теґ схеми", + "_SCHEMA_TYPE": "Тип схеми", + "_SCHEMA_DEF": "Визначення схеми", + "_SCHEMA_LINK": "Посилання на схему", + "_FORMAT_SCHEMA": "Схема форматування", + "_CONSTRAINT_SCHEMA": "Схема обмежень", + "_PROFILE_SCHEMA": "Схема профілю", + "_ATTCH_LINK": "Посилання на вкладення", + "_FILE_ATTCH": "Файл вкладення", + "_CONT_TYPE": "Тип умісту", + "_CONT_AUTHOR": "Автор умісту", + "_CONT_LEN": "Довжина вмісту", + "_CONT_LANG": "Мова вмісту", + "_CONT_TITLE": "Заголовок умісту", + "_CONT_DATE": "Дата вмісту", + "_CONT_KEYW": "Ключове слово вмісту", + "_TRANS": "Переклад", + "_TRANS_SOURCE": "Джерело перекладу", + "_TRANS_GROUP": "Група перекладу" + }, + "aliases": [] + }, + "date": { + "precision": { + "SMW_PREC_Y": "Y", + "SMW_PREC_YM": "F Y", + "SMW_PREC_YMD": "F j, Y", + "SMW_PREC_YMDT": "H:i:s, j F Y", + "SMW_PREC_YMDTZ": "H:i:s T, j F Y" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_MDY", + "SMW_DMY", + "SMW_YMD", + "SMW_YDM" + ] + ], + "months": [ + [ + "січня", + "січ" + ], + [ + "лютого", + "лют" + ], + [ + "березня", + "бер" + ], + [ + "квітня", + "кві" + ], + [ + "травня", + "тра" + ], + [ + "червня", + "чер" + ], + [ + "липня", + "лип" + ], + [ + "серпня", + "сер" + ], + [ + "вересня", + "вер" + ], + [ + "жовтня", + "жов" + ], + [ + "листопада", + "лист" + ], + [ + "грудня", + "гру" + ] + ], + "days": [ + [ + "Понеділок", + "Пн" + ], + [ + "Вівторок", + "Вт" + ], + [ + "Середа", + "Ср" + ], + [ + "Четвер", + "Чт" + ], + [ + "П’ятниця", + "Пт" + ], + [ + "Субота", + "Сб" + ], + [ + "Неділя", + "Нд" + ] + ] + } +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-cn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-cn.json new file mode 100644 index 0000000..a3dde2b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-cn.json @@ -0,0 +1,267 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "属性", + "SMW_NS_PROPERTY_TALK": "属性讨论", + "SMW_NS_CONCEPT": "概念", + "SMW_NS_CONCEPT_TALK": "概念讨论", + "SMW_NS_SCHEMA": "SMW/模式", + "SMW_NS_SCHEMA_TALK": "SMW/模式讨论" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "页面", + "_txt": "文本", + "_cod": "代码", + "_boo": "布尔", + "_num": "数字", + "_geo": "地理坐标", + "_tem": "温度", + "_dat": "日期", + "_ema": "电子邮件", + "_uri": "URL", + "_anu": "注释URI", + "_tel": "电话号码", + "_rec": "记录", + "_qty": "数量", + "_mlt_rec": "单语言文本", + "_eid": "外部标识符", + "_keyw": "关键词", + "_ref_rec": "参考" + }, + "aliases": { + "网址": "_uri", + "URI": "_uri", + "文字": "_txt", + "枚举": "_txt", + "字符串": "_txt", + "数": "_num", + "数目": "_num", + "浮点数": "_num", + "整数": "_num", + "地理多边形": "_gpo", + "量": "_qty", + "物理量": "_qty", + "手机号码": "_tel", + "参考资料": "_ref_rec", + "参考文献": "_ref_rec" + } + }, + "property": { + "labels": { + "_TYPE": "有类型", + "_URI": "等同物URI", + "_SUBP": "父属性", + "_SUBC": "父分类", + "_UNIT": "显示单位", + "_IMPO": "导入自", + "_CONV": "相当于", + "_SERV": "提供服务", + "_PVAL": "允许值", + "_MDAT": "修改日期", + "_CDAT": "创建日期", + "_NEWP": "是新页面", + "_LEDT": "最后编者是", + "_ERRP": "有不当值的属性", + "_LIST": "有字段", + "_SOBJ": "有子对象", + "_ASK": "有查询", + "_ASKST": "查询字符串", + "_ASKFO": "查询格式", + "_ASKSI": "查询大小", + "_ASKDE": "查询深度", + "_ASKDU": "查询时长", + "_ASKSC": "查询来源", + "_ASKPA": "查询参数", + "_ASKCO": "查询状态", + "_MEDIA": "媒体类型", + "_MIME": "MIME类型", + "_ERRC": "处理错误", + "_ERRT": "处理错误消息", + "_ERR_TYPE": "处理错误类型", + "_PREC": "显示精度", + "_LCODE": "语言代码", + "_TEXT": "文本", + "_PDESC": "属性描述", + "_PVAP": "允许样板", + "_PVALI": "允许值列表", + "_DTITLE": "显示标题", + "_PVUC": "有唯一性约束", + "_PEID": "外部标识符", + "_PEFU": "外部格式化URI", + "_PPLB": "首选属性标签", + "_EDIP": "受编辑保护", + "_CHGPRO": "更改传播", + "_PPGR": "是属性组合", + "_SCHEMA_DESC": "模式描述", + "_SCHEMA_TAG": "模式标签", + "_SCHEMA_TYPE": "模式类型", + "_SCHEMA_DEF": "模式定义", + "_SCHEMA_LINK": "模式链接", + "_FORMAT_SCHEMA": "格式化模式", + "_CONSTRAINT_SCHEMA": "约束模式", + "_PROFILE_SCHEMA": "配置文件模式", + "_ATTCH_LINK": "附件链接", + "_FILE_ATTCH": "文件附件", + "_CONT_TYPE": "内容类型", + "_CONT_AUTHOR": "内容作者", + "_CONT_LEN": "内容长度", + "_CONT_LANG": "内容语言", + "_CONT_TITLE": "内容标题", + "_CONT_DATE": "内容日期", + "_CONT_KEYW": "内容关键词", + "_TRANS": "翻译", + "_TRANS_SOURCE": "翻译源", + "_TRANS_GROUP": "翻译组" + }, + "aliases": { + "父属性是": "_SUBP", + "作为子属性": "_SUBP", + "父分类是": "_SUBC", + "作为子分类": "_SUBC", + "有允许值列表": "_PVALI", + "最后编辑者是": "_LEDT", + "有查询字符串": "_ASKST", + "有查询格式": "_ASKFO", + "有查询大小": "_ASKSI", + "有查询深度": "_ASKDE", + "有查询时长": "_ASKDU", + "有查询来源": "_ASKSC", + "有查询参数": "_ASKPA", + "有查询状态": "_ASKCO", + "有查询状态代码": "_ASKCO", + "有媒体类型": "_MEDIA", + "有MIME类型": "_MIME", + "有处理错误": "_ERRC", + "有处理错误文本": "_ERRT", + "有处理错误消息": "_ERRT", + "有处理错误类型": "_ERR_TYPE", + "显示精度是": "_PREC", + "小数位数": "_PREC", + "文字": "_TEXT", + "有属性描述": "_PDESC", + "有允许样板": "_PVAP", + "有显示标题": "_DTITLE", + "显示标题是": "_DTITLE", + "唯一性约束": "_PVUC", + "是功能属性": "_PVUC", + "外部格式化URL": "_PEFU", + "有首选属性标签": "_PPLB", + "属性组合": "_PPGR", + "属性约束模式": "_CONSTRAINT_SCHEMA", + "属性配置文件模式": "_PROFILE_SCHEMA", + "有文件附件": "_FILE_ATTCH", + "有翻译":"_TRANS" + } + }, + "date": { + "precision": { + "SMW_PREC_Y": "Y年", + "SMW_PREC_YM": "Y年n月", + "SMW_PREC_YMD": "Y年n月j日", + "SMW_PREC_YMDT": "Y年n月j日 H:i:s", + "SMW_PREC_YMDTZ": "Y年n月j日 H:i:s T" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_MDY", + "SMW_DMY", + "SMW_YMD", + "SMW_YDM" + ] + ], + "months": [ + [ + "1月", + "1月" + ], + [ + "2月", + "2月" + ], + [ + "3月", + "3月" + ], + [ + "4月", + "4月" + ], + [ + "5月", + "5月" + ], + [ + "6月", + "6月" + ], + [ + "7月", + "7月" + ], + [ + "8月", + "8月" + ], + [ + "9月", + "9月" + ], + [ + "10月", + "10月" + ], + [ + "11月", + "11月" + ], + [ + "12月", + "12月" + ] + ], + "days": [ + [ + "星期一", + "一" + ], + [ + "星期二", + "二" + ], + [ + "星期三", + "三" + ], + [ + "星期四", + "四" + ], + [ + "星期五", + "五" + ], + [ + "星期六", + "六" + ], + [ + "星期日", + "日" + ] + ] + } +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-hans.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-hans.json new file mode 100644 index 0000000..2dd0687 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-hans.json @@ -0,0 +1,7 @@ +{ + "@metadata": { + "authors": [] + }, + "isLanguageRedirect": true, + "fallback_language": "zh-cn" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-hant.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-hant.json new file mode 100644 index 0000000..2dd0687 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-hant.json @@ -0,0 +1,7 @@ +{ + "@metadata": { + "authors": [] + }, + "isLanguageRedirect": true, + "fallback_language": "zh-cn" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-tw.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-tw.json new file mode 100644 index 0000000..d567a18 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh-tw.json @@ -0,0 +1,192 @@ +{ + "@metadata": { + "authors": [] + }, + "fallback_language": "en", + "namespace": { + "labels": { + "SMW_NS_PROPERTY": "屬性", + "SMW_NS_PROPERTY_TALK": "屬性討論", + "SMW_NS_CONCEPT": "概念", + "SMW_NS_CONCEPT_TALK": "概念討論" + }, + "aliases": [] + }, + "datatype": { + "labels": { + "_wpg": "頁面型", + "_txt": "文字型", + "_cod": "代碼型", + "_boo": "布爾型", + "_num": "數值型", + "_geo": "地理坐標型", + "_tem": "溫度型", + "_dat": "日期型", + "_ema": "電子郵件地址型", + "_uri": "URL型", + "_anu": "注釋URI型", + "_tel": "電話號碼型", + "_rec": "記錄型", + "_qty": "數量型", + "_mlt_rec": "Monolingual text", + "_eid": "External identifier", + "_ref_rec": "Reference" + }, + "aliases": { + "浮點型": "_num", + "整數型": "_num", + "枚舉型": "_txt", + "字串型": "_txt", + "Float": "_num", + "Integer": "_num", + "Enumeration": "_txt", + "URI": "_uri" + } + }, + "property": { + "labels": { + "_TYPE": "具有類型", + "_URI": "等價URI", + "_SUBP": "是……的子屬性", + "_SUBC": "是……的子分類", + "_UNIT": "顯示單位", + "_IMPO": "導入自", + "_CONV": "對應於", + "_SERV": "提供服務", + "_PVAL": "允許取值", + "_MDAT": "修改日期", + "_CDAT": "創建日期", + "_NEWP": "是一個新頁面", + "_LEDT": "最後編者為", + "_ERRP": "具有……的不當取值", + "_LIST": "具有欄位", + "_SOBJ": "具有子對象", + "_ASK": "具有查詢", + "_ASKST": "查詢字串", + "_ASKFO": "查詢格式", + "_ASKSI": "查詢大小", + "_ASKDE": "查詢深度", + "_ASKDU": "查詢持續時間", + "_MEDIA": "媒體類型", + "_MIME": "MIME類型", + "_ERRC": "Has processing error", + "_ERRT": "Has processing error text", + "_PREC": "Display precision of", + "_LCODE": "Language code", + "_TEXT": "Text", + "_PDESC": "Has property description", + "_PVAP": "Allows pattern", + "_DTITLE": "Display title of", + "_PVUC": "Has uniqueness constraint", + "_PEID": "External identifier", + "_PEFU": "External formatter uri", + "_ASKSC": "Query source" + }, + "aliases": { + "顯示計量單位": "_UNIT" + } + }, + "date": { + "months": [ + [ + "1月", + "1月" + ], + [ + "2月", + "2月" + ], + [ + "3月", + "3月" + ], + [ + "4月", + "4月" + ], + [ + "5月", + "5月" + ], + [ + "6月", + "6月" + ], + [ + "7月", + "7月" + ], + [ + "8月", + "8月" + ], + [ + "9月", + "9月" + ], + [ + "10月", + "10月" + ], + [ + "11月", + "11月" + ], + [ + "12月", + "12月" + ] + ], + "days": [ + [ + "Monday", + "Mon" + ], + [ + "Tuesday", + "Tue" + ], + [ + "Wednesday", + "Wed" + ], + [ + "Thursday", + "Thu" + ], + [ + "Friday", + "Fri" + ], + [ + "Saturday", + "Sat" + ], + [ + "Sunday", + "Sun" + ] + ], + "precision": { + "SMW_PREC_Y": "Y年", + "SMW_PREC_YM": "Y年n月", + "SMW_PREC_YMD": "Y年n月j日 (D)", + "SMW_PREC_YMDT": "Y年n月j日 (D) H:i:s" + }, + "format": [ + [ + "SMW_Y" + ], + [ + "SMW_MY", + "SMW_YM" + ], + [ + "SMW_MDY", + "SMW_DMY", + "SMW_YMD", + "SMW_YDM" + ] + ] + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh.json b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh.json new file mode 100644 index 0000000..2312a2f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/extra/zh.json @@ -0,0 +1,7 @@ +{ + "@metadata": { + "authors": [] + }, + "isLanguageRedirect": true, + "fallback_language": "zh-cn" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/fa.json b/mediawiki/extensions/SemanticMediaWiki/i18n/fa.json new file mode 100644 index 0000000..7c8322d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/fa.json @@ -0,0 +1,475 @@ +{ + "@metadata": { + "authors": [ + "Alifakoor", + "Alireza Ivaz", + "Alirezaaa", + "Amirsara", + "Armin1392", + "AzorAhai", + "Beginneruser", + "DEXi", + "Ebrahim", + "Ebraminio", + "FarsiNevis", + "Huji", + "Jaideraf", + "Jeeputer", + "Mahdy Saffar", + "McDutchie", + "Mjbmr", + "Mohammad ebz", + "Momeni", + "Obzord", + "Ommmmid", + "Physicsch", + "Reza1615", + "Sunfyre", + "ZxxZxxZ" + ] + }, + "smw-desc": "ویکی خودتان را برای ماشین‌ها ''و'' انسان‌ها بیشتر قابل دسترس کنید ([https://www.semantic-mediawiki.org/wiki/Help:User_manual مستندات برخط])", + "smw-error": "خطا", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ مدیاویکی معنایی] نصب و فعال شده است اما یک [https://www.semantic-mediawiki.org/wiki/Help:Upgrade کلید به‌روزرسانی] مناسب فراموش شده است.", + "smw-upgrade-release": "انتشار", + "smw-upgrade-progress": "پیشرفت", + "smw-upgrade-progress-create-tables": "ایجاد (یا به‌روزرسانی) جدول‌ها و شاخص‌ها ...", + "smw-upgrade-progress-post-creation": "درحال اجرای وظایف ایجادشده ارسالی ...", + "smw-upgrade-progress-table-optimization": "درحال اجرای بهینه‌سازی‌های جدول ...", + "smw-upgrade-error-title": "خطا » مدیاویکی معنایی", + "smw-upgrade-error-how-title": "چگونه این خطا را درست کنیم؟", + "smw-extensionload-error-how-title": "چگونه این خطا را درست کنم؟", + "smw-upgrade-maintenance-title": "نگهداری » مدیاویکی معنایی", + "smw_viewasrdf": "خوراک RDF", + "smw_finallistconjunct": "، و", + "smw-factbox-head": "... بیشتر دربارۀ \"$1\"", + "smw-factbox-attachments": "پیوست‌ها", + "smw_isspecprop": "این ویژگی یک ویژگی ویژه در این ویکی است.", + "smw-concept-cache-header": "به‌کارگیری حافظۀ نهان", + "smw-concept-no-cache": "هیچ حافظهٔ نهانی در دسترس نیست.", + "smw_concept_description": "توضیحات مفهوم \"$1\"", + "smw_no_concept_namespace": "مفاهیم فقط می‌توانند روی صفحه‌هایی با فضای نام Concept: تعریف می‌شوند.", + "smw_multiple_concepts": "هر صفحۀ مفهوم می‌تواند فقط یک تعریف مفهوم داشته باشد.", + "smw_concept_cache_miss": "مفهوم \"$1\" نمی‌تواند در حال حاضر استفاده شود، زیرا تنظیمات ویکی نیاز به محاسبه آن به‌صورت برون‌خط دارد.\nاگر این مشکل پس از مدتی از بین نرفت، از مدیر سایت بخواهید تا این مفهوم را در دسترس قرار دهد.", + "smw_noinvannot": "مقادیر نمی‌توانند برای ویژگی‌های معکوس گماشته شوند.", + "version-semantic": "افزونه‌های معنایی", + "smw_baduri": "URIهای به شکل \"$1\" مجاز نیستند.", + "smw_printername_count": "شمارش نتایج", + "smw_printername_csv": "برون‌بری CSV", + "smw_printername_dsv": "برون‌بری DSV", + "smw_printername_debug": "پرسمان اشکال‌یابی (برای برون‌بران)", + "smw_printername_embedded": "محتویات جازساز شدۀ صفحه", + "smw_printername_json": "برون‌بری JSON", + "smw_printername_list": "فهرست", + "smw_printername_ol": "فهرست شماره‌‌گذاری شده", + "smw_printername_ul": "فهرست گلوله‌‌گذاری شده", + "smw_printername_table": "جدول", + "smw_printername_broadtable": "جدول گسترده", + "smw_printername_template": "الگو", + "smw_printername_templatefile": "پروندۀ الگو", + "smw_printername_rdf": "برون‌بری RDF", + "smw_printername_category": "رده", + "validator-type-class-SMWParamSource": "متن", + "smw-paramdesc-limit": "حداکثر تعداد نتایج برای بر گرداندن", + "smw-paramdesc-offset": "جابجاسازی اولین نتیجه", + "smw-paramdesc-headers": "نمایش نام‌های سرایندها/ویژگی", + "smw-paramdesc-mainlabel": "برچسبی برای دادن نام صفحهٔ اصلی", + "smw-paramdesc-link": "نمایش مقادیر به‌صورت پیوندها", + "smw-paramdesc-intro": "متنی برای نمایش قبل از نتایج پرسمان، اگر چیزی وجود داشته باشد", + "smw-paramdesc-outro": "متنی برای نمایش پس از نتایج پرسمان، اگر چیزی وجود داشته باشد", + "smw-paramdesc-default": "متن برای نمایش اگر هیچ نتیجهٔ پرسمانی وجود نداشته باشد", + "smw-paramdesc-sep": "جداکنندۀ بین نتایج", + "smw-paramdesc-showsep": "نمایش جداکننده (\"sep=\") در بالای پرونده CSV", + "smw-paramdesc-distribution": "به جای نمایش‌دادن همه مقادیر، رخدادها را شمارش کن، و آنها را نمایش بده.", + "smw-paramdesc-distributionsort": "مرتب‌سازی توزیع مقدار به‌وسیلۀ شمارش رخداد.", + "smw-paramdesc-distributionlimit": "محدودکردن توزیع مقدار فقط به شماری از بعضی مقادیر", + "smw-paramdesc-template": "نام یک الگو با آنی که چاپ‌ها را نمایش می‌دهد", + "smw-paramdesc-columns": "تعداد ستون‌هایی که در آن نتایج نمایش داده می‌شوند", + "smw-paramdesc-userparam": "یک مقداری که به فراخوانی هر الگو گذارنده می‌شود، اگر الگو استفاده شده باشد", + "smw-paramdesc-introtemplate": "نام الگو برای نمایش قبل از نتایج پرسمان، اگر چیزی وجود داشته باشد", + "smw-paramdesc-outrotemplate": "نام الگو برای نمایش پس از نتایج پرسمان، اگر چیزی وجود داشته باشد", + "smw-paramdesc-embedformat": "برچسب HTML برای تعریف سرایندها استفاده شده است", + "smw-paramdesc-embedonly": "نمایش بدون سرایندها", + "smw-paramdesc-table-class": "یک کلاس CSS اضافی برای جدول تنظیم شود", + "smw-paramdesc-table-transpose": "نمایش سرایندهای جدول به طور عمودی و نتایج به طور افقی", + "smw-paramdesc-rdfsyntax": "نحو RDF باید استفاده شود", + "smw-paramdesc-csv-sep": "یک جداکنندهٔ ستونی مشخص شود", + "smw-paramdesc-csv-valuesep": "یک جداکنندهٔ مقدار مشخص شود", + "smw-paramdesc-dsv-separator": "جداکننده برای استفاده", + "smw-paramdesc-dsv-filename": "نامی برای پروندۀ DSV", + "smw-paramdesc-filename": "نامی برای پروندۀ خروجی", + "smw-smwdoc-description": "یک جدول از همهٔ پارامترهایی که می‌تواند برای قالب نتیجه مشخص شده استفاده شود را به همراه مقدارها و توضیح‌های پیش‌فرض نشان می‌دهد", + "smw-smwdoc-par-format": "قالب نتیجه برای نمایش مستندات پارامتر.", + "smw-smwdoc-par-parameters": "پارامترهایی برای نمایش دادن. \"مشخص\" برای آن افزوده شده‌ها توسط فرمت، \"اساس\" برای آن متغیرها در همه فرمت‌ها، و \"همه\" برای هر دو.", + "smw-paramdesc-sort": "ویژگی‌ای که پرسمان را بر پایه آن مرتب شود", + "smw-paramdesc-order": "ترتیب مرتب‌سازی پرسمان", + "smw-paramdesc-searchlabel": "متنی برای ادامه‌دادن جستجو", + "smw-paramdesc-named_args": "نام شناسه‌هایی را که به الگو گذارنده شده است", + "smw-paramdesc-export": "گزینه برون‌بری", + "smw-paramdesc-prettyprint": "خروجی pretty-print که تورفتگی‌های اضافی و خط.ط تازه را نمایش می‌دهد", + "smw-paramdesc-json-type": "نوع سریالی‌کردن داده‌ها را مشخص می‌کند", + "smw-paramdesc-source": "منبع پرسمان جایگزین", + "smw-paramdesc-jsonsyntax": "نحو JSON باید استفاده شود", + "smw-printername-feed": "جارزن RSS و Atom", + "smw-paramdesc-feedtype": "نوع جارزن", + "smw-paramdesc-feedtitle": "متنی را باید به صورت عنوان جارزن استفاده بشود", + "smw-paramdesc-feeddescription": "متنی را باید به عنوان توضیح جارزن استفاده بشوند", + "smw-paramdesc-feedpagecontent": "محتوای صفحه با مرورگر نمایش داده می‌شود", + "smw-label-feed-link": "آراس‌اس", + "smw-label-feed-description": "$1 $2 جارزن", + "smw_iq_disabled": "پرسمان‌های معنایی برای این ویکی غیر فعال شده است", + "smw_iq_moreresults": "... نتایج بیشتر", + "smw_parseerror": "مقدار داده شده فهمیده نشده بود.", + "smw_decseparator": ".", + "smw_kiloseparator": "،", + "smw_notitle": "\"$1\" به عنوان نام یک صفحه در این ویکی نمی‌تواند استفاده شود.", + "smw_noproperty": "\"$1\" به عنوان نام یک ویژگی در این ویکی نمی‌تواند استفاده شود.", + "smw_wrong_namespace": "فقط صفحه‌های در فضای نام \"$1\" اینجا مجاز هستند.", + "smw_manytypes": "بیش از یک نوع برای ویژگی تعریف شده است.", + "smw_emptystring": "رشته‌های خالی پذیرفته نمی‌شوند.", + "smw_notinenum": "\"$1\" در فهرست مقادیر ممکن ($2) برای ویژگی \"$3\" نیست.", + "smw_noboolean": "\"$1\" به عنوان یک مقدار بولی (درست/غلط) شناخته نشده است.", + "smw_true_words": "درست،د،بله،ب", + "smw_false_words": "غلط،غ،نه،ن", + "smw_nofloat": "\"$1\" یک عدد نیست.", + "smw_infinite": "اعدادی به بزرگی \"$1\" پشتیبانی نمی‌شوند.", + "smw_unitnotallowed": "\"$1\" به عنوان یک واحد اندازه‌گیری معتبر برای این ویژگی اعلام نشده است.", + "smw_nounitsdeclared": "هیچ واحد اندازه‌گیری برای این ویژگی اعلام نشده‌ بود.", + "smw_novalues": "هیچ مقداری مشخص نشده‌ است.", + "smw_nodatetime": "تاریخ \"$1\" فهمیده نشد بود.", + "smw_toomanyclosing": "به نظر می‌آید که رخدادهای زیادی از \"$1\" در پرسمان باشد.", + "smw_noclosingbrackets": "بعضی از به‌کارگیری \"[[\" در پرسمان شما توسط یک \"]]\" متناظر بسته نشده بود.", + "smw_misplacedsymbol": "نماد \"$1\" در جایی که مفید نیست استفاده شده بود.", + "smw_unexpectedpart": "قسمت \"$1\" از پرسمان را نفهمیده بود.\nنتایج نمی‌تواند مورد انتظار باشد.", + "smw_emptysubquery": "بعضی از زیرپرسمان‌ها هیچ شرط معتبری ندارد.", + "smw_misplacedsubquery": "بعضی زیرپرسمان‌ها در جایی استفاده شدند که هیچ زیرپرسمانی مجاز نیست.", + "smw_valuesubquery": "زیرپرسمان‌ها برای مقادیر ویژگی \"$1\" پشتیبانی نمی‌شوند.", + "smw_badqueryatom": "بعضی از قسمت‌های \"[[...]]\" از پرسمان فهمیده نشدند.", + "smw_propvalueproblem": "مقدار ویژگی \" $1 \" فهمیده نشده بود.", + "smw_noqueryfeature": "بعضی از ویژگی‌های پرسمان در این ویکی پشتیبانی نمی‌شود و قسمتی از پرسمان ($1) از قلم انداخته شد.", + "smw_noconjunctions": "اتصالات در پرس‌وجو‌ها در این ویکی پشتیبانی نمی‌شود و بخشی از پرس‌وجو کاهش یافت ($1).", + "smw_nodisjunctions": "عدم اتصالات در پرس‌وجو‌ها در این ویکی پشتیبانی نمی‌شوند و بخشی از پرس‌وجو کاهش یافت ($1).", + "smw_querytoolarge": "شرایط پرس‌وجو زیر به علت محدودیت‌های ویکی در اندازه پرس‌وجو یا عمق نتوانست در نظر گرفته شود: $1.", + "smw_notemplategiven": "ارائه یک مقدار برای پارامتر \"الگو\" برای این فرمت پرس‌وجو برای کار کردن", + "smw_db_sparqlqueryproblem": "نتیجه پرس‌وجو نتوانست از پایگاه اطلاعاتی اس‌پی‌ای‌آر‌کیو‌ال اخذ شود. ممکن است این خطا موقت باشد یا مشکلی در نرم‌افزار پایگاه اطلاعاتی نشان می‌دهد.", + "smw_db_sparqlqueryincomplete": "پاسخ به پرس‌و‌جو بیش از حد دشوار است و شکست خورد. برخی از نتایج می‌توانند از دست بروند. در صورت امکان سعی کنید به جای آن از پرس‌وجو ساده استفاده کنید.", + "smw_type_header": "ویژگی‌های نوع \"$1\"", + "smw_typearticlecount": "نمایش $1 {{PLURAL:$1|ویژگی|ویژگی}} با استفاده از این نوع.", + "smw_attribute_header": "صفحه‌های استفاده‌کنندۀ ویژگی \"$1\"", + "smw_attributearticlecount": "درحال نمایش $1 {{PLURAL:$1|صفحه|صفحه‌هایی}} از این ویژگی استفاده کردن.", + "smw-propertylist-subproperty-header": "زیرویژگی‌ها", + "smw-propertylist-redirect-header": "مترادف‌ها", + "specialpages-group-smw_group": "مدیاویکی معنایی", + "specialpages-group-smw_group-properties-concepts-types": "ویژگی‌ها، مفهوم‌ها و نوع‌ها", + "specialpages-group-smw_group-search": "مرور و جستجو", + "exportrdf": "برون‌بری صفحه‌ها به RDF", + "smw_exportrdf_docu": "این صفحه به شما برای به دست آوردن داده‌ها از صفحه در فرمت آر‌دی‌اف اجازه می‌دهد.\nبرای برون‌بری صفحات، عناوین را در جعبه متن زیر وارد کنید، یک عنوان در هر خط.", + "smw_exportrdf_recursive": "تمام صفحه‌های مرتبط را به صورت بازگشتی برون‌بری کن.\nتوجه کنید که نتیجه می‌تواند بزرگ باشد!", + "smw_exportrdf_backlinks": "همچنین تمام صفحه‌هایی را که به صفحه‌های برون‌بری شده ارجاع دارند، برون‌بری کن.\nآردی‌اف قابل مرور تولید می‌کند.", + "smw_exportrdf_lastdate": "صفحه‌هایی را که از زمان داده شده تغییری نکرده‌اند، برون‌بری نکن.", + "smw_exportrdf_submit": "برون‌بری", + "uriresolver": "حل‌ کنندهٔ یوآرآی‌آر", + "properties": "ویژگی‌ها", + "smw-categories": "رده‌ها", + "smw_properties_docu": "ویژگی‌های زیر در این ویکی استفاده شدند.", + "smw_property_template": "$1 از نوع $2 ($3 بار {{PLURAL:$3|استفاده شده}})", + "smw_propertylackspage": "تمام ویژگی‌ها باید توسط یک صفحه توصیف شوند.", + "smw_propertylackstype": "هیچ نوعی برای این ویژگی مشخص نشده است (با فرض نوع $1 برای اکنون).", + "smw_propertyhardlyused": "این ویژگی به ندرت در این ویکی استفاده شده است.", + "smw-property-name-invalid": "ویژگی $1 نمی‌تواند استفاده شود (نام ویژگی نامعتبر).", + "smw-sp-property-searchform": "نمایش ویژگی‌هایی که در بردارد:", + "smw-sp-property-searchform-inputinfo": "این ورودی حساس است و هنگامی که برای فیلتر کردن استفاده می‌شود، فقط خواصی که با شرایط مطابقت دارند نمایش داده می‌شوند.", + "smw-special-property-searchform": "نمایش ویزگی‌هایی که شامل:", + "smw-special-property-searchform-inputinfo": "این ورودی حساس است و هنگامی که برای فیلتر کردن استفاده می‌شود، فقط خواصی که با شرایط مطابقت دارند نمایش داده می‌شوند.", + "smw-special-property-searchform-options": "گزینه‌ها", + "smw-special-wantedproperties-filter-label": "پالایه:", + "smw-special-wantedproperties-filter-none": "هیچ", + "smw-special-wantedproperties-filter-unapproved": "تأییدنشده", + "concepts": "مفهوم‌ها", + "smw-special-concept-docu": "[https://www.semantic-mediawiki.org/wiki/Help:Concepts concept] می‌تواند به عنوان \"دسته پویا\" مشاهده شوند، یعنی به عنوان مجموعه‌ای از صفحاتی که به طور دستی ایجاد نمی‌شوند، اما آنهایی که توسط مدیاویکی معنایی از یک توصیف داده شده پرس‌وجو، محاسبه می‌شوند.", + "smw-special-concept-header": "فهرست مفاهیم", + "smw-special-concept-count": "{{PLURAL:$1|مفهوم}} در زیر فهرست {{PLURAL:$1|شده است}}.", + "smw-special-concept-empty": "هیچ مفهومی یافت نشد.", + "unusedproperties": "ویژگی‌های استفاده‌نشده", + "smw-unusedproperties-docu": "خصوصیت‌های زیر با وجود این‌که هیچ صفحه‌ای از آن‌ها استفاده نمی‌کند، وجود دارند.", + "smw-unusedproperty-template": "$1 از نوع $2", + "wantedproperties": "ویژگی‌های خواسته‌شده", + "smw-wantedproperties-docu": "خصوصیت‌های زیر در این ویکی استفاده شده‌اند ولی هنوز صفحه‌ای برای توصیف آن‌ها وجود ندارد.", + "smw-wantedproperty-template": "$1 ($2 بار {{PLURAL:$2|استفاده‌ شده}})", + "smw-special-wantedproperties-template": "$1 ($2 بار {{PLURAL:$2|استفاده شده}})", + "smw_purge": "تازه‌سازی", + "smw-purge-failed": "مدیاویکی معنایی برای پاک‌سازی این صفحه تلاش کرد اما شکست خورد", + "types": "نوع‌ها", + "smw_types_docu": "در زیر فهرستی از تمام انواع داده است که می‌تواند به ویژگی‌ها اختصاص داده شده باشد.", + "smw-special-types-no-such-type": "\"$1\" ناشناخته است یا به عنوان نوع داده معتبر تعیین نشده است.", + "smw-statistics": "آمارهای معنایی", + "smw-statistics-entities-total": "مدخل‌ها (کل)", + "smw-statistics-property-instance": "ویژگی {{PLURAL:$1|مقدار|مقادیر}} (کل)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|ویژگی|ویژگی‌ها}}]] (کل)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|ویژگی|ویژگی‌ها}} (کل)", + "smw-statistics-property-page": "{{PLURAL:$1|ویژگی|ویژگی‌ها}} (همراه یک صفحه ثبت شده)", + "smw-statistics-property-type": "{{PLURAL:$1|ویژگی|ویژگی‌ها}} (به نوع اطلاعات اختصاص داده شده)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|پرسمان|پرسمان‌ها}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|پرسمان|پرسمان‌ها}}]] (جاساز‌شده, کل)", + "smw-statistics-query-size": "اندازۀ پرسمان", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|مفهوم|مفهوم‌ها}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|مفهوم|مفهوم‌ها}}]]", + "smw-statistics-subobject-count": "{{PLURAL:$1|موضوع|موضوع‌ها}}", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|موضوع|موضوع‌ها}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|نوع داده|نوع‌های داده}}]]", + "smw_uri_doc": "برطرف‌کننده یوآر‌ال [$1 W3C TAG finding on httpRange-14] را پیاده می‌کند.\nاز انسان‌هایی که به سمت وب‌سایت‌ها نمی‌روند مراقبت می‌کند.", + "ask": "جستجوی معنایی", + "smw_ask_sortby": "مرتب‌سازی با ستون (اختیاری)", + "smw_ask_ascorder": "صعودی", + "smw_ask_descorder": "نزولی", + "smw-ask-order-rand": "تصادفی", + "smw_ask_submit": "نتایج را جستجو کن", + "smw_ask_editquery": "ویرایش پرسمان", + "smw_add_sortcondition": "[افزودن شرط مرتب‌سازی]", + "smw-ask-sort-add-action": "افزودن شرط مرتب‌سازی", + "smw_ask_hidequery": "نهفتن پرسمان (نمای متراکم)", + "smw_ask_help": "راهنمای پرسمان گرفتن", + "smw_ask_queryhead": "شرط", + "smw_ask_printhead": "نسخهٔ چاپی انتخابی", + "smw_ask_printdesc": "(افزودن یک نام ویژگی در هر خط)", + "smw_ask_format_as": "فرمت به عنوان:", + "smw_ask_defaultformat": "پیش‌فرض", + "smw_ask_otheroptions": "گزینه‌های دیگر", + "smw-ask-otheroptions-info": "این بخش شامل گزینه‌هایی است که اظهارات چاپی را تغییر می‌دهد. توصیفات پارامتر می‌تواند توسط توقف در بالای آن‌ها مشاهده شوند.", + "smw-ask-otheroptions-collapsed-info": "لطفاً از نماد به علاوه برای مشاهده همه گزینه‌های در دسترس استفاده کنید", + "smw_ask_show_embed": "نمایش کد جاسازی", + "smw_ask_hide_embed": "پنهان‌سازی کد جاسازی", + "smw_ask_embed_instr": "برای جاسازی این سوال خطی در یک صفحه ویکی از کد زیر استفاده کنید.", + "smw-ask-delete": "حذف", + "smw-ask-sorting": "مرتب‌سازی", + "smw-ask-options": "گزینه‌ها", + "smw-ask-options-sort": "گزینه‌های مرتب‌سازی", + "smw-ask-format-options": "قالب و گزینه‌ها", + "smw-ask-parameters": "پارامترها", + "smw-ask-search": "جستجو", + "smw-ask-debug": "اشکال‌زدایی کردن", + "smw-ask-debug-desc": "اطلاعات عمومی خطایابی پرسمان", + "smw-ask-no-cache": "غیرفعال‌سازی حافظهٔ نهان پرسمان", + "smw-ask-no-cache-desc": "نتایج بدون حافظهٔ نهان پرسمان", + "smw-ask-result": "نتیجه", + "smw-ask-empty": "پاک‌کردن همهٔ مدخل‌ها", + "smw-ask-download-link-desc": "بارگیری نتایج مورد پرسمان در قالب $1", + "smw-ask-format": "قالب", + "smw-ask-format-selection-help": "راهنمایی برای فرمت انتخاب شده: $1", + "smw-ask-input-assistance": "راهنمای ورودی", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance راهنمای ورودی] برای چاپ، مرتب‌سازی و فیلد شرط ارائه می‌شود. فیلد شرط نیاز به یکی از پیشوند‌های زیر دارد:", + "smw-ask-condition-input-assistance-property": "p: برای واکشی پیشنهادهای ویژگی (مثل [[p:Has ...)", + "smw-ask-condition-input-assistance-category": "c: برای واکشی پیشنهادهای رده", + "smw-ask-condition-input-assistance-concept": "con: برای واکشی پیشنهادهای مفهوم", + "smw-ask-extra-query-log": "سیاهۀ پرسمان", + "smw-ask-extra-other": "سایر", + "searchbyproperty": "جستجو بر اساس ویژگی", + "processingerrorlist": "پردازش فهرست خطا", + "propertylabelsimilarity": "گزارش تشابه برچسب ویژگی", + "smw_sbv_docu": "جستجو برای همه صفحاتی که یک ویژگی داده شده و مقدار دارند.", + "smw_sbv_novalue": "یک مقدار معتبر برای ویژگی وارد کید، یا همه مقادیر ویژگی را برای \"$1\" مشاهده کنید.", + "smw_sbv_displayresultfuzzy": "فهرست همه صفحاتی که ویژگی \"$1\" با مقدار \"$2\" دارند.\nاز آنجایی که آنها فقط نتایج کمی دارند، همچنین تقریباً مقادیر نمایش داده می‌شوند.", + "smw_sbv_property": "ویژگی:", + "smw_sbv_value": "مقدار:", + "smw_sbv_submit": "پیدا کردن نتایج", + "browse": "مرور ویکی", + "smw_browselink": "مرور ویژگی‌ها", + "smw_browse_article": "نام صفحه‌‌ای را وارد کنید تا مرورکردن را از آن شروع کنید", + "smw_browse_go": "برو", + "smw_browse_show_incoming": "نمایش خصوصیات دارای ورودی به اینجا", + "smw_browse_hide_incoming": "نهفتن خصوصیات دارای ورودی به اینجا", + "smw_browse_no_outgoing": "این صفحه هیچ ویژگی ندارد", + "smw_browse_no_incoming": "هیچ خصوصیتی به این صفحه پیوند ندارد", + "smw-browse-from-backend": "اطلاعات در حال بازیابی از زیرساخت است", + "smw-browse-invalid-subject": "اعتبارسنجی موضوع با خطای \"$1\" برگشت خورد.", + "smw-browse-api-subject-serialization-invalid": "این موضوع یک قالب سریالی‌کردن نامعتبر دارد.", + "smw-browse-js-disabled": "این گمان می‌رود که قابلیت جاوا‌اسکریپت غیر فعال است و یا وجود ندارد. توصیهٔ ما این است که از مرورگری استفاده کنید که آن را پشتیبانی می‌کند. سایر گزینه‌ّا در صفحهٔ تنظیمات پارامتر [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi] بحث شده‌اند.", + "smw-browse-show-group": "نمایش گروه‌ها", + "smw-browse-hide-group": "نهفتن گروه‌ها", + "smw_inverse_label_default": "$1 از", + "smw_inverse_label_property": "برچسب ویژگی برعکس", + "pageproperty": "جستجوی ویژگی صفحه", + "smw_pp_docu": "جستجو برای همه مقادیر خاصیت در صفحه داده شده.\nصفحه و خاصیت، هر دو را وارد کنید.", + "smw_pp_from": "از صفحه:", + "smw_pp_type": "ویژگی:", + "smw_pp_submit": "ویژگی", + "smw-prev": "{{PLURAL:$1|$1}}تای قبلی", + "smw-next": "{{PLURAL:$1|$1}}تای بعدی", + "smw_result_prev": "قبلی", + "smw_result_next": "بعدی", + "smw_result_results": "نتایج", + "smw_result_noresults": "بدون نتیجه", + "smwadmin": "پیش‌خوان مدیاویکی معنایی", + "smw-admin-statistics-job-title": "آمار کار", + "smw-admin-statistics-querycache-title": "میان‌گیر پرسمان", + "smw-admin-statistics-querycache-disabled": " [https://www.semantic-mediawiki.org/wiki/QueryCache میان‌گیر پرسمان] در این ویکی فعال نشده است، بنابراین هیچ آماری موجود نیست.", + "smw-admin-statistics-semanticdata-overview": "مرور کلی", + "smw-admin-setupsuccess": "موتور ذخیره‌سازی راه‌اندازی شد.", + "smw_smwadmin_return": "بازگشت به $1", + "smw_smwadmin_updatestarted": "فرایند روزآمدسازی جدید برای تازه‌سازی داده‌های معنایی آغاز شده بود.\nهمهٔ داده‌های ذخیره‌شده دوباره بازسازی یا در صورت نیاز، تعمیر خواهند‌ شد.\nشما می‌توانید پیشرفت روزآمدسازی را در این صفحهٔ ویژه دنبال کنید.\nبازگشت به $1.", + "smw_smwadmin_updatenotstarted": "یک فرایند روزآمدسازی از قبل در‌ حال اجرا است.\nیکی دیگر ایجاد نمی‌شود.", + "smw_smwadmin_updatestopped": "همهٔ فرایندهای روزآمدسازی موجود متوقف شده‌اند.", + "smw_smwadmin_updatenotstopped": "برای جلوگیری از روند به‌روزرسانی در حال اجرا، شما باید جعبه بررسی را برای نشان دادن اینکه شما واقعاً مطمئن هستید، فعال کنید.", + "smw-admin-docu": "این صفحه مخصوص به شما در طول نصب و ارتقاء مدیاویکی معنایی کمک می‌کند.\nبرای پشتیبان گیری داده‌های ارزشمند قبل از اجرای عملیات اداری، به یاد دیشته باشید.", + "smw-admin-environment": "محیط نرم‌افزار", + "smw-admin-db": "نصب پایگاه داده", + "smw-admin-dbdocu": "مدیاویکی معنایی به برخی از فرمت‌ها به پایگاه اطلاعاتی مدیاویکی برای ذخیره اطلاعات معنایی، نیاز دارد.\nعملکرد زیر تضمین می‌کند که پایگاه اطلاعاتی شما به درستی تنظیم شده است.\nتغییرات ایجاد شده در این مرحله بر روی بقیه پایگاه اطلاعاتب مدیاویکی تاثیر نمی‌گذارد، و اگر مایل باشید می‌تواند آن را به راحتی انجام ندهد.\nاین تنظیم عملکرد می‌تواند چندین بار بدون انجام هر گونه آسیبی اجرا شود، اما تنها یک بار در نصب یا ارتقاء مورد نیاز است.", + "smw-admin-permissionswarn": "اگر عملیات با خطاهای اس‌کیو‌ال با شکست مواجه شود، کاربر پایگاه اطلاعاتی استخدام شده توسط ویکی شما ا (LocalSettings.php خود را بررسی کنید) ممکن است مجوزهای کافی را نداشته باشد.\nیا به این کاربر مجوز اضافی برای ایجاد و حذف جداول اعطاء می‌شود، موقتاً ورود اساس پایگاه اطلاعاتی خود را در LocalSettings.php وارد کنید، یا از متن نگهداری setupStore.php استفاده کنید که می‌تواند از اعتبارنامه‌های یک سرپرست استفاده کند.", + "smw-admin-dbbutton": "راه‌اندازی یا به‌روزرسانی جدول‌ها", + "smw-admin-announce": "ویکی خود را اعلام کنید", + "smw-admin-deprecation-notice-title": "اعلان‌های تخریب", + "smw-admin-deprecation-notice-title-notice": "تنظیمات منسوخ‌شده", + "smw-admin-deprecation-notice-title-replacement": "تنظیمات جایگزین‌شده یا تغییر نام یافته", + "smw-admin-deprecation-notice-title-removal": "تنظیمات حذف‌شده", + "smw-smwadmin-refresh-title": "تصحیح و روزآمدسازی اطلاعات", + "smw_smwadmin_datarefresh": "بازسازی اطلاعات", + "smw_smwadmin_datarefreshdocu": "همهٔ داده‌های مدیاویکی معنایی مبتنی بر محتویات فعلی ویکی ممکن است بازیابی شوند.\nاین می‌تواند برای تعمیر داده‌های شکسته یا برای تازه‌سازی داده‌ها مفید باشد اگر فرمت داخلی به علت ارتقای نرم‌افزار، تغییر کرده باشد.\nروزآمدسازی صفحه توسط صفحه اجرا می‌شود و بلافاصله تکمیل نخواهد‌ شد.\nدر زیر، نشان داده می‌شود که آیا روزآمدسازی در حال انجام است و به شما برای شروع کردن با توقف روزآمدسازی اجازه می‌دهد (مگر این‌که این ویژگی توسط مدیر وبگاه غیرفعال شده باشد).", + "smw_smwadmin_datarefreshprogress": "روزآمدسازی در حال حاضر در حال انجام است.\nطبیعی است که روزآمدسازی فقط به‌آهستگی پیش برود؛ زیرا هر بار که کاربر به ویکی دسترسی می‌یابد، اطلاعات را فقط در تکه‌های کوچک، تازه‌سازی می‌کند.\nبرای سریع‌تر به پایان رساندن این روزآمدسازی، شما می‌‌توانید متن نگهداری مدیاویکی runJobs.php (از گزینه --maxjobs 1000 را برای محدود کردن تعداد روزآمدسازی‌های انجام‌شده در هر دسته بخواهید).\nبرآورد پیشرفت فعلی روزآمدسازی:", + "smw_smwadmin_datarefreshbutton": "زمان‌بندی بازسازی داده‌ها", + "smw_smwadmin_datarefreshstop": "این روزآمدسازی را متوقف کنید", + "smw_smwadmin_datarefreshstopconfirm": "بله، من {{GENDER:$1|مطمئن هستم}}.", + "smw-admin-propertystatistics-title": "آمارهای ویژگی بازسازی شد", + "smw-admin-support": "پشتیبانی شدن", + "smw-admin-supportdocu": "منابع گوناگونی که ممکن است به شما در رابطه با مشکلات کمک کند:", + "smw-admin-installfile": "اگر شما تجربه مشکلات نصب را داشتید، با بررسی دستورالعمل‌ها در INSTALL file شروع کنید.", + "smw-admin-smwhomepage": "مستندات کامل کاربر برای مدیاویکی معنایی در semantic-mediawiki.org است.", + "smw-admin-bugsreport": "اشکالات می‌توانند به GitHub گزارش شوند.", + "smw-admin-questions": "اگر شما سوالات یا پیشنهادات بیشتری دارید، به گفتگو درتالار گفتمان کاربران مدیاویکی معنایی بپیوندید.", + "smw-admin-other-functions": "تابع‌های دیگر", + "smw-admin-statistics-extra": "تابع‌های آماری", + "smw-admin-statistics": "آمار", + "smw-admin-supplementary-section-title": "کارکردهای تکمیلی", + "smw-admin-supplementary-settings-title": "پیکربندی و تنظیمات", + "smw-admin-main-title": "مدیاویکی معنایی » $1", + "smw-admin-supplementary-operational-statistics-title": "آمارهای عملیاتی", + "smw-admin-supplementary-operational-statistics-short-title": "آمارهای عملیاتی", + "smw-admin-supplementary-elastic-version-info": "نسخه", + "smw-admin-supplementary-elastic-mappings-summary": "خلاصه", + "smw-admin-supplementary-elastic-replication-files": "پرونده‌ها", + "smw-admin-supplementary-elastic-replication-pages": "صفحه‌ها", + "smw-admin-supplementary-elastic-config": "پیکربندی‌ها", + "smw-property-label-similarity-threshold": "آستانه:", + "smw-property-label-similarity-noresult": "با گزینه‌های انتخاب شده نتیجه‌ای یافت نشد", + "smw_adminlinks_datastructure": "ساختار داده‌ها", + "smw_adminlinks_displayingdata": "نمایش داده‌ها", + "smw_adminlinks_inlinequerieshelp": "کمک سوالات در خط", + "smw-createproperty-isproperty": "این یک ویژگی از نوع $1 است.", + "smw-createproperty-allowedvals": " {{PLURAL:$1|مقدار مجاز برای این ویژگی|مقادیر مجاز برای این ویژگی}}:", + "smw-paramdesc-category-delim": "جداکننده", + "smw-paramdesc-category-template": "یک الگو برای فرمت موارد با", + "smw-paramdesc-category-userparam": "یک پارامتر برای گذر از جدول", + "smw-info-par-message": "پیام برای نمایش.", + "smw-info-par-icon": "آیکون برای نشان داد، یا \"اطلاعات\" و یا \"هشدار\".", + "prefs-smw": "مدیاویکی معنایی", + "prefs-general-options": "اختیارات عمومی", + "prefs-ask-options": "جستجوی معنایی", + "smw-prefs-intro-text": "گزینه‌های زیر توسط [https://www.semantic-mediawiki.org/ Semantic MediaWiki] (یا فرمت‌های مرتبط) برای فعال کردن سفارشی‌سازی فردی در عملیات انتخاب شده، ارائه شدند. برای کسب اطلاعات بیشتر، لطفاً این[https://www.semantic-mediawiki.org/wiki/Help:User_preferences help section] را مشاهده کنید.", + "smw-prefs-ask-options-tooltip-display": "متن پارامتر به صورت یک برچسب اطلاعات نمایش داده شود", + "smw-ui-tooltip-title-property": "ویژگی", + "smw-ui-tooltip-title-quantity": "تبدیل واحد", + "smw-ui-tooltip-title-info": "اطلاعات", + "smw-ui-tooltip-title-service": "پیوندهای خدمت", + "smw-ui-tooltip-title-warning": "هشدار", + "smw-ui-tooltip-title-error": "خطا", + "smw-ui-tooltip-title-parameter": "پارامتر", + "smw-ui-tooltip-title-event": "رویداد", + "smw-ui-tooltip-title-note": "یادداشت", + "smw-ui-tooltip-title-legend": "افسانه", + "smw-ui-tooltip-title-reference": "منبع", + "smw_unknowntype": "نوع «$1» برای اين ويژگي نامعتبر است", + "smw-concept-cache-text": "این مفهوم، جمعاً $1 صفحه دارد، و زمان آخرین روزآمدسازی، $3، $2 بوده است.", + "smw_concept_header": "صفحه‌های مفهوم \"$1\"", + "smw_conceptarticlecount": "نمایش زیر $1 {{PLURAL:$1|صفحه|صفحه‌ها}}.", + "right-smw-admin": "دسترسی به وظایف مدیریت (مدیاویکی معنایی)", + "group-smwadministrator": "مدیران (مدیاویکی معنایی)", + "group-smwadministrator-member": "{{GENDER:$1|مدیر (مدیاویکی معنایی)}}", + "grouppage-smwadministrator": "{{ns:project}}:مدیران (مدیاویکی معنایی)", + "action-smw-admin": "دسترسی به وظایف ادارهٔ معنایی مدیاویکی", + "smw-property-predefined-default": "\"$1\" یک ویژگی پیش‌تعریف‌شده از نوع $2 است.", + "smw-property-predefined-ask": "$1 یک خاصیت از پیش تعریف شده است (همچنین به عنوان [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property] شناخته شده است) که به فراداده [https://www.semantic-mediawiki.org/wiki/Subobject subobject] یک سوال پیوند می‌شود.این خاصیت ساخته شده‌ای است که همراه با امتیازات اجرایی اضافی است اما فقط شبیه هر [https://www.semantic-mediawiki.org/wiki/Property user-defined property] دیگری می‌توانند استفاده شوند.", + "smw-property-predefined-asksi": "$1 یک خاصیت از پیش تعریف شده است (همچنین به عنوان [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property] شناخته شده است) که تعداد شرایط مورد استفاده در یک سوال را جمع می‌کند.این خاصیت ساخته شده‌ای است که همراه با امتیازات اجرایی اضافی است اما فقط شبیه هر [https://www.semantic-mediawiki.org/wiki/Property user-defined property] دیگری می‌توانند استفاده شوند.", + "smw-sp-properties-docu": "این صفحه نشان می‌دهد [https://www.semantic-mediawiki.org/wiki/خاصیت خواص] که در دسترس هستند و هنگامی که فیلتر شده، تنها خواص تعریف شده کاربر است که منطبق با شرایط، نمایش داده می‌شود. برای یک نمای متفاوت، صفحه ویژه [[Special:UnusedProperties|unused properties]] یا [[Special:WantedProperties|wanted properties]] را مشاهده کنید.", + "smw-sp-properties-cache-info": "داده‌های فهرست شده از [https://www.semantic-mediawiki.org/wiki/Caching حافظۀ نهان] بازیابی شده‌اند، و آخرین به روز شده بودند $1.", + "smw-sp-properties-header-label": "فهرست ویژگی‌ها", + "smw-admin-settings-docu": "نمایش فهرست همه default و localized settings که به محیط مدیاویکی معنایی مربوط هستند. برای اطلاعات در تنظیمات فردی، لطفاً به صفحه راهنما [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuration] مراجعه کنید.", + "smw-sp-admin-settings-button": "ایجاد فهرست تنظیمات", + "smw-admin-idlookup-title": "جستجو", + "smw-admin-idlookup-input": "جستجو:", + "smw-admin-objectid": "شناسه:", + "smw-admin-tab-general": "مرور", + "smw-admin-tab-notices": "اعلان‌های تخریب", + "smw-admin-tab-maintenance": "نگهداری", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "بهینه‌سازی جدول", + "smw-admin-deprecation-notice-section": "مدیاویکی معنایی", + "smw-admin-configutation-tab-settings": "تنظیمات", + "smw-admin-configutation-tab-namespaces": "فضاهای نام", + "smw-admin-maintenance-no-description": "بدون توضیحات.", + "smw-livepreview-loading": "در حال بارگیری…", + "smw-sp-searchbyproperty-resultlist-header": "فهرست نتایج", + "smw-search-profile-sort-title": "عنوان", + "smw-search-profile-extended-section-query": "پرسمان", + "log-name-smw": "سباههٔ مدیاویکی معنایی", + "log-show-hide-smw": "$1 سیاههٔ مدیاویکی معنایی", + "smw-datavalue-import-invalid-format": "انتظار می‌رفت رشته \"$1\" به چهار قسمت تقسیم شود ولی ساختارش درک نشد.", + "smw-types-list": "فهرست انواع داده", + "smw-types-default": "\"$1\" یک نوع دادهٔ درونی است", + "smw-type-tab-properties": "ویژگی‌ها", + "smw-type-tab-errors": "خطاها", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|ثانیه|ثانیه}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|ثانیه|ثانیه}}", + "smw-datavalue-external-formatter-invalid-uri": "«$1» نشانی اینترنتی نامعتبر است.", + "smw-clipboard-copy-link": "کپی پیوند در کلیپ‌بورد", + "smw-data-lookup": "در حال دریافت داده‌ها ...", + "smw-no-data-available": "هیچ داده‌ای در دسترس نیست.", + "smw-edit-protection-enabled": "ویرایش حفاظت شده است (مدیاویکی معنایی)", + "smw-query-reference-link-label": "منبع پرسمان", + "smw-format-datatable-emptytable": "هیچ داده‌ای در جدول در دسترس نیست", + "smw-format-datatable-info": "نمایش _START_ تا _END_ از _TOTAL_ ورودی", + "smw-format-datatable-infoempty": "نمایش ۰ تا ۰ از ۰ ورودی", + "smw-format-datatable-infofiltered": "(پالایش‌شده از _MAX_ مجموع ورودی‌ها)", + "smw-format-datatable-infothousands": "،", + "smw-format-datatable-lengthmenu": "نمایش ورودی‌های _MENU_", + "smw-format-datatable-loadingrecords": "در حال بارگیری...", + "smw-format-datatable-processing": "در حال پردازش...", + "smw-format-datatable-search": "جستجو:", + "smw-format-datatable-zerorecords": "هیچ پیشینه مشابهی یافت نشد", + "smw-format-datatable-first": "نخستین", + "smw-format-datatable-last": "واپسین", + "smw-format-datatable-next": "بعدی", + "smw-format-datatable-previous": "قبلی", + "smw-format-datatable-toolbar-export": "برون‌بری", + "smw-category-invalid-redirect-target": "ردهٔ $1 یک تغییر مسیر نامعتبر به فضای نام غیررده‌ای دارد", + "apihelp-smwinfo-summary": "ماژول APIها برای بازیابی اطلاعات در مورد آمار مدیاویکی معنایی و سایر فراداده‌ها", + "smw-property-reserved-category": "رده", + "smw-category": "رده", + "smw-browse-property-group-title": "گروه ویژگی", + "smw-browse-property-group-label": "برچسب گروه ویژگی", + "smw-browse-property-group-description": "توضیحات گروه ویژگی", + "smw-filter": "پالایش", + "smw-help": "راهنما", + "smw-processing": "در حال پردازش ...", + "smw-loading": "در حال بارگیری ...", + "smw-fetching": "درحال واکشی ...", + "smw-expand": "گسترش", + "smw-copy": "رونوشت", + "smw-jsonview-search-label": "جستجو:", + "smw-schema-summary-title": "خلاصه", + "smw-schema-title": "طرحواره", + "smw-schema-usage": "کاربرد", + "smw-schema-type": "نوع طرحواره", + "smw-schema-description": "توضیحات طرحواره", + "smw-ask-title-keyword-type": "جستجوی کلیدواژه", + "smw-property-tab-usage": "کاربرد", + "smw-property-tab-specification": "... بیشتر", + "smw-concept-tab-list": "فهرست", + "smw-concept-tab-errors": "خطاها", + "smw-ask-tab-result": "نتیجه", + "smw-ask-tab-code": "کد", + "smw-pendingtasks-tab-setup": "راه‌اندازی", + "smw-report": "گزارش", + "smw-entity-examiner-deferred-elastic-replication": "الاستیک‌سرچ", + "smw-entity-examiner-associated-revision-mismatch": "نسخه", + "smw-indicator-revision-mismatch": "نسخه", + "smw-listingcontinuesabbrev": "ادامه", + "smw-showingresults": "نمایش حداکثر {{PLURAL:$1|'''۱''' نتیجه|'''$1''' نتیجه}} در پایین، آغاز از شماره '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/fi.json b/mediawiki/extensions/SemanticMediaWiki/i18n/fi.json new file mode 100644 index 0000000..1a0bb2d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/fi.json @@ -0,0 +1,407 @@ +{ + "@metadata": { + "authors": [ + "01miki10", + "Antsa", + "Beluga", + "Cimon Avaro", + "Crt", + "Mediawikitranslator", + "Moottori", + "Nedergard", + "Nike", + "Pahkiqaz", + "Pyscowicz", + "Samoasambia", + "Silvonen", + "Str4nd", + "Surjection", + "Valtlai", + "Valtlait", + "Veikk0.ma", + "VezonThunder" + ] + }, + "smw-desc": "Lisää wikisi saavutettavuutta – niin koneille kuin ihmisille ([https://www.semantic-mediawiki.org/wiki/Help:User_manual verkko-opas])", + "smw-error": "Virhe", + "smw-upgrade-release": "Julkaisu", + "smw-upgrade-progress": "Edistyminen", + "smw-upgrade-error-title": "Virhe » Semantic MediaWiki", + "smw-upgrade-error-why-title": "Miksi näen tämän sivun?", + "smw-upgrade-error-how-title": "Miten korjaan tämän virheen?", + "smw-extensionload-error-how-title": "Miten korjaan tämän virheen?", + "smw-upgrade-maintenance-title": "Ylläpito » Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "Miksi näen tämän virheen?", + "smw-semantics-not-enabled": "Semanttisen MediaWikin toiminnallisuutta ei ole otettu käyttöön tässä wikissä.", + "smw_viewasrdf": "RDF-syöte", + "smw_finallistconjunct": " ja", + "smw-factbox-head": "... lisää sivusta \"$1\"", + "smw-factbox-facts": "Faktat", + "smw-factbox-attachments-is-local": "On paikallinen", + "smw_isspecprop": "Tämä on erikoisominaisuus.", + "smw-concept-cache-header": "Välimuistin käyttö", + "smw-concept-no-cache": "Ei välimuistia saatavilla.", + "smw_concept_description": "Käsitteen ”$1” kuvaus", + "smw_no_concept_namespace": "Konseptit voidaan määritellä vain Konsepit: -nimiavaruuden sivuilla.", + "smw_multiple_concepts": "Kullakin käsitesivulla voi olla vain yksi käsitteen määritelmä.", + "smw_noinvannot": "Arvoja ei voi kohdistaa käänteisiin ominaisuuksiin.", + "version-semantic": "Semanttiset laajennukset", + "smw_baduri": "$1 ei ole sallittu URIn muoto.", + "smw_printername_count": "Laskennan tulokset", + "smw_printername_csv": "CSV-vienti", + "smw_printername_dsv": "DSV-vienti", + "smw_printername_embedded": "Upota sivujen sisällöt", + "smw_printername_json": "JSON-vienti", + "smw_printername_list": "Lista", + "smw_printername_ol": "Numeroitu luettelo", + "smw_printername_ul": "Numeroimaton luettelo", + "smw_printername_table": "Taulukko", + "smw_printername_broadtable": "Leveä taulukko", + "smw_printername_template": "Malline", + "smw_printername_templatefile": "Mallinetiedosto", + "smw_printername_rdf": "RDF-vienti", + "smw_printername_category": "Luokka", + "validator-type-class-SMWParamSource": "teksti", + "smw-paramdesc-limit": "Palautettavien tulosten enimmäismäärän", + "smw-paramdesc-offset": "Ensimmäisen näytettävän osuman järjestysnumero", + "smw-paramdesc-link": "Näytä arvot linkkeinä", + "smw-paramdesc-intro": "Teksti, joka näytetään ennen kyselyn tuloksia, jos niitä on.", + "smw-paramdesc-outro": "Teksti, joka näytetään kyselyn tulosten jälkeen, jos niitä on.", + "smw-paramdesc-default": "Teksti, joka näytetään, jos kysely ei tuottanut tuloksia.", + "smw-paramdesc-sep": "Tulosten välinen erotin", + "smw-paramdesc-showsep": "Näytä erotin CSV-tiedoston alussa (\"sep=\")", + "smw-paramdesc-template": "Tulosteiden näyttämisessä käytettävän mallineen nimi", + "smw-paramdesc-columns": "Tulosnäkymän sarakkeiden lukumäärä", + "smw-paramdesc-userparam": "Arvo, joka välitetään jokaisessa mallinekutsussa, jos mallinetta käytetään", + "smw-paramdesc-introtemplate": "Ennen kyselytuloksia näytettävän mallineen nimi, jos tuloksia löytyi.", + "smw-paramdesc-outrotemplate": "Kyselytulosten jälkeen näytettävän mallineen nimi, jos tuloksia löytyi.", + "smw-paramdesc-embedonly": "Älä näytä otsikoita", + "smw-paramdesc-rdfsyntax": "Käytettävä RDF-syntaksi", + "smw-paramdesc-csv-sep": "Määrittelee sarake-erottimen", + "smw-paramdesc-dsv-separator": "Käytettävä erotin", + "smw-paramdesc-dsv-filename": "DSV-tiedoston nimi", + "smw-paramdesc-filename": "Ulostulotiedoston nimi", + "smw-paramdesc-sort": "Ominaisuus, jonka mukaan kysely lajitellaan.", + "smw-paramdesc-searchlabel": "Haun jatkamisesta kertova teksti", + "smw-paramdesc-export": "Vie valinta", + "smw-paramdesc-source": "Vaihtoehtoinen kyselyn tietolähde", + "smw-paramdesc-jsonsyntax": "Käytettävä JSON-syntaksi", + "smw-printername-feed": "RSS- ja Atom-syöte", + "smw-paramdesc-feedtype": "Syötteen tyyppi", + "smw-paramdesc-feedtitle": "Syötteen otsikkoteksti", + "smw-paramdesc-feeddescription": "Syötteen kuvausteksti", + "smw-paramdesc-feedpagecontent": "Sivun sisältö, joka näytetään syötteessä", + "smw-label-feed-description": "$1 $2-syöte", + "smw_iq_disabled": "Semanttiset hakukyselyt on estetty tässä wikissä.", + "smw_iq_moreresults": "… lisää tuloksia", + "smw_parseerror": "Tarjottua arvoa ei ymmärretty.", + "smw_decseparator": ",", + "smw_kiloseparator": " ", + "smw_notitle": "Nimeä ”$1” ei voi käyttää sivun nimenä tässä wikissä.", + "smw_noproperty": "Nimeä ”$1” ei voi käyttää ominaisuuden nimenä tässä wikissä.", + "smw_wrong_namespace": "Vain nimiavaruuden ”$1” sivut sallitaan tässä.", + "smw_manytypes": "Ominaisuudelle on määritelty useampi kuin yksi tyyppi.", + "smw_emptystring": "Tyhjiä merkkijonoja ei hyväksytä.", + "smw_notinenum": "”$1” ei ole ominaisuuden ”$3” [[Property:Allows value|sallittujen arvojen]] luettelossa ($2).", + "smw_noboolean": "”$1” ei ole tunnistettavissa totuusarvoksi.", + "smw_true_words": "kyllä,k,y", + "smw_false_words": "ei,e,n", + "smw_nofloat": "”$1” ei ole luku.", + "smw_infinite": "Arvon ”$1” kokoisia lukuja ei tueta.", + "smw_unitnotallowed": "”$1” ei ole sallittu mittayksikkö tälle ominaisuudelle.", + "smw_nounitsdeclared": "Tälle ominaisuudelle ei ole määritetty mittayksikköä.", + "smw_novalues": "Arvoja ei ole määritetty.", + "smw_nodatetime": "Päiväystä ”$1” ei tunnistettu.", + "smw_toomanyclosing": "Hakukyselyssä tuntuisi olevan liian monta termin ”$1” esiintymää.", + "smw_noclosingbrackets": "Joiltain kyselyn hakasuluilta ”[[” puuttuu sulkevat hakasulut ”]]”.", + "smw_misplacedsymbol": "Symbolia ”$1” käytettiin yhteydessä, johon se ei soveltunut.", + "smw_unexpectedpart": "Kyselyn osaa ”$1” ei voitu tulkita.\nTulokset eivät ehkä vastaa odotuksia.", + "smw_emptysubquery": "Jollakin alikyselyllä ei ole kelvollista ehtoa.", + "smw_misplacedsubquery": "Jotain alikyselyä käytettiin kohdassa, jossa alikysely ei ole sallittu.", + "smw_valuesubquery": "Alikyselyjä ei tueta ominaisuuden ”$1” arvoille.", + "smw_badqueryatom": "Kyselyn osaa \"[[...]]\" ei voitu tulkita.", + "smw_propvalueproblem": "Ominaisuuden ”$1” arvoa ei voitu tulkita.", + "smw_noqueryfeature": "Joitain kyselyn ehtoja ei tueta tässä wikissä ja siksi osa kyselystä jäi tekemättä ($1).", + "smw_noconjunctions": "Kyselyjen JA-toimituksia ei tueta tässä wikissä ja siksi osa kyselystä jäi tekemättä ($1).", + "smw_nodisjunctions": "Kyselyjen TAI-toimituksia ei tueta tässä wikissä ja siksi osa kyselystä jäi tekemättä ($1).", + "smw_querytoolarge": "{{PLURAL:$2|Seuraavaa kyselyehtoa|Seuraavia kyselyehtoja}} ei voitu huomioida tämän wikin kyselyjen koko- tai syvyysrajoituksen vuoksi: $1.", + "smw_notemplategiven": "Parametri ”template” on pakollinen, jotta tämä kyselymuoto toimisi.", + "smw_db_sparqlqueryproblem": "Kyselyn tulosta ei voitu noutaa SPARQL-tietokannasta. Virhe voi olla väliaikainen tai osoitus tietokannan ohjelmistovirheestä.", + "smw_db_sparqlqueryincomplete": "Kyselyyn vastaaminen osoittautui liian vaikeaksi ja kysely keskeytettiin. Jotkut tulokset voivat puuttua. Voit yrittää uudelleen yksinkertaisemmalla kyselyllä mikäli vain mahdollista.", + "smw_type_header": "Ominaisuudet jotka ovat tyypiltään $1", + "smw_typearticlecount": "Näytetään $1 tätä tyyppiä {{PLURAL:$1|käyttävä ominaisuus|käyttävää ominaisuutta}}.", + "smw_attribute_header": "Ominaisuutta ”$1” käyttävät sivut", + "smw_attributearticlecount": "Näytetään $1 tätä ominaisuutta {{PLURAL:$1|käyttävä sivu|käyttävää sivua}}.", + "smw-propertylist-subproperty-header": "Alaominaisuudet", + "smw-propertylist-redirect-header": "Synonyymit", + "smw-propertylist-count": "Näytetään $1 {{PLURAL:$1|liittyvä aihe|liittyvää aihetta}}.", + "smw-propertylist-count-more-available": "Näytetään $1 liittyvää {{PLURAL:$1|aihe|aihetta}} (lisää on saatavilla).", + "specialpages-group-smw_group": "Semantic MediaWiki", + "specialpages-group-smw_group-maintenance": "Ylläpito", + "specialpages-group-smw_group-properties-concepts-types": "Ominaisuudet, konseptit ja tyypit", + "specialpages-group-smw_group-search": "Selaaminen ja hakeminen", + "exportrdf": "Vie sivut RDF-muodossa", + "smw_exportrdf_docu": "Tämän sivun avulla voit noutaa sivun tiedot RDF-muodossa.\nSyötä vietävien sivujen otsikot alla olevaan tekstiruutuun, yksi otsikko yhdellä rivillä.", + "smw_exportrdf_recursive": "Tee vienti rekursiivisesti kaikista liittyvistä sivuista.\nHuomioi, että tulos saattaa olla suuri.", + "smw_exportrdf_backlinks": "Vie myös sivut, joilta viitataan vietäville sivuille.\nGeneroi selailtavan RDF:n.", + "smw_exportrdf_lastdate": "Älä vie sivuja, jotka eivät ole muuttuneet määrätyn ajankohdan jälkeen.", + "smw_exportrdf_submit": "Vie", + "uriresolver": "URI-resolveri", + "properties": "Ominaisuudet", + "smw-categories": "Luokat", + "smw_properties_docu": "Wikissä käytetään seuraavia ominaisuuksia.", + "smw_property_template": "$1 on tyypiltään $2 ($3 {{PLURAL:$3|esiintymä|esiintymää}})", + "smw_propertylackspage": "Jokaisella ominaisuudella pitäisi olla kuvaussivu.", + "smw_propertylackstype": "Ominaisuuden tyyppiä ei ole määritelty (oletetaan tyypiksi $1).", + "smw_propertyhardlyused": "Tätä ominaisuutta ei juurikaan käytetä.", + "smw-sp-property-searchform": "Näytä ominaisuudet, jotka sisältävät:", + "smw-special-property-searchform-options": "Asetukset", + "smw-special-wantedproperties-filter-label": "Suodatin:", + "smw-special-wantedproperties-filter-none": "Ei mitään", + "smw-special-wantedproperties-filter-unapproved": "Hyväksymättömät", + "concepts": "Konseptit", + "smw-special-concept-header": "Luettelo käsitteitä", + "smw-special-concept-empty": "Käsitettä ei löydy.", + "unusedproperties": "Käyttämättömät ominaisuudet", + "smw-unusedproperties-docu": "Tämä sivu luettelee [https://www.semantic-mediawiki.org/wiki/Unused_properties käyttämättömiä ominaisuuksia], jotka on määritelty, vaikka mikään sivu ei käytä niitä. Erotellun näkymän löytää [[Special:Properties|kaikkien]] tai [[Special:WantedProperties|haluttujen ominaisuuksien]] erikoissivuilta.", + "smw-unusedproperty-template": "$1 on tyypiltään $2", + "wantedproperties": "Halutut ominaisuudet", + "smw-wantedproperties-docu": "Tämä sivu sisältää [https://www.semantic-mediawiki.org/wiki/Wanted_properties halutut ominaisuudet] joita käytetään tässä wikissä, mutta joilla ei ole kuvaussivua. Eriytettyä näkymää varten, katso [[Special:Properties|kaikki]] tai [[Special:UnusedProperties|käyttämättömien ominaisuuksien]] toimintosivut.", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|esiintymä|esiintymää}})", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|käyttö|käyttöä}})", + "smw_purge": "Päivitä", + "smw-purge-failed": "Semantic MediaWiki yritti tyhjentää sivun välimuistista, mutta epäonnistui", + "types": "Tyypit", + "smw-special-types-no-such-type": "\"$1\" on tuntematon tai sitä ei ole määritetty kelvolliseksi tietotyypiksi.", + "smw-statistics": "Semanttiset tilastot", + "smw-statistics-cached": "Semanttiset tilastot (välimuistissa)", + "smw-statistics-entities-total": "Entiteetit (yhteensä)", + "smw-statistics-query-size": "Kyselyn koko", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Käsite|Käsitteet}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Käsite|Käsitteet}}]]", + "smw-statistics-delete-count-info": "Poistettavaksi merkityt entiteetit tulee hävittää säännöllisesti mukana toimitettujen ylläpitoskriptien avulla.", + "ask": "Semanttinen haku", + "smw_ask_sortby": "Järjestä sarakkeen mukaan (valinnainen)", + "smw_ask_ascorder": "Nouseva", + "smw_ask_descorder": "Laskeva", + "smw-ask-order-rand": "Satunnainen", + "smw_ask_submit": "Hae tuloksia", + "smw_ask_editquery": "Muokkaa kyselyä", + "smw_add_sortcondition": "[Lisää lajitteluehto]", + "smw-ask-sort-add-action": "Lisää lajitteluehto", + "smw_ask_hidequery": "Piilota kysely (tiivis näkymä)", + "smw_ask_help": "Hakukyselyn ohjeet", + "smw_ask_queryhead": "Edellytys", + "smw_ask_printhead": "Tulosteiden valinta", + "smw_ask_printdesc": "(lisää yksi ominaisuuden nimi per rivi)", + "smw_ask_format_as": "Muotoilu:", + "smw_ask_defaultformat": "oletus", + "smw_ask_otheroptions": "Muut valinnat", + "smw-ask-otheroptions-info": "Tämän osion valinnat vaikuttavat tulostuslausekkeisiin. Parametrin kuvauksen saa näkyviin siirtämällä kohdistin nimen kohdalle.", + "smw-ask-otheroptions-collapsed-info": "Katso kaikki vaihtoehot plus-kuvakkeen avulla.", + "smw_ask_show_embed": "Näytä upotettava koodi", + "smw_ask_hide_embed": "Piilota upotettava koodi", + "smw_ask_embed_instr": "Jos haluat lisätä tämän kyselyn wikisivulle, käytä alla olevaa koodia.", + "smw-ask-delete": "Poista", + "smw-ask-sorting": "Lajittelu", + "smw-ask-options": "Asetukset", + "smw-ask-options-sort": "Järjestä valinnat", + "smw-ask-format-options": "Rakenne ja asetukset", + "smw-ask-parameters": "Parametrit", + "smw-ask-search": "Hae", + "smw-ask-debug": "Vianetsintä", + "smw-ask-no-cache": "Poista kyselyn välimuisti käytöstä", + "smw-ask-no-cache-desc": "Tulokset ilman kyselyn välimuistia", + "smw-ask-result": "Tulos", + "smw-ask-empty": "Tyhjennä kaikki merkinnät", + "smw-ask-download-link-desc": "Lataa kysytyt tulokset $1-muodossa", + "smw-ask-format": "Muoto", + "smw-ask-format-selection-help": "Ohje valitulla muodolla: $1", + "smw-ask-condition-change-info": "Ehtoa on muutettu ja hakukoneen on suoritettava kysely uudelleen tuottaakseen tuloksia, jotka vastaavat uusia vaatimuksia.", + "smw-ask-input-assistance": "Syöttöapu", + "smw-ask-extra-other": "Muu", + "searchbyproperty": "Selaaminen ominaisuuksittain", + "processingerrorlist": "Käsittelyvirheluettelo", + "constrainterrorlist": "Rajoitusvirheluettelo", + "missingredirectannotations": "Puuttuvat uudelleenohjausmerkinnät", + "smw-missingredirects-list-intro": "Näytetään $1 {{PLURAL:$1|sivu, josta puuttuu uudelleenohjausmerkintä|sivua, joista puuttuvat uudelleenohjausmerkinnät}}", + "smw_sbv_docu": "Voit selata sivuja, joilla on tietty arvo tietylle ominaisuudelle.", + "smw_sbv_novalue": "Syötä ominaisuuden arvo alle. Lista mahdollisista arvoista löytyy sivulta $1.", + "smw_sbv_displayresultfuzzy": "Lista kaikista sivuista, joilla ominaisuuden $1 arvona on $2.\nKoska tuloksia on vain vähän, myös lähellä olevat arvot näytetään.", + "smw_sbv_property": "Ominaisuus", + "smw_sbv_value": "Arvo", + "smw_sbv_submit": "Etsi tuloksia", + "browse": "Selaa wikiä", + "smw_browselink": "Sivun ominaisuudet", + "smw_browse_article": "Kirjoita sen sivun nimi, jonka ominaisuuksia haluat selata.", + "smw_browse_go": "Siirry", + "smw_browse_show_incoming": "Näytä saapuvat ominaisuudet", + "smw_browse_hide_incoming": "Piilota saapuvat ominaisuudet", + "smw_browse_no_outgoing": "Tällä sivulla ei ole ominaisuuksia.", + "smw_browse_no_incoming": "Mikään ominaisuus ei viittaa tälle sivulle.", + "smw-browse-show-group": "Näytä ryhmät", + "smw-browse-hide-group": "Piilota ryhmät", + "smw_inverse_label_default": "$1 /", + "pageproperty": "Sivun ominaisuuksien haku", + "smw_pp_docu": "Syötä sivu ja ominaisuus, tai vain ominaisuus hakeaksesi kaikki määrätyt arvot.", + "smw_pp_from": "Sivu:", + "smw_pp_type": "Ominaisuus:", + "smw_pp_submit": "Hae", + "smw-prev": "edelliset {{PLURAL:$1|$1}}", + "smw-next": "seuraavat {{PLURAL:$1|$1}}", + "smw_result_prev": "Edellinen", + "smw_result_next": "Seuraava", + "smw_result_results": "Tulokset", + "smw_result_noresults": "Ei hakutuloksia.", + "smwadmin": "Semantic MediaWikin kojelauta", + "smw-admin-statistics-job-title": "Työtilastot", + "smw-admin-permission-missing": "Pääsy tälle sivulle on estetty puuttuvien käyttöoikeuksien vuoksi, kysy neuvoa [https://www.semantic-mediawiki.org/wiki/Help:Permissions oikeuksien] apusivulta saadaksesi lisätietoja tarvittavista asetuksista.", + "smw_smwadmin_return": "Palaa kohteeseen $1", + "smw_smwadmin_updatestarted": "Semanttisten tietojen päivitysprosessi on käynnistetty.\nTietokantaan tallennetut tiedot kootaan uudellee tai korjataan tarpeen vaatiessa.\nVoit seurata päivityksen etenemistä tällä toimintosivulla.", + "smw_smwadmin_updatenotstarted": "Päivitysprosessi on jo käynnissä.\nUutta ei käynnistetä.", + "smw_smwadmin_updatestopped": "Kaikki nykyiset päivitysprosessit on pysäytetty.", + "smw_smwadmin_updatenotstopped": "Jos haluat pysäyttää käynnissä olevan päivitysprosessin, varmista päätöksesi aktivoimalla valintaruutu.", + "smw-admin-docu": "Tämä toimintosivu auttaa Semantic MediaWikin asennuksessa, päivityksessä, ylläpidossa ja käytössä sekä tarjoaa myös enemmän hallinnollisia funktioita ja tehtäviä, kuten myös tilastoja.\n\n\nMuista tehdä varmuuskopiot tärkeistä tiedoista ennen kuin aloitat ylläpitotoiminnot.", + "smw-admin-environment": "Ohjelmistoympäristö", + "smw-admin-db": "Tietokannan asennus", + "smw-admin-dbdocu": "Semantic MediaWiki tarvitsee oman tietokantarakenteen (ja on itsenäinen MediaWikistä, joten se ei vaikuta muuhun MediaWiki-asennukseen), jotta semanttista tietoa voidaan tallentaa.\nAsennus voidaan suorittaa monta kertaa ilman että siitä ei aiheutuisi vahinkoa, mutta se on tehtävä vain kerran asennuksen tai päivityksen yhteydessä.", + "smw-admin-dbbutton": "Alusta tai päivitä taulukot", + "smw-admin-announce": "Julkista wikisi", + "smw-admin-deprecation-notice-title-notice": "Poistuneet muutokset", + "smw-admin-deprecation-notice-title-replacement": "Korvatut tai uudelleennimetyt asetukset", + "smw-admin-deprecation-notice-title-removal": "Poistetut asetukset", + "smw-smwadmin-refresh-title": "Tietojen korjaus ja päivitys", + "smw_smwadmin_datarefresh": "Tietojen uudelleenluonti", + "smw_smwadmin_datarefreshdocu": "Semantic MediaWikin data voidaan palauttaa wikin nykyisen sisällön avulla.\nTämä voi olla hyödyllistä, kun halutaan korjata tai päivittää dataa, jonka sisäinen muoto on muuttunut jonkin ohjelmistopäivityksen takia.\nPäivitys etenee sivu sivulta eikä valmistu nopeasti.\nAlla näkyy päivityksen eteneminen ja mahdollistaa päivitysten käynnistämisen tai pysäyttämisen (paitsi jos sivuston ylläpitäjä on ottanut toiminnon pois käytöstä).", + "smw_smwadmin_datarefreshprogress": "Päivitys on jo käynnissä.\nOn normaalia, että päivitys etenee hitaasti, sillä tietoja päivitetään pienissä osissa silloin kuin wikin sivuja ladataan.\nJos haluat päivityksen valmistuvan nopeammin, käytä MediaWikin ylläpitokomentosarjaa runJobs.php (käytä valitsinta --maxjobs 1000 rajoittaaksesi yhdessä erässä tehtävien päivitysten määrää).\nNykyisen päivityksen arvioitu eteneminen:", + "smw_smwadmin_datarefreshbutton": "Ajoita tietojen uudistaminen", + "smw_smwadmin_datarefreshstop": "Lopeta tämä päivitys", + "smw_smwadmin_datarefreshstopconfirm": "Kyllä, olen {{GENDER:$1|varma}}.", + "smw-admin-support": "Tuen hankkiminen", + "smw-admin-installfile": "Jos asennuksen kanssa on ongelmia, lue ensin INSTALL-tiedoston ohjeet ja asennussivu.", + "smw-admin-smwhomepage": "Semantic MediaWikin täydellinen käyttäjän opas löytyy osoitteesta semantic-mediawiki.org.", + "smw-admin-bugsreport": "Ohjelmistovirheet voi raportoida GitHubiin.", + "smw-admin-questions": "Jos sinulla on kysymyksiä tai ehdotuksia, liity keskusteluun Semanttisen MediaWikin käyttäjäfoorumilla.", + "smw-admin-statistics": "Tilastot", + "smw-admin-supplementary-settings-title": "Määritykset ja asetukset", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-cache-title": "Välimuistitilastot", + "smw-admin-supplementary-elastic-version-info": "Versio", + "smw-admin-supplementary-elastic-settings-title": "Asetukset (indeksit)", + "smw-admin-supplementary-elastic-mappings-summary": "Yhteenveto", + "smw-admin-supplementary-elastic-statistics-title": "Tilastot", + "smw-admin-supplementary-elastic-replication-files": "Tiedostot", + "smw-property-label-similarity-threshold": "Kynnys:", + "smw-property-label-similarity-noresult": "Valituilla asetuksilla ei löytynyt yhtään tulosta.", + "smw_adminlinks_datastructure": "Tietorakenne", + "smw_adminlinks_displayingdata": "Tietojen näyttö", + "smw_adminlinks_inlinequerieshelp": "Upotettujen kyselyjen ohje", + "smw-createproperty-isproperty": "Se on tyypin $1 ominaisuus.", + "smw-createproperty-allowedvals": "Tämän ominaisuuden {{PLURAL:$1|sallittu arvo on|sallitut arvot ovat}}:", + "smw-paramdesc-category-delim": "Erotin", + "smw-paramdesc-category-template": "Malline, jolla kohteita muotoillaan", + "smw-paramdesc-category-userparam": "Parametri, jotka välitetään mallineeseen", + "smw-info-par-message": "Näytettävä sanoma.", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Yleiset asetukset", + "prefs-extended-search-options": "Laajennettu haku", + "prefs-ask-options": "Semanttinen haku", + "smw-prefs-ask-options-tooltip-display": "Näytä parametri työkaluvihjeenä #ask [[Special:Ask|kyselynrakentajan]] toimintosivulla.", + "smw-prefs-general-options-time-correction": "Ota käyttöön aikakorjaus toimintosivuille käyttämällä paikallista [[Special:Preferences#mw-prefsection-rendering|aikaero]]asetusta", + "smw-prefs-general-options-disable-editpage-info": "Poista johdantoteksti käytöstä muokkaussivulla", + "smw-prefs-general-options-disable-search-info": "Poista syntaksin tukitiedot käytöstä tavallisella hakusivulla", + "smw-prefs-general-options-suggester-textinput": "Ota käyttöön syöttöapu semanttisille entiteeteille", + "smw-ui-tooltip-title-property": "Ominaisuus", + "smw-ui-tooltip-title-quantity": "Yksikkömuunnos", + "smw-ui-tooltip-title-info": "Tiedot", + "smw-ui-tooltip-title-service": "Palvelun linkit", + "smw-ui-tooltip-title-warning": "Varoitus", + "smw-ui-tooltip-title-error": "Virhe", + "smw-ui-tooltip-title-parameter": "Parametri", + "smw-ui-tooltip-title-event": "Tapahtuma", + "smw-ui-tooltip-title-note": "Huomautus", + "smw-ui-tooltip-title-legend": "Selite", + "smw-ui-tooltip-title-reference": "Viite", + "smw_unknowntype": "Tämän ominaisuuden tyyppi \"$1\" on virheellinen", + "smw_concept_header": "Käsitteen ”$1” sivut", + "smw_conceptarticlecount": "Näytetään alla $1 {{PLURAL:$1|sivu|sivua}}", + "right-smw-vieweditpageinfo": "Katsoa [https://www.semantic-mediawiki.org/wiki/Help:Edit_help muokkausohjetta] (Semantic MediaWiki)", + "group-smwadministrator": "Ylläpitäjät (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|ylläpitäjä (Semantic MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:Ylläpitäjät (Semantic MediaWiki)", + "group-smwcurator": "Kuraattorit (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|kuraattori (Semantic MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:Kuraattorit (Semantic MediaWiki)", + "action-smw-admin": "päästä Semantic MediaWikin hallintotehtäviin", + "smw-sp-properties-header-label": "Luettelo ominaisuuksista", + "smw-admin-idlookup-input": "Hae:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Yleiskatsaus", + "smw-admin-configutation-tab-settings": "Asetukset", + "smw-admin-configutation-tab-namespaces": "Nimiavaruudet", + "smw-admin-maintenance-tab-scripts": "Ylläpitoskriptit", + "smw-admin-maintenance-no-description": "Ei kuvausta.", + "smw-livepreview-loading": "Ladataan…", + "smw-sp-searchbyproperty-resultlist-header": "Luettelo tuloksista", + "smw-search-syntax": "Syntaksi", + "smw-search-profile-extended-section-namespace": "Nimiavaruus", + "smw-search-profile-extended-section-query": "Kysely", + "smw-search-show": "Näytä", + "smw-search-hide": "Piilota", + "log-name-smw": "Semantic MediaWiki -loki", + "log-show-hide-smw": "$1 Semantic MediaWiki -loki", + "logeventslist-smw-log": "Semantic MediaWiki -loki", + "smw-datavalue-invalid-number": "Arvoa ”$1” ei voi tulkita luvuksi.", + "smw-query-condition-empty": "Kyselyn kuvaus sisältää tyhjän ehdon.", + "smw-types-list": "Luettelo tietotyypeistä", + "smw-types-default": "”$1” on sisäänrakennettu tietotyyppi.", + "smw-type-boo": "”$1” perustietotyyppi, joka kuvaa totuusarvoa.", + "smw-type-txt": "”$1” on perustietotyyppi, joka kuvaa mielivaltaisen pitkiä merkkijonoja.", + "smw-type-dat": "”$1” on perustietotyyppi, joka kuvaa ajanhetkiä yhtenäisessä muodossa.", + "smw-type-extra-tem": "Muunnosskeema sisältää tuetut yksiköt kuten Kelvin, Celcious, Fahrenheit ja Rankine.", + "smw-type-tab-properties": "Ominaisuudet", + "smw-type-tab-types": "Tyypit", + "smw-type-tab-errors": "Virheet", + "smw-type-primitive": "Perustyypit", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|sekunti|sekuntia}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|sekunti|sekuntia}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|sekunti|sekuntia}}", + "smw-datavalue-allows-pattern-mismatch": "Arvo ”$1” luokiteltiin virheelliseksi säännöllisen lausekkeen ”$2” perusteella.", + "smw-datavalue-external-formatter-invalid-uri": "”$1” on virheellinen URL-osoite.", + "smw-clipboard-copy-link": "Kopioi linkki leikepöydälle", + "smw-no-data-available": "Tietoja ei ole saatavissa.", + "smw-edit-protection-enabled": "Muokkaaminen suojattu (Semantic MediaWiki)", + "smw-format-datatable-loadingrecords": "Ladataan...", + "smw-format-datatable-processing": "Käsitellään...", + "smw-format-datatable-search": "Haku:", + "smw-format-datatable-first": "Ensimmäinen", + "smw-format-datatable-last": "Viimeinen", + "smw-format-datatable-next": "Seuraava", + "smw-format-datatable-previous": "Edellinen", + "smw-format-datatable-toolbar-export": "Vie", + "smw-property-page-list-count": "Näytetään $1 tätä ominaisuutta {{PLURAL:$1|käyttävä sivu|käyttävää sivua}}.", + "smw-property-reserved-category": "Luokka", + "smw-category": "Luokka", + "smw-browse-property-group-title": "Ominaisuusryhmä", + "smw-filter": "Suodata", + "smw-section-expand": "Laajenna osio", + "smw-section-collapse": "Tiivistä osio", + "smw-help": "Ohje", + "smw-property-predefined-label-skey": "Pikanäppäin", + "smw-processing": "Käsitellään...", + "smw-types-title": "Tyyppi: $1", + "smw-schema-error-title": "Vahvistus{{PLURAL:$1|virhe|virheet}}", + "smw-schema-summary-title": "Yhteenveto", + "smw-schema-type": "Skeeman tyyppi", + "smw-ask-title-keyword-type": "Avainsanahaku", + "smw-property-tab-usage": "Käyttö", + "smw-property-tab-redirects": "Synonyymit", + "smw-concept-tab-list": "Luettelo", + "smw-concept-tab-errors": "Virheet", + "smw-ask-tab-result": "Tulos", + "smw-ask-tab-extra": "Ekstra", + "smw-ask-tab-code": "Koodi", + "smw-legend": "Selite", + "smw-listingcontinuesabbrev": "jatkuu", + "smw-showingresults": "Alla on vain {{PLURAL:$1|1 hakutulos|$1 hakutulosta}} alkaen tuloksesta nro $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/fo.json b/mediawiki/extensions/SemanticMediaWiki/i18n/fo.json new file mode 100644 index 0000000..533f393 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/fo.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "EileenSanda", + "Spacebirdy" + ] + }, + "smw-categories": "Bólkar", + "browse": "Leita í wikiini", + "smw-livepreview-loading": "Innlesur...", + "smw-listingcontinuesabbrev": "frh.", + "smw-showingresults": "Niðanfyri standa upp til {{PLURAL:$1|'''$1''' úrslit, sum byrjar|'''$1''' úrslit, sum byrja}} við #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/fr.json b/mediawiki/extensions/SemanticMediaWiki/i18n/fr.json new file mode 100644 index 0000000..1b211c8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/fr.json @@ -0,0 +1,1165 @@ +{ + "@metadata": { + "authors": [ + "Ajeje Brazorf", + "Alien333", + "Boniface", + "Brunoperel", + "Crochet.david", + "DePlusJean", + "Derugon", + "Dinoxel", + "Eduardo Addad de Oliveira", + "Eduardoaddad", + "Eneelk", + "Epok", + "Eric.LEWIN", + "Erkethan", + "Faure.thomas", + "Gomoko", + "Grondin", + "Hmevidia", + "IAlex", + "Kghbln", + "Kubuya kanane leopold", + "LIMAFOX76", + "Lbayle", + "Ltrlg", + "MacOS Weed", + "Macofe", + "McDutchie", + "Meithal", + "Metroitendo", + "Nemo bis", + "Nicolas NALLET", + "Od1n", + "Orlodrim", + "Oujon", + "Oupsa", + "Pamputt", + "Peter17", + "PieRRoMaN", + "Pierre Matringe", + "Pols12", + "Qwrop", + "Seb35", + "Sherbrooke", + "SleaY", + "Solitarius", + "Tartare", + "Thibaut120094", + "Tititou36", + "Urhixidur", + "Verdy p", + "VictorBrice", + "Windes", + "Wladek92", + "Wuzhenwei", + "Wyz", + "Yasten", + "Zetud", + "아라" + ] + }, + "smw-desc": "Rendre votre wiki plus accessible — pour les machines ''et'' les humains ([https://www.semantic-mediawiki.org/wiki/Help:User_manual documentation en ligne])", + "smw-error": "Erreur", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] a été installé et activé, mais il manque une [https://www.semantic-mediawiki.org/wiki/Help:Upgrade clé de mise à jour] appropriée.", + "smw-upgrade-release": "Publier", + "smw-upgrade-progress": "Avancement", + "smw-upgrade-progress-explain": "Une estimation du moment où la mise à jour sera terminée est difficile à prédire, car cela dépend de la taille du dépôt de données et du matériel disponible, et cela peut prendre un moment pour se terminer, sur les plus gros wikis.\n\nVeuillez contacter votre administrateur local pour obtenir plus d’informations sur cet avancement.", + "smw-upgrade-progress-create-tables": "Création (ou mise à jour) des tables et des index...", + "smw-upgrade-progress-post-creation": "Exécution des tâches post-création...", + "smw-upgrade-progress-table-optimization": "Exécution des optimisations de table...", + "smw-upgrade-progress-supplement-jobs": "Ajout des tâches supplémentaires...", + "smw-upgrade-error-title": "Erreur ▸ MediaWiki Sémantique", + "smw-upgrade-error-why-title": "Pourquoi vois-je cette page ?", + "smw-upgrade-error-why-explain": "La structure de la base de données interne de MediaWiki Sémantique a été modifiée et nécessite des ajustements pour être pleinement fonctionnelle. Il peut y avoir plusieurs raisons à cela, dont :\n* des propriétés corrigées supplémentaires (nécessitant une installation de table supplémentaire) ont été ajoutées ;\n* une mise à jour contient certaines modifications de tables ou d’index rendant une interception obligatoire avant d’accéder aux données ;\n* des modifications au stockage ou au moteur de requêtes.", + "smw-upgrade-error-how-title": "Comment dois-je corriger cette erreur ?", + "smw-upgrade-error-how-explain-admin": "Un administrateur (ou toute personne ayant les droits administrateur) doit exécuter le script de maintenance soit [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] de MediaWiki soit [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] de MediaWiki Sémantique.", + "smw-upgrade-error-how-explain-links": "Vous pouvez aussi consulter les pages suivantes pour une aide supplémentaire :\n* les instructions d’[https://www.semantic-mediawiki.org/wiki/Help:Installation installation] ;\n* page d’aide pour la [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting recherche de fautes].", + "smw-extensionload-error-why-title": "Pourquoi vois-je cette page ?", + "smw-extensionload-error-why-explain": "L’extension n’a pas été chargée avec enableSemantics mais par un autre moyen tel que l’utilisation de wfLoadExtension( 'SemanticMediaWiki' ) directement.", + "smw-extensionload-error-how-title": "Comment puis-je corriger cette erreur ?", + "smw-extensionload-error-how-explain": "Pour activer l’extension et éviter les problèmes de déclarations d'espaces de noms et de configurations en attente, il est nécessaire d’utiliser enableSemantics, qui assure l’assignation des variables requises avant le chargement de l’extension via ExtensionRegistry. \n\nVeuillez consulter la page d’aide d’[https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] pour plus d’assistance.", + "smw-upgrade-maintenance-title": "Maintenance » MediaWiki Sémantique", + "smw-upgrade-maintenance-why-title": "Pourquoi vois-je cette page ?", + "smw-upgrade-maintenance-note": "Le système est actuellement en cours de [https://www.semantic-mediawiki.org/wiki/Help:Upgrade mise à jour] pour l’extension [https://www.semantic-mediawiki.org/ MediaWiki Sémantique] ainsi que son dépôt de données et nous vous demandons de bien vouloir patienter et permettre à la maintenance de continuer avant que le wiki soit de nouveau accessible.", + "smw-upgrade-maintenance-explain": "L’extension essaie de minimiser l’impact et de réduire le temps en délégant la plupart de ses tâches de maintenance après update.php, mais certaines modifications relatives à la base de données doivent d’abord se terminer pour éviter d’avoir des données incohérentes. Cela peut comprendre : \n* la modification des structures de tables comme l’ajout de nouveaux champs ou la modification de champs existants\n* la modification ou l’ajout d’index de tableaux \n* l’exécution des optimisations de tables (si activé)", + "smw-semantics-not-enabled": "La fonctionnalité MediaWiki Sémantique n’est pas activée sur ce wiki.", + "smw_viewasrdf": "flux RDF", + "smw_finallistconjunct": " et", + "smw-factbox-head": "... davantage au sujet de « $1 »", + "smw-factbox-facts": "Faits", + "smw-factbox-facts-help": "Affiche les affirmations et les faits qui ont été créés par un utilisateur", + "smw-factbox-attachments": "Pièces jointes :", + "smw-factbox-attachments-value-unknown": "n.d.", + "smw-factbox-attachments-is-local": "Est local", + "smw-factbox-attachments-help": "Affiche les pièces jointes disponibles", + "smw-factbox-facts-derived": "Faits dérivés", + "smw-factbox-facts-derived-help": "Affiche les faits qui ont été dérivés des règles ou avec l’aide d’autres techniques de raisonnement", + "smw_isspecprop": "Cette propriété est une propriété spéciale dans ce wiki.", + "smw-concept-cache-header": "Utilisation du cache", + "smw-concept-cache-count": "Le [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count cache de concept] contient {{PLURAL:$1|'''une''' entité|'''$1''' entités}} ($2).", + "smw-concept-no-cache": "Aucune donnée en cache disponible.", + "smw_concept_description": "Description du concept « $1 »", + "smw_no_concept_namespace": "Les concepts ne peuvent être définis que dans les pages appartenant à l’espace de noms « Concept: ».", + "smw_multiple_concepts": "Chaque page de concept ne peut avoir qu’une seule définition de concept.", + "smw_concept_cache_miss": "Le concept « $1 » ne peut être utilisé en ce moment, car la configuration du wiki exige qu’il soit lancé hors-ligne.\nSi le problème persiste, demandez à l’administrateur de votre site de rendre ce concept disponible.", + "smw_noinvannot": "Les valeurs ne peuvent pas être allouées pour inverser des propriétés.", + "version-semantic": "Extensions sémantiques", + "smw_baduri": "Les URI de la forme « $1 » ne sont pas autorisées.", + "smw_printername_count": "Comptage des résultats", + "smw_printername_csv": "Exporter au format CSV", + "smw_printername_dsv": "Exporter au format DSV", + "smw_printername_debug": "Requête de débogage (pour les experts)", + "smw_printername_embedded": "Incruster le contenu de la page", + "smw_printername_json": "Exporter au format JSON", + "smw_printername_list": "Liste", + "smw_printername_plainlist": "Liste simple", + "smw_printername_ol": "Liste numérotée", + "smw_printername_ul": "Liste à puces", + "smw_printername_table": "Tableau", + "smw_printername_broadtable": "Tableau élargi", + "smw_printername_template": "Modèle", + "smw_printername_templatefile": "Fichier modèle", + "smw_printername_rdf": "Exporter au format RDF", + "smw_printername_category": "Catégorie", + "validator-type-class-SMWParamSource": "texte", + "smw-paramdesc-limit": "Le nombre maximal de résultats à renvoyer", + "smw-paramdesc-offset": "Le décalage du premier résultat", + "smw-paramdesc-headers": "Afficher les en-têtes / noms de propriétés", + "smw-paramdesc-mainlabel": "L’étiquette de la page d’accueil", + "smw-paramdesc-link": "Montrer les valeurs en tant que liens", + "smw-paramdesc-intro": "Le texte à afficher avant les résultats de la requête, s’il y en a", + "smw-paramdesc-outro": "Le texte à afficher après les résultats de la requête, s’il y en a", + "smw-paramdesc-default": "Le texte à afficher s’il n’y a aucun résultat pour la requête", + "smw-paramdesc-sep": "Le séparateur entre les résultats", + "smw-paramdesc-propsep": "Le séparateur entre les propriétés d’une entrée de résultat", + "smw-paramdesc-valuesep": "Le séparateur entre les valeurs pour une propriété de résultat", + "smw-paramdesc-showsep": "Afficher le séparateur en haut du fichier CSV (« sep= »)", + "smw-paramdesc-distribution": "Au lieu d’afficher toutes les valeurs, compter leurs occurrences et les afficher.", + "smw-paramdesc-distributionsort": "Trier la distribution de valeurs par nombre d’occurrences.", + "smw-paramdesc-distributionlimit": "Limiter la distribution des valeurs à la prise en compte de seulement quelques valeurs.", + "smw-paramdesc-aggregation": "Spécifier à quoi l’aggrégation doit être reliée", + "smw-paramdesc-template": "Le nom d’un modèle qui servira à afficher les résultats", + "smw-paramdesc-columns": "Le nombre de colonnes pour afficher les résultats", + "smw-paramdesc-userparam": "Une valeur passée dans chaque appel de modèle, si un modèle est utilisé", + "smw-paramdesc-class": "Une classe CSS supplémentaire à définir pour la liste", + "smw-paramdesc-introtemplate": "Le nom d’un modèle à afficher avant les résultats de requête, s’il y en a", + "smw-paramdesc-outrotemplate": "Le nom d’un modèle à afficher après les résultats de la requête, s’il y en a", + "smw-paramdesc-embedformat": "La balise HTML qui sert à définir les en-têtes", + "smw-paramdesc-embedonly": "N’afficher aucun en-tête", + "smw-paramdesc-table-class": "Une classe CSS supplémentaire à mettre pour la table", + "smw-paramdesc-table-transpose": "Afficher les entêtes du tableau verticalement et les résultats horizontalement", + "smw-paramdesc-prefix": "Contrôler l’affichage de l’espace de noms dans les impressions", + "smw-paramdesc-rdfsyntax": "La syntaxe de RDF à utiliser", + "smw-paramdesc-csv-sep": "Spécifie un séparateur de colonnes", + "smw-paramdesc-csv-valuesep": "Spécifie un séparateur de valeurs", + "smw-paramdesc-csv-merge": "Fusionne les valeurs des lignes et des colonnes avec un identifiant de sujet identique (alias première colonne)", + "smw-paramdesc-csv-bom": "Ajouter un BOM (caractère pour signaler le boutisme) au début du fichier de sortie", + "smw-paramdesc-dsv-separator": "Le séparateur à utiliser", + "smw-paramdesc-dsv-filename": "Le nom du fichier DSV", + "smw-paramdesc-filename": "Le nom du fichier de sortie", + "smw-smwdoc-description": "Affiche un tableau de tous les paramètres qui peuvent être utilisés pour le format de résultat spécifié ensemble avec les valeurs et les descriptions par défaut.", + "smw-smwdoc-default-no-parameter-list": "Ce format de résultat ne propose pas de paramètres de mise en forme spécifique.", + "smw-smwdoc-par-format": "Le format de résultat dans lequel afficher la documentation d'un paramètre.", + "smw-smwdoc-par-parameters": "Les paramètres à afficher : « specific » pour seulement ceux ajoutés par le format, « base » pour seulement ceux disponibles dans tous les formats, ou bien « all » pour les afficher tous.", + "smw-paramdesc-sort": "Propriété selon laquelle trier la requête", + "smw-paramdesc-order": "Ordre de tri pour la requête", + "smw-paramdesc-searchlabel": "Texte pour continuer la recherche", + "smw-paramdesc-named_args": "Nommez les arguments transmis au modèle", + "smw-paramdesc-template-arguments": "Indique comment les arguments nommés sont passés au modèle", + "smw-paramdesc-import-annotation": "Les données supplémentaires annotées sont copiées lors de l’analyse d’un sujet", + "smw-paramdesc-export": "Options d’exportation", + "smw-paramdesc-prettyprint": "Une sortie d’impression plus claire qui affiche les indentations et sauts de ligne ajoutés", + "smw-paramdesc-json-unescape": "Sortie pour inclure sans échappement les barres obliques et les caractères Unicode codés sur plusieurs octets", + "smw-paramdesc-json-type": "Type de sérialisation", + "smw-paramdesc-source": "Source de requête alternative", + "smw-paramdesc-jsonsyntax": "Syntaxe JSON à utiliser", + "smw-printername-feed": "Flux RSS ou Atom", + "smw-paramdesc-feedtype": "Type de flux", + "smw-paramdesc-feedtitle": "Le texte à utiliser comme titre du flux", + "smw-paramdesc-feeddescription": "Le texte à utiliser comme description du flux", + "smw-paramdesc-feedpagecontent": "Contenu de la page à afficher avec le flux", + "smw-label-feed-description": "Flux $1 $2", + "smw-paramdesc-mimetype": "Le type de média (type MIME) du fichier de sortie", + "smw_iq_disabled": "Les recherches sémantiques sur ce wiki sont désactivées.", + "smw_iq_moreresults": "... autres résultats", + "smw_parseerror": "La donnée indiquée n’a pas été comprise.", + "smw_decseparator": ",", + "smw_kiloseparator": " ", + "smw_notitle": "« $1 » ne peut être utilisé comme nom de page sur ce wiki.", + "smw_noproperty": "« $1 » ne peut être utilisé comme un nom de propriété sur ce wiki.", + "smw_wrong_namespace": "Seules les pages dans l’espace « $1 » sont autorisées ici.", + "smw_manytypes": "Plusieurs types de données ont été affectés à cette propriété.", + "smw_emptystring": "Les chaînes vides ne sont pas acceptées.", + "smw_notinenum": "« $1 » n’est pas dans la liste ($2) des [[Property:Allows value|valeurs autorisées]] pour la propriété « $3 ».", + "smw-datavalue-constraint-error-allows-value-list": "« $1 » n’est pas la liste ($2) des [[Property:Allows value|valeurs autorisées]] pour la propriété « $3 ».", + "smw-datavalue-constraint-error-allows-value-range": "« $1 » n’est pas dans cet intervalle de « $2 » spécifié par la contrainte sur la [[Property:Allows value|valeur autorisée]] de la propriété « $3 ».", + "smw-constraint-error": "Problème de contrainte", + "smw-constraint-error-suggestions": "Veuillez vérifier les violations et les propriétés listées avec leurs valeurs annotées, pour vous assurer que toutes les exigences de contrainte sont vérifiées.", + "smw-constraint-error-limit": "La liste contiendra au maximum $1 violations.", + "smw_noboolean": "« $1 » n’est pas reconnu comme une valeur booléenne (vrai / faux).", + "smw_true_words": "vrai,v,oui,o,true", + "smw_false_words": "faux,f,non,n,false", + "smw_nofloat": "« $1 » n’est pas un nombre.", + "smw_infinite": "Les nombres aussi grands que « $1 » ne sont pas pris en charge.", + "smw_unitnotallowed": "« $1 » n’est pas déclaré comme une unité valide de mesure pour cette propriété.", + "smw_nounitsdeclared": "Aucune unité de mesure n’a été déclarée pour cette propriété.", + "smw_novalues": "Aucune valeur n’a été spécifiée.", + "smw_nodatetime": "La date « $1 » n’a pas été comprise.", + "smw_toomanyclosing": "Il semble y avoir trop d’occurrences de « $1 » dans la requête.", + "smw_noclosingbrackets": "Certaines paires « [[ » dans votre requête ne sont pas fermés avec les paires « ]] » correspondantes.", + "smw_misplacedsymbol": "Le symbole « $1 » a été utilisé à un endroit où il n’est pas utile.", + "smw_unexpectedpart": "La partie « $1 » de la requête n’a pas été comprise. Les résultats peuvent être inattendus.", + "smw_emptysubquery": "Certaines sous-requêtes ont une condition non valide.", + "smw_misplacedsubquery": "Certaines sous-requêtes ont été utilisées à un endroit où aucune sous-requête n’est permise.", + "smw_valuesubquery": "Les sous-requêtes se sont pas prises en charge pour les valeurs de la propriété « $1 ».", + "smw_badqueryatom": "Une partie délimitée par « [[...]] » dans la requête n’a pas été comprise.", + "smw_propvalueproblem": "La valeur de la propriété « $1 » n’a pas été comprise.", + "smw_noqueryfeature": "Une fonctionnalité de requête n’est pas prise en charge par ce wiki et une partie de la requête a été éliminée ($1).", + "smw_noconjunctions": "Les conjonctions dans les requêtes ne sont pas prises en charge par ce wiki et une partie de la requête a été éliminée ($1).", + "smw_nodisjunctions": "Les disjonctions dans les requêtes ne sont pas prises en charge par ce wiki et une partie de la requête a été éliminée ($1).", + "smw_querytoolarge": "L{{PLURAL:$2|a|es}} condition{{PLURAL:$2||s}} suivante{{PLURAL:$2||s}} de la requête n’{{PLURAL:$2|a|ont}} pas pu être évaluée{{PLURAL:$2||s}} en raison de restrictions de ce wiki sur la taille ou la profondeur de cette requête : $1.", + "smw_notemplategiven": "Veuillez fournir une valeur pour le paramètre « modèle » afin que ce format de requête fonctionne.", + "smw_db_sparqlqueryproblem": "Le résultat de la requête n’a pas pu être obtenu depuis la base de données SPARQL. Cette erreur peut être temporaire ou indiquer un bogue dans le logiciel de la base de données.", + "smw_db_sparqlqueryincomplete": "Il s’est avéré trop difficile de répondre à la requête et celle-ci a été abandonnée. Certains résultats pourraient manquer. Si possible, essayez plutôt d’utiliser une requête plus simple.", + "smw_type_header": "Propriétés de type « $1 »", + "smw_typearticlecount": "Afficher {{PLURAL:$1|la|les $1}} propriété{{PLURAL:$1|}} utilisant ce type.", + "smw_attribute_header": "Pages utilisant la propriété « $1 »", + "smw_attributearticlecount": "Afficher {{PLURAL:$1|la page|les $1 pages}} utilisant cette propriété.", + "smw-propertylist-subproperty-header": "Sous-propriétés", + "smw-propertylist-redirect-header": "Synonymes", + "smw-propertylist-error-header": "Pages avec des affectations erronées", + "smw-propertylist-count": "Affichage {{PLURAL:$1|de l’entité associée|des $1 entités associées}}.", + "smw-propertylist-count-with-restricted-note": "Afficher {{PLURAL:$1|l’entité associée|les $1 entités associées}} (davantage sont disponibles, mais l’affichage est limité à « $2 »).", + "smw-propertylist-count-more-available": "Afficher {{PLURAL:$1|l’entité associée|les $1 entités associées}} (davantage sont disponibles).", + "specialpages-group-smw_group": "MediaWiki Sémantique", + "specialpages-group-smw_group-maintenance": "Maintenance", + "specialpages-group-smw_group-properties-concepts-types": "Propriétés, concepts et types", + "specialpages-group-smw_group-search": "Naviguer et rechercher", + "exportrdf": "Exporter des pages en RDF", + "smw_exportrdf_docu": "Cette page permet d’obtenir des données d’une page au format RDF. \nVeuillez entrer le nom des pages souhaitées dans la boîte de texte ci-dessous, un nom par ligne.", + "smw_exportrdf_recursive": "Exporter toutes les pages pertinentes de manière récursive. Cette possibilité peut aboutir à un très grand nombre de résultats !", + "smw_exportrdf_backlinks": "Exporter également toutes les pages qui renvoient à des pages exportées. \nProduit un RDF dans lequel la navigation est facilitée.", + "smw_exportrdf_lastdate": "Ne pas exporter les pages non modifiées depuis le moment indiqué.", + "smw_exportrdf_submit": "Exporter", + "uriresolver": "Résolveur d’URI", + "properties": "Propriétés", + "smw-categories": "Liste des catégories", + "smw_properties_docu": "Les propriétés suivantes sont utilisées sur ce wiki.", + "smw_property_template": "$1 du type $2 ($3 utilisation{{PLURAL:$3||s}})", + "smw_propertylackspage": "Toutes les propriétés devraient être décrites par une page !", + "smw_propertylackstype": "Aucun type n’a été spécifié pour cette propriété (type actuellement supposé : $1).", + "smw_propertyhardlyused": "Cette propriété est à peine utilisée sur ce wiki !", + "smw-property-name-invalid": "La propriété $1 ne peut pas être utilisée (nom de propriété non valide).", + "smw-property-name-reserved": "« $1 » a été listé comme un nom réservé et ne doit pas être utilisé en tant que propriété. La [https://www.semantic-mediawiki.org/wiki/Help:Property_naming page d’aide] suivante peut contenir des informations sur la raison pour laquelle ce nom a été réservé.", + "smw-sp-property-searchform": "Afficher les propriétés qui contiennent :", + "smw-sp-property-searchform-inputinfo": "L’entrée est sensible à la casse et, quand elle est utilisée pour le filtrage, seules les propriétés qui correspondent à la condition sont affichées.", + "smw-special-property-searchform": "Afficher les propriétés qui contiennent :", + "smw-special-property-searchform-inputinfo": "L’entrée est sensible à la casse et, quand elle est utilisée pour le filtrage, seules les propriétés qui correspondent à la condition sont affichées.", + "smw-special-property-searchform-options": "Options", + "smw-special-wantedproperties-filter-label": "Filtre :", + "smw-special-wantedproperties-filter-none": "Aucun filtre", + "smw-special-wantedproperties-filter-unapproved": "Non approuvé", + "smw-special-wantedproperties-filter-unapproved-desc": "Option de filtrage utilisée en lien avec le type d’autorisation.", + "concepts": "Concepts", + "smw-special-concept-docu": "Un [https://www.semantic-mediawiki.org/wiki/Help:Concepts concept] peut être vu comme une «’catégorie dynamique’», c’est-à-dire comme une collection de pages qui ne sont pas créées manuellement, mais sont calculées par MediaWiki Sémantique depuis la description d’une requête fournie.", + "smw-special-concept-header": "Liste des concepts", + "smw-special-concept-count": "Le{{PLURAL:$1||s}} concept{{PLURAL:$1||s}} suivant{{PLURAL:$1||s}} {{PLURAL:$1|es|son}}t listé{{PLURAL:$1||s}}.", + "smw-special-concept-empty": "Aucun concept trouvé.", + "unusedproperties": "Propriétés inutilisées", + "smw-unusedproperties-docu": "Cette page liste [https://www.semantic-mediawiki.org/wiki/Unused_properties les propriétés inutilisées] qui sont déclarées bien qu’aucune autre page ne les utilise. Pour un affichage différencié, voyez les pages spéciales [[Special:Properties|propriétés complètes]] ou [[Special:WantedProperties|demandées]].", + "smw-unusedproperty-template": "$1 de type $2", + "wantedproperties": "Propriétés demandées", + "smw-wantedproperties-docu": "Cette page liste [https://www.semantic-mediawiki.org/wiki/Wanted_properties les propriétés demandées] qui sont utilisées dans le wiki mais qui n’ont pas de page qui les décrivent. Pour une vue différenciée, voyez les pages spéciales [[Special:Properties|propriétés complètes]] ou [[Special:UnusedProperties|inutilisées]].", + "smw-wantedproperty-template": "$1 ($2 utilisation{{PLURAL:$2||s}})", + "smw-special-wantedproperties-docu": "Cette page liste [https://www.semantic-mediawiki.org/wiki/Wanted_properties les propriétés souhaitées] qui sont utilisées dans le wiki mais qui n’ont pas de page qui les décrivent. Pour une vue différenciée, voyez les pages spéciales de propriétés [[Special:Properties|complètes]] ou [[Special:UnusedProperties|inutilisées]].", + "smw-special-wantedproperties-template": "$1 ($2 utilisation{{PLURAL:$2||s}})", + "smw_purge": "Purger", + "smw-purge-update-dependencies": "MediaWiki Sémantique purge la page courante de certaines données obsolètes qu’il a détectées, ce qui nécessite une mise à jour en arrière-plan.", + "smw-purge-failed": "MediaWiki Sémantique a essayé de purger la page, mais a échoué", + "types": "Types de données", + "smw_types_docu": "Ceci est une liste des [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes types de données disponibles], pour chacun des [https://www.semantic-mediawiki.org/wiki/Help:Datatype types] représentant un ensemble unique d’attributs qui décrivent une valeur en termes de stockage et de caractéristiques d’affichage héritables pour une propriété affectée.", + "smw-special-types-no-such-type": "« $1 » est inconnu ou n’a pas été déclaré comme type de données valide.", + "smw-statistics": "Statistiques sémantiques", + "smw-statistics-cached": "Statistiques sémantiques (en cache)", + "smw-statistics-entities-total": "Entités (total)", + "smw-statistics-entities-total-info": "Un nombre estimé de lignes d’entités. Cela comprend les propriétés, les concepts ou tout autre représentation d’objet enregistré qui nécessite une affectation d’identifiant.", + "smw-statistics-property-instance": "Valeur{{PLURAL:$1||s}} de propriété (total)", + "smw-statistics-property-total": "[[Special:Properties|Propriété{{PLURAL:$1||s}}]] (total)", + "smw-statistics-property-total-info": "Le nombre total de propriétés enregistrées.", + "smw-statistics-property-total-legacy": "Propriété{{PLURAL:$1||s}} (total)", + "smw-statistics-property-used": "Propriété{{PLURAL:$1||s}} (utilisé{{PLURAL:$1||s}} avec au moins une valeur)", + "smw-statistics-property-page": "Propriété{{PLURAL:$1||s}} (enregistrée{{PLURAL:$1||s}} avec une page)", + "smw-statistics-property-page-info": "Compteur des propriétés qui ont une page dédiée et une description.", + "smw-statistics-property-type": "Propriété{{PLURAL:$1||s}} (affectée{{PLURAL:$1||s}} à un type de données)", + "smw-statistics-query-inline-legacy": "Requête{{PLURAL:$1||s}}", + "smw-statistics-query-inline": "[[Property:Has query|Requête{{PLURAL:$1||s}}]] (intégrée{{PLURAL:$1||s}}, total)", + "smw-statistics-query-format": "format de $1", + "smw-statistics-query-size": "Taille de la requête", + "smw-statistics-concept-count-legacy": "Concept{{PLURAL:$1||s}}", + "smw-statistics-concept-count": "[[Special:Concepts|Concept{{PLURAL:$1||s}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|Possède {{PLURAL:$1|un|des}} sous-objet{{PLURAL:$1||s}}]]", + "smw-statistics-subobject-count-legacy": "Sous-objet{{PLURAL:$1||s}}", + "smw-statistics-datatype-count": "[[Special:Types|Type{{PLURAL:$1||s}} de donnée]]", + "smw-statistics-error-count": "Valeur{{PLURAL:$1||s}} de propriété ([[Special:ProcessingErrorList|mauvaise{{PLURAL:$1||s}} annotation{{PLURAL:$1||s}}]])", + "smw-statistics-error-count-legacy": "Valeur{{PLURAL:$1||s}} de propriété (mauvaise{{PLURAL:$1||s}} annotation{{PLURAL:$1||s}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities Entité{{PLURAL:$1||s}} désuète{{PLURAL:$1||s}}]", + "smw-statistics-delete-count-info": "Entités qui ont été marquées à supprimer et qui doivent être éliminées régulièrement à l’aide des scripts de maintenance fournis.", + "smw_uri_doc": "Le résolveur d’URI met en œuvre la [$1 Conclusion du TAG du W3C à propos de httpRange-14].\nIl assure qu'une représentation RDF (pour les machines) ou une page wiki (pour les humains) et fournie selon la requête.", + "ask": "Recherche sémantique", + "smw-ask-help": "Cette section contient des liens pour aider à expliquer comment utiliser la syntaxe #ask :\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Sélection des pages] décrit comment sélectionner les pages et construire les conditions ;\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Opérateurs de recherche] liste les opérateurs de recherche disponibles, y compris ceux des requêtes dans une plage et les jokers ;\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Affichage des informations] expose l’utilisation des déclarations d’affichage et des options de mise en forme des résultats.", + "smw_ask_sortby": "Trier par colonne (facultatif)", + "smw_ask_ascorder": "Croissant", + "smw_ask_descorder": "Décroissant", + "smw-ask-order-rand": "Au hasard", + "smw_ask_submit": "Trouver des résultats", + "smw_ask_editquery": "Modifier la requête", + "smw_add_sortcondition": "[Ajouter une condition de tri]", + "smw-ask-sort-add-action": "Ajouter une condition de tri", + "smw_ask_hidequery": "Masquer la requête (affichage compact)", + "smw_ask_help": "Aide à la requête", + "smw_ask_queryhead": "Condition", + "smw_ask_printhead": "Sélection des données à imprimer", + "smw_ask_printdesc": "(ajouter un nom de propriété par ligne)", + "smw_ask_format_as": "Formater en :", + "smw_ask_defaultformat": "par défaut", + "smw_ask_otheroptions": "Autres options", + "smw-ask-otheroptions-info": "Cette section contient des options qui modifient l’affichage des données. Placez votre souris sur les paramètres pour en voir la description.", + "smw-ask-otheroptions-collapsed-info": "Veuillez utiliser l’icône « plus » pour afficher toutes les options disponibles", + "smw_ask_show_embed": "Montrer le code intégré", + "smw_ask_hide_embed": "Masquer le code intégré", + "smw_ask_embed_instr": "Pour intégrer cette requête dans une page wiki, utilisez le code ci-dessous.", + "smw-ask-delete": "Retirer", + "smw-ask-sorting": "Tri", + "smw-ask-options": "Options", + "smw-ask-options-sort": "Options de tri", + "smw-ask-format-options": "Format et options", + "smw-ask-parameters": "Paramètres", + "smw-ask-search": "Rechercher", + "smw-ask-debug": "Déboguer", + "smw-ask-debug-desc": "Génère les informations de débogage de la requête", + "smw-ask-no-cache": "Désactiver le cache de requête", + "smw-ask-no-cache-desc": "Résultats sans le cache de requêtes", + "smw-ask-result": "Résultat", + "smw-ask-empty": "Effacer toutes les entrées", + "smw-ask-download-link-desc": "Télécharger les résultats recherchés au format $1", + "smw-ask-format": "Format", + "smw-ask-format-selection-help": "Aide pour le format sélectionné : $1", + "smw-ask-condition-change-info": "La condition a été modifiée et le moteur de recherche a besoin d’exécuter à nouveau la requête pour obtenir des résultats qui correspondent aux nouvelles exigences.", + "smw-ask-input-assistance": "Assistance à la saisie", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance L’assistance à la saisie] est fournie pour la sortie, le tri et le champ de condition. Le champ de condition requiert un des préfixes suivants :", + "smw-ask-condition-input-assistance-property": "p: pour récupérer les suggestions de propriété (par ex. [[p:Has …]])", + "smw-ask-condition-input-assistance-category": "c: pour récupérer les suggestions de catégorie", + "smw-ask-condition-input-assistance-concept": "con: pour récupérer les suggestions de concept", + "smw-ask-format-change-info": "Le format a été modifié et la requête doit être réexécutée pour correspondre aux nouveaux paramètres et aux options de visualisation.", + "smw-ask-format-export-info": "Le format sélectionné est un format d’exportation qui n’a pas de représentation visuelle, donc les résultats ne sont fournis qu’en téléchargement.", + "smw-ask-query-search-info": "La requête $1 a reçu une réponse de $2 {{PLURAL:$3|0=|(depuis le cache)}} en $4 seconde{{PLURAL:$4||s}}.", + "smw-ask-extra-query-log": "Journal de requête", + "smw-ask-extra-other": "Autre", + "searchbyproperty": "Rechercher par propriété", + "processingerrorlist": "Liste des erreurs de traitement", + "constrainterrorlist": "Liste d’erreurs de contrainte", + "propertylabelsimilarity": "Compte-rendu de similitude des étiquettes de propriété", + "missingredirectannotations": "Absence d’annotations de redirection", + "smw-processingerrorlist-intro": "La liste suivante fournit une vue d’ensemble du [https://www.semantic-mediawiki.org/wiki/Processing_errors traitement des erreurs] qui sont apparues selon [https://www.semantic-mediawiki.org/ MediaWiki Sémantique]. Il est recommandé de suivre cette liste régulièrement et de corriger les annotations de valeur non valide.", + "smw-constrainterrorlist-intro": "La liste suivante fournit une vue d’ensemble des [https://www.semantic-mediawiki.org/wiki/Constraint_errors erreurs de contrainte] qui sont apparues selon [https://www.semantic-mediawiki.org/ MediaWiki Sémantique]. Il est recommandé de suivre cette liste régulièrement et de corriger les annotations de valeur non valide.", + "smw-missingredirects-intro": "La section suivante listera les pages qui ont des annotations de [https://www.semantic-mediawiki.org/wiki/Redirects redirection] manquantes dans MediaWiki Sémantique (en les comparant avec les informations stockées dans MediaWiki) ; pour restaurer ces annotations, il faut soit [https://www.semantic-mediawiki.org/wiki/Help:Purge purger] manuellement la page, soit lancer le script de maintenance rebuildData.php (avec l’option --redirects).", + "smw-missingredirects-list": "Pages avec des annotations manquantes", + "smw-missingredirects-list-intro": "Affichage de $1 page{{PLURAL:$1||s}} avec les annotations de redirection manquantes.", + "smw-missingredirects-noresult": "Aucune annotation de redirection manquante trouvée.", + "smw_sbv_docu": "Rechercher toutes les pages qui ont une propriété donnée avec une certaine valeur.", + "smw_sbv_novalue": "Entrez une valeur correcte pour la propriété, ou bien consultez toutes les valeurs de la propriété pour « $1 ».", + "smw_sbv_displayresultfuzzy": "Une liste de toutes les pages qui ont la propriété « $1 » avec la valeur « $2 ». \nPuisqu’il n’y a que quelques résultats, les valeurs proches sont également affichées.", + "smw_sbv_property": "Propriété :", + "smw_sbv_value": "Valeur :", + "smw_sbv_submit": "Trouver des résultats", + "browse": "Parcourir le wiki", + "smw_browselink": "Parcourir les propriétés", + "smw_browse_article": "Entrez le nom de la page à partir de laquelle commencer le parcours.", + "smw_browse_go": "Aller", + "smw_browse_show_incoming": "Afficher les propriétés qui pointent ici", + "smw_browse_hide_incoming": "Cacher les propriétés qui pointent ici", + "smw_browse_no_outgoing": "Cette page n’a aucune propriété.", + "smw_browse_no_incoming": "Aucune propriété ne pointe vers cette page.", + "smw-browse-from-backend": "Les informations sont en cours de récupération depuis le serveur.", + "smw-browse-intro": "Cette page fournit des détails concernant un sujet ou une instance d’entité, veuillez entrer le nom d’un objet à inspecter.", + "smw-browse-invalid-subject": "La validation du sujet est revenue avec l’erreur « $1 ».", + "smw-browse-api-subject-serialization-invalid": "Le sujet a un format de sérialisation non valide.", + "smw-browse-js-disabled": "Il se peut que JavaScript soit désactivé ou non disponible. Nous recommandons d’utiliser un navigateur qui le prenne en charge. D’autres options sont discutées sur la page du paramètre de configuration [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Afficher les groupes", + "smw-browse-hide-group": "Masquer les groupes", + "smw-noscript": "Cette page ou cette action nécessite JavaScript pour fonctionner, veuillez l’activer dans votre navigateur ou utiliser un navigateur qui le prend en charge afin que cette fonctionnalité puisse être fournie comme demandé. Pour plus d’assistance, veuillez consulter la page d’aide [https://www.semantic-mediawiki.org/wiki/Help:Noscript Noscript].", + "smw_inverse_label_default": "$1 de", + "smw_inverse_label_property": "Libellé de la propriété inverse", + "pageproperty": "Rechercher dans les propriétés de la page", + "pendingtasklist": "Liste des tâches en attente", + "facetedsearch": "Recherche à facettes", + "smw_pp_docu": "Entrez soit une page et une propriété, soit seulement une propriété pour récupérer toutes les valeurs affectées.", + "smw_pp_from": "De la page :", + "smw_pp_type": "Propriété :", + "smw_pp_submit": "Trouver des résultats", + "smw-prev": "{{PLURAL:$1|précédent|$1 précédents}}", + "smw-next": "{{PLURAL:$1|suivant|$1 suivants}}", + "smw_result_prev": "Précédent", + "smw_result_next": "Suivant", + "smw_result_results": "Résultats", + "smw_result_noresults": "Aucun résultat.", + "smwadmin": "Tableau de bord de MediaWiki Sémantique", + "smw-admin-statistics-job-title": "Statistiques des tâches", + "smw-admin-statistics-job-docu": "Les statistiques des tâches affichent des informations sur les tâches programmées de MediaWiki Sémantique qui n’ont pas encore été exécutées. Le nombre de tâches peut être légèrement inexact ou contenir des tentatives en échec. Veuillez consulter le [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue manuel] pour plus d’informations.", + "smw-admin-statistics-querycache-title": "Cache de requêtes", + "smw-admin-statistics-querycache-disabled": "Le [https://www.semantic-mediawiki.org/wiki/QueryCache Cache de requêtes] n’a pas été activé sur ce wiki et, de ce fait, aucune statistique n’est disponible.", + "smw-admin-statistics-querycache-legend": "Les statistiques de cache permettent de contenir les cumuls provisoires ainsi que les données dérivées, dont :\n* « misses », qui est le nombre total de tentatives pour récupérer des données du cache sans réponse disponible, forçant une récupération directe depuis le dépôt (base de données, triple entrepôt, etc.) ;\n* « deletes », qui est le nombre total d’opérations de sortie du cache (soit via une purge, soit par dépendance de requête) ;\n* « hits », qui contient le nombre de récupérations du cache depuis des sources, soit intégrées (requêtes appelées depuis une page du wiki), soit non intégrées (si activé, demandées par des pages comme Special:Ask ou l’API) ;\n* « medianRetrievalResponseTime », qui est une valeur indicative du temps médian de réponse (en secondes) pour les requêtes de récupération en cache ou non, pendant la durée du processus de collecte ;\n* « noCache », qui indique la quantité de requêtes non tentées (requêtes avec « limit=0 » ou avec l’option « no-cache », etc.) pour récupérer des résultats depuis le cache.", + "smw-admin-statistics-section-explain": "La section fournit des statistiques supplémentaires pour les administrateurs.", + "smw-admin-statistics-semanticdata-overview": "Vue d’ensemble", + "smw-admin-permission-missing": "L’accès à cette page a été bloqué par manque d’autorisation ; veuillez consulter la page d’aide sur les [https://www.semantic-mediawiki.org/wiki/Help:Permissions autorisations] pour plus de détails sur les réglages nécessaires.", + "smw-admin-setupsuccess": "Le moteur de stockage a été mis en place.", + "smw_smwadmin_return": "Revenir à $1", + "smw_smwadmin_updatestarted": "Un nouveau processus de rafraîchissement des données sémantiques a commencé.\nToutes les données stockées seront reconstruites, voire réparées si nécessaire.\nVous pouvez suivre la progression de la mise à jour sur cette page spéciale.", + "smw_smwadmin_updatenotstarted": "Un processus de mise à jour est déjà en cours d’exécution.\nPas besoin d’en créer un autre.", + "smw_smwadmin_updatestopped": "Tous les processus de mise à jour existants ont été arrêtés.", + "smw_smwadmin_updatenotstopped": "Pour arrêter le processus de mise à jour en cours, vous devez activer la case à cocher pour indiquer que vous en êtes vraiment sûr{{GENDER:||e}}.", + "smw-admin-docu": "Cette page spéciale vous aide pendant l’installation, la mise à jour, la maintenance et l’utilisation de Semantic MediaWiki et comporte d’autres fonctions et tâches administratives ainsi que des statistiques.\nN’oubliez pas de sauvegarder vos données importantes avant d’exécuter des fonctions d’administration.", + "smw-admin-environment": "Environnement logiciel", + "smw-admin-db": "Configuration de la base de données", + "smw-admin-db-preparation": "L’initialisation des tables est en cours et peut prendre un moment avant que soient affichés les résultats (cela dépend de la taille et des optimisations de tables possibles).", + "smw-admin-dbdocu": "MediaWiki Sémantique a besoin de sa propre structure de base de données (indépendante de MediaWiki, de manière à ne pas affecter le reste de l’installation de MediaWiki) afin de stocker les données sémantiques.\nCette fonction d’installation peut être lancée plusieurs fois sans causer de dégâts, mais cela n’est nécessaire qu’une seule fois par installation ou mise à niveau.", + "smw-admin-permissionswarn": "Si l’opération échoue à cause d’erreurs SQL, l’utilisateur de la base de données utilisée par votre wiki (vérifiez votre fichier « LocalSettings.php ») ne dispose probablement pas des droits suffisants.\nIl faut soit accorder à cet utilisateur le droit de créer ou supprimer des tables, soit saisir temporairement les identifiants du compte principal d’administration de votre base de données dans le fichier « LocalSettings.php », soit utiliser le script de maintenance setupStore.php qui peut utiliser les informations de connexion d’un administrateur.", + "smw-admin-dbbutton": "Initialiser ou mettre à niveau les tables", + "smw-admin-announce": "Annoncer votre wiki", + "smw-admin-announce-text": "Si votre wiki est public, vous pouvez l’inscrire sur WikiApiary, le wiki de suivi des wikis.", + "smw-admin-deprecation-notice-title": "Avis d’obsolescence", + "smw-admin-deprecation-notice-docu": "La section suivante contient des paramètres qui sont devenus désuets ou ont été supprimés, mais qui ont été détectés comme actifs sur ce wiki. Il est prévu qu’une prochaine version ne prenne plus en charge ces configurations.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] est désuet et sera supprimé de $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] supprimera (ou remplacera) {{PLURAL:$2|l’option suivante|les options suivantes}} :", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 est désuet et sera supprimé de $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] a été remplacé par [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] a été remplacé par $2", + "smw-admin-deprecation-notice-config-replacement-option": "Option{{PLURAL:$2||s}} pour [https://www.semantic-mediawiki.org/wiki/Help:$1 $1] :", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 est remplacé par $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] a été supprimé de $2", + "smw-admin-deprecation-notice-title-notice": "Paramètres obsolètes", + "smw-admin-deprecation-notice-title-notice-explanation": "Paramètres obsolètes montrent les paramètres qui ont été détectés comme utilisés dans ce wiki et qui vont être supprimés ou modifiés dans une prochaine version.", + "smw-admin-deprecation-notice-title-replacement": "Paramètres remplacés ou renommés", + "smw-admin-deprecation-notice-title-replacement-explanation": "Paramètres remplacés ou renommés contient les paramètres qui ont été renommés ou modifiés par ailleurs et il est recommandé de mettre à jour immédiatement leur nom ou leur format.", + "smw-admin-deprecation-notice-title-removal": "Paramètres supprimés", + "smw-admin-deprecation-notice-title-removal-explanation": "Paramètres supprimés identifie les paramètres qui ont été supprimés dans une version antérieure mais sont encore utilisés sur ce wiki.", + "smw-admin-deprecation-notice-section-legend": "Légende", + "smw-smwadmin-refresh-title": "Réparation de données et mise à jour", + "smw_smwadmin_datarefresh": "Reconstruction des données", + "smw_smwadmin_datarefreshdocu": "Il est possible de restaurer toutes les données pour MediaWiki Sémantique à partir du contenu actuel de ce wiki.\nCeci peut être utile pour réparer des données corrompues ou pour rafraîchir les données si le format interne a changé lors des mises à niveau.\nLa mise à jour est exécutée page par page et se sera pas achevée immédiatement.\nLa page suivante spécifie si une mise à jour est en cours d’exécution et vous permet de commencer ou d’arrêter celle-ci (à moins que cette fonctionnalité n’ait été désactivée par l’administrateur du site).", + "smw_smwadmin_datarefreshprogress": "Une mise à jour est déjà en cours d’exécution.\nIl est normal qu’une mise à jour progresse lentement parce qu’elle ne rafraîchit les données que par petits tronçons, au fur et à mesure qu’un utilisateur accède au wiki.\nPour terminer cette mise à jour plus rapidement, vous pouvez invoquer le script de maintenance de MediaWiki runJobs.php (utilisez l’option --maxjobs 1000 pour restreindre le nombre de mises à jour par script lancé).\nProgression estimée de la mise à jour actuelle :", + "smw_smwadmin_datarefreshbutton": "Planifier la reconstruction des données", + "smw_smwadmin_datarefreshstop": "Arrêter cette mise à jour", + "smw_smwadmin_datarefreshstopconfirm": "Oui, j’en suis sûr{{GENDER:$1||e}}.", + "smw-admin-job-scheduler-note": "Les tâches (celles activées) dans cette section sont effectuées via la file des tâches pour éviter des situations de verrouillage complet pendant leur exécution. La [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue file des tâches] est responsable de l’exécution et il est critique que le script de maintenance runJobs.php ait une capacité appropriée (voir également le paramètre de configuration $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "Élimination des entités désuètes", + "smw-admin-outdateddisposal-intro": "Certaines activités (une modification d’un type de propriété, la suppression de pages wiki ou la correction de valeurs erronées) créeront [https://www.semantic-mediawiki.org/wiki/Outdated_entities des entités désuètes] et il est conseillé de les supprimer périodiquement pour libérer l’espace occupé par leur tables.", + "smw-admin-outdateddisposal-active": "Une tâche d’élimination des entités désuètes a été planifiée.", + "smw-admin-outdateddisposal-button": "Programmer un nettoyage", + "smw-admin-feature-disabled": "Cette fonctionnalité a été désactivée sur ce wiki ; veuillez consulter la page d’aide sur les paramètres ou contacter un administrateur système.", + "smw-admin-propertystatistics-title": "Reconstruction des statistiques de propriété", + "smw-admin-propertystatistics-intro": "Reconstruit toutes les statistiques d’utilisation des propriétés et donc met à jour et corrige les [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count compteurs d’utilisation] des propriétés.", + "smw-admin-propertystatistics-active": "Une tâche de reconstruction de propriété a été planifiée.", + "smw-admin-propertystatistics-button": "Programmer une reconstruction de statistiques", + "smw-admin-fulltext-title": "Reconstruction de la recherche en texte intégral", + "smw-admin-fulltext-intro": "Reconstruit l’index de recherche à partir des tables de propriété avec un type de données où la « [https://www.semantic-mediawiki.org/wiki/Full-text recherche en texte intégral] » est activée. Les modifications des règles d’indexation (mots insignifiants modifiés, nouveau découpage des racines et affixes lexicaux, etc...) ou d’une table récemment ajoutée ou modifiée nécessitent de relancer cette tâche.", + "smw-admin-fulltext-active": "Une tâche de reconstruction de la recherche en texte intégral a été planifiée.", + "smw-admin-fulltext-button": "Programmer une reconstruction de l’index de recherche en texte intégral", + "smw-admin-support": "Obtenir de l’aide", + "smw-admin-supportdocu": "Diverses ressources sont fournies pour vous aider en cas de problèmes :", + "smw-admin-installfile": "Si vous rencontrez des problèmes lors de votre installation, commencez par regarder le guide en ligne dans le fichier INSTALL et la page d’aide pour l’installation.", + "smw-admin-smwhomepage": "La documentation complète pour l’utilisation de MediaWiki Sémantique se trouve sur semantic-mediawiki.org.", + "smw-admin-bugsreport": "Les anomalies peuvent être signalées sur le traceur d’anomalies, la page de signalement d’anomalies fournit des indications sur la manière d’écrire un rapport d’anomalie efficace.", + "smw-admin-questions": "Si vous avez d’autres questions ou des suggestions, joignez-vous à la discussion sur la liste de discussion des utilisateurs de MediaWiki Sémantique.", + "smw-admin-other-functions": "Autres fonctions", + "smw-admin-statistics-extra": "Fonctions statistiques", + "smw-admin-statistics": "Statistiques", + "smw-admin-supplementary-section-title": "Fonctions supplémentaires", + "smw-admin-supplementary-section-subtitle": "Fonctions système prises en charge", + "smw-admin-supplementary-section-intro": "Cette section fournit des fonctions supplémentaires au delà du domaine des activités de maintenance et il est possible que certaines fonctions listées (voir la [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions documentation]) soient restreintes ou indisponibles et donc inaccessibles sur ce wiki.", + "smw-admin-supplementary-settings-title": "Configuration et paramètres", + "smw-admin-supplementary-settings-intro": "$1 affiche les paramètres qui définissent le comportement de MediaWiki Sémantique", + "smw-admin-main-title": "MediaWiki Sémantique ▸ $1", + "smw-admin-supplementary-operational-statistics-title": "Statistiques opérationnelles", + "smw-admin-supplementary-operational-statistics-short-title": "statistiques opérationnelles", + "smw-admin-supplementary-operational-statistics-intro": "Affiche un jeu étendu de $1", + "smw-admin-supplementary-idlookup-title": "Recherche et libération d’objet", + "smw-admin-supplementary-idlookup-short-title": "recherche et suppression d’entité", + "smw-admin-supplementary-idlookup-intro": "Prend en charge une fonction simple de $1", + "smw-admin-supplementary-duplookup-title": "Recherche des entités en doublon", + "smw-admin-supplementary-duplookup-intro": "$1 pour trouver les entités qui sont marquées comme doublons dans la matrice des tables sélectionnées", + "smw-admin-supplementary-duplookup-docu": "Cette page répertorie les entrées des tables sélectionnées qui ont été classées comme [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities doublons]. Les entrées en doublon ne doivent (le cas échéant) se produire que dans de rares occasions potentiellement provoquées par l’interruption d’une transaction de mise à jour ou l’échec d’une annulation.", + "smw-admin-supplementary-operational-statistics-cache-title": "Statistiques du cache", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 affiche un ensemble sélectionné de statistiques relatives au cache", + "smw-admin-supplementary-operational-table-statistics-title": "Statistiques de tables", + "smw-admin-supplementary-operational-table-statistics-short-title": "statistiques de tables", + "smw-admin-supplementary-operational-table-statistics-intro": "Génère les $1 pour un ensemble sélectionné de tables", + "smw-admin-supplementary-operational-table-statistics-explain": "Cette section contient les statistiques de la table sélectionnée pour aider les administrateurs et les superviseurs de données à prendre des décisions éclairées sur l’état du serveur et du moteur de stockage.", + "smw-admin-supplementary-operational-table-statistics-legend": "La légende décrit quelques unes des clés utilisées pour les statistiques de la table et comprend :", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count, le nombre total de lignes dans une table ;", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id dernier identifiant actuellement utilisé\n* duplicate_count nombre de doublons trouvés dans id_table (voir aussi [[Special:SemanticMediaWiki/duplicate-lookup|Recherche d’entités en doublon]])\n* rows.rev_count nombre de lignes qui ont un revision_id affecté qui indique un lien direct à une page wiki\n* rows.smw_namespace_group_by_count nombre de lignes agrégées pour les espaces de noms utilisés dans la table\n* rows.smw_proptable_hash.query_match_count nombre de sous-objets de requête avec une référence de table correspondante\n* rows.smw_proptable_hash.query_null_count nombre de sous-objets de requête sans référence de table (référence non liée flottante)", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent pourcentage de termes uniques (un faible pourcentage indique que des termes répétitifs occupent le contenu et l’index de la table)\n* rows.terms_occurrence.single_occurrence_total_count nombre de termes qui n’apparaissent qu’une seule fois\n* rows.terms_occurrence.multi_occurrence_total_count nombre de termes qui apparaissent plus d’une fois", + "smw-admin-supplementary-elastic-version-info": "Version", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 affiche des détails sur les paramètres et les statistiques d’indexation", + "smw-admin-supplementary-elastic-docu": "Cette page contient des informations sur les paramètres, les correspondances, la santé et les statistiques d’indexation liées à une grappe Elasticsearch connectée à MediaWiki Sémantique et son [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Fonctions prises en charge", + "smw-admin-supplementary-elastic-settings-title": "Paramètres (pour les index)", + "smw-admin-supplementary-elastic-settings-intro": "$1 utilisé par ElasticSearch pour gérer les index de MediaWiki Sémantique", + "smw-admin-supplementary-elastic-mappings-title": "Correspondances", + "smw-admin-supplementary-elastic-mappings-intro": "$1 pour lister les correspondances d’index et de champ", + "smw-admin-supplementary-elastic-mappings-docu": "Cette page contient les détails de la correspondance des champs utilisés avec les index actuels. Il est recommandé de gérer les correspondances en tenant compte de index.mapping.total_fields.limit (spécifie le nombre maximal de champs autorisés pour un index).", + "smw-admin-supplementary-elastic-mappings-docu-extra": "property_fields fait référence au nombre de champs intégrés indexés alors que nested_fields fait référence à nombre cumulé de champs additionnels affectés à un champ intégré pour prendre en charge des modèles de recherche structurés spécifiques.", + "smw-admin-supplementary-elastic-mappings-summary": "Résumé", + "smw-admin-supplementary-elastic-mappings-fields": "Correspondances de champ", + "smw-admin-supplementary-elastic-nodes-title": "Nœuds", + "smw-admin-supplementary-elastic-nodes-intro": "$1 affiche les statistiques sur les nœuds", + "smw-admin-supplementary-elastic-indices-title": "Index utilisés", + "smw-admin-supplementary-elastic-indices-intro": "$1 fournit une vue d’ensemble des index disponibles et de leurs statistiques", + "smw-admin-supplementary-elastic-statistics-title": "Statistiques", + "smw-admin-supplementary-elastic-statistics-intro": "$1 affiche les statistiques au niveau des index", + "smw-admin-supplementary-elastic-statistics-docu": "Cette page fournit une vision des statistiques d’index pour différentes opérations qui se produisent au niveau des index ; les statistiques renvoyées sont agrégées avec les agrégats primaires et totaux. La [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html page d’aide] contient une description détaillée des statistiques d’index disponibles.", + "smw-admin-supplementary-elastic-status-replication": "État de réplication", + "smw-admin-supplementary-elastic-status-last-active-replication": "Dernière réplication active : $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Intervalle de mise à jour : $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Arriéré des tâches de récupération : $1 (estimation)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Arriéré des tâches d’ingestion (de fichiers) : $1 (estimation)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Réplication verrouillée : $1 (reconstruction en cours)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Surveillance de réplication (active) : $1", + "smw-admin-supplementary-elastic-replication-header-title": "État de réplication", + "smw-admin-supplementary-elastic-replication-function-title": "Réplication", + "smw-admin-supplementary-elastic-replication-intro": "$1 montre les informations concernant les réplications échouées", + "smw-admin-supplementary-elastic-replication-docu": "Cette page fournit des informations sur l’[https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring état de réplication] des entités qui ont été signalées comme ayant des problèmes avec la grappe ElasticSearch. Il est recommandé d'analyser les entités listées et de purger le contenu afin de confirmer que le problème était temporaire.", + "smw-admin-supplementary-elastic-replication-files-docu": "Il faut noter que pour la liste des fichiers, la tâche d’[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion ingestion de fichiers] doit être exécutée d’abord et doit achever son traitement.", + "smw-admin-supplementary-elastic-replication-files": "Fichiers", + "smw-admin-supplementary-elastic-replication-pages": "Pages", + "smw-admin-supplementary-elastic-endpoints": "Points de terminaison", + "smw-admin-supplementary-elastic-config": "Configurations", + "smw-admin-supplementary-elastic-no-connection": "Le wiki est actuellement '''incapable''' d’établir une connexion à la grappe ElasticSearch, veuillez contacter l’administrateur du wiki pour investiguer sur le problème, car cela rend indisponible la capacité d’index et de requêtage du système.", + "smw-list-count": "La liste contient $1 entrée{{PLURAL:$1||s}}.", + "smw-property-label-uniqueness": "Le libellé « $1 » représente également au moins une autre propriété. Veuillez vous reporter à la [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness page d’aide] pour trouver comment résoudre ce problème.", + "smw-property-label-similarity-title": "Compte rendu de similitude des libellés de propriété", + "smw-property-label-similarity-intro": "$1 calcule les similitudes pour les libellés de propriété existantes", + "smw-property-label-similarity-threshold": "Seuil :", + "smw-property-label-similarity-type": "Afficher l’identifiant de type", + "smw-property-label-similarity-noresult": "Aucun résultat trouvé pour les options sélectionnées.", + "smw-property-label-similarity-docu": "Cette page compare et affiche la [https://www.semantic-mediawiki.org/wiki/Property_similarity distance de similarité syntaxique] (à ne pas confondre avec la similarité sémantique ou lexicale) entre les libellés de propriété et signale ces libellés quand ils dépassent le seuil. Le rapport peut aider à filtrer les propriétés mal orthographiées ou équivalentes qui représentent le même concept (voir la page spéciale des [[Special:Properties|propriétés]] afin d’aider à clarifier le concept et l’utilisation des propriétés signalées). Le seuil peut être réglé pour soit élargir ou réduire la distance utilisée pour la correspondance approximée. [[Property:$1|$1]] est utilisé pour exclure des propriétés de l’analyse.", + "smw-admin-operational-statistics": "Cette page contient des statistiques opérationnelles collectées dans ou par l’intermédiaire des fonctions relatives à MediaWiki Sémantique. Vous pouvez [[Special:Statistics|trouver ici]] une liste étendue des statistiques spécifiques à ce wiki.", + "smw_adminlinks_datastructure": "Structure des données", + "smw_adminlinks_displayingdata": "Affichage des données", + "smw_adminlinks_inlinequerieshelp": "Aide sur les requêtes intégrées", + "smw-page-indicator-usage-count": "[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count Nombre d’utilisations] estimé : {{PLURAL:$2|}}'''$2'''", + "smw-property-indicator-type-info": "Propriété définie par l{{PLURAL:$1|’utilisateur|e système}}", + "smw-property-indicator-last-count-update": "Nombre estimé d’utilisations.\nDernière mise à jour : $1", + "smw-concept-indicator-cache-update": "Compteur en cache.\nDernière mise à jour : $1", + "smw-createproperty-isproperty": "Ceci est une propriété de type $1.", + "smw-createproperty-allowedvals": "L{{PLURAL:$1|a|es}} valeur{{PLURAL:$1||s}} autorisée{{PLURAL:$1||s}} pour cette propriété {{PLURAL:$1|es|son}}t :", + "smw-paramdesc-category-delim": "Le délimiteur", + "smw-paramdesc-category-template": "Un modèle pour mettre en forme les éléments", + "smw-paramdesc-category-userparam": "Un paramètre à passer au modèle", + "smw-info-par-message": "Message à afficher.", + "smw-info-par-icon": "Icône à afficher : soit « info », soit « attention ».", + "prefs-smw": "MediaWiki Sémantique", + "prefs-general-options": "Options générales", + "prefs-extended-search-options": "Recherche étendue", + "prefs-ask-options": "Recherche sémantique", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/wiki/Semantic_MediaWiki/fr MediaWiki Sémantique] et ses extensions associées fournissent des préférences individuelles pour un groupe sélectionné de fonctionnalités et fonctions. Une liste des paramètres individuels avec leur description et leurs caractéristiques est disponible sur cette [https://www.semantic-mediawiki.org/wiki/Help:User_preferences page d’aide (en anglais)] .", + "smw-prefs-ask-options-tooltip-display": "Afficher le texte du paramètre comme une info-bulle sur la page spéciale du [[Special:Ask|constructeur de requêtes]] #ask.", + "smw-prefs-ask-options-compact-view-basic": "Activer l’affichage compact de base", + "smw-prefs-help-ask-options-compact-view-basic": "Si activé, affiche un ensemble réduit de liens sur la vue compacte de Special:Ask", + "smw-prefs-general-options-time-correction": "Activer la correction des horodatages pour les pages spéciales en utilisant les préférences locales de l'utilisateur pour le [[Special:Preferences#mw-prefsection-rendering|fuseau horaire]].", + "smw-prefs-general-options-jobqueue-watchlist": "Afficher la liste de suivi de la file des tâches dans ma barre personnelle", + "smw-prefs-help-general-options-jobqueue-watchlist": "Si activé, affiche une [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist liste] sélectionnée de files de tâches suivies en attente, avec la taille estimée de leur file.", + "smw-prefs-general-options-disable-editpage-info": "Désactiver le texte d’introduction sur la page de modification", + "smw-prefs-general-options-disable-search-info": "Désactiver les informations d’aide à la syntaxe sur la page de recherche standard", + "smw-prefs-general-options-suggester-textinput": "Activer l’assistance à la saisie pour les entités sémantiques", + "smw-prefs-help-general-options-suggester-textinput": "Si activé, permet d’utiliser une [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance aide à la saisie] pour trouver des propriétés, des concepts et des catégories appropriées au contexte de saisie.", + "smw-prefs-general-options-show-entity-issue-panel": "Afficher le panneau des problèmes d’entité", + "smw-prefs-help-general-options-show-entity-issue-panel": "Si activé, exécute des vérifications d’intégrité sur chaque page et affiche le [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel panneau des problèmes d’entité].", + "smw-prefs-factedsearch-profile": "Sélectionnez un profil par défaut [[Special:FacetedSearch|faceted search]]:", + "smw-ui-tooltip-title-property": "Propriété", + "smw-ui-tooltip-title-quantity": "Conversion d’unité", + "smw-ui-tooltip-title-info": "Informations", + "smw-ui-tooltip-title-service": "Liens de service", + "smw-ui-tooltip-title-warning": "Avertissement", + "smw-ui-tooltip-title-error": "Erreur", + "smw-ui-tooltip-title-parameter": "Paramètre", + "smw-ui-tooltip-title-event": "Événement", + "smw-ui-tooltip-title-note": "Note", + "smw-ui-tooltip-title-legend": "Légende", + "smw-ui-tooltip-title-reference": "Référence", + "smw_unknowntype": "Le type « $1 » de cette propriété n’est pas valide", + "smw-concept-cache-text": "Le concept a un total de $1 page{{PLURAL:$1||s}} et a été mis à jour la dernière fois le $2 à $3.", + "smw_concept_header": "Page du concept « $1 »", + "smw_conceptarticlecount": "Affichage de $1 page{{PLURAL:$1||s}} ci-dessous.", + "smw-qp-empty-data": "Les données demandées n’ont pas pu être affichées à cause de certains critères de sélection insuffisants.", + "right-smw-admin": "Accéder aux tâches d’administration (MediaWiki Sémantique)", + "right-smw-patternedit": "Modifier l’accès pour gérer les motifs ou expressions rationnelles autorisés (MediaWiki Sémantique)", + "right-smw-pageedit": "Modifier l’accès aux pages annotées avec Est protégée contre la modification (MediaWiki Sémantique)", + "right-smw-schemaedit": "Modifier les [https://www.semantic-mediawiki.org/wiki/Help:Schema pages de schéma] (MediaWiki Sémantique)", + "right-smw-viewjobqueuewatchlist": "Accéder à la fonctionnalité de [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist liste de suivi] de files de tâches (MediaWiki Sémantique)", + "right-smw-viewentityassociatedrevisionmismatch": "Accéder aux informations sur une incohérence de révision associée à une entité (MediaWiki Sémantique)", + "right-smw-vieweditpageinfo": "Voir l’[https://www.semantic-mediawiki.org/wiki/Help:Edit_help aide pour modifier] (MediaWiki Sémantique)", + "restriction-level-smw-pageedit": "protégée (sauf pour les utilisateurs éligibles)", + "action-smw-patternedit": "modifier les expressions rationnelles utilisées par MediaWiki Sémantique", + "action-smw-pageedit": "modifier les pages annotées avec la propriété Est protégée contre la modification (MediaWiki Sémantique)", + "group-smwadministrator": "Administrateurs (MediaWiki Sémantique)", + "group-smwadministrator-member": "administrat{{GENDER:$1|eur|rice}} (MediaWiki Sémantique)", + "grouppage-smwadministrator": "{{ns:project}}:Administrateurs (MediaWiki Sémantique)", + "group-smwcurator": "Conservateurs (MediaWiki Sémantique)", + "group-smwcurator-member": "conservat{{GENDER:$1|eur|rice}} (MediaWiki Sémantique)", + "grouppage-smwcurator": "{{ns:project}}:Curateurs (MediaWiki Sémantique)", + "group-smweditor": "Modificateurs (MediaWiki Sémantique)", + "group-smweditor-member": "modificat{{GENDER:$1|eur|rice}} (MediaWiki Sémantique)", + "grouppage-smweditor": "{{ns:project}}:Rédacteurs (Semantic MediaWiki)", + "action-smw-admin": "accéder aux tâches d’administration de MediaWiki Sémantique", + "action-smw-ruleedit": "modifier les pages de règle (MediaWiki Sémantique)", + "smw-property-namespace-disabled": "La propriété [https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks espace de noms] est désactivée et tenter de déclarer un type ou d’autres caractéristiques spécifiques des propriétés pour cette propriété n’est pas possible.", + "smw-property-predefined-default": "« $1 » est une propriété prédéfinie de type $2.", + "smw-property-predefined-common": "Cette propriété est pré-déployée (appelée aussi [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propriété spéciale]) et est accompagnée de droits d’administration supplémentaires, mais peut être utilisée exactement comme toute autre [https://www.semantic-mediawiki.org/wiki/Property propriété définie par l’utilisateur].", + "smw-property-predefined-ask": "« $1 » est une propriété prédéfinie qui représente les méta-informations (sous la forme d’un [https://www.semantic-mediawiki.org/wiki/Subobject sous-objet]) au sujet de requêtes individuelles. Ceci est fourni par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique].", + "smw-property-predefined-asksi": "« $1 » est une propriété prédéfinie qui recueille le nombre de conditions utilisées dans une requête. Ceci est fourni par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique].", + "smw-property-predefined-askde": "« $1 » est une propriété prédéfinie qui informe sur la profondeur d’une requête. Ceci est fourni par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique].", + "smw-property-predefined-long-askde": "Ceci est une valeur numérique calculée d’après le niveau d’imbrication des sous-requêtes, les chaînes de propriétés et les éléments de description disponibles par l’exécution d’une requête restreinte par le paramètre de configuration [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-property-predefined-askpa": "« $1 » est une propriété prédéfinie qui décrit les paramètres qui peuvent influencer un résultat de recherche. Ceci est fourni par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique].", + "smw-property-predefined-long-askpa": "Ceci fait partie de la collection de propriétés qui spécifient un [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler profil de recherche].", + "smw-sp-properties-docu": "Cette page liste les [https://www.semantic-mediawiki.org/wiki/Property propriétés] et leur compteur d’utilisation disponible pour ce wiki. Pour avoir des statistiques de comptage à jour, il est recommandé de lancer régulièrement le script de maintenance des [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics statistiques de propriété]. Pour un affichage différencié, voyez les pages spéciales des [[Special:UnusedProperties|propriétés non utilisées]] ou [[Special:WantedProperties|souhaitées]].", + "smw-sp-properties-cache-info": "Les données listées ont été récupérées depuis le [https://www.semantic-mediawiki.org/wiki/Caching cache] et leur dernière mise à jour date du $1.", + "smw-sp-properties-header-label": "Liste des propriétés", + "smw-admin-settings-docu": "Affiche une liste de tous les paramètres par défaut et des paramètres localisés qui se rapportent à l’environnement de MediaWiki Sémantique. Pour le détail des paramètres individuels, veuillez consulter la page d’aide sur la [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuration].", + "smw-sp-admin-settings-button": "Générer la liste des paramètres", + "smw-admin-idlookup-title": "Recherche", + "smw-admin-idlookup-docu": "Cette section décrit les détails techniques concernant des entités individuelles (page wiki, sous-objet, propriété, etc.) dans MediaWiki Sémantique. L’entrée peut être un identifiant numérique ou une valeur de chaîne correspondant au champ de recherche approprié, cependant tout identifiant de référence est relatif à MediaWiki Sémantique et non à un identifiant MediaWiki de page ou de révision.", + "smw-admin-iddispose-title": "Élimination", + "smw-admin-iddispose-docu": "Il fait noter que l’opération d’élimination n’est pas restreinte et supprimera l’entité du moteur de stockage en même temps que toutes ses références dans les tables associées, si elle est confirmée. Veuillez effectuer cette tâche avec précaution et seulement après avoir consulté la [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal documentation].", + "smw-admin-iddispose-done": "L’identifiant « $1 » a été supprimé du serveur de stockage.", + "smw-admin-iddispose-references": "L’identifiant « $1 » {{PLURAL:$2|n’a aucune|a au moins une}} référence active :", + "smw-admin-iddispose-references-multiple": "Liste des correspondances avec au moins un enregistrement de référence actif.", + "smw-admin-iddispose-no-references": "La recherche n’a pu trouver aucune entrée de table correspondant à « $1 ».", + "smw-admin-idlookup-input": "Rechercher :", + "smw-admin-objectid": "Identifiant :", + "smw-admin-tab-general": "Vue d’ensemble", + "smw-admin-tab-notices": "Avis d’obsolescence", + "smw-admin-tab-maintenance": "Maintenance", + "smw-admin-tab-supplement": "Fonctions supplémentaires", + "smw-admin-tab-registry": "Registre", + "smw-admin-tab-alerts": "Alertes", + "smw-admin-alerts-tab-deprecationnotices": "Avis d’obsolescence", + "smw-admin-alerts-tab-maintenancealerts": "Alertes de maintenance", + "smw-admin-alerts-section-intro": "Cette section affiche les alertes et les avis liés aux paramètres, aux opérations et aux autres activités qui ont été classés comme nécessitant l’attention d’un administrateur ou d’un utilisateur ayant les droits appropriés.", + "smw-admin-maintenancealerts-section-intro": "Les alertes et avis suivants doivent être résolus et, quoique pas indispensables, il est prévu qu’ils aident à améliorer la maintenabilité du système et des opérations.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Optimisation des tables", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "Le système a trouvé que la dernière [https://www.semantic-mediawiki.org/wiki/Table_optimization optimisation de table] a été lancée il y a $2 jours (enregistrement du $1), ce qui dépasse les $3 jours du seuil de maintenance. Comme mentionné dans la documentation, lancer les optimisations permettra au planificateur de requêtes de mieux prendre ses décisions sur les requêtes ; il est donc suggéré de lancer l’optimisation des tables de façon régulière.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Entités obsolètes", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "Le système a comptabilisé $1 [https://www.semantic-mediawiki.org/wiki/Outdated_entities entités obsolètes] et a atteint un niveau critique de maintenance sans surveillance qui dépasse le seuil de $2. Il est recommandé de lancer le script de maintenance [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php].", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Entités non valides", + "smw-admin-maintenancealerts-invalidentities-alert": "Le système a fait correspondre $1 [https://www.semantic-mediawiki.org/wiki/Invalid_entities {{PLURAL:$1|entité|entités}}] à un [https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace espace de nom non maintenu] et il est recommandé de lancer le script de maintenance [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] ou [https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php].", + "smw-admin-deprecation-notice-section": "MediaWiki Sémantique", + "smw-admin-configutation-tab-settings": "Paramètres", + "smw-admin-configutation-tab-namespaces": "Espaces de noms", + "smw-admin-configutation-tab-schematypes": "Types de schéma", + "smw-admin-maintenance-tab-tasks": "Tâches", + "smw-admin-maintenance-tab-scripts": "Scripts de maintenance", + "smw-admin-maintenance-no-description": "Aucune description.", + "smw-admin-maintenance-script-section-title": "Liste des scripts de maintenance disponibles", + "smw-admin-maintenance-script-section-intro": "Les scripts de maintenance suivants nécessitent un administrateur et l’accès à la ligne de commande pour pouvoir exécuter les scripts listés.", + "smw-admin-maintenance-script-description-dumprdf": "Export en RDF des triplets existants.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "Ce script est utilisé pour gérer les caches de concept pour MediaWiki Sémantique, où il peut créer, supprimer et mettre à jour les caches sélectionnés.", + "smw-admin-maintenance-script-description-rebuilddata": "Recrée toutes les données sémantiques dans la base de données, en bouclant à travers toutes les pages qui ont des données sémantiques.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "Reconstruit l’index d’Elasticsearch (uniquement pour les installations qui utilisent ElasticStore), en bouclant sur toutes les entités qui ont des données sémantiques.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Chercher les entités manquantes dans Elasticsearch (uniquement pour les installations qui utilisent ElasticStore) et mettre en file d’attente les tâches appropriées de mise à jour.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "Reconstruit l’index de recherche en texte brut SQLStore (pour les installations où le paramètre a été activé).", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Reconstruit les statistiques d’utilisation pour toutes les entités de propriété.", + "smw-admin-maintenance-script-description-removeduplicateentities": "Supprime les entités en doublon trouvées dans les tables sélectionnées qui n’ont aucune référence active.", + "smw-admin-maintenance-script-description-setupstore": "Configure le serveur de stockage et de requête comme défini dans LocalSettings.php.", + "smw-admin-maintenance-script-description-updateentitycollation": "Met à jour le champ smw_sort dans SQLStore (conformément au paramètre [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation]).", + "smw-admin-maintenance-script-description-populatehashfield": "Renseigne le champ smw_hash pour les lignes sans valeur.", + "smw-admin-maintenance-script-description-purgeentitycache": "Effacer les entrées dans le cache pour les entités connues et leurs données associées.", + "smw-admin-maintenance-script-description-updatequerydependencies": "Mettre à jour les requêtes et les dépendances de requête (voir le paramètre [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore] ).", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "Écarter les entités et liens de requête obsolètes.", + "smw-admin-maintenance-script-description-runimport": "Remplir et importer du contenu automatiquement découvert depuis [https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs].", + "smw-admin-maintenance-script-section-update": "Scripts de mise à jour", + "smw-admin-maintenance-script-section-rebuild": "Scripts de reconstruction", + "smw-livepreview-loading": "Chargement en cours en cours...", + "smw-sp-searchbyproperty-description": "Cette page fournit une simple [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces interface de navigation] pour trouver des entités décrites par une propriété et une valeur nommée. D’autres interfaces de recherche disponibles comprennent la [[Special:PageProperty|page recherche de propriété]], et le [[Special:Ask|constructeur de requêtes « ask »]].", + "smw-sp-searchbyproperty-resultlist-header": "Liste de résultats", + "smw-sp-searchbyproperty-nonvaluequery": "Une liste de valeurs qui ont la propriété « $1 » affectée.", + "smw-sp-searchbyproperty-valuequery": "Une liste de pages qui ont la propriété « $1 » avec la valeur « $2 » annotée.", + "smw-datavalue-number-textnotallowed": "« $1 » ne peut pas être affecté à un type de nombre déclaré avec la valeur $2.", + "smw-datavalue-number-nullnotallowed": "« $1 » a retourné un « NULL » qui n’est pas une valeur numérique autorisée.", + "smw-editpage-annotation-enabled": "Cette page prend en charge les annotations sémantiques au sein du texte (par exemple « [[Is specified as::World Heritage Site]] ») afin de bâtir du contenu structuré et requêtable fourni par MediaWiki Sémantique. Pour une description complète sur la façon d’utiliser les annotations ou la fonction d’analyseur « #ask », veuillez consulter les pages d’aide [https://www.semantic-mediawiki.org/wiki/Help:Getting_started Pour commencer], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation Annotation au sein du texte] et [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries Requêtes incorporées].", + "smw-editpage-annotation-disabled": "Cette page n’autorise pas les annotations sémantiques au sein du texte en raison de restrictions sur l’espace de noms. Des détails sur la façon d’activer l’espace de noms peuvent être trouvés dans la page d’aide concernant la [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuration].", + "smw-editpage-property-annotation-enabled": "Cette propriété peut être étendue en utilisant des annotations sémantiques afin de spécifier un type de donnée (par exemple « [[Has type::Page]] ») ou d’autres déclarations secondaires (par exemple « [[Subproperty of::dc:date]] »). Pour une description sur la façon de faire pour enrichir cette page, veuillez consulter les pages d’aide concernant la [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration déclaration de propriété] ou la [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes liste des types de données disponibles].", + "smw-editpage-property-annotation-disabled": "Cette propriété ne peut pas être étendue avec une annotation de type de données (par exemple « [[Has type::Page]] ») parce qu’elle est déjà prédéfinie (voyez la page d’aide concernant les [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propriétés spéciales] pour plus d’informations).", + "smw-editpage-concept-annotation-enabled": "Ce concept peut être étendu en utilisant la fonction d’analyseur « #concept ». Pour une description sur la manière d’utiliser « #concept », voyez la page d’aide concernant les [https://www.semantic-mediawiki.org/wiki/Help:Concepts concepts].", + "smw-search-syntax-support": "L’entrée recherchée accepte l’utilisation de la [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search syntaxe de requête sémantique] pour aider à trouver des résultats correspondants au moyen de MediaWiki Sémantique.", + "smw-search-input-assistance": "L’[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance assistant de saisie] est également activé pour faciliter la présélection des propriétés et des catégories disponibles.", + "smw-search-help-intro": "Une entrée [[ ... ]] signalera au processeur d’entrée d’utiliser le serveur de recherche MediaWiki Sémantique. Il faut noter que combiner [[ ... ]] avec une recherche de texte non structuré comme [[ ... ]] OR Lorem ipsum n’est pas pris en charge.", + "smw-search-help-structured": "Recherches structurées :\n* [[Category:Lorem ipsum]], [[Has number::123]] (comme [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context contexte filtré])\n* [[Has text::~*lorem*]] (avec un [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context contexte de recherche])", + "smw-search-help-proximity": "Les recherches de proximité (une propriété étant inconnue, disponible '''uniquement''' pour les serveurs qui intègrent la recherche en texte intégral) :\n\n* [[in:lorem ipsum]] (rechercher tous les documents où « lorem » et « ipsum » ont été indexés)\n* [[phrase:lorem ipsum]] (faire correspondre « lorem ipsum » en tant qu’expression littérale)", + "smw-search-help-ask": "Les liens suivants expliqueront comment utiliser la syntaxe #ask :\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Sélection des pages] décrit comment sélectionner des pages et construire des conditions ;\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Opérateurs de recherche] liste les opérateurs de recherche disponibles, y compris ceux pour les requêtes dans une plage et avec des jokers.", + "smw-search-input": "Entrée et recherche", + "smw-search-help-input-assistance": "L’[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance assistance à la saisie] est fournie pour le champ de saisie et nécessite d’utiliser un des préfixes suivants :\n\n* p: pour activer les suggestions de propriété (par ex. [[p:Has …) ;\n* c: pour activer les suggestions de catégorie ;\n* con: pour activer les suggestions de concept.", + "smw-search-syntax": "Syntaxe", + "smw-search-profile": "Étendu", + "smw-search-profile-tooltip": "Rechercher des fonctions en relation avec MediaWiki Sémantique", + "smw-search-profile-sort-best": "Meilleure correspondance", + "smw-search-profile-sort-recent": "Le plus récent", + "smw-search-profile-sort-title": "Titre", + "smw-search-profile-extended-help-intro": "Le [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile profil étendu] pour Special:Search fournit un accès aux fonctions de recherche spécifiques à MediaWiki Sémantique et à son serveur de requête pris en charge.", + "smw-search-profile-extended-help-sort": "Spécifie une préférence de tri pour l’affichage des résultats avec :", + "smw-search-profile-extended-help-sort-title": "* « Titre » utilisera le titre de la page (ou le titre affiché) comme critère de tri.", + "smw-search-profile-extended-help-sort-recent": "* « Le plus récent » affichera d’abord les entités les plus récemment modifiées (les sous-objets seront supprimés car ces entités ne sont pas annotées avec une [[Property:Modification date|date de modification]]).", + "smw-search-profile-extended-help-sort-best": "* « Meilleure correspondance » triera les entités par [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy pertinence] selon les scores fournis par le serveur.", + "smw-search-profile-extended-help-form": "Les formulaires sont fournis (s’ils sont maintenus) pour faire correspondre des cas d’utilisation spécifiques en exposant différentes propriétés et différents champs de saisie de valeur, afin de limiter le processus de saisie et de faciliter le traitement d’une requête de recherche pour les utilisateurs (voir $1).", + "smw-search-profile-extended-help-namespace": "Le champ de sélection de l’espace de noms est masqué dès que le formulaire est sélectionné, mais il peut être rendu visible à l’aide du bouton « afficher/masquer ».", + "smw-search-profile-extended-help-search-syntax": "Le champ de saisie de recherche prend en charge l’utilisation de la syntaxe #ask pour définir un contexte de recherche spécifique de MediaWiki Sémantique. Les expressions utiles comprennent :", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: pour trouver tout ce qui contient l’expression indiquée, ce qui est particulièrement utile quand le contexte de recherche ou les propriétés impliquées sont inconnus (par ex. in:(lorem && ipsum) est équivalent à [[~~*lorem*]] && [[~~*ipsum*]]).", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: pour trouver tout ce qui contient l’expression indiquée exactement dans le même ordre", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: pour trouver toute une entité avec la propriété indiquée (par ex. has:(Foo && Bar) est équivalent à [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: pour exclure toute une entité qui contient l’expression indiquée", + "smw-search-profile-extended-help-search-syntax-prefix": "* Des préfixes personnalisés supplémentaires sont disponibles et définis, tels que : $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* Certaines expressions sont réservées, telles que : $1", + "smw-search-profile-extended-help-search-syntax-note": "''Certaines des opérations listées ne sont utiles qu’en relation avec un index en texte intégral activé ou avec l’ElasticStore.''", + "smw-search-profile-extended-help-query": "A utilisé $1 comme requête.", + "smw-search-profile-extended-help-query-link": "Pour plus de détails, veuillez utiliser le $1.", + "smw-search-profile-extended-help-find-forms": "formulaires disponibles", + "smw-search-profile-extended-section-sort": "Trier par", + "smw-search-profile-extended-section-form": "Formulaires", + "smw-search-profile-extended-section-search-syntax": "Rechercher l’entrée", + "smw-search-profile-extended-section-namespace": "Espace de noms", + "smw-search-profile-extended-section-query": "Requête", + "smw-search-profile-link-caption-query": "constructeur de requête", + "smw-search-show": "Afficher", + "smw-search-hide": "Masquer", + "log-name-smw": "Journal de MediaWiki Sémantique", + "log-show-hide-smw": "$1 le journal de MediaWiki Sémantique", + "logeventslist-smw-log": "Journal de MediaWiki Sémantique", + "log-description-smw": "Activités pour les [https://www.semantic-mediawiki.org/wiki/Help:Logging types d’événement activés] qui ont été signalés par MediaWiki Sémantique et ses composants.", + "logentry-smw-maintenance": "Événements liés à la maintenance émis par MediaWiki Sémantique", + "smw-datavalue-import-unknown-namespace": "L’espace de noms d’importation « $1 » est inconnu. Assurez-vous que les détails d’importation OWL sont disponibles via [[MediaWiki:Smw import $1]].", + "smw-datavalue-import-missing-namespace-uri": "Impossible de trouver un espace de nom d’URI « $1 » dans l’[[MediaWiki:Smw import $1|importation $1]].", + "smw-datavalue-import-missing-type": "Aucune définition de type trouvée pour « $1 » dans l’[[MediaWiki:Smw import $2|import de $2]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|importer $1]]", + "smw-datavalue-import-invalid-value": "« $1 » n’est pas un format valide et doit consister en « espace_de_nom »:« identifiant » (par ex. « foaf:name »).", + "smw-datavalue-import-invalid-format": "La chaîne « $1 » doit pouvoir être divisée en quatre parties, mais le format n’a pas été compris.", + "smw-property-predefined-impo": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui décrit une relation vers un [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary vocabulaire importé].", + "smw-property-predefined-type": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui décrit le [[Special:Types|type de donnée]] d’une propriété.", + "smw-property-predefined-sobj": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui représente un constructeur de [https://www.semantic-mediawiki.org/wiki/Help:Container conteneur].", + "smw-property-predefined-long-sobj": "Le conteneur permet d’accumuler les affectations des valeurs de propriété de la même façon qu’une page wiki normale, mais dans un espace d’entités différent qui sera lié au sujet incorporé.", + "smw-property-predefined-errp": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui trace les erreurs d’entrée pour les valeurs d’annotation incorrectes.", + "smw-property-predefined-long-errp": "Dans la plupart des cas, ceci est causé par une différence de type ou une restriction sur la [[Property:Allows value|valeur]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value « $1 »] est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui peut définir une liste de valeurs autorisées pour limiter l’ensemble des valeurs possibles d’une propriété.", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list « $1 »] est une propriété prédéfinie qui peut spécifier une référence à une liste contenant les valeurs permises pour limiter les affectations de valeur d’une propriété. Ceci est fourni par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique].", + "smw-datavalue-property-restricted-annotation-use": "La propriété « $1 » a une zone d’application restreinte et ne peut pas être utilisée comme propriété d’annotation par un utilisateur.", + "smw-datavalue-property-restricted-declarative-use": "La propriété « $1 » est une propriété déclarative et peut être utilisée seulement sur une page de propriété ou de catégorie.", + "smw-datavalue-property-create-restriction": "La propriété « $1 » n’existe pas et l’utilisateur ne dispose pas du droit « $2 » (voir [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode mode d’autorisation]) pour créer ou annoter des valeurs avec une propriété non approuvée.", + "smw-datavalue-property-invalid-character": "« $1 » contient un caractère « $2 » répertorié comme faisant partie du libellé de la propriété et a conséquemment été classé comme non valide.", + "smw-datavalue-property-invalid-chain": "L’utilisation de « $1 » comme chaîne de propriété n’est pas autorisée lors du processus d’annotation.", + "smw-datavalue-restricted-use": "La valeur de donnée « $1 » est marquée à usage restreint.", + "smw-datavalue-invalid-number": "« $1 » ne peut pas être interprété comme un nombre.", + "smw-query-condition-circular": "Une condition circulaire possible a été détectée dans « $1 ».", + "smw-query-condition-empty": "La description de la requête contient une condition vide.", + "smw-types-list": "Liste des types de données", + "smw-types-default": "« $1 » est un type de données intégré.", + "smw-types-help": "De plus amples informations et des exemples peuvent être trouvés sur la [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 page d’aide].", + "smw-type-anu": "« $1 » est une variante du type de données [[Special:Types/URL|URL]] principalement utilisée pour une déclaration d’exportation de type « owl:AnnotationProperty ».", + "smw-type-boo": "« $1 » est un type de données de base servant à décrire une valeur vraie ou fausse.", + "smw-type-cod": "« $1 » est une variante du type de données [[Special:Types/Text|Text]] à utiliser pour des textes techniques de longueur quelconque, comme du code source.", + "smw-type-geo": "« $1 » est un type de données servant à décrire des emplacements géographiques et qui nécessite l’extension [https://www.semantic-mediawiki.org/wiki/Extension:Maps « Maps »] pour fournir une fonctionnalité étendue.", + "smw-type-tel": "« $1 » est un type de données spécial servant à décrire des numéros de téléphone internationaux conformément à la RFC 3966.", + "smw-type-txt": "« $1 » est un type de données de base servant à décrire des chaînes de caractères de longueur arbitraire.", + "smw-type-dat": "« $1 » est un type de données de base servant à représenter des points dans le temps dans un format unifié.", + "smw-type-ema": "« $1 » est un type de données spécial servant à représenter un courriel.", + "smw-type-tem": "« $1 » est un type de données numérique spécial servant à représenter une température.", + "smw-type-qty": "« $1 » est un type de données servant à décrire des quantités avec une représentation numérique et une unité de mesure.", + "smw-type-rec": "« $1 » est un type de données conteneur qui spécifie une liste de propriétés typées dans un ordre fixe.", + "smw-type-extra-tem": "Le schéma de conversion comprend des unités prises en charge telles que le kelvin ou les degrés Celsius, Fahrenheit et Rankine.", + "smw-type-tab-properties": "Propriétés", + "smw-type-tab-types": "Types", + "smw-type-tab-type-ids": "Identifiants de type", + "smw-type-tab-errors": "Erreurs", + "smw-type-primitive": "De base", + "smw-type-contextual": "Contextuel", + "smw-type-compound": "Composé", + "smw-type-container": "Conteneur", + "smw-type-no-group": "Non classé", + "smw-special-pageproperty-description": "Cette page fournit une interface de navigation pour trouver toutes les valeurs d’une propriété et une page donnée. D’autres interfaces de recherche disponibles incluent la [[Special:SearchByProperty|recherche de propriété]] et le [[Special:Ask|constructeur de requête « ask »]].", + "smw-property-predefined-errc": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui représente les erreurs apparues en relation avec des annotations de valeurs impropres ou le traitement des entrées.", + "smw-property-predefined-long-errc": "Les erreurs sont enregistrées dans un [https://www.semantic-mediawiki.org/wiki/Help:Container conteneur] qui peut inclure une référence vers la propriété qui a causé le problème.", + "smw-property-predefined-errt": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et contenant une description textuelle d’une erreur.", + "smw-subobject-parser-invalid-naming-scheme": "Un sous-objet défini par l’utilisateur contenait un schéma de nommage invalide. L’utilisation d’un point ($1) dans les cinq premiers caractères est réservée aux extensions. Vous pouvez définir un [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier identifiant nommé].", + "smw-datavalue-record-invalid-property-declaration": "La définition de l’enregistrement contient la propriété « $1 », elle-même déclarée comme un type d’enregistrement, ce qui est interdit.", + "smw-property-predefined-mdat": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui correspond à la date de la dernière modification d’un sujet.", + "smw-property-predefined-cdat": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui correspond à la date de première révision d’un sujet.", + "smw-property-predefined-newp": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui indique si un sujet est nouveau ou non.", + "smw-property-predefined-ledt": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui contient le nom de la page de l’utilisateur qui a créé la dernière révision.", + "smw-property-predefined-mime": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui décrit le type de MIME d’un fichier téléchargé.", + "smw-property-predefined-media": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui décrit le type de média d’un fichier téléchargé.", + "smw-property-predefined-askfo": "« $1 » est une propriété prédéfinie fourni par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui contient le nom du format de résultat utilisé dans une requête.", + "smw-property-predefined-askst": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui décrit les conditions de la requête sous forme de chaîne.", + "smw-property-predefined-askdu": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui contient une valeur temporelle (en secondes) représentant le temps pris par la requête pour achever son exécution.", + "smw-property-predefined-asksc": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui identifie des sources de requêtes alternatives (par ex. distantes, fédérées).", + "smw-property-predefined-askco": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour décrire l’état d’une requête ou de ses composants.", + "smw-property-predefined-long-askco": "Le nombre ou les chiffres attribués représentent un état interne codifié expliqué sur la [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler page d’aide].", + "smw-property-predefined-prec": "« $1 » est une propriété prédéfinie qui décrit une [https://www.semantic-mediawiki.org/wiki/Help:Display_precision précision d’affichage] (en chiffres décimaux) pour les types de données numériques.", + "smw-property-predefined-attch-link": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui recueille les liens des images et des fichiers inclus dans une page.", + "smw-property-predefined-inst": "« $1 » est une propriété interne prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui stocke des informations de catégorie indépendamment de MediaWiki.", + "smw-property-predefined-unit": "« $1 » est une propriété déclarative prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour définir les unités d’affichage des propriétés typées numériques.", + "smw-property-predefined-long-unit": "Une liste séparée par des virgules permet de décrire les unités ou les formats à utiliser pour l’affichage.", + "smw-property-predefined-conv": "« $1 » est une propriété déclarative prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour définir le facteur de conversion pour certaines unités d’une quantité physique.", + "smw-property-predefined-serv": "« $1 » est une propriété déclarative prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour ajouter des liens de service à une propriété.", + "smw-property-predefined-redi": "« $1 » est une propriété interne prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour enregistrer les redirections.", + "smw-property-predefined-subp": "« $1 » est une propriété déclarative prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour définir qu’une propriété est une [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of sous-propriété] d’une autre.", + "smw-property-predefined-subc": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour définir qu’une catégorie est une [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of sous-catégorie] d’une autre.", + "smw-property-predefined-conc": "« $1 » est une propriété interne prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour définir un concept associé.", + "smw-property-predefined-err-type": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour identifier un groupe ou une classe d’[https://www.semantic-mediawiki.org/wiki/Help:Processing_errors erreurs de traitement].", + "smw-property-predefined-skey": "« $1 » est une propriété interne prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour conserver une référence de tri.", + "smw-property-predefined-pplb": "« $1 » est une propriété déclarative prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour spécifier un [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label libellé préféré de propriété].", + "smw-property-predefined-chgpro": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour contenir des informations de [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation propagation des modifications].", + "smw-property-predefined-schema-link": " et est fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique].", + "smw-property-predefined-format-schema": " et est fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique].", + "smw-property-predefined-profile-schema": " et est fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique].", + "smw-property-predefined-trans": " et est fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique].", + "smw-property-predefined-trans-source": " et est fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique].", + "smw-property-predefined-trans-group": " et est fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique].", + "smw-property-predefined-cont-len": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour stocker des informations de longueur.", + "smw-property-predefined-long-cont-len": "Elle est utilisée en lien avec [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (et le [https://www.semantic-mediawiki.org/Attachment_processor mécanisme de rattachement]) pour collecter et stocker des informations sur la taille d’un fichier ingéré (si elle est fournie).", + "smw-property-predefined-cont-lang": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour stocker des informations de langue.", + "smw-property-predefined-long-cont-lang": "Elle est utilisée en lien avec [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (et le [https://www.semantic-mediawiki.org/Attachment_processor traitement de rattachement]) pour collecter et stocker des informations sur la langue récupérée depuis un fichier ingéré (si elle est fournie).", + "smw-property-predefined-cont-title": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour stocker des informations de titre.", + "smw-property-predefined-long-cont-title": "Elle est utilisée en lien avec [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (et le [https://www.semantic-mediawiki.org/Attachment_processor traitement de rattachement]) pour collecter et stocker des informations sur le titre récupéré d’un fichier ingéré (si elle est fournie).", + "smw-property-predefined-cont-author": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour stocker des informations sur l’auteur.", + "smw-property-predefined-long-cont-author": "Elle est utilisée en lien avec [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (et le [https://www.semantic-mediawiki.org/Attachment_processor traitement de rattachement]) pour collecter et stocker des informations sur l’auteur d’un fichier ingéré (s’il est fourni).", + "smw-property-predefined-cont-date": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour stocker des informations de date.", + "smw-property-predefined-long-cont-date": "Elle est utilisée avec [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (et le [https://www.semantic-mediawiki.org/Attachment_processor traitement de rattachement]) pour collecter et stocker les informations sur la date récupérée d’un fichier ingéré (si elle est fournie).", + "smw-property-predefined-cont-type": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour stocker des informations sur le type de fichier.", + "smw-property-predefined-long-cont-type": "Elle est utilisée en lien avec [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (et le [https://www.semantic-mediawiki.org/Attachment_processor traitement de rattachement]) pour collecter et stocker les informations sur le type récupéré d’un fichier ingéré (s’il est fourni).", + "smw-property-predefined-cont-keyw": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour représenter des mots-clés.", + "smw-property-predefined-long-cont-keyw": "Elle est utilisée en lien avec [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (et le [https://www.semantic-mediawiki.org/Attachment_processor traitement de rattachement]) pour collecter et stocker les mots-clés récupérés d’un fichier ingéré (s’ils sont fournis).", + "smw-property-predefined-file-attch": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour représenter un conteneur stockant des informations sur les pièces jointes.", + "smw-property-predefined-long-file-attch": "Elle est utilisée en relation avec [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (et le [https://www.semantic-mediawiki.org/Attachment_processor traitement de rattachement]) pour collecter toutes les informations récupérables spécifiques au contenu depuis un fichier ingéré (si elles sont fournies).", + "smw-types-extra-geo-not-available": "[https://www.semantic-mediawiki.org/wiki/Extension:Maps L’extension « Maps »] n’a pas été détectée, donc « $1 » est restreint dans sa capacité de fonctionnement.", + "smw-datavalue-monolingual-dataitem-missing": "Un élément attendu est manquant pour construire une valeur composée monolingue.", + "smw-datavalue-languagecode-missing": "Pour l’annotation « $1 », l’analyseur n’a pas pu déterminer un code de langue (par ex. « foo@en »).", + "smw-datavalue-languagecode-invalid": "« $1 » n’a pas été reconnu comme un code de langue pris en charge.", + "smw-property-predefined-lcode": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui représente un code de langue au format BCP47.", + "smw-type-mlt-rec": "« $1 » est un type de données [https://www.semantic-mediawiki.org/wiki/Help:Container conteneur] qui associe une valeur texte avec un [[Property:Language code|code de langue]] spécifique.", + "smw-types-extra-mlt-lcode": "Le type de données {{PLURAL:$2|nécessite un|ne nécessite aucun}} code de langue (par ex. une annotation de valeur sans code de langue {{PLURAL:$2|n’est pas|est}} acceptée).", + "smw-property-predefined-text": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui représente un texte de longueur quelconque.", + "smw-property-predefined-pdesc": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui permet de décrire une propriété dans le contexte d’une langue.", + "smw-property-predefined-list": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour définir une liste de propriétés utilisée avec une propriété de type [[Special:Types/Record|enregistrement]].", + "smw-limitreport-intext-parsertime": "[SMW] Temps de l’analyseur annoté au sein du texte", + "smw-limitreport-intext-postproctime": "[SMW] durée de post-traitement", + "smw-limitreport-intext-parsertime-value": "$1 seconde{{PLURAL:$1||s}}", + "smw-limitreport-intext-postproctime-value": "$1 seconde{{PLURAL:$1||s}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Temps de mise à jour de l’enregistrement (sur une purge de page)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 seconde{{PLURAL:$1||s}}", + "smw_allows_pattern": "Cette page est censée contenir une liste de références (suivie [https://fr.wikipedia.org/wiki/Expression_rationnelle d’expressions rationnelles]) et être mise à disposition via la propriété [[Property:Allows pattern|Permettre les motifs]]. Pour modifier cette page, le droit smw-patternedit est nécessaire.", + "smw-datavalue-allows-pattern-mismatch": "« $1 » a été classé comme non valide d’après l’expression rationnelle « $2 ».", + "smw-datavalue-allows-pattern-reference-unknown": "La référence de motif « $1 » ne peut être mise en correspondance avec aucune entrée dans [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "La référence de liste « $1 » ne correspondait à aucune page [[MediaWiki:Smw allows list $1]].", + "smw-datavalue-allows-value-list-missing-marker": "Il manque des éléments avec un marqueur de liste « * » dans le contenu de la liste « $1 ».", + "smw-datavalue-feature-not-supported": "La fonctionnalité « $1 » n’est pas prise en charge ou a été désactivée sur ce wiki.", + "smw-property-predefined-pvap": "« $1 » est une propriété prédéfinie qui peut spécifier une [[MediaWiki:Smw allows pattern|référence de motif]] pour appliquer une correspondance d’[https://fr.wikipedia.org/wiki/Expression_rationnelle expression rationnelle]. Ceci est fourni par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique]", + "smw-property-predefined-dtitle": "« $1 » est une propriété prédéfinie qui peut affecter un titre affiché distinct à une entité. Ceci est fourni par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique].", + "smw-property-predefined-pvuc": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour retreindre les affectations de valeur afin que chaque instance soit unique (ou une au plus).", + "smw-property-predefined-long-pvuc": "L’unicité est établie quand deux valeurs n’ont pas la même représentation littérale et toute violation de cette contrainte sera catégorisée comme une erreur.", + "smw-datavalue-constraint-uniqueness-violation": "La propriété « $1 » ne permet que des affectations de valeurs uniques et « $2 » a déjà été annoté dans le sujet « $3 ».", + "smw-datavalue-constraint-uniqueness-violation-isknown": "La propriété « $1 » ne permet que des annotations à valeur unique, mais « $2 » contient déjà une valeur affectée. « $3 » viole la contrainte d’unicité.", + "smw-datavalue-constraint-violation-non-negative-integer": "La propriété « $1 » a une contrainte « entier non négatif » et la valeur « $2 » ne respecte pas cette exigence.", + "smw-datavalue-constraint-violation-must-exists": "La propriété « $1 » a une contrainte must_exists et la valeur « $2 » ne respecte pas cette exigence.", + "smw-datavalue-constraint-violation-single-value": "La propriété « [[Property:$1|$1]] » a une contrainte single_value et la valeur « $2 » ne respecte pas cette exigence.", + "smw-constraint-violation-uniqueness": "Une contrainte unique_value_constraint est affectée à la propriété « [[Property:$1|$1]] » qui ne permet que des affectations de valeur unique, mais la valeur d’annotation « $2 » a déjà été trouvée comme annotant le sujet « $3 ».", + "smw-constraint-violation-uniqueness-isknown": "Une contrainte unique_value_constraint est affectée à la propriété « [[Property:$1|$1]] » qui ne permet que des valeurs d’annotation uniques, mais « $2 » contient déjà une valeur annotée avec « $3 », ce qui viole la contrainte d’unicité pour le sujet actuel.", + "smw-constraint-violation-non-negative-integer": "Une contrainte non_negative_integer est affectée à la propriété « [[Property:$1|$1]] », mais la valeur d’annotation « $2 » viole l’exigence de la contrainte.", + "smw-constraint-violation-must-exists": "Une contrainte must_exists est affectée à la propriété « [[Property:$1|$1]] », mais la valeur d’annotation « $2 » viole l’exigence de la contrainte.", + "smw-constraint-violation-single-value": "Une contrainte single_value est affectée à la propriété « [[Property:$1|$1]] », mais la valeur d’annotation « $2 » viole l’exigence de la contrainte.", + "smw-constraint-violation-class-shape-constraint-missing-property": "Une contrainte shape_constraint est affectée à la catégorie « [[:$1]] » avec une clé property, mais la propriété « $2 » exigée est manquante.", + "smw-constraint-violation-class-shape-constraint-wrong-type": "Une contrainte shape_constraint est affectée à la catégorie « [[:$1]] » avec une clé property_type, mais la propriété « $2 » ne correspond pas au type de « $3 ».", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "Une contrainte shape_constraint est affectée à la catégorie « [[:$1]] » avec une clé max_cardinality, mais la propriété « $2 » ne correspond pas à la cardinalité de « $3 ».", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "Une contrainte shape_constraint est affectée à la catégorie « [[:$1]] » avec une clé min_textlength, mais la propriété « $2 » ne correspond pas à l’exigence de taille de « $3 ».", + "smw-constraint-violation-class-mandatory-properties-constraint": "Une contrainte mandatory_properties est affectée à la catégorie « [[:$1]] » et nécessite les propriétés obligatoires suivantes : $2", + "smw-constraint-violation-allowed-namespace-no-match": "Une contrainte allowed_namespaces est affectée à la propriété « [[Property:$1|$1]] » mais « $2 » viole l’exigence d’espace de noms, seuls les espaces de nom suivants sont autorisés : « $3 ».", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "La contrainte allowed_namespaces nécessite un type de page.", + "smw-constraint-schema-category-invalid-type": "Le schéma annoté « $1 » n’est pas valide pour une catégorie, il nécessite un type « $2 ».", + "smw-constraint-schema-property-invalid-type": "Le schéma annoté « $1 » n’est pas valide pour une propriété, il nécessite un type « $2 ».", + "smw-constraint-error-allows-value-list": "« $1 » n’est pas dans la liste ($2) des [[Property:Allows value|valeurs autorisées]] pour la propriété « $3 ».", + "smw-constraint-error-allows-value-range": "« $1 » n’est pas dans la plage de « $2 » spécifiée par la contrainte de [[Property:Allows value|valeur autorisée]] pour la propriété « $3 ».", + "smw-property-predefined-boo": "« $1 » est un [[Special:Types/Boolean|type]] et une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour représenter des valeurs booléennes.", + "smw-property-predefined-num": "« $1 » est un [[Special:Types/Number|type]] et une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour représenter des valeurs numériques.", + "smw-property-predefined-dat": "« $1 » est un [[Special:Types/Date|type]] et une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour représenter des valeurs de date.", + "smw-property-predefined-uri": "« $1 » est un [[Special:Types/URL|type]] et une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour représenter des valeurs d’URI/URL.", + "smw-property-predefined-qty": "« $1 » est un [[Special:Types/Quantity|type]] et une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour représenter des valeurs de quantité.", + "smw-datavalue-time-invalid-offset-zone-usage": "« $1 » contient un décalage et un identificateur de zone qui n’est pas pris en charge.", + "smw-datavalue-time-invalid-values": "La valeur « $1 » contient des informations non interprétables sous la forme « $2 ».", + "smw-datavalue-time-invalid-date-components-common": "« $1 » contient des informations non interprétables.", + "smw-datavalue-time-invalid-date-components-dash": "« $1 » contient un tiret superflu ou d’autres caractères qui ne sont pas valides pour interpréter une date.", + "smw-datavalue-time-invalid-date-components-empty": "« $1 » contient des composants vides.", + "smw-datavalue-time-invalid-date-components-three": "« $1 » contient plus de trois composants exigés pour l’interprétation d’une date.", + "smw-datavalue-time-invalid-date-components-sequence": "« $1 » contient une séquence qui ne peut pas être interprétée avec une matrice de correspondance disponible pour les composants de date.", + "smw-datavalue-time-invalid-ampm": "« $1 » contient « $2 » en tant qu’élément de type heure et qui n’est pas valide pour une convention sur 12 heures.", + "smw-datavalue-time-invalid-jd": "Impossible d’interpréter la valeur d’entrée « $1 » comme un nombre JD (jour julien) valide avec « $2 » signalé.", + "smw-datavalue-time-invalid-prehistoric": "Impossible d’interpréter une valeur d’entrée « $1 » préhistorique. Par exemple, avoir spécifié un trop grand nombre d’années dans un modèle calendaire peut renvoyer des résultats inattendus dans un contexte préhistorique.", + "smw-datavalue-time-invalid": "Impossible d’interpréter la valeur d’entrée « $1 » comme un composant d’horodatage valide avec « $2 » signalé.", + "smw-datavalue-external-formatter-uri-missing-placeholder": "Il manque la variable substituée « $1 » dans l’URI du formateur.", + "smw-datavalue-external-formatter-invalid-uri": "« $1 » est une URL non valide.", + "smw-datavalue-external-identifier-formatter-missing": "Il manque à la propriété l’affectation d’une [[Property:External formatter uri|« URI de formateur externe »]].", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "L’identifiant externe « $1 » attend une substitution de plusieurs champs mais il manque à la valeur « $2 » actuelle au moins une valeur de paramètre pour répondre à l’exigence.", + "smw-datavalue-keyword-maximum-length": "Le mot-clé dépasse la valeur maximale de $1 caractère{{PLURAL:$1||s}}.", + "smw-property-predefined-eid": "« $1 » est un [[Special:Types/External identifier|type]] et une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour représenter des identifiants externes.", + "smw-property-predefined-peid": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui représente un identifiant externe.", + "smw-property-predefined-pefu": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] pour spécifier une ressource externe avec une variable substituée.", + "smw-property-predefined-long-pefu": "L’URI doit comprendre une variable substituée qui sera ajustée avec la valeur d’un [[Special:Types/External identifier|identifiant externe]] pour former une référence de ressource valide.", + "smw-type-eid": "« $1 » est une variante du type de données [[Special:Types/Text|Texte]] pour décrire des ressources externes (basées sur une URI) et qui exige des propriétés particulières pour déclarer une [[Property:External formatter uri|URI de formateur externe]].", + "smw-property-predefined-keyw": "« $1 » est une propriété prédéfinie et un [[Special:Types/Keyword|type]] fourni par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] qui normalise un texte et a une longueur de chaîne restreinte.", + "smw-type-keyw": "« $1 » est une variante du type de données [[Special:Types/Text|Texte]] qui a une longueur restreinte avec une représentation normalisée de son contenu.", + "smw-datavalue-stripmarker-parse-error": "La valeur fournie « $1 » contient des [https://en.wikipedia.org/wiki/Help:Strip_markers marqueurs de contenu masqué par MediaWiki] et ne peut donc pas être suffisamment analysée.", + "smw-datavalue-parse-error": "La valeur indiquée « $1 » n’a pas été comprise.", + "smw-datavalue-propertylist-invalid-property-key": "La liste de propriétés « $1 » contient une clé de propriété « $2 » non valide.", + "smw-datavalue-type-invalid-typeuri": "Le type « $1 » ne peut pas être transformé en une représentation d’URI valide.", + "smw-datavalue-wikipage-missing-fragment-context": "La valeur d’entrée de page wiki « $1 » ne peut pas être utilisée sans une page de contexte.", + "smw-datavalue-wikipage-invalid-title": "La valeur d’entrée du type de page « $1 » contient des caractères non valides ou est incomplète et peut donc provoquer des résultats inattendus lors d’une requête ou d’un processus d’annotation.", + "smw-datavalue-wikipage-property-invalid-title": "La propriété « $1 » (en tant que type de page) avec la valeur d’entrée « $2 » contient des caractères non valides ou est incomplète et peut donc provoquer des résultats inattendus lors d’une requête ou d’un processus d’annotation.", + "smw-datavalue-wikipage-empty": "La valeur d’entrée de page wiki est vide (par ex. [[SomeProperty::]], [[]]) et ne peut donc pas être utilisée en tant que nom ni comme partie d’une condition de requête.", + "smw-type-ref-rec": "« $1 » est un type de [https://www.semantic-mediawiki.org/wiki/Container conteneur] qui permet d’enregistrer des informations supplémentaires (par exemple, la provenance des données) sur une affectation de valeur.", + "smw-datavalue-reference-outputformat": "$1 : $2", + "smw-datavalue-reference-invalid-fields-definition": "Le type [[Special:Types/Reference|Référence]] attend qu’une liste de propriétés soit déclarée au moyen de l’attribut [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Possède des champs].", + "smw-parser-invalid-json-format": "L’analyseur JSON a renvoyé un « $1 ».", + "smw-property-preferred-label-language-combination-exists": "« $1 » ne peut pas être utilisé comme libellé préféré parce que la langue « $2 » est déjà affectée au libellé « $3 ».", + "smw-clipboard-copy-link": "Copier le lien dans le presse-papiers", + "smw-property-userdefined-fixedtable": "« $1 » a été configuré comme [https://www.semantic-mediawiki.org/wiki/Fixed_properties propriété fixe] et toute modification de sa [https://www.semantic-mediawiki.org/wiki/Type_declaration déclaration de type] a besoin soit d’exécuter setupStore.php, soit de terminer la tâche spéciale [[Special:SemanticMediaWiki|« Installation et mise à niveau de la base de données »]].", + "smw-data-lookup": "Récupération des données...", + "smw-data-lookup-with-wait": "La demande est en cours d’exécution et peut prendre un certain temps.", + "smw-no-data-available": "Aucune donnée disponible.", + "smw-property-req-violation-missing-fields": "Pour la propriété « $1 », il manque une déclaration des champs [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields], exigée pour ce type « $2 ».", + "smw-property-req-violation-multiple-fields": "La propriété « $1 » contient de multiples déclarations des champs [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] (concurrentes dans ce cas), mais une seule est attendue pour ce type « $2 ».", + "smw-property-req-violation-missing-formatter-uri": "Pour la propriété « $1 », il manque les détails de déclaration relatifs au type annoté, ce qui ne permet pas de définir la propriété URI du formateur externe.", + "smw-property-req-violation-predefined-type": "La propriété « $1 », en tant que propriété prédéfinie, contient une déclaration de type « $2 » qui n’est pas compatible avec le type par défaut de cette propriété.", + "smw-property-req-violation-import-type": "Une déclaration de type a été détectée qui est incompatible avec le type prédéfini du vocabulaire importé « $1 ». En général, il n’est pas nécessaire de déclarer un type parce que les informations sont récupérées lors de la définition de l’import.", + "smw-property-req-violation-change-propagation-locked-error": "La propriété « $1 » a été modifiée et les entités affectées doivent être réévaluées à l’aide d’un processus de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagation des changements]. La page de propriétés a été verrouillée jusqu’à ce que la mise à jour de la spécification principale soit terminée afin d’éviter des interruptions intermédiaires ou des spécifications contradictoires. Le processus peut prendre un moment avant que la page puisse être déverrouillée car cela dépend de la taille et de la fréquence de l’ordonnanceur de la [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue file d’attente des tâches].", + "smw-property-req-violation-change-propagation-locked-warning": "La propriété « $1 » a été modifiée et les entités affectées doivent être réévaluées à l’aide d’un processus de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagation des changements]. La mise à jour peut prendre un moment car cela dépend de la taille et de la fréquence de l’ordonnanceur de la [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue file d’attente des tâches] et il est suggéré de reporter les modifications apportées à la propriété afin d’éviter des interruptions intermédiaires ou des spécifications contradictoires.", + "smw-property-req-violation-change-propagation-pending": "Des mises à jour pour la [https://www.semantic-mediawiki.org/wiki/Change_propagation propagation des changements] sont en attente ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue tâche{{PLURAL:$1||s}} estimée{{PLURAL:$1||s}}]) et il est recommandé d’attendre que le processus soit terminé avant de modifier une propriété, afin d’éviter des interruptions intermédiaires ou des spécifications contradictoires.", + "smw-property-req-violation-missing-maps-extension": "MediaWiki Sémantique n’a pas pu détecter l’extension prérequise [https://www.semantic-mediawiki.org/wiki/Extension:Maps « Maps »], ce qui, en conséquence, limite la fonctionnalité de cette propriété (c.-à-d. empêche de stocker ou de traiter les données géographiques).", + "smw-property-req-violation-type": "La propriété contient des spécifications de type concurrentes qui peuvent aboutir à des annotations de valeur non valides ; par conséquent il est attendu qu’un utilisateur lui assigne un type approprié.", + "smw-property-req-error-list": "La propriété contient les erreurs ou avertissements suivants :", + "smw-property-req-violation-parent-type": "La propriété « $1 » et la propriété parente affectée « $2 » ont des annotations de type différentes.", + "smw-property-req-violation-forced-removal-annotated-type": "L’application obligatoire de [https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance l’héritage du type du parent] a été activée, mais le type d’annotation pour la propriété « $1 » ne correspond pas au type « $2 » indiqué par son parent et a été modifié pour respecter cette exigence. Il est recommandé d’ajuster la définition de type dans la page pour que le message d’erreur et l’application obligatoire soient supprimés de cette propriété.", + "smw-change-propagation-protection": "Cette page est verrouillée afin d’éviter des modifications accidentelles des données pendant l’exécution d’une mise à jour de [https://www.semantic-mediawiki.org/wiki/change_propagation propagation des changements]. Le processus peut prendre un moment avant que la page ne soit déverrouillée car cela dépend de la taille et de la fréquence du séquenceur de la [https://www.mediawiki.org/wiki/Special:MyLanguage/manual:Job_queue file d’attente des tâches].", + "smw-category-change-propagation-locked-error": "La catégorie « $1 » a été modifiée et nécessite que les entités affectées soient réévaluées en suivant un processus [https://www.semantic-mediawiki.org/wiki/Change_propagation propagation des changements]. En attendant, la page de catégorie a été verrouillée jusqu’à ce que la mise à jour de la spécification principale soit terminée, afin d’éviter des interruptions intermédiaires ou des spécifications contradictoires. Le processus peut prendre un moment avant que la page puisse être déverrouillée car cela dépend de la taille et de la fréquence du séquenceur de la [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue file d’attente des tâches].", + "smw-category-change-propagation-locked-warning": "La catégorie « $1 » a été modifiée et nécessite que les entités affectées soient réévaluées en suivant un processus de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagation des changements]. La mise à jour peut prendre un moment car cela dépend de la taille et de la fréquence du séquenceur de la [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue file d’attente des tâches], il est conseillé de différer les modifications de la catégorie afin d’éviter des interruptions intermédiaires ou des spécifications contradictoires.", + "smw-category-change-propagation-pending": "Des mises à jour de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagation des changements] sont en attente ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue tâche{{PLURAL:$1||s}} estimée{{PLURAL:$1||s}}]), il est recommandé d’attendre que le traitement soit achevé pour des modifications d’une catégorie afin d’éviter des interruptions intermédiaires ou des spécifications contradictoires.", + "smw-category-invalid-value-assignment": "« $1 » n’est pas reconnu comme une catégorie ou une annotation de valeur valide.", + "protect-level-smw-pageedit": "Autoriser uniquement les utilisateurs qui ont le droit de modifier des pages (MediaWiki Sémantique)", + "smw-create-protection": "La création de la propriété « $1 » est limitée aux seuls utilisateurs ayant le droit « $2 » (ou membres d’un [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups groupe d’utilisateurs] approprié) lorsque le [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode mode d’autorité] est activé.", + "smw-create-protection-exists": "Les modifications de la propriété « $1 » sont limitées aux seuls utilisateurs ayant le droit « $2 » (ou membres d’un [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups groupe d’utilisateurs] approprié) lorsque le [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode mode d’autorité] est activé.", + "smw-edit-protection": "Cette page est [[Property:Is edit protected|protégée]] pour éviter la modification accidentelle de données et ne peut être modifiée que par des utilisateurs ayant le droit de modification « $1 » (ou membres d’un [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups groupe d’utilisateurs] approprié).", + "smw-edit-protection-disabled": "La protection contre la modification a été désactivée et « $1 » ne peut donc pas être utilisé pour protéger les pages de l’entité contre des modifications non autorisées.", + "smw-edit-protection-auto-update": "MediaWiki Sémantique a mis à jour l’état de la protection conformément à la propriété « Est protégé contre la modification ».", + "smw-edit-protection-enabled": "Protégé contre la modification (MediaWiki Sémantique)", + "smw-patternedit-protection": "Cette page est protégée et ne peut être modifiée que par des utilisateurs ayant le [https://www.semantic-mediawiki.org/wiki/Help:Permissions droit] smw-patternedit approprié.", + "smw-property-predefined-edip": "« $1 » est une propriété prédéfinie qui indique si la modification est protégée ou non. Ceci est fourni par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique].", + "smw-property-predefined-long-edip": "Bien que n’importe quel utilisateur soit habilité à ajouter cette propriété à un sujet, seul un utilisateur avec un droit spécifique peut modifier ou supprimer la protection d’une entité, une fois celle-ci ajoutée.", + "smw-query-reference-link-label": "Référence de requête", + "smw-format-datatable-emptytable": "Aucune donnée disponible dans la table", + "smw-format-datatable-info": "Affichage de _START_ à _END_ sur _TOTAL_ entrées", + "smw-format-datatable-infoempty": "Affichage de 0 à 0 sur 0 entrée", + "smw-format-datatable-infofiltered": "(filtré sur _MAX_ entrées au total)", + "smw-format-datatable-infothousands": " ", + "smw-format-datatable-lengthmenu": "Afficher _MENU_ entrées", + "smw-format-datatable-loadingrecords": "Chargement en cours...", + "smw-format-datatable-processing": "Traitement en cours...", + "smw-format-datatable-search": "Rechercher :", + "smw-format-datatable-zerorecords": "Aucun enregistrement correspondant trouvé", + "smw-format-datatable-first": "Premier", + "smw-format-datatable-last": "Dernier", + "smw-format-datatable-next": "Suivant", + "smw-format-datatable-previous": "Précédent", + "smw-format-datatable-sortascending": ": activer pour trier la colonne dans l’ordre croissant", + "smw-format-datatable-sortdescending": ": activer pour trier la colonne en ordre décroissant", + "smw-format-datatable-toolbar-export": "Exporter", + "smw-category-invalid-redirect-target": "La catégorie « $1 » contient une cible de redirection non valide vers un espace de noms hors des catégories.", + "smw-parser-function-expensive-execution-limit": "La fonction d’analyseur a atteint le temps limite autorisé pour son exécution (voir le paramètre de configuration [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "MediaWiki Sémantique actualise la page actuelle en fonction de certains traitements nécessaires après l’exécution des requêtes.", + "apihelp-smwinfo-summary": "Module d’API pour récupérer des informations concernant les statistiques de MediaWiki Sémantique ainsi que d’autres méta-informations.", + "apihelp-ask-summary": "Module d’API pour interroger MediaWiki Sémantique en utilisant le langage de requête « ask ».", + "apihelp-askargs-summary": "Module d’API pour interroger MediaWiki Sémantique en utilisant le langage de requête « ask » avec une liste de conditions, de résultats et de paramètres.", + "apihelp-browsebyproperty-summary": "Module d’API pour récupérer des informations concernant une propriété ou une liste de propriétés.", + "apihelp-browsebysubject-summary": "Module d’API pour récupérer des informations concernant un sujet.", + "apihelp-smwtask-summary": "Module d’API pour exécuter les tâches relatives à MediaWiki Sémantique (pour un usage interne uniquement, pas pour un usage public).", + "apihelp-smwbrowse-summary": "Module API pour prendre en charge l’analyse des activités pour différents types d’entités dans MediaWiki Sémantique.", + "apihelp-ask-parameter-api-version": "Format de sortie :\n;2:Format rétro-compatible utilisant {} pour la liste des résultats.\n;3:Format expérimental utilisant [] pour la liste des résultats.", + "apihelp-smwtask-param-task": "Définit le type de tâche", + "apihelp-smwtask-param-params": "Paramètres encodés en JSON qui correspondent à l’exigence de type de tâche sélectionnée", + "smw-apihelp-smwtask-example-update": "Exemple d’exécution d’une tâche de mise à jour pour un sujet particulier :", + "smw-api-invalid-parameters": "Paramètres non valides dans « $1 »", + "smw-parser-recursion-level-exceeded": "Le niveau de $1 récursions a été dépassé lors d’un processus d’analyse. Il est suggéré de valider la structure du modèle ou d’ajuster si nécessaire le paramètre de configuration $maxRecursionDepth.", + "smw-property-page-list-count": "Affichage de $1 page{{PLURAL:$1||s}} utilisant cette propriété.", + "smw-property-page-list-search-count": "Affichage de $1 page{{PLURAL:$1||s}} utilisant cette propriété avec une valeur correspondant à « $2 ».", + "smw-property-page-filter-note": "Le [https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter filtre de recherche] permet l’inclusion d’[https://www.semantic-mediawiki.org/wiki/Help:Query_expressions expressions de requête] telles que ~ ou !. Le [https://www.semantic-mediawiki.org/wiki/Query_engine moteur de requête] sélectionné peut aussi prendre en charge une correspondance insensible à la casse ou d’autres expressions courtes telles que :\n* in: le résultat doit contenir le terme, par ex. « in:Foo »\n* not: le résultat ne doit pas contenir le terme, par ex. « not:Bar »", + "smw-property-reserved-category": "Catégorie", + "smw-category": "Catégorie", + "smw-datavalue-uri-invalid-scheme": "« $1 » n’a pas été répertorié comme schéma d’URI valide.", + "smw-datavalue-uri-invalid-authority-path-component": "« $1 » a été identifié comme contenant un composant d’autorité ou de chemin d’accès « $2 » non valide.", + "smw-browse-property-group-title": "Groupe de propriétés", + "smw-browse-property-group-label": "Libellé du groupe de propriétés", + "smw-browse-property-group-description": "Description du groupe de propriétés", + "smw-property-predefined-ppgr": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui identifie les entités (principalement les catégories) utilisées comme instance de regroupement pour les propriétés.", + "smw-filter": "Filtre", + "smw-section-expand": "Développer la section", + "smw-section-collapse": "Replier la section", + "smw-ask-format-help-link": "format [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Aide", + "smw-cheat-sheet": "Aide-mémoire", + "smw-personal-jobqueue-watchlist": "Liste de suivi de la file des tâches", + "smw-personal-jobqueue-watchlist-explain": "Le nombre indique une estimation des entrées de la file des tâches en attente d’exécution.", + "smw-property-predefined-label-skey": "Clé de tri", + "smw-processing": "Traitement en cours...", + "smw-loading": "Chargement en cours...", + "smw-fetching": "Récupération en cours...", + "smw-preparing": "Préparation en cours...", + "smw-expand": "Développer", + "smw-collapse": "Replier", + "smw-copy": "Copier", + "smw-copy-clipboard-title": "Copie le contenu dans le presse-papiers", + "smw-jsonview-expand-title": "Développe la vue JSON", + "smw-jsonview-collapse-title": "Replie la vue JSON", + "smw-jsonview-search-label": "Rechercher :", + "smw-redirect-target-unresolvable": "Cette cible ne peut pas être résolue pour la raison « $1 »", + "smw-types-title": "Type : $1", + "smw-schema-namespace-editcontentmodel-disallowed": "La modification du modèle de contenu d’une [https://www.semantic-mediawiki.org/wiki/Help:Schema page de schéma] n’est pas autorisée.", + "smw-schema-namespace-edit-protection": "Cette page est protégée et ne peut être modifiée que par des utilisateurs ayant le [https://www.semantic-mediawiki.org/wiki/Help:Permissions droit] smw-schemaedit approprié.", + "smw-schema-namespace-edit-protection-by-import-performer": "Cette page a été importée par un [https://www.semantic-mediawiki.org/wiki/Import_performer utilisateur importateur] référencé, ce qui signifie que la modification du contenu de cette page est réservée à ces utilisateurs référencés.", + "smw-schema-error-title": "Erreur{{PLURAL:$1||s}} de validation", + "smw-schema-error-schema": "Le schéma de validation '''$1''' a trouvé les incohérences suivantes :", + "smw-schema-error-miscellaneous": "Erreur diverse ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "Le validateur JSON « $1 » n’est pas accessible (ou installé) et le fichier « $2 » n’a donc pas pu être examiné, ce qui empêche l’enregistrement ou la modification de la page actuelle.", + "smw-schema-error-validation-file-inaccessible": "Le fichier de validation « $1 » n’est pas accessible.", + "smw-schema-error-violation": "[« $1 », « $2 »]", + "smw-schema-error-type-missing": "Il manque un type au contenu pour qu’il soit reconnu et utilisable dans l’[https://www.semantic-mediawiki.org/wiki/Help:Schema espace de noms de schéma].", + "smw-schema-error-type-unknown": "Le type « $1 » n’est pas inscrit et ne peut donc pas être utilisé pour du contenu dans l’espace de noms [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-error-json": "Erreur JSON : « $1 »", + "smw-schema-error-input": "La validation des entrées a trouvé les problèmes suivants qui doivent être corrigés avant que le contenu puisse être enregistré. La [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling page d’aide du schéma] peut fournir des conseils sur la manière de supprimer les incohérences ou de résoudre des problèmes de format des entrées.", + "smw-schema-error-input-schema": "Le schéma de validation '''$1''' a trouvé les incohérences suivantes, qui doivent être corrigées avant que le contenu puisse être enregistré. La [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling page d’aide du schéma] peut fournir des conseils sur la manière de résoudre ces problèmes.", + "smw-schema-error-title-prefix": "Ce type de schéma exige que le titre du schéma commence par le préfixe « $1 ».", + "smw-schema-validation-error": "Le type « $1 » n’est pas enregistré et ne peut pas être utilisé pour le contenu dans l’espace de noms [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-validation-schema-title": "Schéma JSON", + "smw-schema-summary-title": "Résumé", + "smw-schema-title": "Schéma", + "smw-schema-usage": "Utilisation", + "smw-schema-type": "Type de schéma", + "smw-schema-type-description": "Description de type", + "smw-schema-description": "Description du schéma", + "smw-schema-description-link-format-schema": "Ce type de schéma prend en charge la définition des caractéristiques pour créer des liens dépendants du contexte selon une propriété affectée du [[Property:Formatter schema|schéma de mise en forme]].", + "smw-schema-description-search-form-schema": "Ce type de schéma prend en charge la définition des formulaires de saisie et des caractéristiques pour le profil de [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch recherche étendue], où il contient des instructions sur la manière de générer les champs de saisie, définir des espaces de noms par défaut ou déclarer des expressions de préfixe pour une requête de recherche.", + "smw-schema-description-property-profile-schema": "Ce type de schéma prend en charge la définition d’un profil pour déclarer les caractéristiques de la propriété affectée et ses valeurs d’annotation.", + "smw-schema-description-facetedsearch-profile-schema": "Ce type de schéma prend en charge la définition de profils utilisés dans le cadre de l'environnement [[Special:FacetedSearch|Faceted search]] .", + "smw-schema-description-property-group-schema": "Ce type de schéma prend en charge la définition des [https://www.semantic-mediawiki.org/wiki/Help:Property_group groupes de propriété] pour aider à structurer l’interface de [https://www.semantic-mediawiki.org/wiki/Help:Special:Browse navigation].", + "smw-schema-description-property-constraint-schema": "Ceci prend en charge la définition de règles de contrainte pour une instance de propriété ainsi que des valeurs qui lui sont assignées.", + "smw-schema-description-class-constraint-schema": "Ce type de schéma prend en charge la définition des règles de contrainte pour une instance de classe (autrement dit une catégorie).", + "smw-schema-tag": "Balise{{PLURAL:$1||s}}", + "smw-property-predefined-constraint-schema": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] et qui définit un schéma de contraintes.", + "smw-property-predefined-schema-desc": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui stocke une description de schéma.", + "smw-property-predefined-schema-def": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui stocke le contenu du schéma.", + "smw-property-predefined-schema-tag": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] pour identifier une collection de schémas.", + "smw-property-predefined-long-schema-tag": "Un libellé qui identifie le schéma de contenus ou de caractéristiques similaires.", + "smw-property-predefined-schema-type": "« $1 » est une propriété prédéfinie fournie par [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Sémantique] et qui décrit un type pour distinguer un groupe de schémas.", + "smw-property-predefined-long-schema-type": "Chaque [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type type] fournit sa propre interprétation des éléments de syntaxe et des règles applicables et peut être exprimé à l’aide d’un [https://www.semantic-mediawiki.org/wiki/Help:Schema#validation schéma de validation].", + "smw-ask-title-keyword-type": "Recherche par mot-clé", + "smw-ask-message-keyword-type": "Ceci recherche les correspondances vérifiant la condition $1.", + "smw-remote-source-unavailable": "Impossible de se connecter à la cible distante « $1 ».", + "smw-remote-source-disabled": "La source '''$1''' a désactivé la prise en charge des requêtes distantes !", + "smw-remote-source-unmatched-id": "La source '''$1''' ne correspond pas à une version de MediaWiki Sémantique capable de prendre en charge une requête distante.", + "smw-remote-request-note": "Le résultat est récupéré depuis la source distante '''$1''' et il est probable que le contenu généré contienne des informations qui ne sont pas disponibles depuis l’intérieur du wiki actuel.", + "smw-remote-request-note-cached": "Le résultat est '''mis en cache''' depuis la source distante '''$1''' et il est probable que le contenu généré contienne des informations qui ne sont pas disponibles depuis l’intérieur du wiki actuel.", + "smw-parameter-missing": "Le paramètre « $1 » est manquant.", + "smw-property-tab-usage": "Utilisation", + "smw-property-tab-profile-schema": "Schéma du profil", + "smw-property-tab-redirects": "Synonymes", + "smw-property-tab-subproperties": "Sous-propriétés", + "smw-property-tab-errors": "Affectations impropres", + "smw-property-tab-constraint-schema": "Schéma de contrainte", + "smw-property-tab-constraint-schema-title": "Schéma compilé de contraintes", + "smw-property-tab-specification": "... plus", + "smw-concept-tab-list": "Liste", + "smw-concept-tab-errors": "Erreurs", + "smw-ask-tab-result": "Résultat", + "smw-ask-tab-extra": "Suppléments", + "smw-ask-tab-debug": "Débogage", + "smw-ask-tab-code": "Code", + "smw-install-incomplete-tasks-title": "Tâches d’administration incomplètes", + "smw-install-incomplete-intro": "Il y a $2 tâche{{PLURAL:$2||s}} incomplète{{PLURAL:$2||s}} ou [[Special:PendingTaskList|en cours]] pour achever l{{PLURAL:$1|’installation|a mise à jour}} de [https://www.semantic-mediawiki.org MediaWiki Sémantique]. Un administrateur ou utilisateur avec des droits suffisants peut l{{PLURAL:$2|’a|les a}}chever. Cela doit être fait avant d’ajouter des nouvelles données pour éviter les incohérences.", + "smw-install-incomplete-intro-note": "Ce message disparaîtra lorsque toutes les tâches auront été résolues.", + "smw-pendingtasks-intro-empty": "Aucune tâche n’a été classée comme en attente, incomplète ou en suspens en relation avec MediaWiki Sémantique.", + "smw-pendingtasks-intro": "Cette page fournit des informations sur les tâches qui ont été classées comme en attente, incomplètes ou exceptionnelle en relation avec Semantic MediaWiki.", + "smw-pendingtasks-setup-no-tasks-intro": "L’installation (ou la mise à jour) a été complétée, il n’y a actuellement aucune tâche en attente ou exceptionnelle.", + "smw-pendingtasks-tab-setup": "Installation", + "smw-updateentitycollation-incomplete": "Le paramètre [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] a été récemment modifié et nécessite que le script [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php] soit exécuté pour que les entités soient mises à jour et qu’elles contiennent les clés de tri correctes.", + "smw-updateentitycountmap-incomplete": "Le champ smw_countmap a été ajouté dans une version récente et nécessite que le script [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php] soit exécuté afin que les fonctions puissent accéder au contenu de ce champ.", + "smw-populatehashfield-incomplete": "Le remplissage du champ smw_hash a été sauté lors de l’installation. Le script [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] doit être exécuté.", + "smw-install-incomplete-populate-hash-field": "Le remplissage du champ smw_hash a été sauté lors de l’installation. Le script [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] doit être exécuté.", + "smw-install-incomplete-elasticstore-indexrebuild": "L’ElasticStore a été sélectionné en tant que [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore magasin par défaut], mais l’extension n’a pu trouver aucun enregistrement indiquant que le script [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] a bien été exécuté. Veuillez exécuter le script comme indiqué.", + "smw-elastic-rebuildelasticindex-run-incomplete": "L’ElasticStore a été sélectionné en tant que [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore magasin par défaut], mais l’extension n’a pu trouver aucun enregistrement indiquant que le script [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] a bien été exécuté. Veuillez exécuter le script comme indiqué.", + "smw-pendingtasks-setup-intro": "L{{PLURAL:$1|’installation|a mise à jour}} de MediaWiki Sémantique a classé les tâches suivantes comme [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade incomplètes] et un administrateur (ou un utilisateur ayant les droits suffisants) doit résoudre ces tâches avant que les utilisateurs ne continuent à créer ou modifier du contenu.", + "smw-pendingtasks-setup-tasks": "Tâches", + "smw-filter-count": "Nombre de filtres", + "smw-es-replication-check": "Vérification de la réplication (Elasticsearch)", + "smw-es-replication-error": "Problème de réplication d’Elasticsearch", + "smw-es-replication-file-ingest-error": "Problème d’ingestion de fichier", + "smw-es-replication-maintenance-mode": "Maintenance d’Elasticsearch", + "smw-es-replication-error-missing-id": "Le suivi de la réplication a trouvé que l’article « $1 » (identifiant : $2) manque sur le serveur Elasticsearch.", + "smw-es-replication-error-divergent-date": "Le suivi de la réplication a trouvé que pour l’article « $1 » (identifiant : $2), la date de modification montre une divergence.", + "smw-es-replication-error-divergent-date-short": "Les données de date suivantes ont été utilisées comme comparaison :", + "smw-es-replication-error-divergent-date-detail": "Date de modification référencée :\n* Elasticsearch : $1 \n* Base de données : $2", + "smw-es-replication-error-divergent-revision": "Le suivi de la réplication a trouvé que la révision associée pour l’article « $1 » (identifiant : $2) montre une divergence.", + "smw-es-replication-error-divergent-revision-short": "Les données de révision associée suivantes ont été utilisées à des fins de comparaison :", + "smw-es-replication-error-divergent-revision-detail": "Révisions associées référencées : \n* Elasticsearch : $1\n* SQLStore : $2", + "smw-es-replication-error-maintenance-mode": "La réplication d’Elasticsearch est actuellement restreinte car elle fonctionne en [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode mode de maintenance], les modifications récemment apportées aux entités et aux pages ne sont pas immédiatement visibles et les résultats de recherche peuvent contenir des informations obsolètes.", + "smw-es-replication-error-no-connection": "La surveillance de la réplication n’a pas pu effectuer de vérification car elle ne peut établir de connexion à la grappe Elasticsearch.", + "smw-es-replication-error-bad-request-exception": "Le gestionnaire de connexion d’Elasticsearch a levé une exception de mauvaise requête (« erreur HTTP de conflit 400 ») indiquant un problème persistant lors des requêtes de réplication et de recherche.", + "smw-es-replication-error-other-exception": "Le gestionnaire de connexion d’Elasticsearch a levé une exception : « $1 ».", + "smw-es-replication-error-suggestions": "Il est suggéré de modifier ou de purger la page pour supprimer la divergence. Si le problème persiste, vérifiez la grappe Elasticsearch elle-même (allocateur, exceptions, espace disque, etc.).", + "smw-es-replication-error-suggestions-maintenance-mode": "Il est suggéré de contacter l’administrateur du wiki pour vérifier si une [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild reconstruction d’index] est actuellement en cours ou si le refresh_interval (intervalle de rafraîchissement) n’a pas été réglé à la valeur par défaut attendue.", + "smw-es-replication-error-suggestions-no-connection": "Il est suggéré de contacter l’administrateur du wiki et de signaler le problème « pas de connexion ».", + "smw-es-replication-error-suggestions-exception": "Veuillez vérifier les journaux pour obtenir des informations sur l’état d’Elasticsearch et ses index, ainsi que les éventuels problèmes de mauvaise configuration.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "La surveillance de la réplication a trouvé qu’il manque une annotation de [[Property:File attachment|Fichier joint]] pour « $1 », ce qui indique que le moteur d’ingestion de fichiers n’a pas démarré ou n’est pas encore terminé.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "Veuillez vous assurer que la tâche d’[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion ingestion de fichier] est programmée et exécutée avant que l’annotation et l’index du fichier ne soient rendus disponibles.", + "smw-report": "Rapport", + "smw-legend": "Légende", + "smw-datavalue-constraint-schema-category-invalid-type": "Le schéma annoté « $1 » n’est pas valide pour une catégorie, il nécessite un type « $2 ».", + "smw-datavalue-constraint-schema-property-invalid-type": "Le schéma annoté « $1 » n’est pas valide pour une propriété, il nécessite un type « $2 ».", + "smw-entity-examiner-check": "Exécution {{PLURAL:$1|d’un examinateur|d’examinateurs}} en tâche de fond", + "smw-entity-examiner-indicator": "Panneau des problèmes d’entité", + "smw-entity-examiner-deferred-check-awaiting-response": "L’examinateur « $1 » attend actuellement une réponse du serveur.", + "smw-entity-examiner-deferred-elastic-replication": "Elastic", + "smw-entity-examiner-deferred-constraint-error": "Contrainte", + "smw-entity-examiner-associated-revision-mismatch": "Révision", + "smw-entity-examiner-deferred-fake": "Simulation", + "smw-entity-examiner-indicator-suggestions": "Lors de l’examen de l’entité, le{{PLURAL:$1||s}} problème{{PLURAL:$1||s}} suivant{{PLURAL:$1||s}} {{PLURAL:$1|a|ont}} été trouvé{{PLURAL:$1||s}}, il est conseillé de le{{PLURAL:$1||s}} examiner soigneusement et de prendre les actions appropriées.", + "smw-indicator-constraint-violation": "Contrainte{{PLURAL:$1||s}}", + "smw-indicator-revision-mismatch": "Révision", + "smw-indicator-revision-mismatch-error": "La vérification de la [https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner révision associée] a mis en évidence une incohérence entre la révision référencée dans MediaWiki et celle associée dans MediaWiki Sémantique pour cette entité.", + "smw-indicator-revision-mismatch-comment": "Une incohérence indique en général qu’un certain processus a interrompu l’opération de stockage dans MediaWiki Sémantique. Il est recommandé de vérifier les journaux du serveur et de rechercher les exceptions ou autres échecs.", + "smw-facetedsearch-intro-text": "La recherche facétique [https://www.semantic-mediawiki.org/wiki/Faceted_search Faceted Search] de Semantic MediaWiki fournit aux utilisateurs une interface simple pour réduire rapidement les résultats de requête d'une condition à l'aide de vues facéties créées à partir de propriétés et de catégories dépendantes.", + "smw-facetedsearch-intro-tips": "*Utiliser category:? , property:? , ou concept:? pour trouver les catégories, propriétés ou concepts disponibles pour créer un ensemble de conditions \n*Utilisez la syntaxe #ask pour décrire une condition (par exemple [[Category:Foo]] )\n* Utilisez « OU », « ET » ou d'autres expressions de requête pour créer des conditions complexes \n*Des expressions telles que in: ou phrase: peuvent être utilisées pour des correspondances en texte intégral ou des recherches non structurées, si l'option [https ://www.semantic-mediawiki.org/wiki/Query_engine Query Engine] prend en charge ces expressions", + "smw-facetedsearch-profile-label-default": "Profil par défaut", + "smw-facetedsearch-intro-tab-explore": "Explorer", + "smw-facetedsearch-intro-tab-search": "Rechercher", + "smw-facetedsearch-explore-intro": "Sélectionner une collection et commencez à naviguer.", + "smw-facetedsearch-profile-options": "Options de profil", + "smw-facetedsearch-size-options": "options de pagination", + "smw-facetedsearch-order-options": "Options de tri", + "smw-facetedsearch-format-options": "Options d’affichage", + "smw-facetedsearch-format-table": "Tableau", + "smw-facetedsearch-input-filter-placeholder": "Filtre…", + "smw-facetedsearch-no-filters": "Aucun filtre.", + "smw-facetedsearch-no-filter-range": "Pas de filtre ranger", + "smw-facetedsearch-no-output": "Pour le format « $1 », aucune sortie n'était disponible.", + "smw-facetedsearch-clear-filters": "Effacer {{PLURAL:$1|le filtre|les filtres}}", + "smw-search-placeholder": "Recherche en cours...", + "smw-listingcontinuesabbrev": "(suite)", + "smw-showingresults": "Affichage d’au maximum $1 résultat{{PLURAL:$1||s}} à partir du nº $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/frp.json b/mediawiki/extensions/SemanticMediaWiki/i18n/frp.json new file mode 100644 index 0000000..6ec221a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/frp.json @@ -0,0 +1,112 @@ +{ + "@metadata": { + "authors": [ + "Cedric31", + "ChrisPtDe" + ] + }, + "smw_viewasrdf": "Flux RDF", + "smw_finallistconjunct": " et", + "smw_concept_description": "Dèscripcion du concèpte « $1 »", + "version-semantic": "Èxtensions sèmantiques", + "smw_printername_count": "Comptar los rèsultats", + "smw_printername_csv": "èxportacion en CSV", + "smw_printername_dsv": "Èxportacion en DSV", + "smw_printername_debug": "Requéta d’èliminacion de les cofieries (por los èxpèrts)", + "smw_printername_embedded": "Entrebetar lo contegnu de les pâges", + "smw_printername_json": "èxportacion en JSON", + "smw_printername_list": "Lista", + "smw_printername_ol": "Ènumèracion", + "smw_printername_ul": "Dètaly", + "smw_printername_table": "Grelye", + "smw_printername_broadtable": "Trâbla lârge", + "smw_printername_template": "Modèlo", + "smw_printername_rdf": "Èxportacion RDF", + "smw_printername_category": "Catègorie", + "smw-paramdesc-link": "Montrar les valors coment lims", + "smw-paramdesc-sep": "Lo sèparator de les valors", + "smw-paramdesc-embedonly": "Pas fâre vêre les en-tétes", + "smw-paramdesc-rdfsyntax": "La sintaxa RDF a utilisar", + "smw-paramdesc-csv-sep": "Lo sèparator a utilisar", + "smw-paramdesc-dsv-separator": "Lo sèparator a utilisar", + "smw-paramdesc-dsv-filename": "Lo nom du fichiér DSV", + "smw-paramdesc-searchlabel": "Lo tèxto du lim de vers los rèsultats", + "smw_iq_moreresults": "… ôtros rèsultats", + "smw_true_words": "veré,v,ouè,o", + "smw_false_words": "fôx,f,nan,n", + "smw_nofloat": "« $1 » est pas un nombro.", + "smw_novalues": "Gins de valor spècefiâ.", + "smw_type_header": "Propriètâts de tipo « $1 »", + "smw_typearticlecount": "Fâre vêre l{{PLURAL:$1|a propriètât qu’utilise|es $1 propriètâts qu’utilisont}} ceti tipo.", + "smw_attribute_header": "Pâges qu’utilisont la propriètât « $1 »", + "smw_attributearticlecount": "Fâre vêre l{{PLURAL:$1|a pâge qu’utilise|es $1 pâges qu’utilisont}} ceta propriètât.", + "exportrdf": "Èxportar des pâges en RDF", + "smw_exportrdf_submit": "Èxportar", + "uriresolver": "Rèsolvior d’URI", + "properties": "Propriètâts", + "smw-categories": "Catègories", + "smw_property_template": "$1 du tipo $2 ($3)", + "unusedproperties": "Propriètâts inutilisâs", + "smw-unusedproperty-template": "$1 de tipo $2", + "wantedproperties": "Propriètâts demandâs", + "smw-wantedproperty-template": "$1 ($2 usâjo{{PLURAL:$2||s}})", + "smw_purge": "Rafrèchir", + "types": "Tipos", + "ask": "Rechèrche sèmantica", + "smw_ask_sortby": "Triyér per colones (u chouèx)", + "smw_ask_ascorder": "Crèssent", + "smw_ask_descorder": "Dècrèssent", + "smw_ask_submit": "Trovar des rèsultats", + "smw_ask_editquery": "Changiér la requéta", + "smw_add_sortcondition": "[Apondre les condicions de tri]", + "smw_ask_hidequery": "Cachiér la requéta", + "smw_ask_help": "Éde a la requéta", + "smw_ask_queryhead": "Requéta", + "smw_ask_printhead": "Balyês de ples a fâre vêre", + "smw_ask_printdesc": "(apondre yon nom de propriètât per legne)", + "smw_ask_format_as": "Formatar en :", + "smw_ask_defaultformat": "per dèfôt", + "smw_ask_otheroptions": "Ôtros chouèx", + "smw_ask_show_embed": "Fâre vêre lo code entrebetâ", + "smw_ask_hide_embed": "Cachiér lo code entrebetâ", + "smw-ask-delete": "[Suprimar]", + "searchbyproperty": "Rechèrchiér per propriètât", + "smw_sbv_property": "Propriètât :", + "smw_sbv_value": "Valor :", + "smw_sbv_submit": "Trovar des rèsultats", + "browse": "Navegar lo vouiqui", + "smw_browselink": "Navegar les propriètâts", + "smw_browse_go": "Emmodar", + "smw_browse_show_incoming": "fâre vêre les propriètâts que pouentont ique", + "smw_browse_hide_incoming": "cachiér les propriètâts que pouentont ique", + "smw_browse_no_outgoing": "Ceta pâge at gins de propriètât.", + "smw_browse_no_incoming": "Niona propriètât pouente vers ceta pâge.", + "smw_inverse_label_default": "$1 de", + "smw_inverse_label_property": "Lambél de la propriètât a l’envèrsa", + "pageproperty": "Rechèrche dens les propriètâts de la pâge", + "smw_pp_from": "De la pâge", + "smw_pp_type": "Propriètât", + "smw_pp_submit": "Trovar des rèsultats", + "smw_result_prev": "Devant", + "smw_result_next": "Aprés", + "smw_result_results": "Rèsultats", + "smw_result_noresults": "Dèsolâ, gins de rèsultat.", + "smw_smwadmin_return": "Tornar a $1", + "smw-admin-dbbutton": "Inicialisar ou ben betar a nivél les trâbles", + "smw-admin-announce": "Anonciér voutron vouiqui", + "smw_smwadmin_datarefresh": "Rèparacion et misa a nivél de les balyês", + "smw_smwadmin_datarefreshbutton": "Comenciér la misa a jorn de les balyês", + "smw_smwadmin_datarefreshstop": "Arrètar ceta misa a jorn", + "smw_smwadmin_datarefreshstopconfirm": "Ouè, je nen su de sûr.", + "smw-admin-support": "Avêr d’assistance", + "smw_adminlinks_datastructure": "Structura de les balyês", + "smw_adminlinks_displayingdata": "Visualisacion de les balyês", + "smw_adminlinks_inlinequerieshelp": "Éde sur les requétes entrebetâs", + "smw-createproperty-isproperty": "Ceta propriètât est de tipo « $1 ».", + "smw-info-par-message": "Mèssâjo a fâre vêre.", + "smw_concept_header": "Pâges du concèpte « $1 »", + "smw_conceptarticlecount": "Fâre vêre l{{PLURAL:$1|a pâge que repôse|es $1 pâges que repôsont}} sur cél concèpte.", + "smw-livepreview-loading": "Chargement...", + "smw-listingcontinuesabbrev": "(suita)", + "smw-showingresults": "Afichâjo ce-desot de tant qu’a $1 rèsultat{{PLURAL:$1||s}} dês lo nº $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/frr.json b/mediawiki/extensions/SemanticMediaWiki/i18n/frr.json new file mode 100644 index 0000000..8503ae4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/frr.json @@ -0,0 +1,15 @@ +{ + "@metadata": { + "authors": [ + "Murma174" + ] + }, + "smw-categories": "Kategoriin", + "smw_purge": "Nei loose", + "smw_ask_otheroptions": "Muar ütjwool", + "browse": "Browse wiki", + "smw-livepreview-loading": "Loose ...", + "smw-search-show": "Wise", + "smw-listingcontinuesabbrev": "(gongt widjer)", + "smw-showingresults": "Heer {{PLURAL:$1|as '''1''' resultaat|san '''$1''' resultaaten}}, jo began mä numer '''$2.'''" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/fur.json b/mediawiki/extensions/SemanticMediaWiki/i18n/fur.json new file mode 100644 index 0000000..8bb0b82 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/fur.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Tocaibon" + ] + }, + "smw-categories": "Categoriis", + "browse": "Esplore il sît", + "smw-livepreview-loading": "Daûr a cjamâ…", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "Ca sot {{PLURAL:$1|al è fin a '''1''' risultât|a son fin a '''$1''' risultâts}} scomençant dal numar '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/fy.json b/mediawiki/extensions/SemanticMediaWiki/i18n/fy.json new file mode 100644 index 0000000..f5c5f0b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/fy.json @@ -0,0 +1,76 @@ +{ + "@metadata": { + "authors": [ + "PiefPafPier", + "Pyt", + "Robin van der Vliet", + "Robin0van0der0vliet" + ] + }, + "smw-error": "Flater", + "smw-upgrade-release": "Utjefte", + "smw-upgrade-error-title": "Flater » Semantyske MediaWiki", + "smw-upgrade-error-why-title": "Wêrom sjoch ik dizze side?", + "smw-extensionload-error-why-title": "Wêrom sjoch ik dizze side?", + "smw-upgrade-maintenance-why-title": "Wêrom sjoch ik dizze side?", + "smw_finallistconjunct": "en", + "smw-factbox-head": "... mear oer \"$1\"", + "smw_printername_list": "List", + "smw_printername_ol": "Nûmere list", + "smw_printername_ul": "Puntelist", + "smw_printername_table": "Tabel", + "smw_printername_template": "Berjocht", + "smw_printername_templatefile": "Berjochtbestân", + "smw_printername_category": "Kategory", + "validator-type-class-SMWParamSource": "tekst", + "smw-paramdesc-export": "Eksportopsje", + "smw_iq_moreresults": "... fierdere resultaten", + "smw-propertylist-redirect-header": "Synonimen", + "specialpages-group-smw_group-maintenance": "Underhâld", + "smw_exportrdf_submit": "Eksportearje", + "properties": "Eigenskippen", + "smw-categories": "Kategoryen", + "smw-special-property-searchform-options": "Opsjes", + "smw-special-wantedproperties-filter-label": "Filter:", + "smw_purge": "Fernije", + "ask": "Semantysk sykje", + "smw_ask_defaultformat": "standert", + "smw_ask_otheroptions": "Oare opsjes", + "smw-ask-delete": "Fuortsmite", + "smw-ask-options": "Opsjes", + "smw-ask-parameters": "Parameters", + "smw-ask-search": "Sykjen", + "smw-ask-empty": "Alle ynfier wiskje", + "smw_sbv_property": "Eigenskip:", + "smw_sbv_value": "Wearde:", + "browse": "Eigenskippen trochsjen", + "smw_browselink": "Eigenskippen trochsjen", + "smw_pp_type": "Eigenskip:", + "smw_result_prev": "Foarige", + "smw_result_next": "Folgjende", + "prefs-smw": "Semantyske MediaWiki", + "prefs-general-options": "Algemiene opsjes", + "prefs-ask-options": "Semantysk sykjen", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantyske MediaWiki] en byhearrende útwreidings meitsje yndividuële foarkarren mooglik foar in groep fan selektearre fasiliteiten en funksjes. In list fan yndividuële ynstellings mei har beskriuwing en eigenskippen is beskikber op de neikommende [https://www.semantic-mediawiki.org/wiki/Help:User_preferences helpside].", + "smw-prefs-ask-options-tooltip-display": "Parametertekst werjaan as ynformative wurktip op 'e bysûndere side mei de #ask [[Special:Ask|sykopdrachtmakker]].", + "smw-prefs-general-options-time-correction": "Tiidkorreksje foar bysûndere siden ynskeakelje mei it ynstelde lokale [[Special:Preferences#mw-prefsection-rendering|tiidsferskil]]", + "smw-prefs-general-options-jobqueue-watchlist": "De folchlist fan wachtrigetaken yn myn persoanlike wurkbalke werjaan", + "smw-prefs-help-general-options-jobqueue-watchlist": "Ynskeakelle wurdt der in [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist list fan] net-ôfdiene selektearre opdrachten werjûn, tegearre mei de rûsde grutte fan har wachtrige.", + "smw-prefs-general-options-disable-editpage-info": "De ynliedende tekst op 'e bewurkingsside útskeakelje", + "smw-prefs-general-options-disable-search-info": "De ynformaasje foar syntaksstipe op de standert sykside útskeakelje", + "smw-prefs-general-options-suggester-textinput": "Ynfierhelper foar semantyske entiteiten ynskeakelje", + "smw-prefs-help-general-options-suggester-textinput": "Ynskeakelle kin der in [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance ynfierhelper] brûkt wurde, om eigenskippen, konsepten en kategoryen te finen yn in ynfierkontekst.", + "smw-ui-tooltip-title-property": "Eigenskip", + "smw-ui-tooltip-title-warning": "Warskôging", + "smw-ui-tooltip-title-legend": "Leginda", + "smw-livepreview-loading": "Laden ...", + "smw-personal-jobqueue-watchlist": "Folchlist fan wachtrigetaken", + "smw-concept-tab-list": "List", + "smw-concept-tab-errors": "Flaters", + "smw-ask-tab-result": "Resultaat", + "smw-ask-tab-code": "Koade", + "smw-pendingtasks-setup-tasks": "Taken", + "smw-legend": "Leginda", + "smw-listingcontinuesabbrev": "(ferfolch)", + "smw-showingresults": "Hjirûnder {{PLURAL:$1|1 resultaat|$1 resultaten}}, werjûn fan nû. $2 ôf." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ga.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ga.json new file mode 100644 index 0000000..7a972cd --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ga.json @@ -0,0 +1,31 @@ +{ + "@metadata": { + "authors": [ + "Alison", + "Kscanne", + "MinecraftAustralia", + "Nmacu", + "පසිඳු කාවින්ද" + ] + }, + "smw_printername_category": "Catagóir", + "smw-paramdesc-link": "Taispeáin luachanna mar naisc", + "smw_typearticlecount": "Ag taispeáint $1 leathanach ag baint úsáide as an tréith seo.", + "smw_attributearticlecount": "Ag taispeáint $1 leathanach ag baint úsáide as an tréith seo.", + "smw-propertylist-count": "Ag taispeáint $1 aonán atá gaolta.", + "smw-propertylist-count-more-available": "Ag taispeáint $1 aonán atá gaolta (tuilleadh ar fáil).", + "smw_exportrdf_submit": "Easportáil", + "smw-categories": "Catagóirí", + "smw_ask_defaultformat": "réamhshocrú", + "smw_ask_show_embed": "Taispeáin cód leabaithe", + "smw_sbv_property": "Airí", + "browse": "Brabhsáil an vicí", + "smw_browse_go": "Gabh", + "smw_browse_show_incoming": "taispeáin tréithe a nascann anseo", + "smw_pp_type": "Airí", + "smw_result_prev": "Siar", + "smw_result_next": "Ar aghaidh", + "smw-livepreview-loading": "Ag lódáil…", + "smw-listingcontinuesabbrev": "ar lean.", + "smw-showingresults": "Ag taispeáint thíos {{PLURAL:$1|'''toradh amháin'''|'''$1''' torthaí}}, ag tosú le #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/gan-hans.json b/mediawiki/extensions/SemanticMediaWiki/i18n/gan-hans.json new file mode 100644 index 0000000..f4fb2c7 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/gan-hans.json @@ -0,0 +1,9 @@ +{ + "@metadata": { + "authors": [] + }, + "smw-categories": "页面分类", + "smw-livepreview-loading": "加载中…", + "smw-listingcontinuesabbrev": "续", + "smw-showingresults": "底下从第$2条显示起先𠮶$1条结果:" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/gan-hant.json b/mediawiki/extensions/SemanticMediaWiki/i18n/gan-hant.json new file mode 100644 index 0000000..691f810 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/gan-hant.json @@ -0,0 +1,9 @@ +{ + "@metadata": { + "authors": [] + }, + "smw-categories": "頁面分類", + "smw-livepreview-loading": "載入中…", + "smw-listingcontinuesabbrev": "續", + "smw-showingresults": "底下從第$2條顯示起先嗰$1條結果:" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/gd.json b/mediawiki/extensions/SemanticMediaWiki/i18n/gd.json new file mode 100644 index 0000000..f1e1378 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/gd.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Akerbeltz", + "GunChleoc" + ] + }, + "smw-categories": "Roinnean-seòrsa", + "browse": "Brabhsaich an uicidh", + "smw-listingcontinuesabbrev": "(an corr)", + "smw-showingresults": "A' sealltainn suas ri $1 {{PLURAL:$1|toradh|thoradh|toraidhean|toradh}} gu h-ìosal a' tòiseachadh le àireamh $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/gl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/gl.json new file mode 100644 index 0000000..3df88f7 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/gl.json @@ -0,0 +1,776 @@ +{ + "@metadata": { + "authors": [ + "ArenaL5", + "Athena in Wonderland", + "Banjo", + "Elisardojm", + "Iváns", + "Macofe", + "Maria zaos", + "McDutchie", + "Nemo bis", + "Prevert", + "Toliño", + "Xabier Cid", + "Xosecalvo" + ] + }, + "smw-desc": "Fai o seu wiki máis accesible; para máquinas ''e'' humanos ([https://www.semantic-mediawiki.org/wiki/Help:User_manual documentación en liña])", + "smw-error": "Erro", + "smw-upgrade-error-title": "Erro » MediaWiki Semántico", + "smw-semantics-not-enabled": "A funcionalidade de MediaWiki Semántica non está activada neste wiki.", + "smw_viewasrdf": "Fonte de novas RDF", + "smw_finallistconjunct": " e", + "smw-factbox-head": "... máis sobre \"$1\"", + "smw-factbox-facts": "Feitos", + "smw-factbox-facts-help": "Amosa as declaracións e feitos creados por un usuario", + "smw-factbox-facts-derived": "Feitos derivados", + "smw-factbox-facts-derived-help": "Amosa os feitos que foron derivados de regras ou coa axuda doutras técnicas de razoamento", + "smw_isspecprop": "Esta propiedade é especial neste wiki.", + "smw-concept-cache-header": "Uso da caché", + "smw-concept-cache-count": "A [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count caché de conceptos] contén {{PLURAL:$1|'''unha''' entidade|'''$1''' entidades}} ($2).", + "smw-concept-no-cache": "Caché non dispoñible.", + "smw_concept_description": "Descrición do concepto \"$1\"", + "smw_no_concept_namespace": "O conceptos só poden ser definidos nas páxinas que están no espazo de nomes Concepto:.", + "smw_multiple_concepts": "Cada páxina de conceptos só pode conter unha definición dun concepto.", + "smw_concept_cache_miss": "O concepto \"$1\" non pode ser usado desde que a configuración do wiki o require para calcular a desconexión. Se o problema non se resolve en breve, pregúntelle ao administrador do wiki para que o concepto poida estar dispoñible.", + "smw_noinvannot": "Non se poden asignar os valores para inverter as propiedades.", + "version-semantic": "Extensións semánticas", + "smw_baduri": "Sentímolo, os enderezos URI da forma \"$1\" non están permitidos.", + "smw_printername_count": "Contador de resultados", + "smw_printername_csv": "Exportación en CSV", + "smw_printername_dsv": "Exportación en DSV", + "smw_printername_debug": "Depurar a pescuda (para expertos)", + "smw_printername_embedded": "Contidos incrustados na páxina", + "smw_printername_json": "Exportación en JSON", + "smw_printername_list": "Lista", + "smw_printername_plainlist": "Lista simple", + "smw_printername_ol": "Lista numerada", + "smw_printername_ul": "Lista con asteriscos", + "smw_printername_table": "Táboa", + "smw_printername_broadtable": "Táboa ampla", + "smw_printername_template": "Modelo", + "smw_printername_templatefile": "Ficheiro de modelo", + "smw_printername_rdf": "Exportación en RDF", + "smw_printername_category": "Categoría", + "validator-type-class-SMWParamSource": "texto", + "smw-paramdesc-limit": "O número máximo de resultados a devolver", + "smw-paramdesc-offset": "O desprazamento do primeiro resultado", + "smw-paramdesc-headers": "Amosar as cabeceiras/os nomes de propiedade", + "smw-paramdesc-mainlabel": "A lapela para dar nome á páxina principal", + "smw-paramdesc-link": "Amosar os valores como ligazóns", + "smw-paramdesc-intro": "O texto a amosar antes dos resultados da pescuda, se houbese algún", + "smw-paramdesc-outro": "O texto a amosar despois dos resultados da pescuda, se houbese algún", + "smw-paramdesc-default": "O texto a amosar se non hai resultados para a pescuda", + "smw-paramdesc-sep": "O separador entre resultados", + "smw-paramdesc-propsep": "O separador entre as propiedades dunha entrada de resultado", + "smw-paramdesc-valuesep": "O separador entre entre os valores para unha propiedade de resultado", + "smw-paramdesc-showsep": "Amosar o separador ao comezo do ficheiro CSV (\"sep=\")", + "smw-paramdesc-distribution": "No canto de amosar tódolos valores, contar as súas ocorrencias e amosalas.", + "smw-paramdesc-distributionsort": "Ordenar a distribución de valores por número de ocorrencias.", + "smw-paramdesc-distributionlimit": "Limitar a distribución de valores á contaxe dalgúns valores soamente.", + "smw-paramdesc-aggregation": "Especifique con que debe relacionarse o grupo", + "smw-paramdesc-template": "O nome dun modelo co que amosar as impresións", + "smw-paramdesc-columns": "O número de columnas nas que amosar os resultados", + "smw-paramdesc-userparam": "O valor pasado en cada chamada de modelo, se se empregase algún modelo", + "smw-paramdesc-class": "Unha clase adicional de CSS a definir para a lista", + "smw-paramdesc-introtemplate": "O nome dun modelo a amosar antes dos resultados da pescuda, se houbese algún", + "smw-paramdesc-outrotemplate": "O nome dun modelo a amosar despois dos resultados da pescuda, se houbese algún", + "smw-paramdesc-embedformat": "A etiqueta HTML utilizada para definir as cabeceiras", + "smw-paramdesc-embedonly": "Non amosar as cabeceiras", + "smw-paramdesc-table-class": "Unha clase CSS adicional que establecer para a táboa", + "smw-paramdesc-table-transpose": "Amosar as cabeceiras de táboa verticalmente e os resultados horizontalmente", + "smw-paramdesc-rdfsyntax": "A sintaxe de RDF a usar", + "smw-paramdesc-csv-sep": "Especifica un separador de columnas", + "smw-paramdesc-csv-valuesep": "Especifica un separador de valores", + "smw-paramdesc-csv-merge": "Fusionar filas e valores de columnas co mesmo identificador de suxeito (alias primeira columna)", + "smw-paramdesc-csv-bom": "Engadir un BOM (carácter para indicar a «endianness») na parte superior do ficheiro de saída", + "smw-paramdesc-dsv-separator": "O separador a empregar", + "smw-paramdesc-dsv-filename": "O nome para o ficheiro DSV", + "smw-paramdesc-filename": "O nome para o ficheiro de saída", + "smw-smwdoc-description": "Amosa unha táboa de todos os parámetros que se poden empregar para un formato de resultados especificado xunto aos valores por defecto e descricións.", + "smw-smwdoc-default-no-parameter-list": "Este formato de resultado non proporciona parámetros específicos de formato.", + "smw-smwdoc-par-format": "O formato dos resultados do que amosar a documentación do parámetro.", + "smw-smwdoc-par-parameters": "Os parámetros que amosar. \"specific\" para aqueles engadidos polo formato, \"base\" para aqueles dispoñibles en tódolos formatos e \"all\" para ambos.", + "smw-paramdesc-sort": "Propiedade a partir da que ordenar a pescuda", + "smw-paramdesc-order": "Orde da ordenación da pescuda", + "smw-paramdesc-searchlabel": "Texto para continuar a procura", + "smw-paramdesc-named_args": "Dalle nome ós argumentos pasados ó modelo", + "smw-paramdesc-template-arguments": "Fixa a maneira na que se pasan os argumentos nomeados ó modelo", + "smw-paramdesc-import-annotation": "Os datos suplementarios anotados serán copiados durante a análise dun suxeito", + "smw-paramdesc-export": "Opción de exportación", + "smw-paramdesc-prettyprint": "Unha saída cun formato xeitoso que amosa sangrías e liñas novas adicionais", + "smw-paramdesc-json-unescape": "Saída para conter barras sen codificar e caracteres Unicode multibytes", + "smw-paramdesc-json-type": "Tipo de serialización", + "smw-paramdesc-source": "Fonte alternativa de pescuda", + "smw-paramdesc-jsonsyntax": "Sintaxe JSON a utilizar", + "smw-printername-feed": "Fonte de novas RSS e Atom", + "smw-paramdesc-feedtype": "Tipo de fonte de novas", + "smw-paramdesc-feedtitle": "O texto a usar como título da fonte de novas", + "smw-paramdesc-feeddescription": "O texto a usar como descrición da fonte de novas", + "smw-paramdesc-feedpagecontent": "Contido da páxina a amosar coa fonte de novas", + "smw-label-feed-description": "Fonte de novas $1 $2", + "smw_iq_disabled": "As preguntas semánticas están deshabilitadas neste wiki.", + "smw_iq_moreresults": "… máis resultados", + "smw_parseerror": "O valor dado non foi entendido.", + "smw_decseparator": ",", + "smw_kiloseparator": ".", + "smw_notitle": "\"$1\" non pode usarse como nome de páxina neste wiki.", + "smw_noproperty": "\"$1\" non pode usarse como nome de propiedade neste wiki.", + "smw_wrong_namespace": "Aquí só están permitidas as páxinas no espazo de nomes \"$1\".", + "smw_manytypes": "Máis dun tipo definido para a propiedade.", + "smw_emptystring": "As cordas baleiras non están aceptadas.", + "smw_notinenum": "\"$1\" non está na lista de [[Property:Allows value|valores permitidos]] ($2) para a propiedade \"$3\".", + "smw-datavalue-constraint-error-allows-value-list": "\"$1\" non está na lista de [[Property:Allows value|valores permitidos]] ($2) para a propiedade \"$3\".", + "smw-datavalue-constraint-error-allows-value-range": "\"$1\" non está no intervalo de \"$2\" especificado pola restrición [[Property:Allows value|permite valor]] para a propiedade \"$3\".", + "smw_noboolean": "\"$1\" non é recoñecido como un valor booleano (verdadeiro/falso).", + "smw_true_words": "verdadeiro,v,si,s", + "smw_false_words": "falso,f,non,n", + "smw_nofloat": "\"$1\" non é un número.", + "smw_infinite": "Os números tan longos como \"$1\" non están soportados.", + "smw_unitnotallowed": "\"$1\" non está declarada como unha unidade de medida válida para esta propiedade.", + "smw_nounitsdeclared": "Non hai unidades de medida declaradas para esta propiedade.", + "smw_novalues": "Non se especificou ningún valor.", + "smw_nodatetime": "A data \"$1\" non foi entendida.", + "smw_toomanyclosing": "Parece que hai demasiados acontecementos de \"$1\" na pregunta.", + "smw_noclosingbrackets": "Algún uso de \"[[\" na súa pregunta non foi pechado polo seu \"]]\" correspondente.", + "smw_misplacedsymbol": "O símbolo \"$1\" foi usado nun lugar no que non era útil.", + "smw_unexpectedpart": "A parte \"$1\" da pregunta non foi entendida.\nPode que os resultados non sexan os agardados.", + "smw_emptysubquery": "Algunha subcuestión non ten unha condición válida.", + "smw_misplacedsubquery": "Algunha subcuestión foi usada nun lugar onde non están permitidas.", + "smw_valuesubquery": "As subcuestións non están soportadas para os valores da propiedade \"$1\".", + "smw_badqueryatom": "Unha parte \"[[…]]\" da pregunta non foi entendida.", + "smw_propvalueproblem": "O valor da propiedade \"$1\" non foi entendido.", + "smw_noqueryfeature": "Algunha característica da pregunta non está soportada neste wiki, polo que unha parte foi excluída ($1).", + "smw_noconjunctions": "As conxuncións nas preguntas non están soportadas neste wiki, polo que unha parte foi excluída ($1).", + "smw_nodisjunctions": "Non están soportadas as disxuncións nas preguntas neste wiki e parte desta foi ignorada ($1).", + "smw_querytoolarge": "{{PLURAL:$2|A seguinte condición da consulta $1 non pode ser considerada|As seguintes $2 condicións da consulta $1 non poden ser consideradas}} debido ás restricións do wiki para o tamaño ou profundidade das consultas.", + "smw_notemplategiven": "Por favor, proporcione un valor para o parámetro “modelo” do formato desta pregunta para poder funcionar.", + "smw_db_sparqlqueryproblem": "Non se puideron obter os resultado da pescuda da base de datos SPARQL. Este erro pode ser temporal ou indicar un erro no programa da base de datos.", + "smw_db_sparqlqueryincomplete": "Resultou demasiado difícil responder á pescuda e cancelouse. É probable que falten algúns resultados. Se fose posible, intente facer unha consulta máis sinxela.", + "smw_type_header": "Propiedades do tipo \"$1\"", + "smw_typearticlecount": "Amosando $1 {{PLURAL:$1|propiedade|propiedades}} que {{PLURAL:$1|usa|usan}} este tipo.", + "smw_attribute_header": "Páxinas que usan a propiedade \"$1\"", + "smw_attributearticlecount": "Amosando $1 {{PLURAL:$1|páxina|páxinas}} que {{PLURAL:$1|usa|usan}} esta propiedade.", + "smw-propertylist-subproperty-header": "Subpropiedades", + "smw-propertylist-redirect-header": "Sinónimos", + "smw-propertylist-error-header": "Páxinas con atribucións incorrectas", + "smw-propertylist-count": "{{PLURAL:$1|Móstrase $1 entidade relacionada|Móstranse $1 entidades relacionadas}}.", + "smw-propertylist-count-with-restricted-note": "{{PLURAL:$1|Móstrase a $1 entidade relacionada|Móstranse as $1 entidades relacionadas}} (hai máis dispoñibles pero a visualización está restrinxida a \"$2\").", + "smw-propertylist-count-more-available": "Amosando $1 {{PLURAL:$1|entidade asociada|entidades asociadas}} (hai máis dispoñibles).", + "exportrdf": "Exportar páxinas a RDF", + "smw_exportrdf_docu": "Esta páxina permítelle obter datos dunha páxina en formato RDF.\nPara exportar páxinas, insira os títulos na caixa de embaixo (un título por liña).", + "smw_exportrdf_recursive": "Exportar igualmente todas as páxinas relacionadas.\nDéase conta de que o resultado pode ser longo!", + "smw_exportrdf_backlinks": "Exportar tamén todas as páxinas que se refiren ás páxinas exportadas.\nXera un RDF que se pode navegar.", + "smw_exportrdf_lastdate": "Non exportar páxina que non tiveron cambios desde a data dada.", + "smw_exportrdf_submit": "Exportar", + "uriresolver": "Solucionador de URI", + "properties": "Propiedades", + "smw-categories": "Categorías", + "smw_properties_docu": "Este wiki usa as seguintes propiedades.", + "smw_property_template": "\"$1\" de tipo \"$2\" ($3 {{PLURAL:$3|uso|usos}})", + "smw_propertylackspage": "Todas as propiedades deberían estar descritas nunha páxina!", + "smw_propertylackstype": "Non foi especificado ningún tipo para esta propiedade (asúmese o tipo \"$1\" polo de agora).", + "smw_propertyhardlyused": "Esta propiedade apenas ten uso neste wiki!", + "smw-property-name-invalid": "Non se pode utilizar a propiedade \"$1\" (nome de propiedade non válido).", + "smw-property-name-reserved": "«$1» marcouse como nome reservado e, polo tanto, non debe utilizarse como propiedade. É posible que esta [https://www.semantic-mediawiki.org/wiki/Help:Property_naming páxina de axuda] inclúa información sobre o motivo polo que este nome se reservou.", + "smw-sp-property-searchform": "Amosar as propiedades que conteñan:", + "smw-sp-property-searchform-inputinfo": "A entrada distingue entre maiúsculas e minúsculas ao utilizala para filtrar; só se amosan as propiedades que coinciden coa condición.", + "smw-special-property-searchform": "Amosar as propiedades que conteñenː", + "smw-special-property-searchform-inputinfo": "A entrada distingue entre maiúsculas e minúsculas ao utilizala para filtrar; só se amosan as propiedades que coinciden coa condición.", + "smw-special-property-searchform-options": "Opcións", + "smw-special-wantedproperties-filter-label": "Filtro:", + "smw-special-wantedproperties-filter-none": "Ningún", + "smw-special-wantedproperties-filter-unapproved": "Sen aprobar", + "smw-special-wantedproperties-filter-unapproved-desc": "Opción de filtro usado en conexión co módulo de autoridade.", + "concepts": "Conceptos", + "smw-special-concept-docu": "Un [https://www.semantic-mediawiki.org/wiki/Help:Concepts concepto] pódese ver como unha \"categoría dinámica\", é dicir, como unha colección de páxinas que non están creadas manualmente, pero que son computadas por Semantic MediaWiki desde a descrición dunha pescuda proporcionada.", + "smw-special-concept-header": "Lista de conceptos", + "smw-special-concept-count": "{{PLURAL:$1|Está listado o seguinte concepto|Están listados os seguintes $1 conceptos}}.", + "smw-special-concept-empty": "Non se atopou concepto ningún.", + "unusedproperties": "Propiedades non usadas", + "smw-unusedproperties-docu": "Esta páxina lista [https://www.semantic-mediawiki.org/wiki/Unused_properties propriedades non usada] que foron declaradas, aínda que ningunha páxina as utiliza. Para unha visión diferenciada, consulte as páxinas especiais con [[Special:Properties|tódalas propriedades]] ou coas [[Special:WantedProperties|propriedades solicitadas]].", + "smw-unusedproperty-template": "\"$1\" de tipo \"$2\"", + "wantedproperties": "Propiedades requiridas", + "smw-wantedproperties-docu": "Esta páxina lista [https://www.semantic-mediawiki.org/wiki/Wanted_properties propiedades solicitadas] que son utilizadas na wiki, pero que non posúen unha páxina describíndoas. Para unha visión diferenciada, consulte as páxinas especiais con [[Special:Properties|tódalas propiedades]] ou coas [[Special:UnusedProperties|propiedades non utilizadas]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|uso|usos}})", + "smw-special-wantedproperties-docu": "Esta páxina lista [https://www.semantic-mediawiki.org/wiki/Wanted_properties propiedades solicitadas] que son utilizadas na wiki, pero que non posúen unha páxina describíndoas. Para unha visión diferenciada, consulte as páxinas especiais con [[Special:Properties|tódalas propiedades]] ou coas [[Special:UnusedProperties|propiedades non utilizadas]].", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|uso|usos}})", + "smw_purge": "Refrescar", + "smw-purge-failed": "Fallou o refresco", + "types": "Tipos", + "smw_types_docu": "Lista dos [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes tipos de datos dispoñibles] con cada [https://www.semantic-mediawiki.org/wiki/Help:Datatype tipo] representando un conxunto único de atributos para describir un valor en termos características de almacenamento e visualización que son heredadas nunha propiedade asignada.", + "smw-special-types-no-such-type": "\"$1\" é descoñecido ou non foi especificado como tipo de datos válido.", + "smw-statistics": "Estatísticas semánticas", + "smw-statistics-property-instance": "{{PLURAL:$1|Valor|Valores}} de propiedade (total)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Propiedade|Propiedades}}]] (total)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Propiedade|Propiedades}} (total)", + "smw-statistics-property-used": "{{PLURAL:$1|Propiedade|Propiedades}} (utilizadas con polo menos un valor)", + "smw-statistics-property-page": "{{PLURAL:$1|Propiedade|Propiedades}} ({{PLURAL:$1|rexistrada|rexistradas}} cunha páxina)", + "smw-statistics-property-type": "{{PLURAL:$1|Propiedade|Propiedades}} ({{PLURAL:$1|asociada|asociadas}} a un tipo de datos)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Consulta|Consultas}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Pescuda|Pescudas}}]]", + "smw-statistics-query-size": "Tamaño da pescuda", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Concepto|Conceptos}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Concepto|Conceptos}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Subobxecto|Subobxectos}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Subobxecto|Subobxectos}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Tipo|Tipos}} de datos]]", + "smw-statistics-error-count": "{{PLURAL:$1|Valor de propiedade|Valores de propiedade}}\n([[Special:ProcessingErrorList|{{PLURAL:$1|anotación incorrecta|anotacións incorrectas}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Valor|Valores}} de propiedade ({{PLURAL:$1|anotación incorrecta|anotacións incorrectas}})", + "smw-statistics-delete-count": "{{PLURAL:$1|Entidade obsoleta|Entidades obsoletas}} (marcada para borrado)", + "smw_uri_doc": "O solucionador de URI pon en práctica o [$1 descubrimento da ETIQUETA de W3C en httpRange-14].\nVixía que os humanos non entren en sitios web.", + "ask": "Procura semántica", + "smw-ask-help": "Esta sección contén algunhas ligazóns para axudar a explicar como utilizar a sintaxe #ask.\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selección de páxinas] describe como seleccionar páxinas e construír condicións.\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Search_operators Operadores de procura] enumera os operadores de procura dispoñibles, incluídos os de consulta de intervalo e de caracteres comodíns.\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Mostra de información] expón o uso das declaracións de saída e as opcións de formatado.", + "smw_ask_sortby": "Ordenar por columnas (opcional)", + "smw_ask_ascorder": "Ascendente", + "smw_ask_descorder": "Descendente", + "smw-ask-order-rand": "Ao chou", + "smw_ask_submit": "Atopar os resultados", + "smw_ask_editquery": "Editar a pregunta", + "smw_add_sortcondition": "[Engadir unha condición de ordenación]", + "smw-ask-sort-add-action": "Engadir condición de ordenación", + "smw_ask_hidequery": "Agochar a pescuda (vista compacta)", + "smw_ask_help": "Axuda sobre as pescudas", + "smw_ask_queryhead": "Condición", + "smw_ask_printhead": "Selección dos datos a imprimir", + "smw_ask_printdesc": "(engada un nome de propiedade por liña)", + "smw_ask_format_as": "Formato de:", + "smw_ask_defaultformat": "predeterminado", + "smw_ask_otheroptions": "Outras opcións", + "smw-ask-otheroptions-info": "Esta sección contén opcións que alteran os formatos de saída. As descricións dos parámetros pódense consultar pasando o rato por riba delas.", + "smw-ask-otheroptions-collapsed-info": "Use a icona do signo máis para ollar todas as opcións dispoñibles", + "smw_ask_show_embed": "Amosar o código incrustado", + "smw_ask_hide_embed": "Agochar o código incrustado", + "smw_ask_embed_instr": "Para incrustar esta pescuda en liña nunha páxina wiki use o seguinte código.", + "smw-ask-delete": "Quitar", + "smw-ask-sorting": "Ordenación", + "smw-ask-options": "Opcións", + "smw-ask-options-sort": "Opcións de ordenación", + "smw-ask-format-options": "Formato e opcións", + "smw-ask-parameters": "Parámetros", + "smw-ask-search": "Procurar", + "smw-ask-debug": "Depurar", + "smw-ask-debug-desc": "Xera información para a revisión de erros das consultas", + "smw-ask-no-cache": "Desactivar a caché de consultas", + "smw-ask-no-cache-desc": "Resultados sen caché de consulta", + "smw-ask-result": "Resultado", + "smw-ask-empty": "Borrar todas as entradas", + "smw-ask-download-link-desc": "Descargar os resultados da consulta en formato $1", + "smw-ask-format": "Formato", + "smw-ask-format-selection-help": "Axuda co formato seleccionadoː $1", + "smw-ask-condition-change-info": "A condición foi modificada e o motor de procuras precisa que a consulta volva ser executada para producir resultados que correspondan ós novos requisitos.", + "smw-ask-input-assistance": "Asistencia de entrada", + "smw-ask-condition-input-assistance": "Proporciónase [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance asistencia de entrada] para os campos de saída, de ordenación e de condición. O campo de condición precisa o uso dalgún dos seguintes prefixos:", + "smw-ask-condition-input-assistance-property": "p: para obter as suxestións de propiedades (exemplo: [[p:Has ...)", + "smw-ask-condition-input-assistance-category": "c: para obter as suxestións de categorías", + "smw-ask-condition-input-assistance-concept": "con: para obter as suxestións de conceptos", + "smw-ask-format-change-info": "O formato foi modificado e é preciso para reexecutar a consulta para corresponderse ós novos parámetros e opcións de visualización.", + "smw-ask-format-export-info": "O formato seleccionado é un formato de exportación que non ten representación visual, polo tanto os resultados só se proporcionan como descarga.", + "smw-ask-query-search-info": "A consulta $1 foi respondida polo {{PLURAL:$3|1=$2 (desde a caché)|$2 (desde a caché)|$2}} en $4 {{PLURAL:$4|segundo|segundos}}.", + "searchbyproperty": "Procurar por propiedade", + "processingerrorlist": "Lista de erros de tratamento", + "propertylabelsimilarity": "Informe de similitude de etiquetas de propiedade", + "smw-processingerrorlist-intro": "A seguinte lista proporciona unha visión dos [https://www.semantic-mediawiki.org/wiki/Processing_errors erros de tratamento] que apareceron en relación con [https://www.semantic-mediawiki.org/ MediaWiki Semántica]. Recoméndase vixiar esta lista de forma regular e corrixir as anotacións de valor incorrecto.", + "smw_sbv_docu": "Procurar todas as páxinas que teñen a propiedade e o valor dados.", + "smw_sbv_novalue": "Por favor, insira un valor válido para a propiedade ou vexa todos os valores das propiedades para \"$1\".", + "smw_sbv_displayresultfuzzy": "Unha lista con todas as páxinas que teñen a propiedade \"$1\" co valor \"$2\".\nComo houbo só uns poucos resultados, móstranse tamén os resultados próximos.", + "smw_sbv_property": "Propiedade:", + "smw_sbv_value": "Valor:", + "smw_sbv_submit": "Atopar os resultados", + "browse": "Explorar o wiki", + "smw_browselink": "Explorar as propiedades", + "smw_browse_article": "Insira o nome da páxina para comezar a navegación.", + "smw_browse_go": "Ir", + "smw_browse_show_incoming": "Amosar as propiedades entrantes", + "smw_browse_hide_incoming": "Agochar as propiedades entrantes", + "smw_browse_no_outgoing": "Esta páxina non ten propiedades.", + "smw_browse_no_incoming": "Ningunha propiedade liga con esta páxina.", + "smw-browse-from-backend": "Estase a recuperar a información do servidor.", + "smw-browse-intro": "Esta páxina proporciona detalles sobre un tema ou instancia de entidade, por favor, indique o nome dun obxecto para ser inspeccionado.", + "smw-browse-invalid-subject": "A validación do tema devolveu o erro \"$1\".", + "smw-browse-api-subject-serialization-invalid": "O tema ten un formato de serialización incorrecto.", + "smw-browse-js-disabled": "É probable que o Javascript estea desactivado ou non dispoñible, recomendamos usar un navegador que o soporte. Outras opcións coméntanse na páxina do parámetro de configuración [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Amosar grupos", + "smw-browse-hide-group": "Ocultar grupos", + "smw-noscript": "Esta páxina ou acción require Javascript para funcionar. Active o Javascript no seu navegador ou utilice un navegador que o suporte, para que esta funcionalidade poida ser servida e é proporcionada como solicitada. Para máis información, consulte a páxina de axuda [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript].", + "smw_inverse_label_default": "$1 de", + "smw_inverse_label_property": "Etiqueta da propiedade inversa", + "pageproperty": "Procura de propiedades de páxinas", + "smw_pp_docu": "Introduza unha páxina e propiedade, ou só unha propiedade, para obter tódolos valores asignados.", + "smw_pp_from": "Da páxinaː", + "smw_pp_type": "Propiedadeː", + "smw_pp_submit": "Atopar os resultados", + "smw_result_prev": "Anterior", + "smw_result_next": "Seguinte", + "smw_result_results": "Resultados", + "smw_result_noresults": "Non hai resultados.", + "smwadmin": "Funcións administrativas e de mantemento", + "smw-admin-statistics-job-title": "Estatísticas de tarefas", + "smw-admin-statistics-job-docu": "As estatísticas de tarefas amosan información sobre tarefas programadas do MediaWiki Semántico que aínda non foron executadas. O número de tarefas pode ter pequenas imprecisións ou conter intentos errados; consulte o [https://www.mediawiki.org/wiki/Manual:Job_queue manual] para máis información.", + "smw-admin-statistics-querycache-title": "Caché das procuras", + "smw-admin-statistics-querycache-disabled": "A [https://www.semantic-mediawiki.org/wiki/QueryCache ''cache'' de consultas] non foi activada nesta wiki, polo tanto non hai estatísticas dispoñíbeis.", + "smw-admin-permission-missing": "Debido á falta dos permisos necesarios, bloqueouse o acceso a esta páxina, por favor, consulte a páxina de axuda sobre os [https://www.semantic-mediawiki.org/wiki/Help:Permissions permisos] para obter detalles das configuracións necesarias.", + "smw-admin-setupsuccess": "O motor de almacenamento foi configurado.", + "smw_smwadmin_return": "Volver a \"$1\"", + "smw_smwadmin_updatestarted": "Comezou un novo proceso de actualización para refrescar os datos semánticos.\nTodos os datos almacenados serán reconstruídos ou reparados onde sexa necesario.\nPode seguir o proceso da actualización nesta páxina especial.", + "smw_smwadmin_updatenotstarted": "Xa hai un proceso de actualización en curso.\nNon se pode crear outro.", + "smw_smwadmin_updatestopped": "Todos os procesos de actualización existentes foron detidos.", + "smw_smwadmin_updatenotstopped": "Para deter os procesos de actualización actuais, debe activar a caixa de verificación para indicar que está seguro de facelo.", + "smw-admin-docu": "Esta páxina especial serve de axuda durante a instalación, actualización, mantemento e uso do Semantic MediaWiki e ademais de proporcionar funcións administrativas e tarefas, así como estatísticas.\nLembre facer unha copia de seguridade dos datos antes de executar calquera función administrativa.", + "smw-admin-environment": "Contorno de programación", + "smw-admin-db": "Mantemento da base de datos", + "smw-admin-db-preparation": "A inicialización da táboa está en curso e pode tardar algún tempo ata que se amosen os resultados, dependendo do tamaño da táboa e de posibles optimizacións da mesma.", + "smw-admin-dbdocu": "Semantic MediaWiki require algunhas extensións da base de datos MediaWiki para almacenar os datos semánticos.\nA función de embaixo asegúrase de que a súa base de datos está configurada apropiadamente.\nOs cambios feitos neste paso non afectarán ao resto da base de datos MediaWiki, e poden ser desfeitos de xeito sinxelo se se desexa.\nEsta función de configuración pode ser executada múltiples veces sen facer ningún dano, pero só é necesaria unha vez na instalación ou actualización.", + "smw-admin-permissionswarn": "Se a operación falla con erros SQL, probablemente o usuario da base de datos empregada polo seu wiki (comprobe o seu ficheiro \"LocalSettings.php\") non teña os permisos suficientes.\nFai falla conceder a este usuario os permisos para crear e eliminar táboas; temporalmente insira o rexistro da súa base de datos no ficheiro \"LocalSettings.php\", ou use o script de mantemento setupStore.php, que pode usar as credenciais dun administrador.", + "smw-admin-dbbutton": "Inicializar ou actualizar as táboas", + "smw-admin-announce": "Anuncia o teu wiki", + "smw-admin-announce-text": "Se a súa wiki é pública, pode rexistrala en WikiApiary, o catálogo wiki de wikis.", + "smw-admin-deprecation-notice-title": "Avisos de obsolescencia", + "smw-admin-deprecation-notice-docu": "A seguinte sección contén axustes que quedaron obsoletos ou están eliminados, pero que foron detectados activos neste wiki. Espérase que nunha versión futura se elimine o soporte para estas configuracións.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] está obsoleta e será eliminada de $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] eliminará (ou substituirá) {{PLURAL:$2|a opción seguinte|as opcións seguintes}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 está obsoleto e será eliminado na versión $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] foi substituído por [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|opción|opcións}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 está a ser substituído por $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] foi eliminado de $2", + "smw-admin-deprecation-notice-title-notice": "Configuración obsoleta", + "smw-admin-deprecation-notice-title-notice-explanation": "Configuración obsoleta mostra aqueles axustes que se utilizan no wiki, pero que se van eliminar ou modificar nunha versión futura.", + "smw-admin-deprecation-notice-title-replacement": "Configuración substituída ou renomeada", + "smw-admin-deprecation-notice-title-replacement-explanation": "Configuración substituída ou renomeada contén aqueles axustes que foron renomeadas ou recibiron cambios doutro tipo e recoméndase que se actualice inmediatamente o seu nome ou o seu formato.", + "smw-admin-deprecation-notice-title-removal": "Configuración eliminada", + "smw-admin-deprecation-notice-title-removal-explanation": "Configuración eliminada identifica aqueles axustes eliminados nunha versión anterior, pero que aínda se utilizan neste wiki.", + "smw-smwadmin-refresh-title": "Reparación e actualización de datos", + "smw_smwadmin_datarefresh": "Reparación dos datos", + "smw_smwadmin_datarefreshdocu": "É posible restaurar todos os datos de Semantic MediaWiki baseados nos contidos actuais do wiki.\nIsto pode ser útil para reparar datos rotos ou para refrescar os datos se o formato interno cambiou debido a actualizacións do software.\nEsta actualización é executada páxina a páxina e non será completada inmediatamente.\nO seguinte amosa se unha actualización está en curso e permítelle comezalas ou detelas (a non ser que esta característica fose deshabilitada polo administrador do sitio).", + "smw_smwadmin_datarefreshprogress": "Xa hai unha actualización en curso.\nÉ normal que os progresos de actualización vaian lentos, xa que só se refrescan os datos nos pequenos anacos nos que un usuario accede ao wiki.\nPara finalizar esta actualización máis rápido, pode invocar a escritura runJobs.php de mantemento de MediaWiki (use a opción --maxjobs 1000 para restrinxir o número de actualizacións feitas nunha quenda).\nProgreso estimado da actualización actual:", + "smw_smwadmin_datarefreshbutton": "Programar a reconstrución dos datos", + "smw_smwadmin_datarefreshstop": "Deter esta actualización", + "smw_smwadmin_datarefreshstopconfirm": "Si, estou {{GENDER:$1|seguro|segura}}.", + "smw-admin-job-scheduler-note": "A maioría das actividades prográmanse como traballos para que as tarefas se executen por lotes no planificador de tarefas para planificar e completar o procesamento, polo que é crítico que os scripts de mantemento runJobs.php ou $wgRunJobsAsync se xestionen en consecuencia.", + "smw-admin-outdateddisposal-title": "Eliminación das entidades obsoletas", + "smw-admin-outdateddisposal-intro": "Algunhas actividades (o cambio dun tipo de propiedade, a eliminación de páxinas da wiki, ou a corrección de valores erróneos) provocarán [https://www.semantic-mediawiki.org/wiki/Outdated_entities entidades desactualizadas] e recoméndase que estas sexa eliminadas periodicamente para liberar o seu espazo nas táboas.", + "smw-admin-outdateddisposal-active": "Planificouse unha tarefa de eliminación de entidades obsoletas.", + "smw-admin-outdateddisposal-button": "Programar unha eliminación", + "smw-admin-feature-disabled": "Esta funcionalidade está desactivada neste wiki, por favor consulte a páxina de axuda de configuración ou contacte cun administrador de sistemas.", + "smw-admin-propertystatistics-title": "Reconstrución das estatísticas das propiedade", + "smw-admin-propertystatistics-intro": "Reconstrúe tódalas estatísticas de uso das propiedades e actualiza e corrixe os [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count contadores de uso] das propiedades.", + "smw-admin-propertystatistics-active": "Planificouse unha tarefa de reconstrución de propiedades.", + "smw-admin-propertystatistics-button": "Programa unha reconstrución das estatísticas", + "smw-admin-fulltext-title": "Reconstrución da procura de texto completo", + "smw-admin-fulltext-intro": "Reconstrúe o índice de procura en base a táboas de propiedade cun tipo de dato activado [https://www.semantic-mediawiki.org/wiki/full-text procura de texto completo]. Cambios nas regras de indexado (stopwords modificadas, novo stemmer etc.) e/ou unha táboa nova ou cambiada requiren que esta tarefa se execute de novo.", + "smw-admin-fulltext-active": "Planificouse unha tarefa de reconstrución da procura de texto completo.", + "smw-admin-fulltext-button": "Programa unha reconstrución de texto completo", + "smw-admin-support": "Obter asistencia", + "smw-admin-supportdocu": "Diversos recursos proporciónanse para axudalo en caso de problemas:", + "smw-admin-installfile": "Se experimenta problemas coa súa instalación, comece comprobando a guía no ficheiro INSTALL e a páxina de instalación.", + "smw-admin-smwhomepage": "A documentación completa de usuario de Semantic MediaWiki está en semantic-mediawiki.org.", + "smw-admin-bugsreport": "Pode informar dos erros no rexistro de problemas, onde a páxina para informar de erros proporciona instrucións para crear informes de problemas eficaces.", + "smw-admin-questions": "Se ten máis preguntas ou suxestións, únase á conversa na lista de correo de usuariosde Semantic MediaWiki ou a sala de conversa.", + "smw-admin-other-functions": "Outras funcións", + "smw-admin-supplementary-section-title": "Funcións suplementarias", + "smw-admin-supplementary-section-subtitle": "Funcións básicas soportadas", + "smw-admin-supplementary-section-intro": "Algunhas das funcións listadas nesta sección poden estar restrinxidas e, polo tanto, son inaccesibles neste wiki.", + "smw-admin-supplementary-settings-title": "Configuración e axustes", + "smw-admin-supplementary-settings-intro": "$1 devolve unha lista colectiva de parámetros dispoñibles usados no MediaWiki Semántico", + "smw-admin-supplementary-operational-statistics-title": "Estatísticas de funcionamento", + "smw-admin-supplementary-operational-statistics-intro": "$1 amosa un conxunto estendido de estatísticas", + "smw-admin-supplementary-idlookup-title": "Procura e liberación da entidade", + "smw-admin-supplementary-idlookup-intro": "$1 contén funcións para procurar e liberar entidades individuais", + "smw-admin-supplementary-duplookup-title": "Consulta de entidades duplicadas", + "smw-admin-supplementary-duplookup-intro": "$1 para listar entradas que están categorizadas porque teñen duplicados na táboa de entidades", + "smw-admin-supplementary-duplookup-docu": "Esta páxina lista entradas que foron categorizadas como duplicadas na [https://www.semantic-mediawiki.org/wiki/Help:Entity_table táboa de entidades]. As entradas duplicadas só deberían ocurrir (como moito) en raras ocasións potencialmente causadas por un proceso terminado durante unha actualización da base de datos ou unha transacción de reversión non concluída.", + "smw-admin-supplementary-operational-statistics-cache-title": "Estatísticas da caché", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 amosa estatísticas relacionadas coa caché", + "smw-admin-supplementary-elastic-intro": "$1 informa sobre configuración e estatísticas de indexación", + "smw-admin-supplementary-elastic-functions": "Funcións soportadas", + "smw-admin-supplementary-elastic-settings-title": "Configuración (índices)", + "smw-admin-supplementary-elastic-settings-intro": "$1 usado por Elasticsearch para administrar índices de MediaWiki Semántica", + "smw-admin-supplementary-elastic-mappings-title": "Correspondencias", + "smw-admin-supplementary-elastic-mappings-intro": "$1 para listar os índices e as correspondencias de campo", + "smw-admin-supplementary-elastic-mappings-summary": "Resumo", + "smw-admin-supplementary-elastic-mappings-fields": "Correspondencias de campos", + "smw-admin-supplementary-elastic-nodes-title": "Nodos", + "smw-admin-supplementary-elastic-nodes-intro": "$1 amosa estatísticas de nodo", + "smw-admin-supplementary-elastic-indices-title": "Índices", + "smw-admin-supplementary-elastic-indices-intro": "$1 proporciona unha vista xeral de índices dispoñibles e das súas estatísticas", + "smw-admin-supplementary-elastic-statistics-title": "Estatísticas", + "smw-admin-supplementary-elastic-statistics-intro": "$1 amosa estatísticas de nivel de índice", + "smw-admin-supplementary-elastic-status-replication": "Estado de replicación", + "smw-admin-supplementary-elastic-status-last-active-replication": "Última replicación activa: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Intervalo de actualización: $1", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Replicación bloqueada: $1 (reconstrución en proceso)", + "smw-admin-supplementary-elastic-replication-files": "Ficheiros", + "smw-admin-supplementary-elastic-replication-pages": "Páxinas", + "smw-list-count": "A lista contén $1 {{PLURAL:$1|entrada|entradas}}.", + "smw-property-label-uniqueness": "Atopouse unha correspondencia entre a etiqueta \"$1\" e polo menos outra representación de propiedade. Consulte a [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness páxina de axuda] sobre a resolución deste problema, por favor.", + "smw-property-label-similarity-title": "Informe de similitude de etiquetas de propiedade", + "smw-property-label-similarity-intro": "$1 calcula a similitude das etiquetas de propiedade existentes", + "smw-property-label-similarity-threshold": "Límiteː", + "smw-property-label-similarity-type": "Amosa o identificador do tipo", + "smw-property-label-similarity-noresult": "Non se atoparon resultados para as opcións seleccionadas.", + "smw-property-label-similarity-docu": "Compara e notifica a [https://www.semantic-mediawiki.org/wiki/Property_similarity semellanza sintáctica] (non a semellanza semántica) entre dúas etiquetas de propiedades, o que pode axudar a filtrar propiedades mal escritas ou equivalentes que representen o mesmo concepto (consulte a páxina especial [[Special:Properties|Propiedades]] para clarificar os conceptos e os usos das propiedades notificadas). Pode axustarse o limiar para aumentar ou diminuír a distancia de semellanza. [[Property:$1|$1]] utilízase para excluír propiedades da análise.", + "smw-admin-operational-statistics": "Esta páxina contén estatísticas operacionais recollidas en, ou por, funcións relacionadas coa MediaWiki Semántica. Pode atopar unha lista expandida de estatísticas específicas á wiki [[Special:Statistics|aquí]].", + "smw_adminlinks_datastructure": "Estrutura dos datos", + "smw_adminlinks_displayingdata": "Amosando os datos", + "smw_adminlinks_inlinequerieshelp": "Axuda coas pescudas", + "smw-page-indicator-usage-count": "[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count Número de usos] estimado: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "Propiedade definida polo {{PLURAL:$1|usuario|sistema}}", + "smw-property-indicator-last-count-update": "Estimación do número de usos\nÚltima actualización: $1", + "smw-concept-indicator-cache-update": "Contador de cache\nÚltima actualización: $1", + "smw-createproperty-isproperty": "Esta é unha propiedade de clase $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|O valor permitido|Os valores permitidos}} para esta propiedade {{PLURAL:$1|é|son}}:", + "smw-paramdesc-category-delim": "O delimitador", + "smw-paramdesc-category-template": "Un modelo co que dar formato aos elementos", + "smw-paramdesc-category-userparam": "Un parámetro que pasar ao modelo", + "smw-info-par-message": "A mensaxe a amosar.", + "smw-info-par-icon": "A icona a amosar; ou ben \"info\" ou ben \"warning\".", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Opcións xerais", + "prefs-ask-options": "Procura semántica", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/?uselang=gl Semantic MediaWiki] (e as extensións relacionadas) permiten adaptar individualmente algunhas funcións seleccionadas. Por favor, consulte a [https://www.semantic-mediawiki.org/wiki/Help:User_preferences?uselang=gl páxina de axuda] para unha descrición detallada.", + "smw-prefs-ask-options-tooltip-display": "Amosar o texto do parámetro como unha axuda informativa", + "smw-prefs-ask-options-compact-view-basic": "Habilita a vista compacta básica", + "smw-prefs-help-ask-options-compact-view-basic": "Se se activa, amosa un conxunto reducido de ligazóns na vista compacta Special:Ask.", + "smw-prefs-general-options-time-correction": "Activar a corrección da hora para as páxinas especiais usando a preferencia do [[Special:Preferences#mw-prefsection-rendering|fuso horario]] local.", + "smw-prefs-general-options-jobqueue-watchlist": "Amosar a lista de vixilancia da cola de tarefas na miña barra persoal", + "smw-prefs-general-options-disable-editpage-info": "Desactivar o texto introdutorio da páxina de edición", + "smw-prefs-general-options-suggester-textinput": "Activar a [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance asistencia de entrada] para as suxestións das entidades semánticas", + "smw-ui-tooltip-title-property": "Propiedade", + "smw-ui-tooltip-title-quantity": "Conversión de unidade", + "smw-ui-tooltip-title-info": "Información", + "smw-ui-tooltip-title-service": "Ligazóns de servizo", + "smw-ui-tooltip-title-warning": "Aviso", + "smw-ui-tooltip-title-error": "Erro", + "smw-ui-tooltip-title-parameter": "Parámetro", + "smw-ui-tooltip-title-event": "Evento", + "smw-ui-tooltip-title-note": "Nota", + "smw-ui-tooltip-title-legend": "Lenda", + "smw-ui-tooltip-title-reference": "Referencia", + "smw_unknowntype": "O tipo desta propiedade non é válido", + "smw-concept-cache-text": "O concepto ten {{PLURAL:$1|unha páxina|un total de $1 páxinas}}. A súa última actualización foi o $3, $2.", + "smw_concept_header": "Páxinas do concepto \"$1\"", + "smw_conceptarticlecount": "A continuación {{PLURAL:$1|móstrase $1 páxina|móstranse $1 páxinas}}.", + "smw-qp-empty-data": "Os datos solicitados poderían non amosarse debido a algúns criterios de selección insuficientes.", + "right-smw-admin": "Acceder ás tarefas administrativas (Semantic MediaWiki)", + "right-smw-patternedit": "Acceso de edición para manter expresións regulares e patróns permitidos (MediaWiki Semántica)", + "right-smw-pageedit": "Acceso de edición para páxinas con anotación Protexida contra a edición (MediaWiki Semántica)", + "restriction-level-smw-pageedit": "protexida (só os usuarios elexibles)", + "action-smw-patternedit": "editar expresións regulares utilizadas por MediaWiki Semántica", + "action-smw-pageedit": "editar páxinas anotadas con Protexida contra a edición (MediaWiki Semántica)", + "group-smwadministrator": "Administradores (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|administrador|administradora}} (Semantic MediaWiki)", + "grouppage-smwadministrator": "{{ns:project}}:Administradores (Semantic MediaWiki)", + "group-smwcurator": "Conservadores (MediaWiki Semántica)", + "group-smwcurator-member": "{{GENDER:$1|conservador|conservadora}} (MediaWiki Semántica)", + "grouppage-smwcurator": "{{ns:project}}:Conservadores (MediaWiki Semántica)", + "action-smw-admin": "acceder ás tarefas administrativas de Semantic MediaWiki", + "action-smw-ruleedit": "editar páxinas de regra (MediaWiki Semántica)", + "smw-property-predefined-default": "\"$1\" é unha propiedade predefinida de tipo $2.", + "smw-property-predefined-common": "Esta propiedade está pre-implantada (tamén coñecida como [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propiedade especial]) e ven con privilexios administrativos adicionais pero só pode ser usada como calquera outra [https://www.semantic-mediawiki.org/wiki/Property propiedade definida polo usuario].", + "smw-property-predefined-ask": "\"$1\" é unha propiedade predefinida que representa a meta información (na forma dun [https://www.semantic-mediawiki.org/wiki/Subobject subobxecto]) sobre pescudas individuais. E está proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-asksi": "\"$1\" é unha propiedade predefinida que recolle o número de condicións utilizadas nunha pescuda. E está proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-askde": "\"$1\" é unha propiedade predefinida que informa sobre a profundidade (valor numérico calculado na base dun aniñamento de consultas e a resolución de cadeas de propiedade) dunha consulta, e é proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-long-askde": "É un valor numérico calculado en base ó aniñamento de subconsultas, cadeas de propiedades, e os elementos de descrición dispoñibles coa execución dunha consulta baseada no parámetro de configuración [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-property-predefined-askpa": "«$1» é unha propiedade predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica], que describe parámetros que inflúen no resultado dunha consulta.", + "smw-property-predefined-long-askpa": "É parte dunha colección de propiedades que especifican un [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler perfil de consulta].", + "smw-sp-properties-docu": "Esta páxina lista as [https://www.semantic-mediawiki.org/wiki/Property propiedades] e o seu número de usos dispoñible para este wiki. Para ver as estatísticas actualizadas recoméndase que o script de mantemento das [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics estatísticas das propiedades] se execute de forma regular. Para ver unha vista diferenciada, consulte as páxinas especiais das [[Special:UnusedProperties|propiedades sen uso]] ou as [[Special:WantedProperties|propiedades requiridas]].", + "smw-sp-properties-cache-info": "Os datos da lista obtivéronse da [https://www.semantic-mediawiki.org/wiki/Caching caché], e actualizáronse o $1.", + "smw-sp-properties-header-label": "Lista de propiedades", + "smw-admin-settings-docu": "Amosa unha lista de tódolos parámetros predeterminados e localizados relevantes para o contorno de Semantic MediaWiki. Para obter os detalles de configuración individuais, consulte a páxina de axuda sobre a [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuración].", + "smw-sp-admin-settings-button": "Xerar a lista de opcións", + "smw-admin-idlookup-title": "Consulta", + "smw-admin-idlookup-docu": "Solicita os detalles sobre un identificador interno de obxecto que representa unha entidade individual (páxina wiki, subobxecto, etc.) de MediaWiki Semántica. O identificador non debe confundirse co identificador da páxina de MediaWiki ou co identificador de revisión.", + "smw-admin-iddispose-title": "Eliminación", + "smw-admin-iddispose-docu": "Teña en conta que a operación de eliminación non ten restricións e eliminará unha entidade do motor de almacenamento, xunto con todas as súas referencias nas táboas dependentes, se se confirma. Realice esta tarefa con '''precaución''' e só despois de consultar a [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal documentación].", + "smw-admin-iddispose-done": "O ID \"$1\" foi eliminado do servidor de almacenamento.", + "smw-admin-iddispose-references": "Identificador \"$1\" con polo menos un rexistro activo de referencia de táboa.", + "smw-admin-iddispose-references-multiple": "Lista de correspondencias con polo menos un rexistro de referencia activo.", + "smw-admin-iddispose-no-references": "O identificador \"$1\" non foi atopado ou non contiña ningunha referencia.", + "smw-admin-idlookup-input": "Procura:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Resumo", + "smw-admin-tab-notices": "Avisos de obsolescencia", + "smw-admin-tab-maintenance": "Mantemento", + "smw-admin-tab-supplement": "Funcións suplementarias", + "smw-admin-tab-registry": "Rexistro", + "smw-admin-maintenance-no-description": "Sen descrición.", + "smw-livepreview-loading": "Cargando...", + "smw-sp-searchbyproperty-description": "Esta páxina proporciona unha [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces interfase de navegación] simple para atopar entidades descritas por unha propiedade e un valor nomeado. Outras interfases de busca dispoñibles inclúen a [[Special:PageProperty|busca de propiedades de páxina ]], e o [[Special:Ask|xerador de consultas ask]].", + "smw-sp-searchbyproperty-resultlist-header": "Lista de resultados", + "smw-sp-searchbyproperty-nonvaluequery": "Unha lista de valores que teñen a propiedade \"$1\" asignada.", + "smw-sp-searchbyproperty-valuequery": "Unha lista de páxinas que teñen a propiedade \"$1\" co valor \"$2! anotado.", + "smw-datavalue-number-textnotallowed": "\"$1\" non pode asignarse a un tipo de número declarado con valor $2.", + "smw-datavalue-number-nullnotallowed": "\"$1\" devolveu \"NULL\" que non está permitido como número.", + "smw-editpage-annotation-enabled": "Esta páxina permite anotacións semánticas no texto (p. ex. \"[[Is specified as::World Heritage Site]]\") para crear contido estruturado e consultable proporcionado para a MediaWiki Semántica. Para unha descrición detallada de como utilizar as anotacións ou a función de análise #ask consulte as páxinas de axuda [https://www.semantic-mediawiki.org/wiki/Help:Getting_started primeiros pasos], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation anotación no texto] ou [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries consultas no texto].", + "smw-editpage-annotation-disabled": "Esta páxina non permite incluír anotacións semánticas no texto por restriccións do espazo de nomes. Ten máis detalles de como habilitar o espazo de nomes na páxina de axuda da [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuración].", + "smw-editpage-property-annotation-enabled": "Esta propiedade pode ampliarse mediante anotacións semánticas para especificar un tipo de datos (p. ex.,\"[[Ten tipo::Páxina]]\") ou outras declaracións deste tipo (p. ex.,\"[[Subpropiedade de::dc:data]]\"). Para unha descrición sobre como aumentar esta páxina, consulte as páxinas de axuda de [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration declaración dunha propiedade] ou [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes lista de tipos de datos].", + "smw-editpage-property-annotation-disabled": "Esta propiedade non pode ampliarse cunha anotación de tipo de dato (p.ex.\"[[Ten tipo::Páxina]]\") porque xa está predefinida (vexa a páxina de axuda das [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propiedades especiais] para máis información). ", + "smw-editpage-concept-annotation-enabled": "Este concepto pode ampliarse usando a función de análise #concept. Para unha descrición de como usar #concept, consulte a páxina de axuda sobre os [https://www.semantic-mediawiki.org/wiki/Help:Concepts conceptos].", + "smw-search-syntax-support": "Nas procuras pódese utilizar a [https://www.semantic-mediawiki.org/wiki/Help:Semantic_searchsintaxe de consultas semánticas] para axudar a atopar correspondencias usando a MediaWiki Semántica.", + "smw-search-input-assistance": "O [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance asistente de entrada] está activado tamén, para permitir unha preselección de entidades dispoñibles.", + "smw-search-input": "Entrada e procura", + "smw-search-syntax": "Sintaxe", + "smw-search-profile": "Extendida", + "smw-search-profile-tooltip": "Busca funcións en conexión con MediaWiki Semántica", + "smw-search-profile-sort-best": "Mellor correspondencia", + "smw-search-profile-sort-recent": "Máis recente", + "smw-search-profile-sort-title": "Título", + "smw-search-profile-extended-help-sort": "Especifica unha preferencia de ordenamento para amosar os resultados con:", + "smw-search-profile-extended-help-sort-title": "* \"Título\" usando o título da páxina (ou o título en pantalla) como criterio de ordenación", + "smw-search-profile-extended-help-sort-best": "* \"Mellor correspondencia\" ordenará os resultados por [https://www.semantic-mediawiki.org/wiki/help:ElasticStore/Relevancy relevancia] baseándose nas puntuacións provistas por Elasticsearch", + "smw-search-profile-extended-help-namespace": "A caixa de selección do espazo de nomes estará oculta en canto se seleccione un formulario, pero pode facerse visible de novo coa axuda do botón \"amosar/ocultar\".", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: para non coincidir con ningunha entidade que inclúa \"...\"", + "smw-search-profile-extended-help-query": "$1 usado como consulta.", + "smw-search-profile-extended-help-query-link": "(Para máis detalles $1).", + "smw-search-profile-extended-help-find-forms": "formularios dispoñibles", + "smw-search-profile-extended-section-sort": "Ordenar por", + "smw-search-profile-extended-section-form": "Formularios", + "smw-search-profile-extended-section-search-syntax": "Entrada de procura", + "smw-search-profile-extended-section-namespace": "Espazo de nomes", + "smw-search-profile-extended-section-query": "Consulta", + "smw-search-profile-link-caption-query": "xerador de consultas", + "smw-search-show": "Amosar", + "smw-search-hide": "Agochar", + "log-name-smw": "Rexisto de MediaWiki Semántica", + "log-show-hide-smw": "Rexistro de MediaWiki Semántica $1", + "logeventslist-smw-log": "Rexisto de MediaWiki Semántica", + "log-description-smw": "Actividades dos [https://www.semantic-mediawiki.org/wiki/Help:Logging tipos de evento habilitados] que foron informados pola MediaWiki Semántica e os seus compoñentes.", + "logentry-smw-maintenance": "Eventos relacionados co mantemento emitidos por MediaWiki Semántica", + "smw-datavalue-import-unknown-namespace": "O espazo de nomes de importación \"$1\" é descoñecido. Por favor, asegúrese que os detalles de importación OWL están dispoñibles mediante [[MediaWiki:Smw import $1]]", + "smw-datavalue-import-missing-namespace-uri": "Non se puido atopar un URI do espazo de nomes de \"$1\" na [[MediaWiki:Smw import $1|importación de $1]].", + "smw-datavalue-import-missing-type": "Non se atopou definición de tipo para \"$1\" na [[MediaWiki:Smw import $2|importación de $2]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|importación de $1]]", + "smw-datavalue-import-invalid-value": "\"$1\" non é un formato válido, debería ter o formato \"espazo de nome\":\"identificador\" (p.ex. \"foaf:nome\").", + "smw-datavalue-import-invalid-format": "A cadea \"$1\" debía estar dividida en catro partes pero o formato non é correcto.", + "smw-property-predefined-impo": "\"$1\" é unha propiedade predefinida que describe a relación cun [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary vocabulario importado]. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-type": "\"$1\" é unha propiedade predefinida que describe o [[Special:Types|tipo de datos]] dunha propiedade. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-sobj": "\"$1\" é unha propiedade predefinida que representa un construtor [https://www.semantic-mediawiki.org/wiki/Help:Container contedor]. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-long-sobj": "O contedor permite acumular asignacións dos valores de propiedade do mesmo xeito a como se fai nunha páxina wiki normal pero cun espazo de entidades diferente que será ligado ó suxeito incorporado.", + "smw-property-predefined-errp": "\"$1\" é unha propiedade predefinida que rastrexa erros de entrada na procura de valores de anotación incorrectos. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-long-errp": "Na maioría dos casos está provocado por un erro de correspondencia de tipos ou unha restrición de [[Property:Allows value|valore]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value\"$1\"] é unha propiedade predefinida que pode definir unha lista de valores posibles para restrinxir a asignación de valores dunha propiedade. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list \"$1\"] é unha propiedade predefinida que pode especificar unha referencia a unha lista que contén valores permitidos para restrinxir as asignacións de valor para unha propiedade, é proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-datavalue-property-restricted-annotation-use": "A propiedade «$1» ten unha zona de aplicación limitada e os usuarios non poden utilizala como propiedade de anotación.", + "smw-datavalue-property-restricted-declarative-use": "A propiedade «$1» é unha propiedade declarativa e só pode utilizarse en páxinas de propiedade ou de categoría.", + "smw-datavalue-property-create-restriction": "A propiedade \"$1\" non existe e o usuario non ten o permiso \"$2\" (consulte [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoridade]) para crear ou anotar valores cunha propiedade non aprobada.", + "smw-datavalue-property-invalid-character": "«$1» contén un caracter listado «$2» como unha parte da etiqueta de propiedade e polo tanto foi clasificado como non válido.", + "smw-datavalue-property-invalid-chain": "O uso de «$1» como unha cadea de propiedade non está permitido durante o proceso de anotación.", + "smw-datavalue-restricted-use": "O valor de datos \"$1\" foi marcado para uso restrinxido.", + "smw-datavalue-invalid-number": "Non se pode interpretar \"$1\" coma un número.", + "smw-query-condition-circular": "Detectouse unha posible condición circular en \"$1\".", + "smw-query-condition-empty": "A descrición da consulta ten unha condición baleira.", + "smw-types-list": "Lista de tipos de datos", + "smw-types-default": "\"$1\" é un tipo de datos predefinido.", + "smw-types-help": "Máis información e exemplos poden atoparse nesta [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 páxina de axuda].", + "smw-type-anu": "\"$1\" é unha variante do tipo de datos [[Special:Types/URL|URL]] que se usa principalmente para declaración de exportación de ''owl:AnnotationProperty''.", + "smw-type-boo": "\"$1\" é un tipo de dato básico para describir un valor certo/falso.", + "smw-type-cod": "\"$1\" é unha variante do tipo de dato [[Special:Types/Text|Texto]] que é usada para textos técnicos de lonxitude variable, como listados de código fonte.", + "smw-type-geo": "\"$1\" é un tipo de dato que describe localizacións xeográficas e require a [https://www.semantic-mediawiki.org/wiki/Extension:Maps extensión \"Maps\"] para ofrecer máis funcións.", + "smw-type-tel": "\"$1\" é un tipo de datos especial para describir números de teléfono internacionais segundo o RFC 3966.", + "smw-type-txt": "\"$1\" é un tipo de datos básico para describir cadeas de texto de lonxitude variable.", + "smw-type-dat": "\"$1\" é un tipo de dato básico para representar puntos no tempo nun formato unificado.", + "smw-type-ema": "\"$1\" é un tipo de datos especial para representar un correo electrónico.", + "smw-type-tem": "\"$1\" é un tipo de datos numérico especial para representar unha temperatura.", + "smw-type-qty": "\"$1\" é un tipo de datos para describir cantidades con unha representación numérica e unha unidade de medida.", + "smw-type-rec": "\"$1\" é un tipo de datos contedor que especifica unha lista de propiedades con tipos, nunha orde fixa.", + "smw-type-extra-tem": "O esquema de conversión inclúe as unidades soportadas, como Kelvin, Celsius, Fahrenheit e Rankine.", + "smw-type-tab-properties": "Propiedades", + "smw-type-tab-types": "Tipos", + "smw-type-tab-errors": "Erros", + "smw-type-primitive": "Básico", + "smw-type-contextual": "Contextual", + "smw-type-compound": "Composto", + "smw-type-container": "Contedor", + "smw-type-no-group": "Sen clasificar", + "smw-special-pageproperty-description": "Esta páxina proporciona unha interface de navegación para atopar tódolos valores dunha propiedade nunha páxina dada. Outras interfaces de procura dispoñibles inclúen a [[Special:SearchByProperty|procura de propiedades]] e o [[Special:Ask|construtor de preguntas]].", + "smw-property-predefined-errc": "\"$1\" é unha propiedade predefinida proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica] e representa erros que aparecen en conexión con anotacións de valores impropios ou do procesamento da entrada.", + "smw-property-predefined-long-errc": "Os erros son recollidos nun [https://www.semantic-mediawiki.org/wiki/Help:Container contedor] que pode incluír unha referencia á propiedade que causou o problema.", + "smw-property-predefined-errt": "\"$1\" é unha propiedade predefinida que contén unha descrición textual dun erro. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-subobject-parser-invalid-naming-scheme": "Un subobxecto definido polo usuario contiña un esquema de nomeado incorrecto. O uso dun punto ($1) dentro dos primeiros cinco caracteres está reservado para as extensións. Vostede pode definir un [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier identificador nomeado].", + "smw-datavalue-record-invalid-property-declaration": "A definición de rexistro contén a propiedade \"$1\" que está declarada como tipo rexistro e iso non está permitido.", + "smw-property-predefined-mdat": "\"$1\" é unha propiedade predefinida que corresponde á data da última modificación dun asunto. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-cdat": "\"$1\" é unha propiedade predefinida que corresponde á data da primeira modificación dun asunto. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-newp": "\"$1\" é unha propiedade predefinida que indica se un asunto é novo ou non. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-ledt": "\"$1\" é unha propiedade predefinida que contén o nome da páxina do usuario que fixo a última modificación. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-mime": "\"$1\" é unha propiedade predefinida que describe o tipo MIME dun ficheiro subido. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-media": "\"$1\" é unha propiedade predefinida que describe o tipo multimedia dun ficheiro subido. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-askfo": "\"$1\" é unha propiedade predefinida que contén o nome do formato de resultado usado nunha consulta. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-askst": "\"$1\" é unha propiedade predefinida que describe as condicións da consulta como unha cadea. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-askdu": "\"$1\" é unha propiedade predefinida que contén o valor de tempo (en segundos) que a consulta requiriu para completar a súa execución. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksc": "«$1» é unha propiedade predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica], que identifica fontes de consulta alternativas (por exemplo, fontes remotas ou federadas).", + "smw-property-predefined-askco": "\"$1\" é unha propiedade predefinida proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica] para describir o estado dunha consulta ou dos seus compoñentes.", + "smw-property-predefined-long-askco": "O número ou números asignados representan un estado codificado interno que está explicado na [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler páxina de axuda].", + "smw-property-predefined-prec": "\"$1\" é unha propiedade predefinida que describe unha [https://www.semantic-mediawiki.org/wiki/Help:Display_precision precisión de mostra] (en díxitos decimais) para tipos de datos numéricos.", + "smw-types-extra-geo-not-available": "A [https://www.semantic-mediawiki.org/wiki/Extension:Maps extensión \"Maps\"] non foi detectada polo que \"$1\" está restrinxido nas súas capacidades de funcionamento.", + "smw-datavalue-monolingual-dataitem-missing": "Falta un elemento esperado para construír un valor composto monolingüe.", + "smw-datavalue-languagecode-missing": "Para a anotación \"$1\", o analizador non foi capaz de determinar un código de lingua (p.ex. \"foo@en\").", + "smw-datavalue-languagecode-invalid": "Non se recoñece \"$1\" como un código de lingua admitido.", + "smw-property-predefined-lcode": "\"$1\" é unha propiedade predefinida que representa un código de lingua con formato BCP47. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-type-mlt-rec": "\"$1\" é un tipo de datos [https://www.semantic-mediawiki.org/wiki/Help:Container contedor] que asocia un valor de texto cun [[Property:Language code|código de lingua]] específico.", + "smw-types-extra-mlt-lcode": "O tipo de datos{{PLURAL:$2|require|non require}} un código de lingua (ou sexa, {{PLURAL:$2|non se acepta| acéptase}} unha anotación de valor sen un código de lingua).", + "smw-property-predefined-text": "\"$1\" é unha propiedade predefinida que representa texto de lonxitude arbitraria. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-pdesc": "\"$1\" é unha propiedade predefinida que permite describir unha propiedade en contexto dun idioma. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-list": "\"$1\" é unha propiedade predefinida para definir unha lista de propiedades usadas cunha propiedade de tipo [[Special:Types/Record|rexistro]]. É proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] Tempo de analise de notas en texto", + "smw-limitreport-intext-postproctime": "[SMW] duración de post-procesamento", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|segundo|segundos}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|segundo|segundos}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Tempo de actualización de almacenamento (na purga de páxinas)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|segundo|segundos}}", + "smw_allows_pattern": "Esta páxina debería conter unha lista de referencias (seguidas por [https://gl.wikipedia.org/wiki/Expresi%C3%B3n_regular expresións regulares]) para ser postas a disposición vía a propiedade [[Property:Allows pattern|Permitir as modificacións]]. Para editar esta páxina é preciso o permiso smw-patternedit.", + "smw-datavalue-allows-pattern-mismatch": "A expresión regular \"$2\" clasificou a \"$1\" como non válida.", + "smw-datavalue-allows-pattern-reference-unknown": "A referencia de patrón \"$1\" non pode corresponderse cunha entrada en [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "A referencia de lista \"$1\" non se corresponde cunha páxina de [[MediaWiki:Smw allows list $1]].", + "smw-datavalue-allows-value-list-missing-marker": "O contido da lista \"$1\" non contén elementos co marcador de lista *.", + "smw-datavalue-feature-not-supported": "A funcionalidade \"$1\" non é compatible ou foi desactivada neste wiki.", + "smw-property-predefined-pvap": "\"$1\" é unha propiedade predefinida que pode especificar unha [[MediaWiki:Smw allows pattern|referencia de patrón]] para facer coincidir [https://gl.wikipedia.org/wiki/Expresi%C3%B3n_regular expresións regulares]. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-dtitle": "\"$1\" é unha propiedade predefinida que pode asignar un título de visualización diferente a unha entidade. É proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-pvuc": "\"$1\" é unha propiedade predefinida, proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica], que restrinxe as asignacións de valores para cada instancia a valores únicos (ou un polo menos).", + "smw-property-predefined-long-pvuc": "A unicidade está establecida cando dous valores non son iguais na súa representación literal, e toda violación desta constante será considerada coma un erro.", + "smw-datavalue-constraint-uniqueness-violation": "A propiedade \"$1\" só permite a asignación de valores únicos e \"$2\" xa está anotado no campo \"$3\".", + "smw-datavalue-constraint-uniqueness-violation-isknown": "A propiedade ''$1'' só permite anotacións de valores únicos, ''$2'' xa contén un valor asignado. ''$3'' viola a restrición de exclusividade.", + "smw-property-predefined-boo": "\"$1\" é un [[Special:Types/Boolean|tipo]] e propiedade predefinida proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica] para representar valores booleanos.", + "smw-property-predefined-num": "\"$1\" é un [[Special:Types/Number|tipo]] e propiedade predefinida proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica] para representar valores numéricos.", + "smw-property-predefined-dat": "\"$1\" é un [[Special:Types/Date|tipo]] e propiedade predefinida proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica] para representar valores de datas.", + "smw-property-predefined-uri": "\"$1\" é un [[Special:Types/URL|tipo]] e propiedade predefinida proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica] para representar valores de URI/URL.", + "smw-property-predefined-qty": "\"$1\" é un [[Special:Types/Quantity|tipo]] e propiedade predefinida proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica] para representar valores de cantidade.", + "smw-datavalue-time-invalid-offset-zone-usage": "\"$1\" contén un desprazamento e un identificador de zona que non está soportado.", + "smw-datavalue-time-invalid-values": "O valor \"$1\" contén información non interpretable na forma \"$2\".", + "smw-datavalue-time-invalid-date-components-common": "\"$1\" contén algunha información non interpretable.", + "smw-datavalue-time-invalid-date-components-dash": "\"$1\" contén un guión innecesario ou outros caracteres que non son válidos para a interpretación dunha data.", + "smw-datavalue-time-invalid-date-components-empty": "\"$1\" contén algúns componentes baleiros.", + "smw-datavalue-time-invalid-date-components-three": "\"$1\" contén máis de tres componentes, que son necesarios para a interpretación dunha data.", + "smw-datavalue-time-invalid-date-components-sequence": "\"$1\" contén unha secuencia que non puido interpretarse contra unha matriz de correspondencia dispoñible para os compoñentes dunha data.", + "smw-datavalue-time-invalid-ampm": "\"$1\" contén \"$2\" como un elemento horario que é inválido para o formato convencional de 12 horas.", + "smw-datavalue-time-invalid-jd": "Imposible interpretar o valor de entrada \"$1\" como un número válido JD (día xuliano) con \"$2\" sendo informado.", + "smw-datavalue-time-invalid-prehistoric": "Imposible interpretar un valor de entrada prehistórico \"$1\". Por exemplo, se especifica máis que os anos nun modelo de calendario pode devolver resultados incorrectos nun contexto prehistórico.", + "smw-datavalue-time-invalid": "Imposible interpretar o valor da entrada \"$1\" como unha data ou un compoñente de tempo válidos con \"$2\" sendo informado.", + "smw-datavalue-external-formatter-uri-missing-placeholder": "Falta o espazo reservado \"$1\" no URI do formatador.", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\" é un enderezo URL non válido.", + "smw-datavalue-external-identifier-formatter-missing": "Á propiedade fáltalle a atribución dun [[Property:External formatter uri|\"formatador externo de URI\"]].", + "smw-datavalue-keyword-maximum-length": "A palabra chave superou a lonxitud máxima de $1 {{PLURAL:$1|carácter|caracteres}}", + "smw-property-predefined-eid": "\"$1\" é un [[Special:Types/External identifier|tipo]] e propiedade predefinida proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica] para representar identificadores externos.", + "smw-property-predefined-peid": "\"$1\" é unha propiedade predefinida que especifica un identificador externo. E está proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica].", + "smw-property-predefined-pefu": "\"$1\" é unha propiedade predefinida proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica] para especificar un recurso externo cun espazo reservado.", + "smw-property-predefined-long-pefu": "O URI espérase que conteña un parámetro posicional que será axustado cun valor dun [[Special:Types/External identifier|external identifier|identificador externo]] para formar unha referencia de recurso válida.", + "smw-type-eid": "\"$1\" é unha variante do tipo de dato [[Special:Types/Text|Texto]] para describir recursos externos (baseados en URIs) e require propriedades particulares para declarar un [[Property:External formatter uri|URI de formatador externo]].", + "smw-property-predefined-keyw": "«$1» é unha propiedade predefina e un [[Special:Types/Keyword|tipo]], proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica], que normaliza un texto e ten unha lonxitude de caracteres reducida.", + "smw-type-keyw": "«$1» é unha variante do tipo de dato [[Special:Types/Text|texto]] que ten unha lonxitude de caracteres limitada e normaliza a representación do seu contido.", + "smw-datavalue-stripmarker-parse-error": "O valor indicado \"$1\" contén [https://en.wikipedia.org/wiki/Help:Strip_markers marcadores de banda] e polo tanto non pode ser analizado abondo.", + "smw-datavalue-parse-error": "O valor dado \"$1\" non foi entendido.", + "smw-datavalue-propertylist-invalid-property-key": "A lista de propiedades \"$1\" contén unha clave de propiedade \"$2\" non válida.", + "smw-datavalue-type-invalid-typeuri": "O tipo \"$1\" non pode ser transformado nunha representación URI válida.", + "smw-datavalue-wikipage-missing-fragment-context": "O valor de entrada da wikipáxina \"$1\" non ser usado sen unha páxina de contexto.", + "smw-datavalue-wikipage-invalid-title": "O valor de entrada do tipo de páxina \"$1\" contén caracteres non válidos ou está incompleta e polo tanto pode provocar resultados inesperados nunha busca ou nun proceso de anotación.", + "smw-datavalue-wikipage-property-invalid-title": "A propiedade \"$1\" (como o tipo de páxina) co valor de entrada \"$2\" contén caracteres incorrectos ou está incompleta, e por iso pode producir resultados inesperados durante unha consulta ou nun proceso de anotación.", + "smw-datavalue-wikipage-empty": "O valor de entrada da wikipáxina está baleiro (p.ex. [[SomeProperty::]], [[]]) e non pode usarse como nome ou como parte dunha condición de busca.", + "smw-type-ref-rec": "\"$1\" é un tipo de [https://www.semantic-mediawiki.org/wiki/Container contedor] que permite gardar información adicional (p.ex. procedencia dos datos) sobre a asignación dun valor.", + "smw-datavalue-reference-outputformat": "$1: $2", + "smw-datavalue-reference-invalid-fields-definition": "O tipo [[Special:Types/Reference|Referencia]] espera unha lista de propiedades para ser declarado usando a propiedade [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Ten campos].", + "smw-parser-invalid-json-format": "O analizador de JSON devolveu un \"$1\".", + "smw-property-preferred-label-language-combination-exists": "\"$1\" non pode usarse como etiqueta preferida por a lingua \"$2\" xa está asignada á etiqueta \"$3\".", + "smw-clipboard-copy-link": "Copiar ligazón no portapapeis", + "smw-property-userdefined-fixedtable": "\"$1\" estaba configurada como [https://www.semantic-mediawiki.org/wiki/Fixed_properties propiedade fixa] e calquera modificación da [https://www.semantic-mediawiki.org/wiki/Type_declaration declaración do seu tipo] precisa executar setupStore.php ou completar a tarefa especial [[Special:SemanticMediaWiki|\"Instalación e actualización da base de datos\"]].", + "smw-data-lookup": "A recuperar os datos...", + "smw-data-lookup-with-wait": "A solicitude está a procesarse e pode levar algo de tempo.", + "smw-no-data-available": "Non hai datos dispoñibles.", + "smw-property-req-violation-missing-fields": "Á propiedade «$1» fáltanlle detalles de declaración para o tipo anotado «$2» ó non definir a propiedade Ten campos.", + "smw-property-req-violation-missing-formatter-uri": "Á propiedade «$1» fáltanlle detalles de declaración para o tipo anotado porque non foi defina a propiedade URI do formatador externo.", + "smw-property-req-violation-predefined-type": "A propiedade \"$1\" é unha propiedade predefinida que contén unha declaración de tipo \"$2\" que é incompatible co tipo por defecto desta propiedade.", + "smw-property-req-violation-import-type": "Detectouse unha declaración de tipo que non é compatible co tipo predefinido do vocabulario importado \"$1\". En xeral, non é necesario declarar un tipo porque a información obtense da definición da importación.", + "smw-property-req-violation-change-propagation-locked-error": "A propiedade «$1» foi alterada e precisa que as entidades asignadas sexan reavaliadas usando un proceso de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagación de cambios]. A páxina da propiedade foi protexida ata que a actualización de especificación primaria estea completada para previr interrupcións intermedias ou especificacións contraditorias. O proceso pode levar un momento antes de que a páxina poida ser desprotexida, isto dependerá do tamaño e a frecuencia do planificador da [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cola de traballo] do planificador.", + "smw-category-invalid-value-assignment": "\"$1\" non é recoñecido como unha categoría válida ou unha anotación válida.", + "protect-level-smw-pageedit": "Permitir unicamente usuarios co permiso de edición de páxinas (Semantic MediaWiki)", + "smw-create-protection": "A creación da propiedade «$1» está restrinxida ós usuarios que conten co dereito «$2» axeitado (ou pertenzan ó [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups grupo de usuarios]), mentres estea activado o [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoridade].", + "smw-create-protection-exists": "As modificacións á propiedade «$1» están restrinxidas ós usuarios que conten co dereito «$2» axeitado (ou pertenzan ó [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups grupo de usuarios]), mentres estea activado o [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoridade].", + "smw-edit-protection": "Esta páxina está [[Property:Is edit protected|protexida]] para impedir a modificación accidental de datos e só pode ser editada por usuarios co dereito de edición (\"$1\") ou que estean no [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups grupo de usuarios] axeitado.", + "smw-edit-protection-disabled": "A protección contra edicións foi desactivada, polo tanto \"$1\" non pode ser usada para protexer páxinas de entidades contra edicións non autorizadas.", + "smw-edit-protection-auto-update": "Semantic MediaWiki actualizou o estado de protección de acordo coa propiedade «Ten protección de modificación».", + "smw-edit-protection-enabled": "Protexido contra modificación (Semantic MediaWiki)", + "smw-patternedit-protection": "Esta páxina está protexida e só pode ser editada por usuarios co smw-patternedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions permiso] axeitado.", + "smw-property-predefined-edip": "\"$1\" é unha propiedade predefinida proporcionada por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] para indicar se a modificación está protexida ou non.", + "smw-property-predefined-long-edip": "Aínda que calquera usuario pode engadir esta propiedade a un tema, só aqueles que posúan un privilexio especial poden editar ou revogar a protección dunha entidade despois de que lle sexa engadida.", + "smw-query-reference-link-label": "Referencia de consulta", + "smw-format-datatable-emptytable": "Non hai datos dispoñibles na táboa", + "smw-format-datatable-info": "Amosando _START_ to _END_ of _TOTAL_ entradas", + "smw-format-datatable-infoempty": "Amosando de 0 a 0 de 0 entradas", + "smw-format-datatable-infofiltered": "(filtradas dun _MAX_ entradas do total)", + "smw-format-datatable-lengthmenu": "Amosar _MENU_ entradas", + "smw-format-datatable-loadingrecords": "Cargando...", + "smw-format-datatable-processing": "Procesando...", + "smw-format-datatable-search": "Procurar:", + "smw-format-datatable-zerorecords": "Non se atoparon rexistros que coincidisen", + "smw-format-datatable-first": "Primeiro", + "smw-format-datatable-last": "Último", + "smw-format-datatable-next": "Seguinte", + "smw-format-datatable-previous": "Anterior", + "smw-format-datatable-sortascending": ": activar para ordenar a columna ascendentemente", + "smw-format-datatable-sortdescending": ": activar para ordenar a columna descendentemente", + "smw-format-datatable-toolbar-export": "Exportar", + "smw-category-invalid-redirect-target": "A categoría «$1» contén un obxectivo de redirección non válido a un espazo de nomes que non é de categoría.", + "smw-parser-function-expensive-execution-limit": "A función do analizador sintáctico alcanzou o tempo límite autorizado para a súa execución (vexa o parámetro de configuración [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "MediaWiki Semántica lanzará unha actualización desta páxina porque son precisos algúns procesamentos antes da consulta.", + "apihelp-smwinfo-summary": "Módulo da API para obter información sobre estatísticas e outra meta información do MediaWiki Semántico.", + "apihelp-ask-summary": "Módulo da API para consultar a MediaWiki Semántica usando a linguaxe de preguntas.", + "apihelp-askargs-summary": "Módulo da API para realizar consultas en MediaWiki Semántica mediante a lenguaxe Ask en forma de lista de condicións, visualizacións e parámetros.", + "apihelp-browsebyproperty-summary": "Módulo da API para obter información sobre unha propiedade ou lista de propiedades.", + "apihelp-browsebysubject-summary": "Módulo da API para obter informaións sobre un tema.", + "apihelp-smwtask-summary": "Módulo da API para executar tarefas relacionadas co MediaWiki Semántico.", + "apihelp-smwbrowse-summary": "Módulo da API de MediaWiki Semántica para engadir compatibilidade a certas actividades de navegación.", + "smw-api-invalid-parameters": "Parámetros non válidos: \"$1\"", + "smw-property-page-list-count": "{{PLURAL:$1|Móstrase $1 páxina que utiliza|Móstranse $1 páxinas que utilizan}} esta propiedade.", + "smw-property-page-list-search-count": "{{PLURAL:$1|Móstrase $1 páxina que utiliza|Móstranse $1 páxinas que utilizan}} esta propiedade cunha correspondencia de valor «$2».", + "smw-property-reserved-category": "Categoría", + "smw-category": "Categoría", + "smw-datavalue-uri-invalid-scheme": "Non se incluíu «$1» nos esquemas de URI válidos.", + "smw-browse-property-group-title": "Grupo de propiedades", + "smw-browse-property-group-label": "Etiqueta do grupo de propiedades", + "smw-browse-property-group-description": "Descrición do grupo de propiedades", + "smw-property-predefined-ppgr": "«$1» é unha propiedade predefinida, proporcionada pola [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semántica], que identifica entidades (categorías, principalmente) empregadas como instancias de agrupamento para as propiedades.", + "smw-filter": "Filtro", + "smw-section-expand": "Expandir a sección", + "smw-section-collapse": "Contraer a sección", + "smw-ask-format-help-link": "Formato [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Axuda", + "smw-cheat-sheet": "Folla de referencia", + "smw-personal-jobqueue-watchlist": "Tarefas pendentes da lista de vixilancia", + "smw-property-predefined-label-skey": "Chave de ordenación", + "smw-processing": "Procesando...", + "smw-loading": "Cargando...", + "smw-preparing": "Preparando...", + "smw-expand": "Expandir", + "smw-collapse": "Contraer", + "smw-copy": "Copiar", + "smw-copy-clipboard-title": "Copia o contido ó portapapeis", + "smw-jsonview-expand-title": "Expande a vista JSON", + "smw-jsonview-collapse-title": "Contrae a vista JSON", + "smw-redirect-target-unresolvable": "O destino é irresoluble polo motivo «$1»", + "smw-types-title": "Tipo: $1", + "smw-schema-error-title": "{{PLURAL:$1|Erro|Erros}} de validación.", + "smw-schema-title": "Esquema", + "smw-schema-type": "Tipo de esquema", + "smw-schema-tag": "{{PLURAL:$1|Etiqueta|Etiquetas}}", + "smw-ask-title-keyword-type": "Procura de palabras clave", + "smw-ask-message-keyword-type": "Esta procura coincide coa condición $1.", + "smw-remote-source-unavailable": "Non foi posible establecer conexión co destino remoto \"$1\".", + "smw-remote-source-disabled": "A fonte '''$1''' desactivou as solicitudes remotas.", + "smw-remote-source-unmatched-id": "A fonte '''$1''' non concorda coa versión de MediaWiki Semántica que pode soportar solicitudes remotas.", + "smw-remote-request-note": "O resultado recupérase a partir da fonte remota '''$1''' e é probable que o contido xerado conteña información non dispoñible na wiki actual.", + "smw-parameter-missing": "Falta o parámetro \"$1\".", + "smw-property-tab-usage": "Uso", + "smw-property-tab-redirects": "Sinónimos", + "smw-property-tab-subproperties": "Subpropiedades", + "smw-property-tab-errors": "Asignacións incorrectas", + "smw-property-tab-specification": "... mais", + "smw-concept-tab-list": "Lista", + "smw-concept-tab-errors": "Erros", + "smw-ask-tab-result": "Resultado", + "smw-ask-tab-extra": "Extras", + "smw-ask-tab-debug": "Depuración", + "smw-ask-tab-code": "Código", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "{{PLURAL:$1|Móstrase 1 resultado|Móstranse $1 resultados}}, comezando polo número $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/glk.json b/mediawiki/extensions/SemanticMediaWiki/i18n/glk.json new file mode 100644 index 0000000..587dfe8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/glk.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "V6rg", + "شیخ" + ] + }, + "smw-categories": "جرگه'ن", + "browse": "ويکيه مٚتٚن", + "smw-listingcontinuesabbrev": "(ايدامه)" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/gom-deva.json b/mediawiki/extensions/SemanticMediaWiki/i18n/gom-deva.json new file mode 100644 index 0000000..9d4b78f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/gom-deva.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Konknni mogi 24", + "The Discoverer" + ] + }, + "smw-categories": "वर्ग", + "browse": "विकींत भोवडी मार", + "smw-listingcontinuesabbrev": "चालू." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/gom-latn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/gom-latn.json new file mode 100644 index 0000000..8349fe1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/gom-latn.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Isidore Dantas", + "The Discoverer" + ] + }, + "smw-categories": "Vorg", + "browse": "Wikint bhovdi mar", + "smw-listingcontinuesabbrev": "chalu" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/grc.json b/mediawiki/extensions/SemanticMediaWiki/i18n/grc.json new file mode 100644 index 0000000..7e375e8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/grc.json @@ -0,0 +1,33 @@ +{ + "@metadata": { + "authors": [ + "Crazymadlover", + "Gts-tg", + "Omnipaedista", + "PastelKos" + ] + }, + "smw_finallistconjunct": ", καὶ", + "smw_printername_template": "Πρότυπον", + "smw_nofloat": "Τὸ \"$1\" οὐκ ἔστιν ἀριθμός.", + "smw_exportrdf_submit": "Ἐξάγειν", + "properties": "Ἰδιότητες", + "smw-categories": "Κατηγορίαι", + "types": "Τύποι", + "smw_ask_queryhead": "Πεῦσις", + "smw_ask_format_as": "Μορφοποιεῖν ὡς:", + "smw_ask_defaultformat": "προκαθωρισμένη", + "smw_sbv_property": "Ἰδιότης:", + "smw_sbv_value": "Τιμή:", + "browse": "Νέμεσθαι οὐίκι", + "smw_browselink": "Ἲδιότηται πλοηγήσεως", + "smw_browse_go": "Ἱέναι", + "smw_inverse_label_default": "$1 τοῦ", + "smw_pp_type": "Ἰδιότης", + "smw_result_prev": "Προηγουμέναι", + "smw_result_next": "Ἑπόμεναι", + "smw_result_noresults": "Οὐδὲν ἀποτέλεσμα.", + "smw-livepreview-loading": "Φορτίζειν…", + "smw-listingcontinuesabbrev": "συνεχίζεται", + "smw-showingresults": "Δεικνύναι κατωτέρω μέχρι {{PLURAL:$1|'''1''' ἀποτέλεσμα|'''$1''' ἀποτελέσματα}}· ἐκκίνησις ἐκ τοῦ #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/gsw.json b/mediawiki/extensions/SemanticMediaWiki/i18n/gsw.json new file mode 100644 index 0000000..bb12a47 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/gsw.json @@ -0,0 +1,190 @@ +{ + "@metadata": { + "authors": [ + "Als-Chlämens", + "Als-Holder", + "아라" + ] + }, + "smw-desc": "Dyy Wiki zuegängliger mache - fir Maschine ''un'' Mänsche ([https://www.semantic-mediawiki.org/wiki/Help:User_manual online-Dokumäntation])", + "smw_viewasrdf": "RDF-Feed", + "smw_finallistconjunct": " un", + "smw_isspecprop": "Die Eigeschaft isch e Spezialeigeschaft in däm Wiki.", + "smw_concept_description": "Bschryybig vum Konzäpt „$1“", + "smw_no_concept_namespace": "Konzäpt chenne nume im ''Konzäpt:'' Namensruum aagleit wäre.", + "smw_multiple_concepts": "In jedwädere Konzäptsyte cha s nume ei Konzäptdefinition din haa.", + "smw_concept_cache_miss": "S Konzäpt „$1“ cha im Momänt nit aagwändet wäre, wel d Wiki-Konfiguration offline grächnet muess wäre.\nWänn s Probläm imfall noch eme Rung nit verschwindet, no bitt Dyy Syteverwalter, des Konzäpt megli z mache.", + "smw_noinvannot": "Wärt chenne nit mit umgchehrte Eigeschafte gchännzeichnet wäre", + "version-semantic": "Semantischi Erwyterige", + "smw_baduri": "URI mit dr Form „$1“ sin nit zuelässig.", + "smw_printername_count": "Zellerergebnis", + "smw_printername_csv": "CSV-Export", + "smw_printername_dsv": "DSV-Export", + "smw_printername_debug": "Debug-Abfrog (fir Experte)", + "smw_printername_embedded": "Inhalt vu yyböute Syte", + "smw_printername_json": "JSON-Export", + "smw_printername_list": "Lischt", + "smw_printername_ol": "Uflischtig", + "smw_printername_ul": "Ufgliderig", + "smw_printername_table": "Tabälle", + "smw_printername_broadtable": "Breiti Tabälle", + "smw_printername_template": "Vorlag", + "smw_printername_rdf": "RDF-Export", + "smw-paramdesc-limit": "Di maximal Aazahl vu Ergebnis, wu zruck gee solle wäre", + "smw-paramdesc-headers": "Chopfzyyle bzw. d Nämme vu dr Eigeschafte aazeige", + "smw-paramdesc-mainlabel": "S Label vu Hauptsytename", + "smw-paramdesc-link": "Wärt as Links aazeige", + "smw-paramdesc-intro": "Dr Text, wu vor dr Suechergebnis soll aazeigt wäre, wänn s het", + "smw-paramdesc-outro": "Dr Text, wu no dr Suechergebnis soll aazeigt wäre, wänn s het", + "smw-paramdesc-default": "Dr Text, wu soll aazeigt wäre, wänn s kei Suechergebnis het", + "smw-paramdesc-sep": "S Trännzeiche fir Wärt", + "smw-paramdesc-template": "Dr Name vu dr Vorlag, wu Uusdruck dermit solle aazeigt wäre", + "smw-paramdesc-columns": "D Aazahl vu dr Spalte go Ergebnis aazeige (Standard isch $1)", + "smw-paramdesc-userparam": "E Wärt, wu bi jedem Vorlageufruef ibergee wird, wänn e Vorlag brucht wird", + "smw-paramdesc-introtemplate": "Dr Vorlagename, wu vor dr Abfrogergebnis aazeigt wird, wänn s git", + "smw-paramdesc-outrotemplate": "Dr Vorlagename, wu no dr Abfrogergebnis soll aazeigt wäre, wänn s het", + "smw-paramdesc-embedformat": "Dr HTML-Befähl zum Iberschrifte definiere", + "smw-paramdesc-embedonly": "Kei Iberschrifte aazeige", + "smw-paramdesc-rdfsyntax": "D RDF-Syntax, wu brucht wäre soll", + "smw-paramdesc-csv-sep": "Trännzeiche, wu sott brucht wäre", + "smw-paramdesc-dsv-separator": "Trännzeiche, wu sott brucht wäre", + "smw-paramdesc-dsv-filename": "Dr Name fir d DSV-Datei", + "smw-paramdesc-searchlabel": "De Teggst für de Link zue de Ergebniss", + "smw_iq_disabled": "Semantischi Aafroge sin in däm Wiki zur Zyt nit megli.", + "smw_iq_moreresults": "… meh Ergebniss", + "smw_parseerror": "Dr Wärt, wu Du yygee hesch, isch nit verstande wore.", + "smw_notitle": "„$1“ cha nit as Sytename in däm Wiki bruucht wäre.", + "smw_wrong_namespace": "Nume Syten im Namensruum „$1“ sin doo zuelässig.", + "smw_manytypes": "In dr Eigeschaft sin e paar Datetype zuegwise wore.", + "smw_emptystring": "Lääri Zeichefolge wäre nit akzeptiert.", + "smw_notinenum": "„$1“ ghert nit zue dr meglige Wärt vu däre Eigeschaft ($2).", + "smw_noboolean": "„$1“ isch kei Wohretswärt (wohr/falsch).", + "smw_true_words": "wohr,w,jo,j", + "smw_false_words": "falsch,f,nei,n", + "smw_nofloat": "„$1“ isch kei Zahl.", + "smw_infinite": "D Zahl „$1“ isch z lang.", + "smw_novalues": "Kei Wärt spezifiziert.", + "smw_nodatetime": "S Datum „$1“ isch nit verstande wore.", + "smw_toomanyclosing": "In dr Aafrog chemme z vyyl „$1“ vor.", + "smw_noclosingbrackets": "In dr Aafrog chunnt e „[[“ vor, isch aber nit mit eme „]]“ abgschlosse.", + "smw_misplacedsymbol": "S Symbol „$1“ isch an ere Stell bruucht wore, wu s nit sinnvoll isch.", + "smw_unexpectedpart": "Dr Teil „$1“ vu dr Aafrog isch nit verstande wore. D Ergebnis sin villicht nit wie s erwartet woren isch.", + "smw_emptysubquery": "In ere Teilaafrog het s kei Bedingig.", + "smw_misplacedsubquery": "E Teilaafrog isch an ere Stell bruucht wore, wu keini Teilaafroge derfe vorchu.", + "smw_valuesubquery": "Teilaafroge wäre fir Wärt vudr Eigeschaft „$1“ nit unterstitzt.", + "smw_badqueryatom": "E Teil „[[…]]“ vu dr Aafrog isch nit verstande wore.", + "smw_propvalueproblem": "Dr Wärt vu dr Eigeschaft „$1“ isch nit verstande wore.", + "smw_noqueryfeature": "E Teil Aafrog-Feature sin im Momänt mit däm Wiki nit megli un dää Teil vu dr Frog isch glescht wore ($1).", + "smw_noconjunctions": "UND-Verchnipfige in dr Aafroge wäre in däm Wiki nit unterstitzt un dää Teil vu dr Aafrog isch glescht wore ($1).", + "smw_nodisjunctions": "ODER-Verchnipfige wäre in däm Wiki nit unterstitzt un e Teil vu dr Aafrog isch glescht wore ($1).", + "smw_querytoolarge": "Die Aafrogbedingige chenne für Greßi un Tiefi vu Aafroge nit berucksichtigt wäre wäge dr Beschränkige, wu in däm Wiki giltig sin: $1.", + "smw_notemplategiven": "Ass die Aafrog cha bearbeitet wäre, muess im Parameter „template“ e Wärt yytrage syy.", + "smw_type_header": "Eigeschafte mit em Datetyp „$1“", + "smw_typearticlecount": "S {{PLURAL:$1|wird ei Eigeschaft|wäre $1 Eigeschafte}} mit däm Datetyp aazeigt:", + "smw_attribute_header": "Syte mit dr Eigeschaft „$1“", + "smw_attributearticlecount": "S {{PLURAL:$1|wird ei Syten|wäre $1 Syten}} aazeigt, wu die Eigeschaft {{PLURAL:$1|bruucht|bruuche}}:", + "exportrdf": "Syten as RDF exportiere", + "smw_exportrdf_docu": "Doo chenne Informationen iber einzelni Syten im RDF-Format abgruefe wäre. Bitte gib d Name vu dr Syte zyylewyys yy.", + "smw_exportrdf_recursive": "Exportier au alli relevante Syte rekursiv. Dänk dra, ass d Ergebnis chenne arg groß syy!", + "smw_exportrdf_backlinks": "Exportier au alli Syte, wu uf exportierti Syte verwyye. Leit e RDF aa, wu lyychter cha dursuecht wäre.", + "smw_exportrdf_lastdate": "Exportier keini Syte, wu nimi gänderet wore sin syt em Zytpunkt, wu aagee isch.", + "smw_exportrdf_submit": "Exportiere", + "uriresolver": "URI-Ufleser", + "properties": "Eigeschafte", + "smw-categories": "Kategorie", + "smw_properties_docu": "In däm Wiki git s die Eigeschafte:", + "smw_property_template": "$1 mit Datetyp $2 ($3)", + "smw_propertylackspage": "Alli Eigeschafte sotte uf ere Syte bschribe syy!", + "smw_propertylackstype": "Fir die Eigeschaft isch kei Datetyp aagee wore ($1 wird vorerscht as Typ aagnuh).", + "smw_propertyhardlyused": "Die Eigeschaft wird im Wiki chuum bruucht!", + "unusedproperties": "Verwaisti Eigeschafte", + "smw-unusedproperties-docu": "Die Eigeschafte git s, trotz ass si nit bruucht wäre.", + "smw-unusedproperty-template": "$1 mit Datetyp $2", + "wantedproperties": "Gwinschti Eigeschafte", + "smw-wantedproperties-docu": "Die Attribut wäre no uf keinere Syte bschribe, trotz ass si scho in däm Wiki bruucht wäre.", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|Vorchu|Vorchu}})", + "smw_purge": "nej lade", + "types": "Datetype", + "smw_types_docu": "Die Datetype chenne Eigeschafte zuegwise wäre. E jede Datetyp het e eigeni Syte, wu gnaueri Informatione druf chenne yytrage wäre.", + "smw_uri_doc": "Dr URI-Ufleser setzt d Empfählige »[$1 W3C TAG finding on httpRange-14]« um.\nÄr sorgt defir, ass Mänsche nit zue Netzsyte wäre.", + "ask": "Semantischi Suechi", + "smw_ask_sortby": "Sortiere no Spalte (optional)", + "smw_ask_ascorder": "Obsgi", + "smw_ask_descorder": "Nidsgi", + "smw_ask_submit": "Ergebnis finde", + "smw_ask_editquery": "Aafrog bearbeite", + "smw_add_sortcondition": "[Sortieraawyysig zuefiege]", + "smw_ask_hidequery": "Aafrog uusblände", + "smw_ask_help": "Hilf", + "smw_ask_queryhead": "Aafrog", + "smw_ask_printhead": "Zuesätzligi Aagabe, wu solle aazeigt wäre", + "smw_ask_printdesc": "(ei Eigeschaftsname je Zyyle yyfiege)", + "smw_ask_format_as": "Formatiert as:", + "smw_ask_defaultformat": "Standard", + "smw_ask_otheroptions": "Andri Optione", + "smw_ask_show_embed": "Yyböute Code zeige", + "smw_ask_hide_embed": "Yyböute Code verstecke", + "smw_ask_embed_instr": "Verwänd dää Code unte go die Abstimmig in e Wikisyte yyböue.", + "searchbyproperty": "Iber e Eigeschaft sueche", + "smw_sbv_docu": "Diese Spezialsyte findet alli Syte, wu e bstimmte Wärt hän fir d Eigeschaft, wu aagee woren isch.", + "smw_sbv_novalue": "Bitte dr gwinscht Wärt yygee oder alli Wärte fir d Eigeschaft $1 aaluege.", + "smw_sbv_displayresultfuzzy": "E Lischt vu allene Syte, wu d Eigeschaft „$1“ mit em Wärt „$2“ hän.\nWel nume wenig Ergebnis gfunde wore sin, wäre au ähnligi Wärt ufglischtet.", + "smw_sbv_property": "Eigeschaft:", + "smw_sbv_value": "Wärt:", + "smw_sbv_submit": "Ergebnis finde", + "browse": "Wiki browse", + "smw_browselink": "Eigeschaften aazeige", + "smw_browse_article": "Bitte gib dr Titel vun ere Syte yy.", + "smw_browse_go": "Gang", + "smw_browse_show_incoming": "zeig Eigeschafte, wu do druff verwyyse", + "smw_browse_hide_incoming": "versteck Eigeschafte, wu do druff verwyyse", + "smw_browse_no_outgoing": "Die Syte het kei Eigeschafte.", + "smw_browse_no_incoming": "Kei Eigeschafte verwyyse uf die Syte.", + "smw_inverse_label_default": "$1 vu", + "smw_inverse_label_property": "Umgchehrti Eigeschaftbezeichnig", + "pageproperty": "Eigeschaftswärt vun ere Syte", + "smw_pp_docu": "No allene Wärt sueche, wu e bstimmt Attribut fir d Syte hän, wu aagee woren isch. Gib e Syte un au ne Attribut yy.", + "smw_pp_from": "Vu dr Syte", + "smw_pp_type": "Eigeschaft", + "smw_pp_submit": "Ergebnis aazeige", + "smw_result_prev": "Zrugg", + "smw_result_next": "Firschi", + "smw_result_results": "Ergebnis", + "smw_result_noresults": "Kei Ergebnis gfunde.", + "smwadmin": "Admin-Funktione fir Semantic MediaWiki", + "smw-admin-setupsuccess": "D Spychereinheit isch erfolgryych yygrichtet wore.", + "smw_smwadmin_return": "Zrugg zue $1", + "smw_smwadmin_updatestarted": "E neje Update-Prozäss fir d Aktualisierig vu dr semantische Date isch gstartet wore.\nAlli gspycherete Date wäre nej aagleit oder repariert, wänn netig.\nDu chasch dr Fortschritt vum Update uf däre Spezialsyte verfolge.", + "smw_smwadmin_updatenotstarted": "S lauft scho ne Update-Prozäss.\nS wird kei neje aagfange.", + "smw_smwadmin_updatestopped": "Alli Aktualisierigsprozäss, wu s git, sin aaghalte wore.", + "smw_smwadmin_updatenotstopped": "Go Prozäss aahlate, wu am laufe sin, muesch Du s Kontrollchäschtli aktiviere zum aazeige, ass Du Dir wirkli sicher bisch.", + "smw-admin-docu": "Die Spezialsyte hilft währed dr Installation un em Upgrade vu Semantic MediaWiki.\nDänk dra, wichtigi Date vor dr Uusfierig vu adminischtrative Funktione z sichere.", + "smw-admin-db": "Datebankinstallation un -aktualisierig", + "smw-admin-dbdocu": "Semantic MediaWiki bruucht e paar Erwyterige an dr MediaWiki-Datebank go di semantische Date z spychere.\nDie Funktion gwährleischtet, ass d Datebank richtig yygrichtet isch.\nD Änderige, wu in däm Schritt gmacht wäre, stere dr Räscht vu dr MediaWiki-Datebank nit un chenne eifach zrugggsetzt wäre, wänn gwinscht.\nDie Setup-Funktion cha e paar Mol uusgfiert wäre ohni Schade z verursache, s isch aber nume eimol netig bi dr Installation oder em Update.", + "smw-admin-permissionswarn": "Wänn d Aktion mit eme SQL-Fähler abbricht, chennt s syy, ass dr Datebankbenutzer, wu s Wiki iber en uf d Datenbank zuegryft (lueg d Datei LocalSettings.php), nit d Rächt dezue het.\nGo des Probläm lese isch s megli, em Benutzer zuesätzligi Rächt fir s Aalege und Lesche vu Tabälle z gee, dr Datebank-Adminischtrator zytwyys in d LocalSettings.php yyztrage oder s Wartigsskript setupStore.php z verwände, wu d Benutzerdate us AdminSettings.php cha verwände.", + "smw-admin-dbbutton": "Tabällen initialisiere oder aktualisere", + "smw-admin-announce": "Dyy Wiki aachinde", + "smw_smwadmin_datarefresh": "Datereparatur un -aktualisierig", + "smw_smwadmin_datarefreshdocu": "S isch megli alli Datebanke vu Semantic MediaWiki uf dr Grundlag vum aktuälle Inhalt vum Wiki widerhärzstelle.\nDes cha hälfe, ne kaputti Datebank nej z lade oder Date z aktualisiere, wänn wägen eme Softwareupgrade d Datebankstruktur gänderet wore isch.\nS Update wird fir jedi Syte uusgfiert un wird e Wyyli bruuche.\nDoo wird zeigt, eb e Update lauft un Di wird erlaubt e Update z starte oder z stoppe (usser wänn die Funktion vum Sytebetryyber deaktiviert woren isch).", + "smw_smwadmin_datarefreshprogress": "E Update lauft scho.\nE Update bruucht nromalerwyys lang, wel d Date nume in chleine Prtione aktualisiert wäre, jedes Mol wänn eber uf s Wiki zuegryft.\nGo des Update schnäller z beände, cha mer s MediaWiki-Wartigsskript runJobs.php bruuche (mit em Parameter --maxjobs 1000 cha d Aazahl vu dr Updates, wu uf eimol durgfiert wäre, bschränkt wäre).\nGschätzte Fortschritt vum Update, wu grad lauft:", + "smw_smwadmin_datarefreshbutton": "Mit dr Datenaktualisierig aafange", + "smw_smwadmin_datarefreshstop": "Mit däre Aktualisierig ufhere", + "smw_smwadmin_datarefreshstopconfirm": "Jo, ich bi mer sicher.", + "smw-admin-support": "Unterstitzig iberchu", + "smw-admin-supportdocu": "Verschideni Quälle hälfe Dir villicht bi me Problämfall:", + "smw-admin-installfile": "Wänn s Probläm mit dr Inschtallation git, chennt d Datei INSTALL villicht wyterhälfe.", + "smw-admin-smwhomepage": "Di vollständig Benutzerdokumentation vu Semantic MediaWiki findsch uf semantic-mediawiki.org.", + "smw-admin-bugsreport": "Fähler chennte bi GitHub berichtet wäre.", + "smw-admin-questions": "Wänn Du meh Frogen oder Vorschleg hesch, mach mit an dr Diskussion uf Semantic MediaWiki user forum.", + "smw_adminlinks_datastructure": "Datestruktur", + "smw_adminlinks_displayingdata": "Date abbilde", + "smw_adminlinks_inlinequerieshelp": "Hilf fir Inline-Abfroge", + "smw-createproperty-isproperty": "Des isch e Eigeschaft vum Typ $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Dr erlaubt Wärt fir die Eigeschaft isch|Di erlaubte Wärt fir die Eigeschaft sin}}:", + "smw_unknowntype": "Imn dr Eigeschaft isch dr nit bekannt Datetyp „$1“ zuegwise wore.", + "smw_concept_header": "Syte vum Konzäpt „$1“", + "smw_conceptarticlecount": "S {{PLURAL:$1|wird ei Syten|wäre $1 Syten}} aazeigt, wu zue däm Konzäpt {{PLURAL:$1|ghert|ghere}}:", + "smw-livepreview-loading": "Am Lade …", + "smw-listingcontinuesabbrev": "(Forts.)", + "smw-showingresults": "Do {{PLURAL:$1|isch '''1''' Ergebnis|sin '''$1''' Ergebniss}}, s fangt aa mit dr Nummerer '''$2.'''" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/gu.json b/mediawiki/extensions/SemanticMediaWiki/i18n/gu.json new file mode 100644 index 0000000..81866d5 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/gu.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Dsvyas" + ] + }, + "smw-categories": "શ્રેણીઓ", + "browse": "વિકિ વાંચો", + "smw-livepreview-loading": "લવાઇ રહ્યું છે...", + "smw-listingcontinuesabbrev": "ચાલુ..", + "smw-showingresults": " {{PLURAL:$1|'''1''' પરિણામ|'''$1''' પરિણામો}} સુધી #'''$2''' થી શરૂ કરી" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/hak.json b/mediawiki/extensions/SemanticMediaWiki/i18n/hak.json new file mode 100644 index 0000000..a8afba0 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/hak.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Hakka" + ] + }, + "smw-categories": "Fûn-lui", + "smw-livepreview-loading": "Chang-chhai chai-ngi̍p…", + "smw-listingcontinuesabbrev": "sa", + "smw-showingresults": "Ha-mien hién-sṳ chhiùng thi-'''$2'''-thiàu khôi-sṳ́ ke '''$1'''-thiàu kiet-kó:" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/haw.json b/mediawiki/extensions/SemanticMediaWiki/i18n/haw.json new file mode 100644 index 0000000..19f4830 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/haw.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Kolonahe" + ] + }, + "smw-categories": "Nā Māhele", + "smw-livepreview-loading": "Ke ho‘ouka nei…", + "smw-listingcontinuesabbrev": "(homaʻia)" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/he.json b/mediawiki/extensions/SemanticMediaWiki/i18n/he.json new file mode 100644 index 0000000..7ad42de --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/he.json @@ -0,0 +1,1123 @@ +{ + "@metadata": { + "authors": [ + "Amire80", + "Dee", + "Drorsnir", + "Ghsuvr", + "Guycn2", + "Inkbug", + "MojoMann", + "Nemo bis", + "Or", + "Rotemliss", + "Steeve815", + "Strayblues", + "Tuvalevsku", + "Udi Oron אודי אורון", + "YaronSh", + "המקיסט", + "חיים", + "נדב ס", + "ערן", + "שניאור זלמן", + "아라" + ] + }, + "smw-desc": "הנגשת הוויקי שלך – למכונות וגם לבני־אדם ([https://www.semantic-mediawiki.org/wiki/Help:User_manual תיעוד מקוון])", + "smw-error": "שגיאה", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ מדיה־ויקי סמנטית] הותקנה והופעל, אבל חסר לה [https://www.semantic-mediawiki.org/wiki/Help:Upgrade מפתח שדרוג].", + "smw-upgrade-release": "מהדורה", + "smw-upgrade-progress": "התקדמות", + "smw-upgrade-progress-explain": "הערכה לגבי מתי השדרוג עומד להסתיים קשה לחיזוי כי היא תלויה בגודל מאגר הנתונים והחומרה הזמינה וזה יכול לקחת רגע להשלים אותה באתרי גדולים יותר.\n\nנא ליצור קשר עם מפעיל מקומי כדי לקבל מידע נוסף על ההתקדמות.", + "smw-upgrade-progress-create-tables": "יצירה (או עדכון) של טבלאות ומפתחות...", + "smw-upgrade-progress-post-creation": "הפעלת משימות אחרי יצירה...", + "smw-upgrade-progress-table-optimization": "הרצת מיטוב טבלאות...", + "smw-upgrade-progress-supplement-jobs": "הוספת משימות משלימות...", + "smw-upgrade-error-title": "שגיאה » מדיה־ויקי סמנטית", + "smw-upgrade-error-why-title": "למה אני רואה את הדף הזה?", + "smw-upgrade-error-why-explain": "מבנה מסד הנתונים הפנימי של מדיה־ויקי סמנטית השתנה ודורש כמה התאמות כדי לפעול באופן מלא. יכולות להיות לכך כמה סיבות, כולל:\n* נוספו מאפיינים קבועים נוספים (דורש הגדרת טבלה נוספת)\n* שדרוג מכיל כמה שינויים בטבלאות או מפתחות שמחייבים יירוט לפני גישה לנתונים\n* שינויים במנוע אחסון או במנוע השאילתות", + "smw-upgrade-error-how-title": "איך לתקן את השגיאה הזאת?", + "smw-upgrade-error-how-explain-admin": "מפעיל (או כל אדם בעל הרשאות מפעיל) צריך להריץ את [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] של מדיה־ויקי או את סקריפט תחזוקה [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] של מדיה־ויקי סמנטית.", + "smw-upgrade-error-how-explain-links": "באפשרותך גם לעיין בדפים הבאים לסיוע נוסף:\n* הוראות [https://www.semantic-mediawiki.org/wiki/Help:Installation התקנה]\n* דף העזרה [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting Troubleshooting]", + "smw-extensionload-error-why-title": "למה אני רואה את הדף הזה?", + "smw-extensionload-error-why-explain": "ההרחבה לא נטענה באמצעות enableSemantics ובמקום זאת הופעלה באמצעים אחרים כגון שימוש ב־wfLoadExtension( 'SemanticMediaWiki' ) ישירות.", + "smw-extensionload-error-how-title": "איך לתקן את השגיאה הזאת?", + "smw-extensionload-error-how-explain": "כדי להפעיל את ההרחבה ולהימנע מבעיות עם הצהרות מרחבי שם ותצורות ממתינות, יש להשתמש ב־enableSemantics וזה יבטיח שהמשתנים הנדרשים מוגדרים לפני טעינת ההרחבה דרך ה־ExtensionRegistry.\n\nנא לעיין בדף העזרה [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] לסיוע נוסף.", + "smw-upgrade-maintenance-title": "תחזוקה » מדיה־ויקי סמנטית", + "smw-upgrade-maintenance-why-title": "למה אני רואה את הדף הזה?", + "smw-upgrade-maintenance-note": "המערכת עוברת כעת [https://www.semantic-mediawiki.org/wiki/Help:Upgrade שדרוג] של ההרחבה [https://www.semantic-mediawiki.org/ Semantic MediaWiki] יחד עם מאגר הנתונים שלה ואנו רוצים לבקש ממך להמתין בסבלנות ולאפשר לתחזוקה להימשך לפני שיהיה ניתן להפוך את הוויקי לנגיש שוב.", + "smw-upgrade-maintenance-explain": "ההרחבה מנסה למזער את ההשפעה ואת זמן ההשבתה על־ידי דחיית רוב משימות התחזוקה שלה לביצוע אחרי הרצת update.php, אבל כמה שינויים שקשורים למסד הנתונים חייבים להסתיים לפני־כן כדי למנוע חוסר־עקביות בנתונים. זה יכול לכלול:\n* שינוי מבני טבלאות כגון הוספת שדות חדשים או שינוי שדות קיימים \n* שינוי או הוספה של מפתחות טבלה \n* הפעלת מיטוב טבלאות (כאשר מופעלות)", + "smw-semantics-not-enabled": "התכונה \"מדיה־ויקי סמנטית\" לא הופעלה בוויקי הזה.", + "smw_viewasrdf": "הזנת RDF", + "smw_finallistconjunct": " וגם", + "smw-factbox-head": "... מידע נוסף על \"$1\"", + "smw-factbox-facts": "עובדות", + "smw-factbox-facts-help": "הצגת קביעות ועובדות שנוצרו על־ידי משתמש", + "smw-factbox-attachments": "צרופות", + "smw-factbox-attachments-value-unknown": "לא זמינה", + "smw-factbox-attachments-is-local": "מקומית", + "smw-factbox-attachments-help": "הצגת צרופות זמינות", + "smw-factbox-facts-derived": "עובדות נגזרות", + "smw-factbox-facts-derived-help": "הצגת עובדות שנגזרו מתוך חוקים או עם עזרה משיטות הנמקה אחרות", + "smw_isspecprop": "זהו מאפיין מיוחד בוויקי הזה.", + "smw-concept-cache-header": "שימוש במטמון", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count מטמון הרעיונות] מכיל {{PLURAL:$1|ישות אחת|'''$1''' ישויות}} ($2)", + "smw-concept-no-cache": "אין מטמון זמין.", + "smw_concept_description": "תיאור הרעיון \"$1\"", + "smw_no_concept_namespace": "ניתן להגדיר רעיונות רק בדפים שבמרחב השם Concept:.", + "smw_multiple_concepts": "לכל דף רעיון יכולה להיות רק הגדרת רעיון אחת.", + "smw_concept_cache_miss": "לא ניתן להשתמש ברעיון \"$1\" כרגע, כיוון שתצורת הוויקי דורשת את עיבודו באופן בלתי־מקוון.\nאם התקלה אינה נעלמת לאחר זמן־מה, יש לבקש ממנהל האתר להפוך את הרעיון הזה לזמין.", + "smw_noinvannot": "ערכים אינם יכולים להיות מושמים למאפיינים הפוכים.", + "version-semantic": "הרחבות סמנטיות", + "smw_baduri": "כתובות מהצורה \"$1\" אינן מורשות.", + "smw_printername_count": "ספירת התוצאות", + "smw_printername_csv": "יצוא CSV", + "smw_printername_dsv": "יצוא DSV", + "smw_printername_debug": "חיפוש שגיאות (למומחים)", + "smw_printername_embedded": "הטבעת תוכן הדף", + "smw_printername_json": "יצוא JSON", + "smw_printername_list": "רשימה", + "smw_printername_plainlist": "רשימה רגילה", + "smw_printername_ol": "רשימה ממוספרת", + "smw_printername_ul": "רשימה עם תבליטים", + "smw_printername_table": "טבלה", + "smw_printername_broadtable": "טבלה רחבה", + "smw_printername_template": "תבנית", + "smw_printername_templatefile": "קובץ התבנית", + "smw_printername_rdf": "יצוא RDF", + "smw_printername_category": "קטגוריה", + "validator-type-class-SMWParamSource": "טקסט", + "smw-paramdesc-limit": "מספר התוצאות המרבי להחזרה", + "smw-paramdesc-offset": "ההיסט של התוצאה הראשונה", + "smw-paramdesc-headers": "הצגת הכותרות או שמות המאפיינים", + "smw-paramdesc-mainlabel": "התווית שתינתן לשם העמוד הראשי", + "smw-paramdesc-link": "הצגת ערכים כקישורים", + "smw-paramdesc-intro": "הטקסט להצגה לפני תוצאות התשאול, אם יש כאלו", + "smw-paramdesc-outro": "הטקסט להצגה לאחר תוצאות התשאול, אם יש כאלו", + "smw-paramdesc-default": "הטקסט להצגה אם אין תוצאות תשאול", + "smw-paramdesc-sep": "המפריד בין התוצאות", + "smw-paramdesc-propsep": "המפריד בין המאפיינים של ערך התוצאה", + "smw-paramdesc-valuesep": "המפריד בין הערכים במאפיין של תוצאה", + "smw-paramdesc-showsep": "הצגת מפריד בתחילת קובץ CSV (\"מפריד=<ערך>\")", + "smw-paramdesc-distribution": "במקום להציג את כל הערכים, לספור את המופעים שלהם ולהציג אותם.", + "smw-paramdesc-distributionsort": "למיין את התפלגות הערכים לפי מניין המופעים.", + "smw-paramdesc-distributionlimit": "להגביל את התפלגות הערכים לפי מניין של ערכים מסוימים בלבד.", + "smw-paramdesc-aggregation": "נא לציין לאיזה דבר הצבירה צריכה להתייחס", + "smw-paramdesc-template": "שם התבנית להצגת התדפיסים", + "smw-paramdesc-columns": "מספר העמודות להצגת התוצאות", + "smw-paramdesc-userparam": "הערך המועבר לכל קריאה לתבנית, אם נעשה שימוש בתבנית", + "smw-paramdesc-class": "הגדרת מחלקת CSS נוספת עבור הרשימה", + "smw-paramdesc-introtemplate": "שם התבנית שתוצג לפני תוצאות השאילתה, אם יש תוצאות", + "smw-paramdesc-outrotemplate": "שם התבנית שתוצג אחרי תוצאות השאילתה, אם יש תוצאות", + "smw-paramdesc-embedformat": "תג ה־HTML המשמש להגדרת כותרות", + "smw-paramdesc-embedonly": "לא להציג כותרות", + "smw-paramdesc-table-class": "מחלקת CSS נוספת שתוחל על הטבלה", + "smw-paramdesc-table-transpose": "הצגת כותרות טבלה אנכית ותוצאות אופקית", + "smw-paramdesc-prefix": "שליטה בתצוגת מרחב השמות בתדפיסים", + "smw-paramdesc-rdfsyntax": "באיזה תחביר RDF להשתמש", + "smw-paramdesc-csv-sep": "מגדיר מפריד טורים", + "smw-paramdesc-csv-valuesep": "מגדיר מפריד ערכים", + "smw-paramdesc-csv-merge": "מיזוג שורות וערכי עמודות עם מזהה נושא זהה (ידוע גם בשם העמודה הראשונה)", + "smw-paramdesc-csv-bom": "הוספת BOM (תו הגדרת סופיּות) בחלק העליון של קובץ הפלט", + "smw-paramdesc-dsv-separator": "באיזה תו הפרדה להשתמש", + "smw-paramdesc-dsv-filename": "שם קובץ DSV", + "smw-paramdesc-filename": "שם קובץ הפלט", + "smw-smwdoc-description": "הצגת טבלה של כל הפרמטרים שאפשר להשתמש בהם לתבנית התוצאה הזאת יחד עם ערכי ברירת מחדל ותיאורים.", + "smw-smwdoc-default-no-parameter-list": "תסדיר התוצאה הזה אינו מספק פרמטרים ספציפיים לתסדיר.", + "smw-smwdoc-par-format": "לאיזה תסדיר תוצאה להציג את תיעוד הפרמטרים.", + "smw-smwdoc-par-parameters": "אילו פרמטרים להציג. \"specific\" למה שמוסיף התסדיר, \"base\" למה שזמין בכל התסדירים, ו־\"all\" לשניהם.", + "smw-paramdesc-sort": "המאפיין שהשאילתה תמוין לפיו", + "smw-paramdesc-order": "סדר מיון השאילתה", + "smw-paramdesc-searchlabel": "טקסט עבור המשך החיפוש", + "smw-paramdesc-named_args": "שמות הפרמטרים שיועברו לתבנית", + "smw-paramdesc-template-arguments": "מגדיר כיצד הארגומנטים בעלי השם מועברים לתבנית", + "smw-paramdesc-import-annotation": "נתונים מוערים נוספים עומדים להיות מועתקים בזמן פענוח של נושא", + "smw-paramdesc-export": "אפשרות יצוא", + "smw-paramdesc-prettyprint": "פלט מעוצב יפה עם יותר עימוד וירידות שורה", + "smw-paramdesc-json-unescape": "הפלט יכיל לוכסנים בלתי־מחולפים ותווי יוניקוד מרובי־בתים.", + "smw-paramdesc-json-type": "סוג ההסדרה", + "smw-paramdesc-source": "מקור שאילתה חלופי", + "smw-paramdesc-jsonsyntax": "באיזה תחביר JSON להשתמש", + "smw-printername-feed": "הזנת Atom ו־RSS", + "smw-paramdesc-feedtype": "סוג הזנה", + "smw-paramdesc-feedtitle": "טקסט שישמש לכותרת ההזנה", + "smw-paramdesc-feeddescription": "טקסט שישמש לתיאור ההזנה", + "smw-paramdesc-feedpagecontent": "תוכן דף שיוצג עם ההזנה", + "smw-label-feed-description": "הזנת $2 של $1", + "smw-paramdesc-mimetype": "סוג המדיה (סוג MIME) עבור קובץ הפלט", + "smw_iq_disabled": "שאילתות סמנטיות הושבטו בויקי הזה.", + "smw_iq_moreresults": "... תוצאות נוספות", + "smw_parseerror": "הערך שניתן לא הובן.", + "smw_notitle": "\"$1\" אינו יכול לשמש שם דף בןויקי הזה.", + "smw_noproperty": "המחרוזת \"$1\" לא יכולה להיות שם של מאפיין בוויקי הזה.", + "smw_wrong_namespace": "רק דפים ממרחב השם \"$1\" מורשים כאן.", + "smw_manytypes": "הוגדר יותר מסוג אחד למאפיין הזה.", + "smw_emptystring": "מחרוזות ריקות אינן מתקבלות.", + "smw_notinenum": "\"$1\" אינו ברשימה ($2) של [[Property:Allows value|הערכים האפשריים]] למאפיין \"$3\".", + "smw-datavalue-constraint-error-allows-value-list": "\"$1\" אינו ברשימה ($2) של [[Property:Allows value|הערכים האפשריים]] למאפיין \"$3\".", + "smw-datavalue-constraint-error-allows-value-range": "\"$1\" אינו בטווח ההוא של \"$2\" שמוגדר על־ידי אילוץ [[Property:Allows value|הערכים האפשריים]] למאפיין \"$3\".", + "smw-constraint-error": "בעיית אילוץ", + "smw-constraint-error-suggestions": "נא לבדוק את ההפרות והמאפיינים המפורטים יחד עם הערכים המוערים שלהם כדי לוודא שכל דרישות האילוץ מתקיימות.", + "smw-constraint-error-limit": "הרשימה תכיל לכל היותר $1 הפרות.", + "smw_noboolean": "[אופס! \"$1\" אינו מאפיין מסוג נכון-לאנכון]", + "smw_true_words": "true,t,yes,y,כן,נכון,אמת,חיובי,כ", + "smw_false_words": "false,f,no,n,לא,לא נכון,לא-נכון,ש,שקר,שלילי,ל", + "smw_nofloat": "\"$1\" אינו מספר.", + "smw_infinite": "מספרים גדולים כמו \"$1\" אינם נתמכים.", + "smw_unitnotallowed": "\"$1\" אינה יחידה תקינה למדידת המאפיין הזה", + "smw_nounitsdeclared": "לא הוגדרו יחידות מידה למאפיין הזה.", + "smw_novalues": "לא צוינו ערכים.", + "smw_nodatetime": "התאריך \"$1\" אינו מובן.", + "smw_toomanyclosing": "נראה שיש מופעים רבים מדי של \"$1\" בשאילתה.", + "smw_noclosingbrackets": "בכמה מהפעמים שבהם השתמשת ב־\"[[\" בשאילתה לא דאגת להציב \"]]\" תואם לסגירה.", + "smw_misplacedsymbol": "נעשה שימוש בסימן \"$1\" במקום שהוא לא מועיל בו.", + "smw_unexpectedpart": "החלק \"$1\" מהשאילתה לא הובן.\nייתכן שהתוצאות לא יתאימו למצופה.", + "smw_emptysubquery": "לאחת משאילתות־המשנה אין תנאים תקינים.", + "smw_misplacedsubquery": "נעשה שימוש בשאילתת־משנה כלשהי במקום שבו שאילתות־משנה אינן מורשות.", + "smw_valuesubquery": "שאילתות־משנה אינן נתמכות עבור ערכי המאפיין \"$1\".", + "smw_badqueryatom": "כמה חלקים \"[[…]]\" מהשאילתה לא הובנו.", + "smw_propvalueproblem": "ערך המאפיין \"$1\" לא הובן.", + "smw_noqueryfeature": "חלק מהתכונות שבשאילתה אינן נתמכות בוויקי הזה וחלקים מהשאילתה הושמטו ($1).", + "smw_noconjunctions": "מילות חיבור בשאילתות אינן נתמכות בוויקי הזה וחלק מהשאילתה נזרק ($1).", + "smw_nodisjunctions": "מילות הפרדה (disjunctions) בשאילתות אינן נתמכות בוויקי הזה וחלק מהשאילתה נזרק ($1).", + "smw_querytoolarge": "לא היה אפשר לשקול את תנאי השאילתה {{PLURAL:$2|הבא|הבאים}} בשל המגבלות שאתר הוויקי הזה מטיל על עומק או גודל של שאילתה: $1.", + "smw_notemplategiven": "חובה לתת ערך לפרמטר \"template\" כדי שתסדיר השאילתה הזה יעבוד.", + "smw_db_sparqlqueryproblem": "לא ניתן היה לקבל את תוצאת השאילתה ממסד הנתונים SPARQL. השגיאה הזאת יכולה להיות זמנית או להצביע על באג בתכנת מסד הנתונים.", + "smw_db_sparqlqueryincomplete": "הסתבר שמענה לשאילתה הזאת קשה מדי והוא בוטל. ייתכן שתוצאות אחדות חסרות. אם זה אפשרי, יש לנסות שאילתה פשוטה יותר.", + "smw_type_header": "מאפיינים מסוג \"$1\"", + "smw_typearticlecount": "{{PLURAL:$1|מוצג מאפיין אחד המשתמש|מוצגים $1 מאפיינים המשתמשים}} בסוג הזה.", + "smw_attribute_header": "דפים המשתמשים במאפיין \"$1\"", + "smw_attributearticlecount": "הצגת {{PLURAL:$1|דף אחד שמשתמש|$1 דפים שמשתמשים}} במאפיין הזה.", + "smw-propertylist-subproperty-header": "מאפייני־משנה", + "smw-propertylist-redirect-header": "שמות נרדפים", + "smw-propertylist-error-header": "דפים עם השמות לא הולמות", + "smw-propertylist-count": "{{PLURAL:$1|מוצגת ישות קשורה אחת|מוצגות $1 ישויות קשורות}}.", + "smw-propertylist-count-with-restricted-note": "{{PLURAL:$1|מוצגת ישות קשורה אחת|מוצגות $1 ישויות קשורות}} (ישויות נוספות זמינות, אך התצוגה מוגבלת ל־$2).", + "smw-propertylist-count-more-available": "{{PLURAL:$1|מוצגת ישות קשורה אחת|מוצגות $1 ישויות קשורות}} (ישויות נוספות זמינות).", + "specialpages-group-smw_group": "מדיה־ויקי סמנטית", + "specialpages-group-smw_group-maintenance": "תחזוקה", + "specialpages-group-smw_group-properties-concepts-types": "מאפיינים, רעיונות וסוגים", + "specialpages-group-smw_group-search": "עיון וחיפוש", + "exportrdf": "יצוא דפים ל־RDF", + "smw_exportrdf_docu": "הדף הזה מאפשר לך לאחזר נתונים מדף בתסדיר RDF.\nכדי לייצא דפים, יש לכתוב את כותרות הדפים בתיבת הטקסט שלהלן, כותרת אחת בכל שורה.", + "smw_exportrdf_recursive": "יצוא רקורסיבי של כל הדפים הקשורים.\nשימו לב שהתוצאה עלולה להיות גדולה!", + "smw_exportrdf_backlinks": "לייצא גם את כל הדפים המפנים לדפים המיוצאים.\nייווצר RDF הניתן לעיון.", + "smw_exportrdf_lastdate": "אין לייצא דפים שלא שונו מאז נקודת הזמן שצוינה.", + "smw_exportrdf_submit": "יצוא", + "uriresolver": "פותר הכתובות", + "properties": "מאפיינים", + "smw-categories": "קטגוריות", + "smw_properties_docu": "בוויקי הזה נעשה שימוש במאפיינים הבאים.", + "smw_property_template": "$1 מסוג $2 ($3 {{PLURAL:$3|פעם אחת|פעמים}})", + "smw_propertylackspage": "כל המאפיינים אמורים להיות מתוארים על־ידי דף!", + "smw_propertylackstype": "לא צוין סוג עבור המאפיין הזה (בינתיים נניח שהוא מסוג $1).", + "smw_propertyhardlyused": "בקושי נעשה שימוש במאפיין הזה בוויקי הזה!", + "smw-property-name-invalid": "לא ניתן להשתמש במאפיין $1 (שם מאפיין בלתי־תקין)", + "smw-property-name-reserved": "\"$1\" נמצא ברשימת השמות השמורים, ולכן לא יכול לשמש כמאפיין. ייתכן ש[https://www.semantic-mediawiki.org/wiki/Help:Property_naming דף העזרה הזה] מכיל מידע לגבי הסיבה שבגינה השם הזה שמור.", + "smw-sp-property-searchform": "להציג מאפיינים שמכילים:", + "smw-sp-property-searchform-inputinfo": "הקלט תלוי־רישיות וכאשר הוא משמש לסינון, מוצגים רק מאפיינים שמתאימים לתנאי.", + "smw-special-property-searchform": "הצגת מאפיינים שמכילים:", + "smw-special-property-searchform-inputinfo": "הקלט תלוי־רישיות וכאשר הוא משמש לסינון, מוצגים רק מאפיינים שמתאימים לתנאי.", + "smw-special-property-searchform-options": "אפשרויות", + "smw-special-wantedproperties-filter-label": "מסנן:", + "smw-special-wantedproperties-filter-none": "כלום", + "smw-special-wantedproperties-filter-unapproved": "לא מאושר", + "smw-special-wantedproperties-filter-unapproved-desc": "אפשרות סינון בשימוש בקשר למצב הסמכות.", + "concepts": "רעיונות", + "smw-special-concept-docu": "ניתן להציג [https://www.semantic-mediawiki.org/wiki/Help:Concepts רעיון] בתור \"קטגוריה דינמית\", כלומר בתור אוסף של דפים שאינם מיוצרים אוטומטית, אלא מחושבים על־ידי מדיה־ויקי סמנטית מתיאור בשאילתה נתונה.", + "smw-special-concept-header": "רשימת רעיונות", + "smw-special-concept-count": "{{PLURAL:$1|רשום הרעיון הבא|רשומים $1 הרעיונות הבאים}}", + "smw-special-concept-empty": "לא נמצא שום רעיון.", + "unusedproperties": "מאפיינים שאינם בשימוש", + "smw-unusedproperties-docu": "הדף הזה רושם [https://www.semantic-mediawiki.org/wiki/Unused_properties מאפיינים שאינם בשימוש] שמוכרזים אף ששום דף אינו משתמש בהם. לתצוגה מובדלת, ר' את הדפים המיוחדים של [[Special:Properties|כל המאפיינים]] או של [[Special:WantedProperties|המאפיינים הרצויים]].", + "smw-unusedproperty-template": "$1 מסוג $2", + "wantedproperties": "מאפיינים מבוקשים", + "smw-wantedproperties-docu": "הדף הזה מציג [https://www.semantic-mediawiki.org/wiki/Unused_properties מאפיינים מבוקשים] שמשמשים באתר הוויקי, אבל אין שום דף שמתאר אותם. לתצוגה מובדלת, ר' את הדפים המיוחדים של [[Special:Properties|כל המאפיינים]] או של [[Special:UnusedProperties|המאפיינים שאינם בשימוש]].", + "smw-wantedproperty-template": "$1 (בשימוש {{PLURAL:$2|פעם אחת|$2 פעמים}})", + "smw-special-wantedproperties-docu": "הדף הזה מציג [https://www.semantic-mediawiki.org/wiki/Unused_properties מאפיינים מבוקשים] שמשמשים באתר הוויקי, אבל אין שום דף שמתאר אותם. לתצוגה מובדלת, ר' את הדפים המיוחדים של [[Special:Properties|כל המאפיינים]] או של [[Special:UnusedProperties|המאפיינים שאינם בשימוש]].", + "smw-special-wantedproperties-template": "$1 (בשימוש {{PLURAL:$2|פעם אחת|$2 פעמים}})", + "smw_purge": "רענון", + "smw-purge-update-dependencies": "מדיה־ויקי סמנטית מנקה את הדף הנוכחי עקב כמה תלויות מיושנות שהיא זיהתה שדורשת עדכון.", + "smw-purge-failed": "מדיה־ויקי סמנטית ניסתה לנקות את מטמון הדף, אבל נכשלה", + "types": "סוגים", + "smw_types_docu": "רשימה של [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes סוגי נתונים זמינים] שבה כל [https://www.semantic-mediawiki.org/wiki/Help:Datatype סוג] מייצג ערכה ייחודית של תכונות שמתארות ערך במונחים של מאבחני אחסון ותצוגה שיורשים ממאפיין מוחל.", + "smw-special-types-no-such-type": "$1 אינו ידוע או שלא הוגדר כנתון תקין", + "smw-statistics": "סטטיסטיקה סמנטית", + "smw-statistics-cached": "סטטיסטיקה סמנטית (במטמון)", + "smw-statistics-entities-total": "ישויות (בסך הכול)", + "smw-statistics-entities-total-info": "ספירת שורות משוערת של ישויות. הוא כולל מאפיינים, רעיונות או כל ייצוג אחר של עצם רשום הדורש השמת מזהה.", + "smw-statistics-property-instance": "{{PLURAL:$1|ערך של מאפיין|ערכים של מאפיינים}} (סה\"כ)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|מאפיין|מאפיינים}}]] (סה\"כ)", + "smw-statistics-property-total-info": "סך המאפיינים הרשומים.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|מאפיין|מאפיינים}} (סה\"כ)", + "smw-statistics-property-used": "{{PLURAL:$1|מאפיין|מאפיינים}} (שמשמשים לפחות עם ערך אחד)", + "smw-statistics-property-page": "{{PLURAL:$1|מאפיין (רשום עם דף)|מאפיינים (רשומים עם דף)}}", + "smw-statistics-property-page-info": "מנייןהמאפיינים שיש להם דף ותיאור ייעודיים.", + "smw-statistics-property-type": "{{PLURAL:$1|מאפיין (משויך לסוג נתונים)|מאפיינים (משויכים לסוג נתונים)}}", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|שאילתה|שאילתות}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|שאילתה|שאילתות}}]] (מוטבעת, סה\"כ)", + "smw-statistics-query-format": "תסדיר $1", + "smw-statistics-query-size": "גודל השאילתה", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|רעיון|רעיונות}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|רעיון|רעיונות}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|עצם־משנה|עצמי־משנה}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|עצם־משנה|עצמי־משנה}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|סוג נתונים|סוגי נתונים}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|ערך מאפיין|ערכי מאפיין}} ([[Special:ProcessingErrorList|{{PLURAL:$1|הערה לא הולמת|הערות לא הולמות}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|ערך מאפיין|ערכי מאפיין}} ({{PLURAL:$1|הערה לא מתאימה|הערות לא מתאימות}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|ישות מיושנת (מסומנת להסרה)|ישויות מיושנות (מסומנות להסרה)}}]", + "smw-statistics-delete-count-info": "יש להשליך באופן קבוע ישויות שסומנו להסרה באמצעות סקריפטי התחזוקה שסופקו.", + "smw_uri_doc": "פותרן הכתובות מיישם את [$1 חיפוש W3C TAG ב־httpRange-14].\nהוא מבטיח שייצוג RDF (למכונות) של דף ויקי (לאנשים) נמסר בהתאם לבקשה.", + "ask": "חיפוש סמנטי", + "smw-ask-help": "הפרק הזה מכיל כמה קישורים שיעזרו להסביר כיצד להשתמש בתחביר #ask.\n\n* הדף [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages בחירת דפים] מתאר כיצד לבחור דפים ולבנות תנאים\n\n* הדף [https://www.semantic-mediawiki.org/wiki/Help:Search_operators אופרטורי חיפוש] מפרט אופרטורי חיפוש זמינים, כולל אלה עבור שאילתות טווח ושאילתות תווים כלליים\n\n* הדף [https ://www.semantic-mediawiki.org/wiki/Help:Displaying_information הצגת מידע] מתאר את השימוש בהצהרות תדפיס ואפשרויות עיצוב", + "smw_ask_sortby": "מיון לפי טור (לא חובה)", + "smw_ask_ascorder": "בסדר עולה", + "smw_ask_descorder": "בסדר יורד", + "smw-ask-order-rand": "אקראי", + "smw_ask_submit": "חפש תוצאות", + "smw_ask_editquery": "עריכת השאילתה", + "smw_add_sortcondition": "[הוספת הגדרת מיון]", + "smw-ask-sort-add-action": "הוסף תנאי מיון", + "smw_ask_hidequery": "הסתרת השאילתה (תצוגה קטנה)", + "smw_ask_help": "עזרה בכתיבת שאילתות", + "smw_ask_queryhead": "תנאי", + "smw_ask_printhead": "בחירת הדפסה", + "smw_ask_printdesc": "(יש להוסיף כל שם מאפיין בשורה נפרדת)", + "smw_ask_format_as": "תסדיר:", + "smw_ask_defaultformat": "ברירת המחדל", + "smw_ask_otheroptions": "אפשרויות אחרות", + "smw-ask-otheroptions-info": "הפרק הזה מכיל אפשרויות שמשנות קביעות להדפסה. אפשר לראות תיאורי פרמטרים באמצעות מעבר בעכבר.", + "smw-ask-otheroptions-collapsed-info": "נא להשתמש בסמל הפלוס כדי להציג את כל האפשרויות הזמינות", + "smw_ask_show_embed": "הצגת קוד הטבעה", + "smw_ask_hide_embed": "הסתרת קוד הטבעה", + "smw_ask_embed_instr": "כדי להטביע את השאילתה הזאת אל תוך דף ויקי, השתמשו בקוד להלן.", + "smw-ask-delete": "מחיקה", + "smw-ask-sorting": "מיון", + "smw-ask-options": "אפשרויות", + "smw-ask-options-sort": "מיין אפשרויות", + "smw-ask-format-options": "סוג ואפשרויות", + "smw-ask-parameters": "פרמטרים", + "smw-ask-search": "חיפוש", + "smw-ask-debug": "נתח", + "smw-ask-debug-desc": "יצירת מידע על ניפוי באגים של שאילתה", + "smw-ask-no-cache": "כיבוי מטמון שאילתה", + "smw-ask-no-cache-desc": "תוצאות ללא מטמון שאילתה", + "smw-ask-result": "תוצאה", + "smw-ask-empty": "ניקוי כל הישויות", + "smw-ask-download-link-desc": "הורדת תוצאות שאילתות בתסדיר $1", + "smw-ask-format": "סוג", + "smw-ask-format-selection-help": "עזרה עם הסוגים הנבחרים:$1", + "smw-ask-condition-change-info": "התנאי שוּנה, ומנוע החיפוש צריך להריץ מחדש את השאילתה כדי להפיק תוצאות שתואמות את הדרישות החדשות.", + "smw-ask-input-assistance": "סיוע קלט", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance סיוע בקלט] מסופק עבור שדה התדפיס, המיון והתאי. שדה התנאי מחייב שימוש באחת מהתחיליות הבאות:", + "smw-ask-condition-input-assistance-property": "p: כדי לאחזר הצעות מאפיינים (למשל [[p:Has ...)", + "smw-ask-condition-input-assistance-category": "c: כדי לאחזר הצעות קטגוריות", + "smw-ask-condition-input-assistance-concept": "con: כדי לאחזר הצעות רעיונות", + "smw-ask-format-change-info": "התסדיר השתנה ויש להריץ את השאילתה שוב כדי להתאים פרמטרים חדשים ואפשרויות המחזה חדשות.", + "smw-ask-format-export-info": "התסדיר שנבחר הוא תסדיר יצוא שאין לו ייצוג חזותי ולכן התוצאות מסופקות כהורדה בלבד.", + "smw-ask-query-search-info": "השאילתה $1 נענתה על־ידי {{PLURAL:$3|1=$2 (ממטמון)|$2 (ממטמון)|$2}} {{PLURAL:$4|בשנייה אחת|ב־$4 שניות}}.", + "smw-ask-extra-query-log": "יומן השאילתה", + "smw-ask-extra-other": "אחר", + "searchbyproperty": "חיפוש לפי מאפיין", + "processingerrorlist": "רשימת שגיאות עיבוד", + "constrainterrorlist": "רשימת שגיאות אילוצים", + "propertylabelsimilarity": "דו\"ח דמיון בין תוויות מאפיינים", + "missingredirectannotations": "חסרות הערות להפניה", + "smw-processingerrorlist-intro": "הרשימה הבאה מספקת סקירה כללית של [https://www.semantic-mediawiki.org/wiki/Processing_errors שגיאות עיבוד] שהופיעו בהקשר של [https://www.semantic-mediawiki.org/ מדיה־ויקי סמנטית]. מומלץ לנטר את הרשימה הזאת באופן קבוע ולתקן הערות ערכים בלתי־תקינות.", + "smw-constrainterrorlist-intro": "הרשימה הבאה מספקת סקירה כללית של [https://www.semantic-mediawiki.org/wiki/Constraint_errors שגיאות אילוצים] שהופיעו בהקשר של [https://www.semantic-mediawiki.org/ מדיה־ויקי סמנטית]. מומלץ לנטר את הרשימה הזאת באופן קבוע ולתקן הערות ערכים בלתי־תקינות.", + "smw-missingredirects-intro": "הפרק הבא יפרט דפים שחסרים בהם הערות [https://www.semantic-mediawiki.org/wiki/Redirects הפניה] במדיה־ויקי סמנטית (על־ידי השוואה למידע המאוחסן במדיה־ויקי) וכדי לשחזר את ההערות הללו באופן ידני, יש [https: //www.semantic-mediawiki.org/wiki/Help:Purge לנקות] את הדף או להפעיל את סקריפט התחזוקה rebuildData.php (עם אפשרות --redirects).", + "smw-missingredirects-list": "דפים עם הערות חסרות", + "smw-missingredirects-list-intro": "{{PLURAL:$1|מוצג דף אחד|מוצגים $1 דפים}} עם הערות הפניה חסרות.", + "smw-missingredirects-noresult": "לא נמצאו הערות חסרות להפניה.", + "smw_sbv_docu": "חיפוש כל הדפים שיש להם מאפיין וערך מסוימים.", + "smw_sbv_novalue": "יש לכתוב ערך תקין למאפיין, או שאפשר לצפות בכל ערכי המאפיינים עבור \"$1\".", + "smw_sbv_displayresultfuzzy": "רשימת כל הדפים בעלי המאפיין \"$1\" עם הערך \"$2\".\nמאחר שיש רק מעט תוצאות, יוצגו גם ערכים סמוכים.", + "smw_sbv_property": "מאפיין:", + "smw_sbv_value": "ערך:", + "smw_sbv_submit": "חיפוש תוצאות", + "browse": "עיון בוויקי", + "smw_browselink": "עיון במאפיינים", + "smw_browse_article": "כתבו את שם הדף שהעיון יתחיל ממנו.", + "smw_browse_go": "הצגה", + "smw_browse_show_incoming": "הצגת מאפיינים נכנסים", + "smw_browse_hide_incoming": "הסתרת מאפיינים נכנסים", + "smw_browse_no_outgoing": "לדף הזה אין מאפיינים.", + "smw_browse_no_incoming": "אין מאפיינים שמקשרים לדף הזה.", + "smw-browse-from-backend": "מידע מאוחזר כעת מהשרת.", + "smw-browse-intro": "הדף הזה מספק פרטים על מופע של נושא או ישות, נא להזין את שם העצם לבדיקה.", + "smw-browse-invalid-subject": "בדיקת תקינות הנושא חזרה עם השגיאה \"$1\".", + "smw-browse-api-subject-serialization-invalid": "לנושא יש תסדיר הסדרה בלתי־תקין.", + "smw-browse-js-disabled": "ישנו חשד ש־JavaScript כבוי או אינו זמין. אנחנו ממליצים על שימוש בדפדפן שהוא נתמך בו. אפשרויות אחרות נידונות בדף פרמטר ההגדרות [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "הצג קבוצות", + "smw-browse-hide-group": "הצג קבוצות", + "smw-noscript": "הדף הזה או הפעולה הזאת דורשים JavaScript כדי לעבוד. נא להפעיל את JavaScript בדפדפן שלך או להשתמש בדפדפן שבו הוא נתמך, כדי שיהיה אפשר לספק הפונקציונליות שהתבקשה. לסיוע נוסף, נא לעיין בדף העזרה [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript].", + "smw_inverse_label_default": "$1 מתוך", + "smw_inverse_label_property": "תוות מאפיין הפוכה.", + "pageproperty": "חיפוש במאפייני דף", + "pendingtasklist": "רשימת משימות ממתינות", + "facetedsearch": "חיפוש רב־פנים", + "smw_pp_docu": "נא להזין או דף ומאפיין, או רק מאפיין כדי לאחזר את כל הערכים המשויכים.", + "smw_pp_from": "מהדף:", + "smw_pp_type": "מאפיין", + "smw_pp_submit": "חיפוש תוצאות", + "smw-prev": "{{PLURAL:$1|הקודם|$1 הקודמים}}", + "smw-next": "{{PLURAL:$1|הבא|$1 הבאים}}", + "smw_result_prev": "הקודם", + "smw_result_next": "הבא", + "smw_result_results": "תוצאות", + "smw_result_noresults": "אין תוצאות.", + "smwadmin": "לוח בקרה של מדיה־ויקי סמנטית", + "smw-admin-statistics-job-title": "סטטיסטיקות של משימה", + "smw-admin-statistics-job-docu": "סטטיסטיקת המשימות מציגה מידע על משימות מתוזמנות של מדיה־ויקי סמנטית שעדיין לא בוצעו. מספר המשימות עשוי להיות מעט לא מדויק או להכיל ניסיונות כושלים. נא לעיין ב[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue ספר ההוראות] למידע נוסף.", + "smw-admin-statistics-querycache-title": "מטמון שאילתה", + "smw-admin-statistics-querycache-disabled": "[https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] לא הופעל בוויקי הזה ולכן הסטטיסטיקה אינה זמינה.", + "smw-admin-statistics-querycache-legend": "סטטיסטיקות המטמון מכילות נתונים מצטברים ונתונים נגזרים זמניים, כולל:\n* \"פספוסים\" (misses): סך הניסיונות לאחזר נתונים מהמטמון עם תגובות בלתי ניתנות להשגה, מה שמאלץ אחזור ישיר של מאגר (בסיס נתונים, מאגר משולש וכו'). \n* \"מחיקות\" (deletes): סך פעולות פינוי מטמון (באמצעות ניקוי או בתלות בשאילתה)\n* \"שליפות\" (hits): סך שליפות המטמון ממקורות מוטבעים (שאילתות שנקראות מתוך דף ויקי) או לא מוטבעים (אם מופעל, כאלה שמתבקשים על־ידי דפים כמו Special:Ask או ה־API)\n* \"זמן תגובת אחזור חציוני\" (medianRetrievalResponseTime): ערך התמצאות של זמן התגובה החציוני (בשניות) עבור בקשות אחזור מוטמנות ולא מוטמנות במהלך טווח הזמן של תהליך האיסוף\n* \"ללא מטמון\" (noCache): מציין את סך הבקשות ללא ניסיון (מגבלה=0 שאילתות, אפשרות \"ללא מטמון\" וכו') כדי לאחזר תוצאות מהמטמון", + "smw-admin-statistics-section-explain": "הפרק מספק סטטיסטיקות נוספות למפעילים.", + "smw-admin-statistics-semanticdata-overview": "סקירה כללית", + "smw-admin-permission-missing": "הגישה לדף הזה נחסמה עקב הרשאות חסרות, נא לעיין בדף העזרה [https://www.semantic-mediawiki.org/wiki/Help:Permissions הרשאות] לפרטים על ההגדרות הנחוצות.", + "smw-admin-setupsuccess": "מנוע האחסון הוגדר.", + "smw_smwadmin_return": "חזרה אל $1", + "smw_smwadmin_updatestarted": "תהליך עדכון חדש לרענון הנתונים הסמנטיים הורץ.\nכל הנתונים המאוחסנים ייבנו מחדש או יתוקנו היכן שיש צורך.\nאפשר לעקוב אחר תהליך העדכון בדף המיוחד הזה.", + "smw_smwadmin_updatenotstarted": "יש כבר תהליך עדכון פעיל.\nלא ייווצר אחד נוסף.", + "smw_smwadmin_updatestopped": "כל תהליכי העדכון הקיימים נעצרו.", + "smw_smwadmin_updatenotstopped": "כדי לעצור תהליך עדכון פעיל, יש לסמן את תיבת הסימון כדי לציין שזה באמת מה שרצית.", + "smw-admin-docu": "הדף המיוחד הזה יעזור לך במהלך התקנה, שדרוג, תחזוקה ושימוש במדיה־ויקי הסמנטית. הוא גם ישמש למטרות ניהוליות נוספות ויספק סטטיסטיקות.\nיש לזכור לגבות את הנתונים החיוניים לך בטרם הפעלת התכונות הניהוליות.", + "smw-admin-environment": "סביבת תוכנה", + "smw-admin-db": "הגדרות מסד נתונים", + "smw-admin-db-preparation": "אתחול הטבלה נמשך ועשוי להימשך קצת עד הצגת התוצאות, וזה תלוי גם בגודל ובמיטוב אפשרי של הטבלה.", + "smw-admin-dbdocu": "מדיה־ויקי סמנטית דורשת מבנה מסד הנתונים משלה (ועצמאי ממדיה־ויקי, ולכן לא משפיע על שאר ההתקנה של מדיה־ויקי) כדי לאחסן את הנתונים הסמנטיים.\nניתן להפעיל את פונקציית ההגדרה הזאת כמה פעמים מבלי לגרום לנזק כלשהו, אך היא נדרשת רק פעם אחת עם ההתקנה או שדרוג.", + "smw-admin-permissionswarn": "אם הפעולה נכשלת עם שגיאות SQL, למשתמש של בסיס הנתונים של אתר הוויקי שלך (אפשר למצוא אותו בקובץ ה־LocalSettings.php שלך) אין הרשאות מתאימות.\nיש להוסיף למשתמש הזה הרשאות ליצירה ולמחיקה של טבלאות, לכתוב את פרטי הגישה לשורש בסיס הנתונים לקובץ LocalSetting.php באופן זמני, או להשתמש בסקריפט התחזוקה setupStore.php שיכול להשתמש בנתוני האמנה של מפעיל.", + "smw-admin-dbbutton": "אתחול או שדרוג של טבלאות", + "smw-admin-announce": "פרסום הוויקי שלך", + "smw-admin-announce-text": "אם הוויקי שלך ציבורי, אפשר לרשום אותו ב־WikiApiary, אתר ויקי שעוקב אחרי אתרי ויקי.", + "smw-admin-deprecation-notice-title": "הודעות על התיישנות", + "smw-admin-deprecation-notice-docu": "הפרק הבא מכיל הגדרות שהוצאו משימוש או הוסרו אך זוהו כפעילות בוויקי הזה. יש לצפות לכך שכל גרסה עתידית תסיר את התמיכה בתצורות האלו.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] הוכרז בתור מיושן והוא יוסר בגרסה $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] יסיר (או יחליף) את {{PLURAL:$2|האפשרות הבאה|האפשרויות הבאות}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 הוכרז בתור מיושן והוא יוסר בגרסה $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] הוחלף ב־[https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] הוחלף ב־$2", + "smw-admin-deprecation-notice-config-replacement-option": "{{PLURAL:$2|אפשרויות}} [https://www.semantic-mediawiki.org/wiki/Help:$1 $1]", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 מוחלף ב־$2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] הוסר בגרסה $2", + "smw-admin-deprecation-notice-title-notice": "הגדרות מיושנות", + "smw-admin-deprecation-notice-title-notice-explanation": "הגדרות מיושנות מציגה הגדרות שזוהו בתור כאלה שנמצאות בשימוש בוויקי הזה ויש תכנון להסיר או לשנות אותן במהדורה עתידית.", + "smw-admin-deprecation-notice-title-replacement": "הגדרות שהוחלפו או ששמן שונה", + "smw-admin-deprecation-notice-title-replacement-explanation": "הגדרות שהוחלפו או ששמן שונה מכיל הגדרות ששמן שונה או ששונו בדרך אחרת ושמומלץ לעדכן לאלתר את השם או את התסדיר שלהן.", + "smw-admin-deprecation-notice-title-removal": "הגדרות מחוקות", + "smw-admin-deprecation-notice-title-removal-explanation": "הגדרות מחוקות מכיל הגדרות שהוסרו במהדורה קודמת אך זוהו בשימוש בוויקי הזה.", + "smw-admin-deprecation-notice-section-legend": "מקרא", + "smw-smwadmin-refresh-title": "תיקון ועדכון נתונים", + "smw_smwadmin_datarefresh": "בנייה מחדש של נתונים", + "smw_smwadmin_datarefreshdocu": "ניתן לשחזר את כל הנתונים של מדיה־ויקי הסמנטי לפי התוכן הנוכחי של הוויקי.\nהפעולה הזאת עשויה להיות שימושית לתיקון נתונים שגויים או לעדכון הנתונים אם המבנה הפנימי שונה לאור שדרוג התוכנה.\nהעדכון מופעל דף־דף והוא לא יושלם מייד.\nהמידע להלן מראה האם העדכון מתבצע כעת ומאפשר לך להתחיל או להפסיק את העדכונים (אלא אם כן התכונה הזאת הושבתה על־ידי מנהל האתר).", + "smw_smwadmin_datarefreshprogress": "כבר מתבצע תהליך עדכון.\nמצב בו העדכון מתקדם לאט הוא מצב נורמלי, מאחר שהנתונים מתעדכנים בחלקים קטנים בכל פעם שמשתמש ניגש לוויקי.\nכדי לסיים את העדכון מהר יותר, תוכלו להפעיל את סקריפט התחזוקה runJobs.php (השתמשו באפשרות --maxjobs 1000 כדי להגביל את מספר העדכונים שמתבצעים בבת אחת).\nהתקדמות משוערת של העדכון הנוכחי:", + "smw_smwadmin_datarefreshbutton": "קבע בנייה מחדש של נתונים", + "smw_smwadmin_datarefreshstop": "עצירת העדכון הזה", + "smw_smwadmin_datarefreshstopconfirm": "כן, אני {{GENDER:$1|בטוח|בטוחה}}.", + "smw-admin-job-scheduler-note": "משימות (אלה המופעלות) בפרק הזה מבוצעות דרך תור המשימות כדי למנוע מצבי נעילה במהלך ביצוען. [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue תור המשימות] אחראי על העיבוד וזה קריטי שלסקריפט התחזוקה runJobs.php תהיה קיבולת מתאימה (ר' גם את פרמטר התצורה $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "השלכת ישויות מיושנות", + "smw-admin-outdateddisposal-intro": "פעילויות מסוימות (שינוי בסוג מאפיין, הסרת דפי ויקי או תיקון ערכי שגיאה) יגרמו להופעת [https://www.semantic-mediawiki.org/wiki/Outdated_entities ישויות מיושנות] ומוצע להסיר אותן מעת לעת כדי לפנות שטח טבלה משויך.", + "smw-admin-outdateddisposal-active": "תושמנה משימת השלכת ישויות מיושנות.", + "smw-admin-outdateddisposal-button": "תזמון השלכה", + "smw-admin-feature-disabled": "התכונה הזאת הושבתה בוויקי הזה, נא לעיין בדף העזרה של ההגדרות או לפנות למפעיל.", + "smw-admin-propertystatistics-title": "בנייה מחדש של סטטיסטיקות מאפיינים", + "smw-admin-propertystatistics-intro": "בנייה מחדש את כל הנתונים הסטטיסטיים של השימוש במאפיין ותוך כדי זה, עדכון ותיקון של [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count ספירת השימוש] במאפיינים.", + "smw-admin-propertystatistics-active": "תוזמנה משימת בנייה מחדש של סטטיסטיקת מאפיינים.", + "smw-admin-propertystatistics-button": "תזמון בנייה מחדש של סטטיסטיקות", + "smw-admin-fulltext-title": "בנייה מחדש של חיפוש בטקסט מלא", + "smw-admin-fulltext-intro": "בנייה מחדש של מפתח החיפוש מטבלאות מאפיינים שסוג הנתונים [https://www.semantic-mediawiki.org/wiki/Full-text חיפוש בטקסט מלא] מופעל בהם. השינויים בכללי המפתוח (מילות עצירה שהשתנו, ניתוח צורות חדש וכו') או טבלה חדשה שנוספה או השתנתה מחייבת להפעיל שוב את המשימה הזאת.", + "smw-admin-fulltext-active": "תושמנה משימת בנייה מחדש של חיפוש בטקסט מלא.", + "smw-admin-fulltext-button": "תזמון בנייה מחדש של טקסט מלא", + "smw-admin-support": "קבלת תמיכה", + "smw-admin-supportdocu": "מגוון משאבים עומדים לרשותך כדי לעזור במקרה של בעיה:", + "smw-admin-installfile": "אם יש לך בעיות בהתקנה, נא להתחיל בבדיקת ההנחיות המופיעות בקובץ INSTALL ובדף ההתקנה.", + "smw-admin-smwhomepage": "התיעוד המלא למשתמשי המדיה־ויקי הסמנטית נמצא בכתובת semantic-mediawiki.org.", + "smw-admin-bugsreport": "ניתן לדווח על באגים בכלי מעקב הבעיות (issue tracker), הדף על דיווח באגים מספק הנחיות איך לכתוב דיווח בעיה יעיל.", + "smw-admin-questions": "אם יש לך הצעות או שאלות נוספות, נא להצטרף לדיון שנערך ברשימת התפוצה של המשתמשים של Semantic MediaWiki.", + "smw-admin-other-functions": "פונקציות אחרות", + "smw-admin-statistics-extra": "פונקציות סטטיסטיות", + "smw-admin-statistics": "סטטיסטיקות", + "smw-admin-supplementary-section-title": "פונקציות משלימות", + "smw-admin-supplementary-section-subtitle": "תכונות ליבה נתמכות", + "smw-admin-supplementary-section-intro": "הפרק הזה מספק תכונות נוספות מעבר לתחום פעולות התחזוקה, וייתכן שחלק מהתכונות שרשומות (ר' את ה[https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions תיעוד]) מוגבלות או לא זמינות, ולכן אינן נגישות בוויקי הזה.", + "smw-admin-supplementary-settings-title": "תצורה והגדרות", + "smw-admin-supplementary-settings-intro": "$1 מציג פרמטרים המגדירים את ההתנהגות של מדיה־ויקי סמנטית", + "smw-admin-main-title": "מדיה־ויקי סמנטית » $1", + "smw-admin-supplementary-operational-statistics-title": "סטטיסטיקות תפעוליות", + "smw-admin-supplementary-operational-statistics-short-title": "סטטיסטיקות תפעוליות", + "smw-admin-supplementary-operational-statistics-intro": "מציג ערכה מורחבת של $1", + "smw-admin-supplementary-idlookup-title": "חיפוש וזריקה של ישויות", + "smw-admin-supplementary-idlookup-short-title": "חיפוש וזריקה של ישויות", + "smw-admin-supplementary-idlookup-intro": "תומך בפונקציה פשוטה של $1", + "smw-admin-supplementary-duplookup-title": "חיפוש ישויות כפולות", + "smw-admin-supplementary-duplookup-intro": "יש לבצע $1 כדי למצוא ישויות שמסווגות ככפולות עבור מטריצת הטבלה שנבחרה", + "smw-admin-supplementary-duplookup-docu": "הדף הזה מפרט ערכים מטבלאות נבחרות שסווגו כ[https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities כפולים]. ערכים כפולים אמורים (אם בכלל) להתרחש רק במקרים נדירים שעלולים להיגרם כתוצאה מעדכון שהופסק או תנועת שחזור (rollback) לא מוצלחת.", + "smw-admin-supplementary-operational-statistics-cache-title": "סטטיסטיקות מטמון", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 מציג ערכה נבחרת של סטטיסטיות שקשורות למטמון", + "smw-admin-supplementary-operational-table-statistics-title": "סטטיסטיקות טבלה", + "smw-admin-supplementary-operational-table-statistics-short-title": "סטטיסטיקות טבלה", + "smw-admin-supplementary-operational-table-statistics-intro": "מייצר $1 עבור ערכה נבחרה של טבלאות", + "smw-admin-supplementary-operational-table-statistics-explain": "הפרק הזה מכיל סטטיסטיקות טבלה נבחרות כדי לעזור למפעילי מערכת ולאוצרי נתונים לקבל החלטות מושכלות לגבי המצב הזה של השרת ומנוע האחסון.", + "smw-admin-supplementary-operational-table-statistics-legend": "המקרא מתאר חלק מהמפתחות המשמשים לסטטיסטיקה של הטבלה וכולל:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count – המספר הכולל של שורות בטבלה", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id המזהה אחרון שבשימוש כרגע\n* duplicate_count מספר הכפולים שנמצאו ב־id_table (ר' גם [[Special:SemanticMediaWiki/duplicate-lookup|חיפוש ישויות כפולות]])\n* rows.rev_count מספר השורות שמושם להן revision_id שמציין קישור ישיר לדף ויקי\n* rows.smw_namespace_group_by_count מספרים של שורות מצטברות עבור מרחבי שמות המשמשים בטבלה\n* rows.smw_proptable_hash.query_match_count מספר עצמי־המשנה של שאילתות עם הפניה תואמת לטבלה\n* rows.smw_proptable_hash.query_null_count מספר עצמי־המשנה של שאילתות ללא הפניה לטבלה (לא מקושר, הפניה צפה)", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent אחוז המונחים הייחודיים (שיעור אחוז נמוך מצביע על כך שמונחים שחוזרים על עצמם תופסים את תוכן הטבלה ואת המפתח)\n* rows.terms_occurrence.single_occurrence_total_count מספר מונחים המופיעים פעם אחת בלבד\n* rows.terms_occurrence.multi_occurrence_total_count מספר מונחים המופיעים יותר מפעם אחת", + "smw-admin-supplementary-elastic-version-info": "גרסה", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 – מציג פרטים על הגדרות וסטטיסטיקות של מפתוח", + "smw-admin-supplementary-elastic-docu": "הדף הזה מכיל מידע על סטטיסטיקות של הגדרות, מיפויים, בריאות ומפתוח, הקשורות לאשכול Elasticsearch שמחובר להרחבה \"מדיה־ויקי סמנטית\" ול־[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "פונקציות נתמכות", + "smw-admin-supplementary-elastic-settings-title": "הגדרות (מפתחות)", + "smw-admin-supplementary-elastic-settings-intro": "$1 – הגדרות שנמצאות בשימוש על־ידי החיפוש הגמיש (Elasticsearch) לניהול מדדים של ההרחבה \"מדיה־ויקי סמנטית\"", + "smw-admin-supplementary-elastic-mappings-title": "מיפויים", + "smw-admin-supplementary-elastic-mappings-intro": "$1 – רשימה של מיפויי המדדים והשדות", + "smw-admin-supplementary-elastic-mappings-docu": "הדף הזה מכיל פרטי מיפוי שדות שמשמשים את המפתח הנוכחי. מומלץ לנטר את המיפויים בקשר עם index.mapping.total_fields.limit (מגדיר את מספר השדות המרבי המותר במפתח).", + "smw-admin-supplementary-elastic-mappings-docu-extra": "property_fields מתייחס לספירה של שדות הליבה הממופתחים בעוד ש־nested_fields מתייחס לספירה מצטברת של שדות נוספים שהוקצו לשדה ליבה כדי לתמוך בדפוסי חיפוש מובנים ספציפיים.", + "smw-admin-supplementary-elastic-mappings-summary": "סיכום", + "smw-admin-supplementary-elastic-mappings-fields": "מיפויי שדות", + "smw-admin-supplementary-elastic-nodes-title": "צמתים", + "smw-admin-supplementary-elastic-nodes-intro": "$1 – הצגת סטטיסטיקות של צמתים", + "smw-admin-supplementary-elastic-indices-title": "מדדים", + "smw-admin-supplementary-elastic-indices-intro": "$1 – סקירה כללית של המדדים הרלוונטיים ושל הסטטיסטיקות שלהם", + "smw-admin-supplementary-elastic-statistics-title": "סטטיסטיקות", + "smw-admin-supplementary-elastic-statistics-intro": "$1 – הצגת סטטיסטיקות ברמת מפתוח", + "smw-admin-supplementary-elastic-statistics-docu": "הדף הזה מספק תובנות לגבי הנתונים הסטטיסטיים של פעולות שונות שמתרחשות ברמת מפתוח. הסטטיסטיקות המוחזרות הן קיבוץ של הבחירה המוקדמת ושל ההצטברות הכוללת. [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html דף העזרה] מכיל תיאור מפורט של הנתונים הסטטיסטיים הזמינים.", + "smw-admin-supplementary-elastic-status-replication": "מצב שכפול", + "smw-admin-supplementary-elastic-status-last-active-replication": "שכפול פעיל אחרון: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "מרווח רענון: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "רשימת המתנה של משימות שחזור: $1 (הערכה)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "רשימת המתנה של משימות שאיבה (של קבצים): $1 (הערכה)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "שכפול הכול: $1 (מתבצעת בנייה מחדש)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "ניטור שכפול (פעיל): $1", + "smw-admin-supplementary-elastic-replication-header-title": "מצב שכפול", + "smw-admin-supplementary-elastic-replication-function-title": "שכפול", + "smw-admin-supplementary-elastic-replication-intro": "$1 מציג מידע על שכפולים שנכשלו", + "smw-admin-supplementary-elastic-replication-docu": "הדף הזה מספק מידע על [https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring מצב השכפול] של ישויות שדווחו בתור כאלה שיש להן בעיות באשכול Elasticsearch. מומלץ לסקור את הישויות הרשומות ולנקות את התוכן כדי לוודא שזאת בעיה זמנית.", + "smw-admin-supplementary-elastic-replication-files-docu": "יש לציין כי עבור רשימת הקבצים, משימת ה־[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion file ingest] (שאיבה) חייבת להתבצע קודם ויש לסיים את העיבוד שלה.", + "smw-admin-supplementary-elastic-replication-files": "קבצים", + "smw-admin-supplementary-elastic-replication-pages": "דפים", + "smw-admin-supplementary-elastic-endpoints": "נקודות קצה", + "smw-admin-supplementary-elastic-config": "ערכות הגדרה", + "smw-admin-supplementary-elastic-no-connection": "כרגע הוויקי '''אינו יכול''' ליצור התחברות לאשכול Elasticsearch, נא ליצור קשר עם מנהל הוויקי כדי לחקור את הבעיה, כיוון שהוא משביתה את המפתח ואת יכולת השאילתות של המערכת.", + "smw-list-count": "הרשימה מכילה {{PLURAL:$1|פריט אחד|$1 פריטים}}.", + "smw-property-label-uniqueness": "התווית \"$1\" התאימה לייצוג מאפיין אחד אחר לפחות. נא לבדוק את [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness דף העזרה] על מידע על פתרון הבעיה הזאת.", + "smw-property-label-similarity-title": "דו\"ח דמיון תוויות מאפיינים", + "smw-property-label-similarity-intro": "$1 מחשב דמיונות בין תוויות מאפיינים קיימות", + "smw-property-label-similarity-threshold": "סף:", + "smw-property-label-similarity-type": "מזהה סוג תצוגה", + "smw-property-label-similarity-noresult": "לא נמצאו תוצאות", + "smw-property-label-similarity-docu": "הדף הזה משווה את [https://www.semantic-mediawiki.org/wiki/Property_similarity מרחק הדמיון] (לא להתבלבל עם סמיון סמנטי או מילולי) בין תוויות מאפיינים ומדווח אותם אם הם עוברים את הרף. הדו\"ח יכול לעזור לסנן מאפיינים עם שגיאות כתיב או מאפיינים שווי ערך שמייצגים את אותו הרעיון (ר' את הדף המיוחד [[Special:Properties|properties]] כדי לקבל עזרה בהבהרת הרעיון והשימוש במאפיינים המדווחים). אפשר לכוונן את הרף כדי להרחיב או לצמצם את המרחק המשמש להתאמה מוערכת. המאפיין [[Property:$1|$1]] משמש להוצאת מאפיינים מהכללה בניתוח.", + "smw-admin-operational-statistics": "הדף הזה מכיל סטטיסטיקות תפועליות שנאספות בתוך פונקציות של מדיה־ויקי סמנטית או מתוכן. אפשר למצוא רשימה מורחבת של סטטיסטיקות ייחודיות לוויקי [[Special:Statistics|כאן]].", + "smw_adminlinks_datastructure": "מבנה הנתונים", + "smw_adminlinks_displayingdata": "הצגת נתונים", + "smw_adminlinks_inlinequerieshelp": "עזרה על שאילתות משובצות", + "smw-page-indicator-usage-count": "הערכת [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count מניין שימוש]: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "מאפיין מוגדר על־ידי {{PLURAL:$1|משתמש|מערכת}}", + "smw-property-indicator-last-count-update": "מניין שימוש מוערך\nעודכן לאחרונה: $1", + "smw-concept-indicator-cache-update": "מניין מטמון\nעודכן לאחרונה: $1", + "smw-createproperty-isproperty": "זהו מאפיין מסוג $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|הערך האפשרי למאפיין הזה הוא|הערכים האפשריים למאפיין הזה הם}}:", + "smw-paramdesc-category-delim": "מפריד", + "smw-paramdesc-category-template": "תסדיר לעיצוב הפריטים", + "smw-paramdesc-category-userparam": "פרמטר שיועבר לתבנית", + "smw-info-par-message": "הודעה להצגה.", + "smw-info-par-icon": "איזה סמל להראות \"info\" או \"warning\".", + "prefs-smw": "מדיה־ויקי סמנטית", + "prefs-general-options": "אפשרויות כלליות", + "prefs-extended-search-options": "חיפוש מורחב", + "prefs-ask-options": "חיפוש סמנטי", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ מדיה־ויקי סמנטית] והרחבות קשורות מספקות הגדרות פרטניות לקבוצה של תכונות ופונקציות נבחרות. רשימת הגדרות פרטניות עם תיאורים ומאפיינים שלהם זמינה ב[https://www.semantic-mediawiki.org/wiki/Help:User_preferences דף העזרה] הבא.", + "smw-prefs-ask-options-tooltip-display": "להציג את טקסט הפרמטר בתור רמז צץ עם מידע בדף המיוחד [[Special:Ask|בונה שאילתות]] #ask.", + "smw-prefs-ask-options-compact-view-basic": "הפעלת תצוגה בסיסית מצומצמת", + "smw-prefs-help-ask-options-compact-view-basic": "אם זה מופעל, תוצג ערכה מצומצמת של קישורים בתצוגה המצומצמת של Special:Ask.", + "smw-prefs-general-options-time-correction": "הפעלת תיקון זמן בדפים מיוחדים באמצעות העדפת [[Special:Preferences#mw-prefsection-rendering|היסט זמן]].", + "smw-prefs-general-options-jobqueue-watchlist": "הצגת רשימת מעקב בסרגל האישי שלי", + "smw-prefs-help-general-options-jobqueue-watchlist": "אם זה מופעל, מוצגת [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist רשימה של] משימות ממתינות נבחרות עם גודל התורים המשוער שלהן.", + "smw-prefs-general-options-disable-editpage-info": "להשבית את טקסט המבוא בדף העריכה", + "smw-prefs-general-options-disable-search-info": "השבתת המידע על תמיכה בתחביר בדף החיפוש הרגיל", + "smw-prefs-general-options-suggester-textinput": "להפעיל סיוע בקלט עבור ישויות סמנטיות", + "smw-prefs-help-general-options-suggester-textinput": "אם זה מופעל, מאפשר להשתמש ב[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance סיוע בקלט] כדי למצוא מאפיינים, מושגים וקטגוריות מהקשר קלט.", + "smw-prefs-general-options-show-entity-issue-panel": "הצגת חלונית בעיות הישות", + "smw-prefs-help-general-options-show-entity-issue-panel": "אם זה מופעל, זה מריץ בדיקות תקינות בכל דף ומציג את [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel חלונית בעיות הישות].", + "smw-prefs-factedsearch-profile": "נא לבחור את ערכת ההגדרות ההתחלתית של [[Special:FacetedSearch|חיפוש רב־פנים]]:", + "smw-ui-tooltip-title-property": "מאפיין", + "smw-ui-tooltip-title-quantity": "המרת יחידות", + "smw-ui-tooltip-title-info": "מידע", + "smw-ui-tooltip-title-service": "קישורי שירות", + "smw-ui-tooltip-title-warning": "אזהרה", + "smw-ui-tooltip-title-error": "שגיאה", + "smw-ui-tooltip-title-parameter": "פרמטר", + "smw-ui-tooltip-title-event": "אירוע", + "smw-ui-tooltip-title-note": "הערה", + "smw-ui-tooltip-title-legend": "מקרא", + "smw-ui-tooltip-title-reference": "מקור", + "smw_unknowntype": "הסוג \"$1\" של המאפיין הזה אינו תקין", + "smw-concept-cache-text": "לרעיון הזה יש {{PLURAL:$1|דף אחד|$1 דפים}} והוא עודכן ב־$2 ב־$3.", + "smw_concept_header": "דפים מהרעיון \"$1\"", + "smw_conceptarticlecount": "{{PLURAL:$1|מוצג להלן דף אחד|מוצגים להלן $1 דפים}}.", + "smw-qp-empty-data": "לא ניתן להציג את הנתונים המבוקשים בגלל אמות מידה בלתי־מספיקות לבחירה.", + "right-smw-admin": "גישה למשימות ניהול (מדיה־ויקי סמנטית)", + "right-smw-patternedit": "עריכת גישה כדי לתחזק ביטויים רגולריים ותבניות (מדיה־ויקי סמנטית)", + "right-smw-pageedit": "גישת עריכה עבור דפים מוערים ב־Is edit protected (מדיה־ויקי סמנטית)", + "right-smw-schemaedit": "עריכת [https://www.semantic-mediawiki.org/wiki/Help:Schema דפי סכֶמה] (מדיה־ויקי סמנטית)", + "right-smw-viewjobqueuewatchlist": "גישה לתכונת [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist רשימת מעקב] תור המשימות (מדיה־ויקי סמנטית)", + "right-smw-viewentityassociatedrevisionmismatch": "גישה למידע על חוסר התאמה של גרסה הקשורה לישות (מדיה־ויקי סמנטית)", + "right-smw-vieweditpageinfo": "הצגת [https://www.semantic-mediawiki.org/wiki/Help:Edit_help עזרה בעריכה] (מדיה־ויקי סמנטית)", + "restriction-level-smw-pageedit": "מוגן (רק למשתמשים מורשים)", + "action-smw-patternedit": "לערוך ביטויים רגולריים שבשימוש של מדיה־ויקי סמנטית", + "action-smw-pageedit": "לערוך דפים מוערים ב־Is edit protected (מדיה־ויקי סמנטית)", + "group-smwadministrator": "מנהלים (מדיה־ויקי סמנטית)", + "group-smwadministrator-member": "{{GENDER:$1|מנהל|מנהלת}} (מדיה־ויקי סמנטית)", + "grouppage-smwadministrator": "{{ns:project}}:מנהלים (מדיה־ויקי סמנטית)", + "group-smwcurator": "אוצרים (מדיה־ויקי סמנטית)", + "group-smwcurator-member": "{{GENDER:$1|אוצר|אוצרת}} (מדיה־ויקי סמנטית)", + "grouppage-smwcurator": "{{ns:project}}:אוצרים (מדיה־ויקי סמנטית)", + "group-smweditor": "עורכים (מדיה־ויקי סמנטית)", + "group-smweditor-member": "{{GENDER:$1|עורך|עורכת}} (מדיה־ויקי סמנטית)", + "grouppage-smweditor": "{{ns:project}}:עורכים (מדיה־ויקי סמנטית)", + "action-smw-admin": "לגשת למשימות ניהול של מדיה־ויקי סמנטית", + "action-smw-ruleedit": "לערוך דפי חוקים (מדיה־ויקי סמנטית)", + "smw-property-namespace-disabled": "המאפיין [https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks מרחב שם] כבוי, ניסיון להכריז על סוג או על מאפיינים מסוימים אחרים למאפיין הזה אינו אפשרי.", + "smw-property-predefined-default": "\"$1\" הוא מאפיין מוגדר מראש מסוג $2.", + "smw-property-predefined-common": "המאפיין הזה מותקן מראש (ידוע גם בתור [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מאפיין מיוחד]) ובא עם הרשאות ניהול נוספות, אבל יכול לשמש כמו כל [https://www.semantic-mediawiki.org/wiki/Property מפאיין שמוגדר על־ידי משתמש].", + "smw-property-predefined-ask": "$1 הוא מאפיין מוגדר מראש שמייצג מטא־מידע (בצורת [https://www.semantic-mediawiki.org/wiki/Subobject תת־עצם]) על שאילתות פרטניות והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-asksi": "\"$1\" הוא מאפיין מוגדר מראש שאוסף את מספר התנאים שמשמשים בשאילתה ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askde": "\"$1\" הוא מאפיין מוגדר מראש שנותן מידע על עומק של שאילתה ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askde": "זהו ערך מספרי המחושב על סמך קינון שאילתות־משנה, שרשראות מאפיינים ורכיבי תיאור זמינים, כאשר ביצוע השאילתה מוגבל בפרמטר התצורה [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-property-predefined-askpa": "\"$1\" הוא מאפיין מוגדר מראש שמתאר פרמטרים שמשפיעים על תוצאת שאילתה והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-long-askpa": "זהו חלק מאוסף של מאפיינים המציינים [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler פרופיל שאילתה].", + "smw-sp-properties-docu": "הדף הזה מציג רשימת [https://www.semantic-mediawiki.org/wiki/Property מאפיינים] ומניין השימוש בהם כפי שזמין בוויקי הזה. לסטטיסטיקת ספירה מעודכנת מומלץ שתסריט התחזוקה ל[https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics סטטיסטיקות מאפיינים] יורץ באופן קבוע. לתצוגה מבודלת נא לראות את הדפים המיוחדים [[Special:UnusedProperties|מאפיינים שאינם בשימוש]] או [[Special:WantedProperties|מאפיינים מבוקשים]].", + "smw-sp-properties-cache-info": "הנתונים האשומים אוחזרו מ[https://www.semantic-mediawiki.org/wiki/Caching מטמון] ועודכנו לאחרונה $1.", + "smw-sp-properties-header-label": "רשימת מאפיינים", + "smw-admin-settings-docu": "רשימה של כל ההגדרות ההתחלתיות והמקומיות שרלוונטיות לסביבת מדיה־ויקי סמנטית. לפרטים על הגדרות פרטניות נא לקרוא את דף העזרה על [https://www.semantic-mediawiki.org/wiki/Help:Configuration הגדרות].", + "smw-sp-admin-settings-button": "יצירת רשימת הגדרות", + "smw-admin-idlookup-title": "חיפוש", + "smw-admin-idlookup-docu": "הפרק הזה מציג פרטים טכניים על ישות פרטנית (דף ויקי, עצם־משנה, מאפיין, וכו') במדיה־ויקי סמנטית. הקלט יכול להיות מזהה מספרי או מחרוזת המתאימים לשדה החיפוש הרלוונטי, אך עליו להיות מזהה של הערת שוליים כלשהי השייכת למדיה־ויקי סמנטית ולא לדף או לגרסה של מדיה־ויקי.", + "smw-admin-iddispose-title": "זריקה", + "smw-admin-iddispose-docu": "יש לציין שפעולת הזריקה אינה מוגבלת והיא תסיר את הישות ממנוע האחסון יחד עם כל הערות השוליים שלה בטבלאות הממתינות, אם תאושר. נא לעשות את הפעולה הזאת '''בזהירות''' ורק לאחר בדיקת [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal התיעוד].", + "smw-admin-iddispose-done": "המזהה \"$1\" הוסר משרת האחסון.", + "smw-admin-iddispose-references": "למזהה \"$1\" {{PLURAL:$2|אין הערת שוליים פעילה|יש לפחות הערת שוליים פעילה אחת}}:", + "smw-admin-iddispose-references-multiple": "רשימת התאמות עם רשומת הפניה פעילה אחת לפחות.", + "smw-admin-iddispose-no-references": "החיפוש לא יכול היה להתאים את המזהה \"$1\" לישות בטבלה.", + "smw-admin-idlookup-input": "חיפוש:", + "smw-admin-objectid": "מזהה:", + "smw-admin-tab-general": "סקירה כללית", + "smw-admin-tab-notices": "הודעות על התיישנות", + "smw-admin-tab-maintenance": "תחזוקה", + "smw-admin-tab-supplement": "פונקציות משלימות", + "smw-admin-tab-registry": "רישום", + "smw-admin-tab-alerts": "התראות", + "smw-admin-alerts-tab-deprecationnotices": "הודעות על התיישנות", + "smw-admin-alerts-tab-maintenancealerts": "התראות תחזוקה", + "smw-admin-alerts-section-intro": "הפרק הזה מציג התראות והודעות הקשורות להגדרות, פעולות ופעילויות אחרות שסווגו כך שהן דורשות התייחסות ממנהל מערכת או משתמש עם הרשאות מתאימות.", + "smw-admin-maintenancealerts-section-intro": "יש לפתור את ההתראות וההודעות הבאות, ולמרות שאינן חיוניות, הן צפויות לסייע בשיפור התחזוקה המערכתחץ והתפעולית.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "מיטוב טבלה", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "המערכת מצאה ש[https://www.semantic-mediawiki.org/wiki/Table_optimization מיטוב הטבלה] האחרון הופעל {{PLURAL:$2|אתמול|שלשום|לפני $2 ימים|3=לפני יומיים}} (שיא מאז $1) וזה חורג מסף התחזוקה של {{PLURAL:$3|יום אחד|יומיים|$3 ימים}}. כפי שהוזכר בתיעוד, הרצת מיטוב תאפשר למתכנן השאילתות לקבל החלטות טובות יותר לגבי שאילתות ולכן מומלץ להפעיל את מיטוב הטבלה על באופן קבוע.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "ישויות לא מעודכנות", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "המערכת ספרה $1 [https://www.semantic-mediawiki.org/wiki/Outdated_entities ישויות מיושנות] והגיעה לרמה קריטית של תחזוקה ללא השגחה על־ידי חריגה מהסף של $2. מומלץ להפעיל את סקריפט התחזוקה [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php].", + "smw-admin-maintenancealerts-invalidentities-alert-title": "ישויות בלתי־תקינות", + "smw-admin-maintenancealerts-invalidentities-alert": "המערכת התאימה [https://www.semantic-mediawiki.org/wiki/Invalid_entities {{PLURAL:$1|ישות אחת|$1 ישויות}}] ל־[https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace מרחב שם לא מתוחזק ומומלץ להפעיל את] סקריפט התחזוקה [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] או [https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php].", + "smw-admin-deprecation-notice-section": "מדיה־ויקי סמנטית", + "smw-admin-configutation-tab-settings": "הגדרות", + "smw-admin-configutation-tab-namespaces": "מרחבי שם", + "smw-admin-configutation-tab-schematypes": "סוגי סכֵמה", + "smw-admin-maintenance-tab-tasks": "משימות", + "smw-admin-maintenance-tab-scripts": "סקריפטים לתחזוקה", + "smw-admin-maintenance-no-description": "אין תיאור.", + "smw-admin-maintenance-script-section-title": "רשימה של סקריפטים זמינים לתחזוקה", + "smw-admin-maintenance-script-section-intro": "סקריפטי התחזוקה הבאים דורשים מפעיל מערכת וגישה לשורת הפקודה כדי שתהיה אפשרות להפעיל סקריפטים ברשימה.", + "smw-admin-maintenance-script-description-dumprdf": "יצוא RDF של שלישיות קיימות.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "הסקריפט הזה משמש לניהול מטמוני רעיונות עבור מדיה־ויקי סמנטית, שם הוא יכול ליצור, להסיר ולעדכן מטמונים נבחרים.", + "smw-admin-maintenance-script-description-rebuilddata": "יוצר מחדש את כל הנתונים הסמנטיים במסד הנתונים, על־ידי מעבר בין כל הדפים שעשויים להכיל נתונים סמנטיים.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "בונה מחדש את מפתח Elasticsearch (רק עבור התקנות שמשתמשות ב־ElasticStore), על־ידי מעבר על כל הישויות שיש להן נתונים סמנטיים.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "מציאת ישויות חסרות ב־Elasticsearch (רק עבור התקנות המשתמשות ב־ElasticStore) ותזמון משימות עדכון מתאימות.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "בונה מחדש את מפתח החיפוש המלא של SQLStore (עבור התקנות שבהן ההגדרה הופעלה).", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "בונה מחדש את סטטיסטיקת השימוש עבור כל ישויות המאפיין.", + "smw-admin-maintenance-script-description-removeduplicateentities": "מסיר ישויות כפולות שנמצאו בטבלאות נבחרות שאין להן הפניות פעילות.", + "smw-admin-maintenance-script-description-setupstore": "מגדיר את שרת האחסון והשאילתות כהגדרתו ב־LocalSettings.php.", + "smw-admin-maintenance-script-description-updateentitycollation": "מעדכן את השדה smw_sort ב־SQLStore (בהתאם להגדרה [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation]).", + "smw-admin-maintenance-script-description-populatehashfield": "מאכלס את השדה smw_hash עבור שורות חסרות הערך.", + "smw-admin-maintenance-script-description-purgeentitycache": "ניקוי ערכי מטמון עבור ישויות ידועות והנתונים המשויכים אליהן.", + "smw-admin-maintenance-script-description-updatequerydependencies": "עדכון שאילתות ותלויות בשאילתה (ר' את ההגדרה [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore]).", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "השלכת ישויות מיושנות וקישורי שאילתות מיושנים.", + "smw-admin-maintenance-script-description-runimport": "אכלוס ויבוא תוכן שהתגלה אוטומטית מ־[https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs].", + "smw-admin-maintenance-script-section-update": "סקריפטים לעדכון", + "smw-admin-maintenance-script-section-rebuild": "סקריטפים לבנייה מחדש", + "smw-livepreview-loading": "בטעינה…", + "smw-sp-searchbyproperty-description": "הדף הזה מספק [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces ממשק עיון] פשוט למציאת ישויות שמתוארות על־ידי מאפיין וערך בעל־שם. ממשקי חיפוש זמינים אחרים הם [[Special:PageProperty|חיפוש מאפיין דף]] ו[[Special:Ask|בונה שאילתות]].", + "smw-sp-searchbyproperty-resultlist-header": "רשימת תוצאות", + "smw-sp-searchbyproperty-nonvaluequery": "רשימה של תוצאות שהוקצה להן המאפיין \"$1\".", + "smw-sp-searchbyproperty-valuequery": "רשימת דפים שיש להן המאפיין \"$1\" עם הערך \"$2\" מוער.", + "smw-datavalue-number-textnotallowed": "לא ניתן להציב את \"$1\" לסוג מספר מוצהר עם הערך $2.", + "smw-datavalue-number-nullnotallowed": "\"$1\" הוחזר עם \"NULL\" שאינו ערך מספרי מותר.", + "smw-editpage-annotation-enabled": "הדף הזה תומך בהערות סמנטיות בתוך הטקסט (למשל \"[[Is specified as::World Heritage Site]]\") לבניית תכן מובנה ושאיל שמספקת מדיה־ויקי סמנטית. לתיאור מקיף של איך להשתמש בהערות או בפונקציית המפענח #ask, נא להסתכל בדפי העזרה [https://www.semantic-mediawiki.org/wiki/Help:Getting_started getting started]‏, [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation in-text annotation], או [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-editpage-annotation-disabled": "הדף הזה לא מופעל להערות בתוך הטקסט בשל מגבלות מרחב שם. ניתן למצוא פרטים על איך להפעיל את מרחב השם בדף העזרה [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuration].", + "smw-editpage-property-annotation-enabled": "אפשר להחיב את המאפיין הזה באמצעות הערות סמנטיות כדי להגדיר סוג נתונים (למשל \"[[Has type::Page]]\") או הצהרות תומכות אחרות (למשל \"[[Subproperty of::dc:date]]\"). לתיאור של איך להרחיב את הדף הזה, ר' את דפי העזרה [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration declaration of a property] או [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes list of available data types].", + "smw-editpage-property-annotation-disabled": "לא ניתן להרחיב את המאפיין הזה עם הערת סוג נתונים (למשל \"[[Has type::Page]]\") משום שהוא כבר מוגדר מראש (ר' את הדף העזרה [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special properties] למידע נוסף).", + "smw-editpage-concept-annotation-enabled": "אפשר להרחיב את הרעיון הזה באמצעות פונקציית המפענח #concept. לתיאור של השימוש ב־#concept, ר' את דף העזרה [https://www.semantic-mediawiki.org/wiki/Help:Concepts concept].", + "smw-search-syntax-support": "קלט החיפוש תומך בשימוש ב־[https://www.semantic-mediawiki.org/wiki/Help:Semantic_search תחביר שאילתה] סמנטי כדי לסייע בהתאמת תוצאות באמצעות מדיה־ויקי סמנטית.", + "smw-search-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance סיוע בקלט] מופעל גם כדי להקל על הבחירה מראש של מאפיינים וקטגוריות זמינות.", + "smw-search-help-intro": "קלט [[ ... ]] יאותת למעבד הקלט להשתמש בשרת החיפוש של מדיה־ויקי סמנטית. יש לציין כי שילוב [[ ... ]] עם חיפוש טקסט לא מובנה כגון [[ ... ]] OR Lorem ipsum לא נתמך.", + "smw-search-help-structured": "חיפושים מובנים:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] (כמו [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context הקשר מסונן])\n\n*[[Has text::~*lorem*]] (עם [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context הקשר שאילתה])", + "smw-search-help-proximity": "חיפושי קרבה (מאפיין אינו ידוע, זמין '''רק''' עבור שרתים שמספקים שילוב חיפוש בטקסט מלא):\n\n*[[in:lorem ipsum]] (לחפש בכל המסמכים \"lorem\" ו-\"ipsum\" שמופתחו)\n\n* [[phrase:lorem ipsum]] (להתאים את \"lorem ipsum\" כביטוי)", + "smw-search-help-ask": "הקישורים הבאים יסבירו כיצד להשתמש בתחביר #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages בחירת דפים] מתאר כיצד לבחור דפים ולבנות תנאים!\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators אופרטורים של חיפוש] מפרט אופרטורים זמינים של חיפוש, כולל אלו עבור שאילתות טווח ותווים כלליים", + "smw-search-input": "קלט וחיפוש", + "smw-search-help-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance סיוע בקלט] מסופק עבור שדה הקלט ודורש להשתמש באחת התחיליות הבאות:\n\n* p: כדי להפעיל הצעות מאפיינים (למשל [[p:Has ...)\n\n* c: כדי להפעיל הצעות לקטגוריות\n\n* con: כדי להפעיל הצעות רעיות", + "smw-search-syntax": "תחביר", + "smw-search-profile": "מורחב", + "smw-search-profile-tooltip": "אפשרויות חיפוש שמחוברות עם ההרחבה \"מדיה־ויקי סמנטית\"", + "smw-search-profile-sort-best": "ההתאמה הטובה ביותר", + "smw-search-profile-sort-recent": "אחרונות", + "smw-search-profile-sort-title": "כותרת", + "smw-search-profile-extended-help-intro": "[https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile הפרופיל המורחב] Special:Search מספק גישה לפונקציות חיפוש ספציפיות למדיה־ויקי סמנטית ולשרת השאילתה הנתמך שלה.", + "smw-search-profile-extended-help-sort": "מציין העדפת מיון עבור תצוגת התוצאה עם:", + "smw-search-profile-extended-help-sort-title": "* \"כותרת\" באמצעות כותרת הדף (או כותרת התצוגה) כקריטריוני מיון", + "smw-search-profile-extended-help-sort-recent": "* \"אחרונות\" יציג תחילה את הישויות שהשתנו לאחרונה (ישויות עצם־משנה יידחקו החוצה כי אינן מסומנות ב[[Property:Modification date|תאריך שינוי]])", + "smw-search-profile-extended-help-sort-best": "* \"ההתאמה הטובה ביותר\" ימיין ישויות לפי [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy רלוונטיות] על סמך דירוגים שסופקו על־ידי השרת", + "smw-search-profile-extended-help-form": "הטפסים מסופקים (אם הם מתוחזקים) כדי להתאים למקרי שימוש מסוימים על־ידי חשיפת שדות מאפיינים וערכים שונים כדי לצמצם את תהליך הקלט ולהקל על המשתמשים להמשיך בבקשת חיפוש. (ר' $1)", + "smw-search-profile-extended-help-namespace": "תיבת בחירת מרחב השם תהיה מוסתרת ברגע שנבחר טופס אבל ניתן יהיה להפוך אותה לגלויה בעזרת כפתור \"הצגה/הסתרה\".", + "smw-search-profile-extended-help-search-syntax": "שדה קלט החיפוש תומך בשימוש בתחביר #ask כדי להגדיר הקשר חיפוש מסוים למדיה־ויקי סמנטית. ביטויים שימושיים כוללים:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: כדי למצוא כל דבר שמכיל \"...\" והוא שימושי במיוחד כאשר הקשר החיפוש או המאפיינים המעורבים אינם ידועים (למשל in:(lorem && ipsum) שווה ערך ל־[[~~*lorem*]] && [[~~*ipsum*]]).", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: כדי למצוא כל דבר שמכיל \"...\" באותו סדר בדיוק", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: כדי להתאים לכל ישות מאפיין \"...\" (למשל has:(Foo && Bar) שווה ערך ל־[[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: כדי לא להתאים לשום ישות שכוללת \"...\"", + "smw-search-profile-extended-help-search-syntax-prefix": "* זמינות ומוגדרות תחיליות מותאמות נוספות, כגון: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* ביטויים מסוימים שמורים כגון: $1", + "smw-search-profile-extended-help-search-syntax-note": "''חלק מהפעולות הרשומות שימושיות רק בקשר עם מפתוח טקסט מלא מופעל או עם ElasticStore.''", + "smw-search-profile-extended-help-query": "השתמש ב־$1 בתור שאילתה.", + "smw-search-profile-extended-help-query-link": "לפרטים נוספים, יש להשתמש ב$1", + "smw-search-profile-extended-help-find-forms": "מסמכים זמינים", + "smw-search-profile-extended-section-sort": "מיון לפי", + "smw-search-profile-extended-section-form": "טפסים", + "smw-search-profile-extended-section-search-syntax": "קלט לחיפוש", + "smw-search-profile-extended-section-namespace": "מרחב שם", + "smw-search-profile-extended-section-query": "שאילתה", + "smw-search-profile-link-caption-query": "בונה שאילתה", + "smw-search-show": "הצגה", + "smw-search-hide": "להסתיר", + "log-name-smw": "יומן מדיה־ויקי סמנטית", + "log-show-hide-smw": "$1 יומן מדיה־ויקי סמנטית", + "logeventslist-smw-log": "יומן מדיה־ויקי סמנטית", + "log-description-smw": "פעולות עבור [https://www.semantic-mediawiki.org/wiki/Help:Logging סוגי אירועים מופעלים] שדווחו על־ידי מדיה־ויקי סמנטית והמרכיבים שלה.", + "logentry-smw-maintenance": "אירועים של תחזוקה שיוצאים מתוך מדיה־ויקי סמנטית", + "smw-datavalue-import-unknown-namespace": "מרחב השמות ליבוא \"$1\" אינו ידוע. נא לוודא שפרטי היבוא של OWL זמינים דרך [[MediaWiki:Smw import $1]]", + "smw-datavalue-import-missing-namespace-uri": "לא ניתן למצוא URI של מרחב שמות של \"$1\" ב[[MediaWiki:Smw import $1|יבוא $1]].", + "smw-datavalue-import-missing-type": "לא נמצא סוג נתונים עבור \"$1\" ב־[[MediaWiki:Smw import $2|$2 יצוא]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|יבוא $1]]", + "smw-datavalue-import-invalid-value": "הפורמט של \"$1\" אינו תקין, והוא אמור להיות מהצורה \"namespace\":\"identifier\" (למשל, \"foaf:name\").", + "smw-datavalue-import-invalid-format": "המחרוזת \"$1\" הייתה אמורה להיות מחולקת לארבעה חלקים, אך הפורמט שלה לא היה מובן", + "smw-property-predefined-impo": "\"$1\" הוא מאפיין מוגדר מראש שמתאר יחס ל[https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary מילון מיובא] ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-type": "\"$1\" הוא מאפיין מוגדר מראש שמתאר את [[Special:Types|סוג הנתונים]] של מאפיין ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-sobj": "\"$1\" הוא מאפיין מוגדר מראש שמייצג מבנה [https://www.semantic-mediawiki.org/wiki/Help:Container מכל] והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-sobj": "המכל מאפשר לאגור השמות מאפיין־ערך בדומה לדף ויקי רגיל, אבל בתוך מרחב ישויות נפרד עם קישור לנושא המטביע.", + "smw-property-predefined-errp": "\"$1\" הוא מאפיין מוגדר מראש שעוקב אחרי שגיאות קלט להערות ערכים חריגות ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-errp": "ברוב המקרים זה נגרם מחוסר־התאמה בסוג או במגבלת [[Property:Allows value|ערך]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value \"$1\"] הוא מאפיין מוגדר מראש שיכול להגדיר רשימת ערכים שאפשר להתיר כדי להגביל את השמת הערכים למאפיין ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list \"$1\"] הוא מאפיין מוגדר מראש שיכול להגדיר הפניה לרשימת ערכים שאפשר להתיר כדי להגביל את השמת הערכים למאפיין ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-datavalue-property-restricted-annotation-use": "למאפיין \"$1\" יש אזור יישום מוגבל והוא לא יכול לשמש כמאפיין הערות על־ידי משתמש.", + "smw-datavalue-property-restricted-declarative-use": "המאפיין \" $1 \" הוא מאפיין הצהרתי וניתן להשתמש בו רק בדף מאפיין או בדף קטגוריה.", + "smw-datavalue-property-create-restriction": "המאפיין \"$1\" אינו קיים ולמשתמש חסרה ההרשאה \"$2\" (ר' [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode מצב סמכות]) ליצור או להעיר ערכים עם מאפיין לא מאושר.", + "smw-datavalue-property-invalid-character": "המאפיין \"$1\" מכיל את התו הרשום \"$2 כחלק מתווית המאפיין ולכן סווג כבלתי־תקין.", + "smw-datavalue-property-invalid-chain": "השימוש ב{{GRAMMAR:תחילית|$1}} כשרשרת מאפיינים אינו מותר במהלך תהליך ההערה.", + "smw-datavalue-restricted-use": "ערך הנתונים \"$1\" סומן לשימוש מוגבל.", + "smw-datavalue-invalid-number": "לא ניתן לפרש את \"$1\" בתור מספר.", + "smw-query-condition-circular": "תנאי מעגלי אפשרי זוהה בתבנית \"$1\".", + "smw-query-condition-empty": "בתיאור השאילתה יש תנאי ריק.", + "smw-types-list": "רשימת סוגי נתונים", + "smw-types-default": "\"$1\" הוא סוג נתונים מובנה.", + "smw-types-help": "מידע נוסף ודוגמאות אפשר למצוא ב[https://www.semantic-mediawiki.org/wiki/Help:Type_$1 דף העזרה הזה].", + "smw-type-anu": "\"$1\" הוא הגוון של סוג הנתונים [[Special:Types/URL|URL]] והוא משמש להצהרת היצוא ''owl:AnnotationProperty''.", + "smw-type-boo": "\"$1\" הוא סוג נתונים בסיסי לתיאור ערך אמת/שקר.", + "smw-type-cod": "\"$1\" הוא הגוון של סוג הנתונים [[Special:Types/Text|Text]] לשימוש בטקסטים טכניים באורך כלשהו, כגון קוד מקור.", + "smw-type-geo": "\"$1\" הוא סוג נתונים שמתאר מיקומים גאוגרפיים ודורש את ההרחבה [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"] בשביל לספק פונקצינליות מורחבת.", + "smw-type-tel": "\"$1\" הוא סוג נתונים מיוחד לתיאור מספר טלפון בין־לאומי בהתאם ל־RFC 3966.", + "smw-type-txt": "\"$1\" הוא סוג נתונים בסיסי לתיאור מחרוזות באורך כלשהו.", + "smw-type-dat": "\"$1\" הוא סוג נתונים בסיסי לייצוג נקודות בזמן בתסדיר מאוחד.", + "smw-type-ema": " $1\" הוא סוג נתונים מיוחד לייצוג דוא\"ל.", + "smw-type-tem": "\"$1\" הוא סוג נתונים מספרי מיוחד לייצוג טמפרטורה.", + "smw-type-qty": " $1\" הוא סוג נתונים לתיאור כמויות עם ייצוג מספרי ויחידת מדידה.", + "smw-type-rec": "\"$1\" הוא סוג נתונים מכלי המציין רשימה של מאפיינים בעלי־סוג בסדר קבוע.", + "smw-type-extra-tem": "סכֵמת ההמרה כוללת יחידות נתמכות כגון קלווין, צלזיוס, פרנהייט ורנקין.", + "smw-type-tab-properties": "מאפיינים", + "smw-type-tab-types": "סוגים", + "smw-type-tab-type-ids": "מזהי סוגים", + "smw-type-tab-errors": "שגיאות", + "smw-type-primitive": "בסיסיים", + "smw-type-contextual": "הקשריים", + "smw-type-compound": "מורכבים", + "smw-type-container": "מכלים", + "smw-type-no-group": "לא מסווגים", + "smw-special-pageproperty-description": "הדף הזה מספק ממשק עיון למציאת כל הערכים של מאפיין ודף נתון. ממשקי חיפוש זמינים אחרים כוללים את [[Special:SearchByProperty|חיפוש מאפיין]], ואת [[Special:Ask|בונה השאילתות ask]].", + "smw-property-predefined-errc": "\"$1\" הוא מאפיין מוגדר מראש שמסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] ומייצג שגיאות שמופיעות בהקשר עם ערך או עיבוד קלט לא הולם.", + "smw-property-predefined-long-errc": "שגיאות נאספות ב[https://www.semantic-mediawiki.org/wiki/Help:Container מכל] שיכול לכלול הפניה למאפיין שגרם לחוסר העקביות.", + "smw-property-predefined-errt": "\"$1\" הוא מאפיין מוגדר מראש שמכיל תיאור בטקסט של שגיאה ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-subobject-parser-invalid-naming-scheme": "תת־עצם שהוגדר על־ידי המשתמש הכיל שיטת מתן שמות בלתי־תקינה. כתיבת נקודה ($1) בחמשת התווים הראשונים ($1) שמורה להרחבות. באפשרותך להגדיר [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier מזהה בעל שם].", + "smw-datavalue-record-invalid-property-declaration": "הגדרת הרשומה כוללת את המאפיין \"$1\" שבעצמה מוגדרת בתור סוג רשומה ואינה מותרת.", + "smw-property-predefined-mdat": "\"$1\" הוא מאפיין מוגדר מראש שמתאים לתאריך השינוי האחרון של הנושא ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cdat": "\"$1\" הוא מאפיין מוגדר מראש שמתאים לתאריך השינוי הראשון של הנושא ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-newp": "\"$1\" הוא מאפיין מוגדר מראש שמציין אם הנושא חדש או לא ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-ledt": "\"$1\" הוא מאפיין מוגדר מראש שמכיל את שם הדף של הדף שיצר את הגרסה האחרונה ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-mime": "\"$1\" הוא מאפיין מוגדר מראש שמציין את סוג ה־MIME של קובץ שהועלה ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-media": "\"$1\" הוא מאפיין מוגדר מראש שמתאר את סוג המדיה של קובץ שהועלה ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askfo": "\"$1\" הוא מאפיין מוגדר מראש שמחזיק את שם תסדיר התוצאה שמשמש בשאילתה ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askst": "\"$1\" הוא מאפיין מוגדר מראש שמציין את התנאים של השאילתה כמחרוזת ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askdu": "\"$1\" הוא מאפיין מוגדר מראש שמכיל ערך זמן (בשניות) שנדרש כדי להשלים את ביצוע השאילתה ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksc": "\"$1\" הוא מאפיין מוגדר מראש המסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית] שמזהה מקורות שאילתות חלופיים (למשל מרוחקים, בפדרציה).", + "smw-property-predefined-askco": "\"$1\" הוא מאפיין מוגדר מראש שמסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית] כדי לתאר את המצב של שאילתה או של רכיבים שלה.", + "smw-property-predefined-long-askco": "המספר או המספרים שהוקצו מייצגים מצב מקודד פנימי המוסבר ב[https://www.semantic-mediawiki.org/wiki/Help:Query_profiler דף העזרה].", + "smw-property-predefined-prec": "\"$1\" הוא מאפיין מוגדר מראש שמתאר [https://www.semantic-mediawiki.org/wiki/Help:Display_precision דיוק תצוגה] (בספרות עשרוניות) לסוגי נתונים מספריים.", + "smw-property-predefined-attch-link": "\"$1\" הוא מאפיין מוגדר מראש שאוסף קישורים לקבצים ותמונות שנמצאים בדף והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-inst": "\"$1\" הוא מאפיין פנימי מוגדר מראש שמאחסן מידע על קטגוריה עצמאית ממדיה־ויקי והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-unit": "\"$1\" הוא מאפיין הצהרתי מוגדר מראש להגדרת יחידות למאפיינים מספריים בעלי סוג והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-long-unit": "רשימה מופרדת בפסיקים מאפשרת לתאר יחידות או תסדירים לשימוש עבור התצוגה.", + "smw-property-predefined-conv": "\"$1\" הוא מאפיין הצהרתי מוגדר מראש להגדרת גורם ההמרה ליחידה מסוימת של כמות פיזית והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-serv": "\"$1\" הוא מאפיין הצהרתי מוגדר מראש להוספת קישורי שירות למאפיין והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-redi": "\"$1\" הוא מאפיין פנימי מוגדר מראש לרישום הפניות והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-subp": "\"$1\" הוא מאפיין הצהרתי מוגדר מראש להגדרה שמאפיין הוא [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of מאפיין־משנה] של מאפיין אחר והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-subc": "\"$1\" הוא מאפיין מוגדר מראש להגדרה שקטגוריה היא [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of קטגוריית־משנה] של קטגוריה אחרת והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-conc": "\"$1\" הוא מאפיין פנימי מוגדר מראש להגדרת רעיון משויך והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-err-type": "\"$1\" הוא מאפיין מוגדר מראש לזיהוי קבוצה או מחלקה של [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors שגיאות עיבוד] והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-skey": "\"$1\" הוא מאפיין פנימי מוגדר מראש שמחזיק הפניית מיון והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-pplb": "\"$1\" הוא מאפיין הצהרתי מוגדר מראש לציון [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label תווית מאפיין מועדף] והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-chgpro": "\"$1\" הוא מאפיין מוגדר מראש שמחזיק מידע על [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation הפצת שינויים] והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-schema-link": " ומסופק על־ידי [מדיה־ויקי סמנטית].", + "smw-property-predefined-format-schema": " ומסופק על־ידי [מדיה־ויקי סמנטית].", + "smw-property-predefined-profile-schema": " ומסופק על־ידי [מדיה־ויקי סמנטית].", + "smw-property-predefined-trans": " ומסופק על־ידי [מדיה־ויקי סמנטית].", + "smw-property-predefined-trans-source": " ומסופק על־ידי [מדיה־ויקי סמנטית].", + "smw-property-predefined-trans-group": " ומסופק על־ידי [מדיה־ויקי סמנטית].", + "smw-property-predefined-cont-len": "\"$1\" הוא מאפיין מוגדר מראש שמאחסן מידע על אורך והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-long-cont-len": "הוא משמש עם [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ועם [https://www.semantic-mediawiki.org/Attachment_processor מעבד הצרופות]) כדי לאסוף ולאחסן מידע על אורך שמאוחזר מקובץ שנשאב (אם מסופק).", + "smw-property-predefined-cont-lang": "\"$1\" הוא מאפיין מוגדר מראש שמאסחן מידע על שפה והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-long-cont-lang": "הוא משמש עם [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ועם [https://www.semantic-mediawiki.org/Attachment_processor מעבד הצרופות]) כדי לאסוף ולאחסן מידע על שפה שמאוחזר מקובץ שנשאב (אם מסופק).", + "smw-property-predefined-cont-title": "\"$1\" הוא מאפיין מוגדר מראש שמאחסן מידע על כותרת והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-long-cont-title": "הוא משמש עם [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ועם [https://www.semantic-mediawiki.org/Attachment_processor מעבד הצרופות]) כדי לאסוף ולאחסן מידע על כותרות שמאוחזר מקובץ שנשאב (אם מסופק).", + "smw-property-predefined-cont-author": "\"$1\" הוא מאפיין מוגדר מראש שמאחסן מידע על מחבר והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-long-cont-author": "הוא משמש עם [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ועם [https://www.semantic-mediawiki.org/Attachment_processor מעבד הצרופות]) כדי לאסוף ולאחסן מידע על מחברים שמאוחזר מקובץ שנשאב (אם מסופק).", + "smw-property-predefined-cont-date": "\"$1\" הוא מאפיין מוגדר מראש שמאחסן מידע על תאריך והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-long-cont-date": "הוא משמש עם [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ועם [https://www.semantic-mediawiki.org/Attachment_processor מעבד הצרופות]) כדי לאסוף ולאחסן מידע על תאריכים שמאוחזר מקובץ שנשאב (אם מסופק).", + "smw-property-predefined-cont-type": "\"$1\" הוא מאפיין מוגדר מראש שמאחסן מידע על סוג קובץ והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-long-cont-type": "הוא משמש עם [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ועם [https://www.semantic-mediawiki.org/Attachment_processor מעבד הצרופות]) כדי לאסוף ולאחסן מידע על סוגים שמאוחזר מקובץ שנשאב (אם מסופק).", + "smw-property-predefined-cont-keyw": "\"$1\" הוא מאפיין מוגדר מראש שמייצג מילות מפתח והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-long-cont-keyw": "הוא משמש עם [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ועם [https://www.semantic-mediawiki.org/Attachment_processor מעבד הצרופות]) כדי לאסוף ולאחסן מידע על מילות מפתח שמאוחזר מקובץ שנשאב (אם מסופק).", + "smw-property-predefined-file-attch": "\"$1\" הוא מאפיין מוגדר מראש שמייצג מכל שמאחסן מידע על צרופות והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-long-file-attch": "הוא משמש עם [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ועם [https://www.semantic-mediawiki.org/Attachment_processor מעבד הצרופות]) כדי לאסוף את המידע הייחודי לתוכן שאפשר לאחזר מקובץ שנשאב (אם מסופק).", + "smw-types-extra-geo-not-available": "[https://www.semantic-mediawiki.org/wiki/Extension:Maps Extension \"Maps\"] לא נמצא ולכן \"$1\" מוגבל ביכולת פעילותו.", + "smw-datavalue-monolingual-dataitem-missing": "חסר פריט דרוש לבניית ערך חד-לשוני.", + "smw-datavalue-languagecode-missing": "בשביל הערת \"$1\" המפענח לא הצליח להבין מה קוד השפה (למשל \"foo@en\").", + "smw-datavalue-languagecode-invalid": "\"$1\" לא זוהה בתור קוד שפה נתמך.", + "smw-property-predefined-lcode": "\"$1\" הוא מאפיין מוגדר מראש שמייצג קוד שפה בתסדיר BCP47 ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-type-mlt-rec": "\"$1\" הוא סוג נתונים [https://www.semantic-mediawiki.org/wiki/Help:Container מכיל] שמשייך ערך טקסט עם [[Property:Language code|קוד שפה]] מסוים.", + "smw-types-extra-mlt-lcode": "סוג הנתונים {{PLURAL:$2|דורש|אינו דורש}} קוד שפה (כלומר, הערת ערך ללא קוד שפה {{PLURAL:$2|לא תתקבל|תתקבל}}).", + "smw-property-predefined-text": "\"$1\" הוא מאפיין מוגדר מראש שמייצג טקסט באורך שרירותי ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pdesc": "\"$1\" הוא מאפיין מוגדר מראש שמאפשר לתאר מאפיין בהקשר של שפה ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-list": "\"$1\" הוא מאפיין מוגדר מראש כדי להגדיר רשימת מאפיינים שמשמשים עם מאפיין מסוג [[Special:Types/Record|רשומה]] (record) ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] זמן פענוח בתוך הטקסט", + "smw-limitreport-intext-postproctime": "[SMW] זמן אחרי עיבוד", + "smw-limitreport-intext-parsertime-value": "{{PLURAL:$1|שנייה אחת|$1 שניות}}", + "smw-limitreport-intext-postproctime-value": "{{PLURAL:$1|שנייה אחת|$1 שניות}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] זמן עדכון אחסון (בניקוי דף)", + "smw-limitreport-pagepurge-storeupdatetime-value": "{{PLURAL:$1|שנייה אחת|$1 שניות}}", + "smw_allows_pattern": "הדף הזה אמור להכיל רשימת הפניות (שאחריהן [https://en.wikipedia.org/wiki/Regular_expression ביטויים רגולריים]) שתהיינה זמינות באמצעות המאפיין [[Property:Allows pattern|Allows pattern]]. כדי לערוך את הדף הזה, דרושה ההרשאה smw-patternedit.", + "smw-datavalue-allows-pattern-mismatch": "\"$1\" מוין בתור בלתי־תקין באמצעות הביטוי הרגולרי \"$2\".", + "smw-datavalue-allows-pattern-reference-unknown": "ההפניה לתבנית \"$1\" לא התאימה לרשומה בדף [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "ההפניה לרשימה \"$1\" לא יכולה להיות מותאמת לדף [[MediaWiki:Smw allows list $1]].", + "smw-datavalue-allows-value-list-missing-marker": "בתוכן הרשימה \"$1\" חסרים פריטים עם סמן הרשימה *.", + "smw-datavalue-feature-not-supported": "התכונה \"$1\" אינה נתמכת או שהיא כובתה בוויקי הזה.", + "smw-property-predefined-pvap": "\"$1\" הוא מאפיין מוגדר מראש שיכול להגדיר [[MediaWiki:Smw allows pattern|הפניה לתבנית]] כדי להחיל התאמת [https://en.wikipedia.org/wiki/Regular_expression ביטוי רגולרי] והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-dtitle": "\"$1\" הוא מאפיין מוגדר מראש שיכול לשייך כותרת תצוגה ייחודית לישות והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvuc": "\"$1\" הוא מאפיין מוגדר מראש שמראה ששיוך ערכים למאפיינים אמור להיות ייחודי והוא מסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] כדי להגביל השמת ערכים לכל מופע למשהו ייחודי (או אחד לכל היותר).", + "smw-property-predefined-long-pvuc": "ייחודיות מתקיימת כאשר שני ערכים אינם שווים בייצוג המפורש שלהם. כל הפרה של אילוץ הייחודיות תסווג בתור שגיאה.", + "smw-datavalue-constraint-uniqueness-violation": "המאפיין \"$1\" מאפשר רק השמת ערכים ייחודיים והערך ''$2'' כבר הוער בנושא \"$3\".", + "smw-datavalue-constraint-uniqueness-violation-isknown": "המאפיין \"$1\" מאפשר רק הערות ערך ייחודי, ''$2'' כבר מכיל ערך מושם. \"$3\" מפר את מגבלת הייחודיות.", + "smw-datavalue-constraint-violation-non-negative-integer": "על המאפיין \"$1\" יש אילוץ \"מספר שלם לא שלילי\" והערך ''$2'' מפר את הדרישה הזאת.", + "smw-datavalue-constraint-violation-must-exists": "על המאפיין \"$1\" יש אילוץ must_exists והערך ''$2'' מפר את הדרישה הזאת.", + "smw-datavalue-constraint-violation-single-value": "על המאפיין \"[[Property:$1|$1]]\" יש אילוץ single_value והערך \"$2\" מפר את הדרישה הזאת.", + "smw-constraint-violation-uniqueness": "אילוץ unique_value_constraint מושם למאפיין \"[[Property:$1|$1]]\", המאפשר רק השמות ערך ייחודיות והערת הערך ''$2'' כבר נמצאה כמצוינת בנושא \"$3\".", + "smw-constraint-violation-uniqueness-isknown": "אילוץ unique_value_constraint מושם למאפיין \"[[Property:$1|$1]]\", ולכן מותרות רק הערות על ערך יחיד. ''$2'' כבר מכיל ערך מוער עם \"$3\", וזה מפר את אילוץ הייחודיות לנושא הנוכחי.", + "smw-constraint-violation-non-negative-integer": "אילוץ non_negative_integer מושם למאפיין \"[[Property:$1|$1]]\" והערת הערך ''$2'' מפרה את דרישת האילוץ.", + "smw-constraint-violation-must-exists": "אילוץ must_exists מושם למאפיין \"[[Property:$1|$1]]\" והערת הערך ''$2'' מפרה את דרישת האילוץ.", + "smw-constraint-violation-single-value": "אילוץ single_value מושם למאפיין \"[[Property:$1|$1]]\" והערת הערך \"$2\" מפרה את דרישת האילוץ.", + "smw-constraint-violation-class-shape-constraint-missing-property": "shape_constraint מושם לקטגוריה \"[[:$1]]\" עם מפתח property, והמאפיין הנדרש $2\" חסר.", + "smw-constraint-violation-class-shape-constraint-wrong-type": "shape_constraint מושם לקטגוריה \"[[:$1]]\" עם מפתח property_type, המאפיין \"$2\" לא תואם את הסוג של \"$3\".", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "shape_constraint מושם לקטגוריה \"[[:$1]]\" עם מפתח max_cardinality, המאפיין \"$2\" לא תואם את העוצמה של \"$3\".", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "shape_constraint מושם לקטגוריה \"[[:$1]]\" עם מפתח min_textlength, המאפיין \"$2\" לא תואם את דרישת האורך של \"$3\".", + "smw-constraint-violation-class-mandatory-properties-constraint": "אילוץ mandatory_properties מושם לקטגוריה \"[[:$1]]\" ודורש את מאפייני החובה הבאים: $2", + "smw-constraint-violation-allowed-namespace-no-match": "אילוץ allowed_namespaces מושם למאפיין \"[[Property:$1| $1]]\" והערך \"$2\" מפר את דרישת מרחב השם, רק מרחבי השם \"$3\" הבאים מותרים.", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "אילוץ allowed_namespaces דורש סוג דף.", + "smw-constraint-schema-category-invalid-type": "הסכֵמה המוערת \"$1\" אינה תקינה עבור הקטגוריה, היא דורשת את הסוג \"$2\".", + "smw-constraint-schema-property-invalid-type": "הסכֵמה המוערת \"$1\" אינה תקינה עבור המאפיין, היא דורשת את הסוג \"$2\".", + "smw-constraint-error-allows-value-list": "\"$1\" אינו ברשימה ($2) של [[Property:Allows value|הערכים האפשריים]] למאפיין \"$3\".", + "smw-constraint-error-allows-value-range": "\"$1\" אינו בטווח ההוא של \"$2\" שמוגדר על־ידי אילוץ [[Property:Allows value|הערכים האפשריים]] למאפיין \"$3\".", + "smw-property-predefined-boo": "\"$1\" הוא [[Special:Types/Boolean|סוג]] ומאפיין מוגדר מראש שמסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית] כדי לייצג ערכים בוליאניים.", + "smw-property-predefined-num": "\"$1\" הוא [[Special:Types/Number|סוג]] ומאפיין מוגדר מראש שמסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית] כדי לייצג ערכים מספריים.", + "smw-property-predefined-dat": "\"$1\" הוא [[Special:Types/Date|סוג]] ומאפיין מוגדר מראש שמסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית] כדי לייצג ערכי תאריכים.", + "smw-property-predefined-uri": "\"$1\" הוא [[Special:Types/URL|סוג]] ומאפיין מוגדר מראש שמסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית] כדי לייצג ערכי URI/URL.", + "smw-property-predefined-qty": "\"$1\" הוא [[Special:Types/Quantity|סוג]] ומאפיין מוגדר מראש שמסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית] כדי לייצג ערכי כמות.", + "smw-datavalue-time-invalid-offset-zone-usage": "\"$1\" מכיל מזהה היסט ואזור שאינו נתמך.", + "smw-datavalue-time-invalid-values": "הערך \"$1\" מכיל מידע בלתי־אפשרי לפירוש בצורה של \"$2\".", + "smw-datavalue-time-invalid-date-components-common": "\"$1\" מכיל מידע בלתי־אפשרי לפירוש.", + "smw-datavalue-time-invalid-date-components-dash": "\"$1\" מכיל קו מפריד חיצוני או תווים אחרים שאינם תקינים לפירוש תאריך.", + "smw-datavalue-time-invalid-date-components-empty": "\"$1\" מכיל רכיבית ריקים מסוימים.", + "smw-datavalue-time-invalid-date-components-three": "\"$1\" מכיל יותר משלישה רכיבים שדרושים לפענוח תאריך.", + "smw-datavalue-time-invalid-date-components-sequence": "\"$1\" מכיל רצף שלא ניתן לפרש אל מול מטריצת התאמה זמינה עבור רכיבי תאריך.", + "smw-datavalue-time-invalid-ampm": "\"$1\" מכיל את \"$2\" בתור רכיב שעה שאינו תקין כשמקובל לכתוב לפי 12 שעות.", + "smw-datavalue-time-invalid-jd": "לא ניתן לפענח את ערך הקלט \"$1\" בתור מספר JD (יום יוליאני) תקין כשמדווח \"$2\".", + "smw-datavalue-time-invalid-prehistoric": "לא ניתן לפענח ערך קלט \"$1\" פרה־היסטורי. למשל, ציון של יותר שנים או של מודל לוח שנה יכול להחזיר תוצאות בלתי־צפויות בהקשר פרה־היסטורי.", + "smw-datavalue-time-invalid": "לא ניתן לפענח את ערך הקלט \"$1\" בתור תאריך תקין או בתור רכיב זמן כשמדווח \"$2\".", + "smw-datavalue-external-formatter-uri-missing-placeholder": "ב־URI לעיצוב חסר ממלא המקום ''$1''.", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\" אינה כתובת URL תקינה.", + "smw-datavalue-external-identifier-formatter-missing": "במאפיין חסרה השמת [[Property:External formatter uri|\"URI חיצוני לעיצוב\"]] (\"External formatter URI\").", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "המזהה החיצוני \"$1\" מצפה להחלפה מרובת שדות אבל בערך \"$2\" הנוכחי חסר לפחות פרמטר ערך אחד שיתאים לדרישה.", + "smw-datavalue-keyword-maximum-length": "מילת המפתח חרגה מהאורך המרבי של {{PLURAL:$1|תו אחד|$1 תווים}}.", + "smw-property-predefined-eid": "\"$1\" הוא [[Special:Types/Date|סוג]] ומאפיין מוגדר מראש שמסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית] כדי לייצג מזהים חיצוניים.", + "smw-property-predefined-peid": "\"$1\" הוא מאפיין מוגדר מראש שמגדיר מזהה חיצוני ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pefu": "\"$1\" הוא מאפיין מוגדר מראש שמסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית] כדי להגדיר משאב חיצוני עם ממלא מקום.", + "smw-property-predefined-long-pefu": "ה־URI צפוי להכיל ממלא מקום שיותאם עם ערך [[Special:Types/External ID|מזהה חיצוני]] כדי ליצור הפניה תקינה למשאב.", + "smw-type-eid": "\"$1\" הוא הגוון של סוג הנתונים [[Special:Types/Text|Text]] לתיאור משאבים חיצוניים (מבוססי URI) והוא דורש מאפיינים מושמים כדי להכריז על [[Property:External formatter uri|External formatter URI]].", + "smw-property-predefined-keyw": "\"$1\" הוא מאפיין ו[[Special:Types/Date|סוג]] מוגדר מראש שמסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית] שמנרמל טקסט ויש לו מגבלה של אורך בתווים.", + "smw-type-keyw": "\"$1\" הוא הגוון של סוג הנתונים [[Special:Types/Text|טקסט]] שיש לו אורך מוגבל בתווים עם ייצוג תוכן מנורמל.", + "smw-datavalue-stripmarker-parse-error": "הערך הנתון \"$1\" מכיל [https://en.wikipedia.org/wiki/Help:Strip_markers סמני strip] ולכן לא ניתן לפענח אותו באופן מספק.", + "smw-datavalue-parse-error": "הערך הנתון \"$1\" לא הובן.", + "smw-datavalue-propertylist-invalid-property-key": "רשימת המאפיינים \"$1\" הכילה מפתח מאפיין בלתי־תקין \"$2\".", + "smw-datavalue-type-invalid-typeuri": "לא היה אפשר להפוך את הסוג \"$1\" לייצוג URI תקין.", + "smw-datavalue-wikipage-missing-fragment-context": "לא ניתן להשתמש בערך הקלט של דף הוויקי \"$1\" ללא דף הקשר.", + "smw-datavalue-wikipage-invalid-title": "ערך הקלט של סוג הדף \"$1\" מכיל תווים בלתי־תקינים או שאינו שלם ולכן עלול לגרום לתוצאות בלתי־צפויות במהלך שאילתה או תהליך הערה.", + "smw-datavalue-wikipage-property-invalid-title": "המאפיין \"$1\" (כסוג דף) עם ערך הקלט \"$2\" מכיל תווים בלתי־תקינים או שאינו שלם ולכן עלול לגרום לתוצאות בלתי־צפויות במהלך תהליך שאילתה או הערה.", + "smw-datavalue-wikipage-empty": "ערך הקלט דף הוויקי ריק (למשל [[SomeProperty::]], [[]]) ולכן לא ניתן להשתמש בו כשם או כחלק מתנאי שאילתה.", + "smw-type-ref-rec": "\"$1\" הוא סוג [https://www.semantic-mediawiki.org/wiki/Container מכל] שמאפשר לרשום מידע נוסף (למשל נתוני מוצא) על השמת ערך.", + "smw-datavalue-reference-invalid-fields-definition": "הסוג [[Special:Types/Reference|Reference]] מצפה שרשימת מאפיינים תוכרז באמצעות המאפיין [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields].", + "smw-parser-invalid-json-format": "מפענח ה־JSON חזר עם \"$1\".", + "smw-property-preferred-label-language-combination-exists": "לא ניתן להשתמש ב תווית המאפיין \"$1 כתווית מועדפת כי בשפה \"$2\" כבר הושמה לתווית \"$3\".", + "smw-clipboard-copy-link": "העתקת קישור ללוח", + "smw-property-userdefined-fixedtable": "\"$1\" הוגדר כ[https://www.semantic-mediawiki.org/wiki/Fixed_properties מאפיין קבוע] וכל שינוי ב[https://www.semantic-mediawiki.org/wiki/Type_declaration הצהרת הסוג] שלו מחייב הרצה של setupStore.php או השלמה של המשימה המיוחדת [[Special:SemanticMediaWiki|\"התקנת ושדרוג של מסד נתונים\"]].", + "smw-data-lookup": "אחזור נתונים...", + "smw-data-lookup-with-wait": "הבקשה בעיבוד ועשויה לקחת רגע.", + "smw-no-data-available": "אין מידע זמין.", + "smw-property-req-violation-missing-fields": "במאפיין \"$1\" חסרה הצהרת [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] נדרשת עבור סוג \"$2\".", + "smw-property-req-violation-multiple-fields": "המאפיין \"$1\" מכיל הצהרות [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] מרובות (ולכן מתחרות), מצופה רק אחת עבור סוג \"$2\" הזה.", + "smw-property-req-violation-missing-formatter-uri": "במאפיין \"$1\" חסרים פרטי הצהרה עבור הסוג המוער על־ידי כי חסרה בו הגדרת המאפיין External formatter URI.", + "smw-property-req-violation-predefined-type": "המאפיין \"$1\", בהיותו מאפיין מוגדר מראש, מכיל הצהרת סוג \"$2\" שאינה תואמת את סוג ברירת המחדל של המאפיין הזה.", + "smw-property-req-violation-import-type": "זוהתה הצהרת סוג שאינה תואמת לסוג המוגדר מראש של המילון המיובא \"$1\". באופן כללי, אין צורך להצהיר על סוג כי המידע נשלף מהגדרת היבוא.", + "smw-property-req-violation-change-propagation-locked-error": "המאפיין \"$1\" השתנה והוא דורש הערכה חוזרת של ישויות מושמות באמצעות תהליך [https://www.semantic-mediawiki.org/wiki/Change_propagation הפצת שינויים]. דף המאפיין ננעל עד להשלמת עדכון המפרט הראשי כדי למנוע הפרעות מתווכות או מפרטים סותרים. התהליך עשוי לקחת רגע לפני שיהיה ניתן לבטל את נעילת הדף מכיוון שהוא תלוי בגודל ובתדירות של מתזמן [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue תור המשימות].", + "smw-property-req-violation-change-propagation-locked-warning": "המאפיין \"$1\" שונה והוא דורש הערכה חוזרת של ישויות מושמות באמצעות תהליך [https://www.semantic-mediawiki.org/wiki/Change_propagation הפצת שינויים]. התהליך עשוי לקחת רגע לפני שיהיה ניתן לבטל את נעילת הדף מכיוון שהוא תלוי בגודל ובתדירות של מתזמן [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue תור המשימות] ומומלץ להמתין עם שינויים במאפיין עד לסיום התהליך כדי למנוע הפרעות ביניים או מפרטים סותרים.", + "smw-property-req-violation-change-propagation-pending": "עדכוני [https://www.semantic-mediawiki.org/wiki/Change_propagation הפצת שינויים] ממתינים ([https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue בערך {{PLURAL:$1|משימה אחת|$1 משימות}}]) ומומלץ להמתין עם שינויים במאפיין עד לסיום התהליך כדי למנוע הפרעות ביניים או מפרטים סותרים.", + "smw-property-req-violation-missing-maps-extension": "מדיה־ויקי סמנטית לא הצליחה לזהות את ההרחבה [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"] שהיא תנאי מוקדם וכתוצאה מכך מגבילה את הפונקציונליות (כלומר אין אפשרות לאחסן או לעבד נתונים גיאוגרפיים) של המאפיין הזה.", + "smw-property-req-violation-type": "המאפיין מכיל מפרטי סוגים מתחרים שעלולים לגרום להערות ערך בלתי־תקינות ולכן יש לצפות שמשתמש ישים סוג אחד מתאים.", + "smw-property-req-error-list": "המאפיין מכיל את השגיאות או האזהרות הבאות:", + "smw-property-req-violation-parent-type": "למאפיין \"$1\" ולמאפיין ההורה שהוקצה \"$2\" יש הערות מסוג שונה.", + "smw-property-req-violation-forced-removal-annotated-type": "האכיפה של [https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance ירושת סוג הורה מחויבת] הופעלה, סוג ההערה עבור המאפיין \"$1\" אינו תואם לסוג המאפיין ההורה שלו \"$2\" ושונתה כדי לשקף את הדרישה הזאת. מומלץ להתאים את הגדרת הסוג בתוך דף כך שהודעת השגיאה והאכיפה החובה תוסר עבור המאפיין הזה.", + "smw-change-propagation-protection": "הדף הזה נעול כדי למנוע שינוי לא מכוון בנתונים בזמן הפעלה של עדכון [https://www.semantic-mediawiki.org/wiki/Change_propagation הפצת שינויים]. התהליך עשוי להימשך רגע לפני פתיחת הדף כי הוא תלוי בגודל ובתדירות של מתזמן [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue תור המשימות].", + "smw-category-change-propagation-locked-error": "הקטגוריה \"$1\" שונתה והיא דורשת הערכה חוזרת של ישויות מושמות באמצעות תהליך [https://www.semantic-mediawiki.org/wiki/Change_propagation הפצת שינויים]. דף המאפיין ננעל עד להשלמת עדכון המפרט הראשי כדי למנוע הפרעות מתווכות או מפרטים סותרים. התהליך עשוי לקחת רגע לפני שיהיה ניתן לבטל את נעילת הדף מכיוון שהוא תלוי בגודל ובתדירות של מתזמן [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue תור המשימות].", + "smw-category-change-propagation-locked-warning": "הקטגוריה \"$1\" שונתה והיא דורשת הערכה חוזרת של ישויות מושמות באמצעות תהליך [https://www.semantic-mediawiki.org/wiki/Change_propagation הפצת שינויים]. התהליך עשוי לקחת רגע מכיוון שהוא תלוי בגודל ובתדירות של מתזמן [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue תור המשימות] ומומלץ להמתין עם שינויים בקטגוריה עד לסיום התהליך כדי למנוע הפרעות ביניים או מפרטים סותרים.", + "smw-category-change-propagation-pending": "עדכוני [https://www.semantic-mediawiki.org/wiki/Change_propagation הפצת שינויים] ממתינים ([https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue בערך {{PLURAL:$1|משימה אחת|$1 משימות}}]) ומומלץ להמתין עם שינויים בקטגוריה עד לסיום התהליך כדי למנוע הפרעות ביניים או מפרטים סותרים.", + "smw-category-invalid-value-assignment": "הערך \"$1\" אינו מזוהה כהערת קטגוריה או ערך תקינה.", + "protect-level-smw-pageedit": "לאפשר רק למשתמשים עם הרשאת עריכת דף (מדיה־ויקי סמנטית)", + "smw-create-protection": "יצירת המאפיין \"$1\" מוגבלת למשתמשים בעלי ההרשאה (או [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups group קבוצת המשתמשים]) המתאימה \"$2\" כשמופעל [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode מצב סמכות].", + "smw-create-protection-exists": "שינויים למאפיין \"$1\" מוגבלים למשתמשים בעלי ההרשאה (או [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups group קבוצת המשתמשים]) המתאימה \"$2\" כשמופעל [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode מצב סמכות].", + "smw-edit-protection": "הדף הזה [[Property:Is edit protected|מוגן]] כדי למנוע שינוי מקרי בנתונים ורק משתמשים שמחזיקים בהרשאת העריכה המתאימה (\"$1\") או ששייכים ל[https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups קבוצת המשתמשים] המתאימה יכולים לערוך אותו.", + "smw-edit-protection-disabled": "הגנת העריכה הושבתה ולכן לא ניתן להשתמש במאפיין \"$1\" כדי להגן על דפי ישויות מפני עריכה לא מורשית.", + "smw-edit-protection-auto-update": "מדיה־ויקי סמנטית עדכנה את מצב ההגנה בהתאם למאפיין \"האם עריכה מוגנת\".", + "smw-edit-protection-enabled": "מוגן מפני עריכה (מדיה־ויקי סמנטית)", + "smw-patternedit-protection": "הדף הזה מוגן ורק משתמשים שמחזיקים ב[https://www.semantic-mediawiki.org/wiki/Help:Permissions הרשאה] המתאימה smw-patternedit יכולים לערוך אותו.", + "smw-property-predefined-edip": "\"$1\" הוא מאפיין מוגדר מראש שמסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית] כדי לציין האם העריכה מוגנת או לא.", + "smw-property-predefined-long-edip": "בעוד שכל משתמש מוסמך להוסיף את המאפיין הזה לנושא, רק משתמש בעל הרשאה ייעודית יכול לערוך או לבטל את ההגנה לישות לאחר הוספתה.", + "smw-query-reference-link-label": "הפניה לשאילתה", + "smw-format-datatable-emptytable": "אין נתונים זמינים בטבלה", + "smw-format-datatable-info": "מוצגות רשומות מ־_START_ עד _END_ מתוך _TOTAL_", + "smw-format-datatable-infoempty": "הצגת 0 עד 0 מתוך 0 ערכים", + "smw-format-datatable-infofiltered": "(מסונן מתוך _MAX_ רשומות סה\"כ)", + "smw-format-datatable-lengthmenu": "להציג רשומות _MENU_", + "smw-format-datatable-loadingrecords": "טוען...", + "smw-format-datatable-processing": "מעבד...", + "smw-format-datatable-search": "חיפוש:", + "smw-format-datatable-zerorecords": "לא נמצאו רשומות תואמות", + "smw-format-datatable-first": "ראשון", + "smw-format-datatable-last": "אחרון", + "smw-format-datatable-next": "הבא", + "smw-format-datatable-previous": "הקודם", + "smw-format-datatable-sortascending": ": להפעיל כדי למיין את העמודה בסדר עולה", + "smw-format-datatable-sortdescending": ": להפעיל כדי למיין את העמודה בסדר יורד", + "smw-format-datatable-toolbar-export": "יצוא", + "smw-category-invalid-redirect-target": "הקטגוריה \"$1\" מכילה יעד הפניה בלתי־תקין למרחב שם שאינו קטגוריה.", + "smw-parser-function-expensive-execution-limit": "פונקציית המפענח הגיעה למגבלה של ביצועים יקרים (ר' את פרמטר התצורה [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "מדיה־ויקי סמנטית מרעננת את הדף הנוכחי בתנאי של עיבוד מסוים שנדרש לאחר שאילתה.", + "apihelp-smwinfo-summary": "מודול API לאחזור מידע על סטטיסטיקות של מדיה־ויקי סמנטית ומטא־מידע אחר.", + "apihelp-ask-summary": "מודול API לביצוע שאילתות אל מול מדיה־ויקי סמנטית באמצעות שפת ask.", + "apihelp-askargs-summary": "מודול API לביצוע שאילתות אל מול מדיה־ויקי סמנטית באמצעות שפת ask בתור רשימת תנאים, הדפסות, ופרמטרים.", + "apihelp-browsebyproperty-summary": "מודול API לאחזור מידע על מאפיין או רשימת מאפיינים.", + "apihelp-browsebysubject-summary": "מודול API לאחזור מידע על נושא.", + "apihelp-smwtask-summary": "מודול API לביצוע משימות הקשורות למדיה־ויקי סמנטית (לשימוש פנימי בלבד, לא לשימוש ציבורי).", + "apihelp-smwbrowse-summary": "מודול API לתמיכה בפעילויות עיון בסוגי ישויות שונים במדיה־ויקי סמנטית.", + "apihelp-ask-parameter-api-version": "עיצוב פלט:\n;2:תסדיר תואם לאחור באמצעות {} עבור רשימת התוצאות.\n;3:תסדיר ניסיוני באמצעות [] בתור רשימת תוצאות.", + "apihelp-smwtask-param-task": "מגדיר את סוג המשימה", + "apihelp-smwtask-param-params": "פרמטרים מקודדים ב־JSON התואמים לדרישת סוג המשימה שנבחרה", + "smw-apihelp-smwtask-example-update": "דוגמה להפעלת משימת עדכון עבור נושא מסוים:", + "smw-api-invalid-parameters": "פרמטרים בלתי־תקינים, \"$1\".", + "smw-parser-recursion-level-exceeded": "חריגה מרמת הרקורסיות של $1 במהלך תהליך פענוח. מומלץ לבדוק את התקינות של מבנה התבנית, או במידת הצורך להתאים את פרמטר התצורה $maxRecursionDepth.", + "smw-property-page-list-count": "הצגת {{PLURAL:$1|דף אחד שמשתמש|$1 דפים שמשתמשים}} במאפיין הזה.", + "smw-property-page-list-search-count": "הצגת {{PLURAL:$1|דף אחד שמשתמש|$1 דפים שמשתמשים}} במאפיין הזה עם התאמת ערך \"$2\".", + "smw-property-page-filter-note": "[https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter מסנן החיפוש] מאפשר הכללה של [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions ביטויי שאילתה] כגון ~ או !. [https://www.semantic-mediawiki.org/wiki/Query_engine מנוע השאילתות] שנבחר עשוי לתמוך גם בהתאמה ללא תלות ברישיות או ביטויים קצרים אחרים כגון:\n\n* in: התוצאה חייבת לכלול את המונח, למשל 'in:Foo'\n\n* not: התוצאה חייבת לא לכלול את המונח, למשל 'in:Bar'", + "smw-property-reserved-category": "קטגוריה", + "smw-category": "קטגוריה", + "smw-datavalue-uri-invalid-scheme": "\"$1\" לא רשום כסכֵמת URI תקינה.", + "smw-datavalue-uri-invalid-authority-path-component": "\"$1\" זוהה בתור מכיל סמכות או רכיב נתיב בשם \"$2\" וזה לא תקין.", + "smw-browse-property-group-title": "קבוצת מאפיינים", + "smw-browse-property-group-label": "תווית קבוצת מאפיינים", + "smw-browse-property-group-description": "תיאור קבוצת מאפיינים", + "smw-property-predefined-ppgr": "\"$1\" הוא מאפיין מוגדר מראש שמזהה ישויות (בעיקר קטגוריות) שמשמשות כמופע קיבוץ עבור מאפיינים ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-filter": "מסנן", + "smw-section-expand": "הרחבת פרק", + "smw-section-collapse": "צמצום פרק", + "smw-ask-format-help-link": "תסדיר [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "עזרה", + "smw-cheat-sheet": "שליף", + "smw-personal-jobqueue-watchlist": "רשימת מעקב של תור עבודה", + "smw-personal-jobqueue-watchlist-explain": "המספרים מצביעים על הערכה של רשומות בתור עבודה שממתינות לביצוע.", + "smw-property-predefined-label-skey": "מפתח מיון", + "smw-processing": "מתבצע עיבוד...", + "smw-loading": "בטעינה...", + "smw-fetching": "מתקבל...", + "smw-preparing": "בהכנה...", + "smw-expand": "הרחבה", + "smw-collapse": "צמצום", + "smw-copy": "העתקה", + "smw-copy-clipboard-title": "מעתיק את התוכן ללוח", + "smw-jsonview-expand-title": "הרחבת תצוגת ה־JSON", + "smw-jsonview-collapse-title": "צמצום תצוגת ה־JSON", + "smw-jsonview-search-label": "חיפוש:", + "smw-redirect-target-unresolvable": "היעד אינו ניתן למציאת בגלל \"$1\"", + "smw-types-title": "סוג: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "אסור לשנות את מודל התוכן של [https://www.semantic-mediawiki.org/wiki/Help:Schema דף סכֵמה].", + "smw-schema-namespace-edit-protection": "הדף הזה מוגן ורק משתמשים שמחזיקים ב[https://www.semantic-mediawiki.org/wiki/Help:Permissions הרשאה] המתאימה smw-schemaedit יכולים לערוך אותו.", + "smw-schema-namespace-edit-protection-by-import-performer": "הדף הזה יובא על־ידי [https://www.semantic-mediawiki.org/wiki/Import_performer מבצע יבוא]. המשמעות היא ששינוי התוכן של הדף הזה מוגבל רק לאותם משתמשים הרשומים.", + "smw-schema-error-title": "{{PLURAL:$1|שגיאת|שגיאות}} בדיקת תקינות", + "smw-schema-error-schema": "סכֵמת בדיקת התקינות '''$1''' מצאה את המקרים הבאים של חוסר עקביות:", + "smw-schema-error-miscellaneous": "שגיאה אחרת ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "בודק תקינות ה־JSON \"$1\" אינו נגיש (או אינו מותקן) וזאת הסיבה לכך שלא ניתן לבחון את הקובץ \"$2\", וזה מונע את השמירה או את השינוי של הדף הנוכחי.", + "smw-schema-error-validation-file-inaccessible": "קובץ בדיקת התקינות \"$1\" אינו נגיש.", + "smw-schema-error-type-missing": "בתוכן חסר סוג שהיה מאפשר לזהות אותו ולהשתמש ב[https://www.semantic-mediawiki.org/wiki/Help:Schema מרחב שם של סכֵמה].", + "smw-schema-error-type-unknown": "הסוג \"$1\" אינו רשום ולא ניתן להשתמש בו עבור תוכן במרחב השם [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-error-json": "שגיאת JSON‏: \"$1\"", + "smw-schema-error-input": "בדיקת תקינות הקלט מצאה את הבעיות הבאות, יש לטפל בהן לפני שניתן לשמור את התוכן. הדף [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling העזרה על סכֵמה] עשוי לספק עצות כיצד להסיר מקרים של חוסר עקביות או לפתור בעיות עם קלט הסכֵמה.", + "smw-schema-error-input-schema": "סכֵמת בדיקת התקינות '''$1''' מצאה את המקרים הבאים של חוסר העקביות ויש לטפל בהם לפני שיהיה אפשר לשמור את התוכן. דף [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling העזרה על סכֵמה] עשוי לספק עצות כיצד לפתור את הבעיות האלו.", + "smw-schema-error-title-prefix": "סוג הסכֵמה הזה מחייב שהכותרת של הסכֵמה תתחיל ב־\"$1\".", + "smw-schema-validation-error": "הסוג \"$1\" אינו רשום ולא ניתן להשתמש בו עבור תוכן במרחב השם [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-validation-schema-title": "סכֵמת JSON", + "smw-schema-summary-title": "תקציר", + "smw-schema-title": "סכֵמה", + "smw-schema-usage": "שימוש", + "smw-schema-type": "סוג סכֵמה", + "smw-schema-type-description": "תיאור הסוג", + "smw-schema-description": "תיאור סכֵמה", + "smw-schema-description-link-format-schema": "סוג הסכֵמה הזה תומך בהגדרה של מאפיינים ליצירת קישורים רגישים להקשר בקשר למאפיין שהושמה לו [[Property:Formatter schema|סכֵמת עיצוב]].", + "smw-schema-description-search-form-schema": "סוג הסכֵמה הזה תומך בהגדרה של צורות קלט ותכונות עבור פרופיל [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch חיפוש מורחב] שבו הוא מכיל הוראות איך ליצור שדות קלט, להגדיר מרחבי שמות ברירת מחדל, או להצהיר על ביטויי תחילית עבור בקשת חיפוש.", + "smw-schema-description-property-profile-schema": "סוג הסכֵמה הזה תומך בהגדרה של פרופיל להכרזה על תכונות למאפיין שהוקצה וערכי ההערות שלו.", + "smw-schema-description-facetedsearch-profile-schema": "סוג הסכֵמה הזה תומך בהגדרה של ערכות הגדרות שמשמשות כחלק מסביבת [[Special:FacetedSearch|חיפוש רב־פנים]].", + "smw-schema-description-property-group-schema": "סוג הסכֵמה הזה תומך בהגדרה של [https://www.semantic-mediawiki.org/wiki/Help:Property_group קבוצות מאפיינים] כדי לעזור לתת מבנה לממשק ה[https://www.semantic-mediawiki.org/wiki/Help:Special:Browse עיון].", + "smw-schema-description-property-constraint-schema": "זה תומך בהגדרה של כללי אילוץ עבור מופע מאפיין, כמו גם בערכים שמושמים לו.", + "smw-schema-description-class-constraint-schema": "סוג הסכֵמה הזה תומך בהגדרה של כללי אילוץ עבור מופע מחלקה (המכונה גם קטגוריה).", + "smw-schema-tag": "{{PLURAL:$1|תג|תגים}}", + "smw-property-predefined-constraint-schema": "\"$1\" הוא מאפיין מוגדר מראש שמגדיר סכֵמת אילוץ ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית].", + "smw-property-predefined-schema-desc": "\"$1\" הוא מאפיין מוגדר מראש שמאחסן תיאור סכֵמה ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-def": "\"$1\" הוא מאפיין מוגדר מראש שמאחסן את תוכן הסכֵמה ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-tag": "\"$1\" הוא מאפיין מוגדר מראש שמסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties מדיה־ויקי סמנטית] כדי לזהות אוסף של סכֵמות.", + "smw-property-predefined-long-schema-tag": "תווית המזהה סכֵמות של תוכן דומה או תכונות דומות.", + "smw-property-predefined-schema-type": "\"$1\" הוא מאפיין מוגדר מראש שמתאר סוג לבידול של קבוצה של סכֵמות ומסופק על־ידי [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-schema-type": "כל [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type סוג] מספק פרשנות משלו לרכיבי תחביר וכללי יישום וניתן לבטא אותו בעזרת [https://www.semantic-mediawiki.org/wiki/Help:Schema#validation סכֵמת בדיקת התקינות].", + "smw-ask-title-keyword-type": "חיפוש לפי מילת מפתח", + "smw-ask-message-keyword-type": "החיפוש הזה תואם את התנאי $1.", + "smw-remote-source-unavailable": "לא ניתן להתחבר ליעד החיצוני \"$1\".", + "smw-remote-source-disabled": "המקור '''$1''' ביטל את התמיכה בבקשות חיצוניות!", + "smw-remote-source-unmatched-id": "המקור '''$1''' אינו תואם לגרסה של ההרחבה \"מדיה־ויקי סמנטית\" שתומכת בבקשות חיצוניות.", + "smw-remote-request-note": "התוצאה מאוחזרת מהמקור החיצוני '''$1''', והתוכן המיוצר עלול להכיל מידע שאינו זמין מתוך אתר הוויקי הנוכחי.", + "smw-remote-request-note-cached": "התוצאה '''מוטמנת''' מהמקור החיצוני '''$1''', והתוכן המיוצר עלול להכיל מידע שאינו זמין מתוך אתר הוויקי הנוכחי.", + "smw-parameter-missing": "הפרמטר \"$1\" חסר.", + "smw-property-tab-usage": "שימוש", + "smw-property-tab-profile-schema": "סכֵמת פרופיל", + "smw-property-tab-redirects": "שמות נרדפים", + "smw-property-tab-subproperties": "מאפייני־משנה", + "smw-property-tab-errors": "השמות לא הולמות", + "smw-property-tab-constraint-schema": "סכֵמת אילוצים", + "smw-property-tab-constraint-schema-title": "סכֵמת אילוצים מהודרת", + "smw-property-tab-specification": "... עוד", + "smw-concept-tab-list": "רשימה", + "smw-concept-tab-errors": "שגיאות", + "smw-ask-tab-result": "תוצאה", + "smw-ask-tab-extra": "תוספת", + "smw-ask-tab-debug": "ניפוי שגיאות", + "smw-ask-tab-code": "קוד", + "smw-install-incomplete-tasks-title": "משימות ניהול שלא הושלמו", + "smw-install-incomplete-intro": "יש {{PLURAL:$2|משימה לא גמורה או [[Special:PendingTaskList|ממתינה]]|$2 משימות לא גמורות או [[Special:PendingTaskList|ממתינות]]}} עד סיום {{PLURAL:$1|ההתקנה|השדרוג}} של [https://www.semantic-mediawiki.org מדיה־ויקי סמנטית]. מפעיל מערכת או משתמש עם הרשאות מספיקות יכולים להשלים {{PLURAL:$2|אותה|אותן}}. יש לעשות את זה לפני הוספת נתונים חדשים כדי למנוע חוסר עקביות.", + "smw-install-incomplete-intro-note": "ההודעה הזאת תיעלם לאחר פתרון כל המשימות הרלוונטיות.", + "smw-pendingtasks-intro-empty": "שום משימה לא סווגה כממתינה, לא גמורה או יוצאת דופן בקשר למדיה־ויקי סמנטית.", + "smw-pendingtasks-intro": "הדף הזה מספק מידע על משימות שסווגו כממתינות, לא גמורות או יוצאות דופן בקשר למדיה־ויקי סמנטית.", + "smw-pendingtasks-setup-no-tasks-intro": "ההתקנה (או השדרוג) הושלמה, כרגע אין משימות ממתינות או יוצאות דופן.", + "smw-pendingtasks-tab-setup": "התקנה", + "smw-updateentitycollation-incomplete": "ההגדרה [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] שונתה לאחרונה וזה דורש הרצה של הסקריפט [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php] כדי שישויות יעודכנו ויכילו את ערך שדה המיון הנכון.", + "smw-updateentitycountmap-incomplete": "השדה smw_countmap נוסף במהדורה אחרונה וזה דורש הרצה של הסקריפט [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php] כדי שפונקציות יוכלו לגשת לתוכן של השדה הזה.", + "smw-populatehashfield-incomplete": "אכלוס השדה smw_hash נפסח במהלך התקנה, חובה להריץ את הסקריפט [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php].", + "smw-install-incomplete-populate-hash-field": "אכלוס השדה smw_hash נפסח במהלך התקנה, חובה להריץ את הסקריפט [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php].", + "smw-install-incomplete-elasticstore-indexrebuild": "ElasticStore נבחר להיות [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore אחסון ברירת המחדל], אך התוסף לא הצליח למצוא שום עדות לכך ש־[https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] הופעל, נא להפעיל את הסקריפט לפי ההוראות.", + "smw-elastic-rebuildelasticindex-run-incomplete": "ElasticStore נבחר להיות [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore אחסון ברירת המחדל], אך התוסף לא הצליח למצוא שום עדות לכך ש־[https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] הופעל, נא להפעיל את הסקריפט לפי ההוראות.", + "smw-pendingtasks-setup-intro": "{{PLURAL:$1|ההתקנה|השדרוג}} של מדיה־ויקי סמנטית {{PLURAL:$1|סיווג|סיווגה}} את המשימות הבאות כ[https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade לא שלמות] ומצופה ממנהל מערכת (או משתמש בעל הרשאות מספיקות) לפתור את המשימות האלו לפני שמשתמשים ממשיכים ליצור או לשנות תוכן.", + "smw-pendingtasks-setup-tasks": "משימות", + "smw-filter-count": "ספירת מסננים", + "smw-es-replication-check": "בדיקת שכפול (Elasticsearch)", + "smw-es-replication-error": "בעיית שכפול של Elasticsearch", + "smw-es-replication-file-ingest-error": "בעיה בשאיבת קובץ", + "smw-es-replication-maintenance-mode": "תחזוקת Elasticsearch", + "smw-es-replication-error-missing-id": "ניטור שכפול מצא שהערך \"$1\" (מזהה: $2) חסר משרת Elasticsearch.", + "smw-es-replication-error-divergent-date": "ניטור השכפול מצא שעבור הערך \"$1\" (מזהה: $2) הגרסה המשויכת מציגה חוסר־עקביות.", + "smw-es-replication-error-divergent-date-short": "המידע הבא על תאריכים שימש להשוואה:", + "smw-es-replication-error-divergent-date-detail": "תאריך השינוי המוזכר:\n*Elasticsearch: ב־$1 \n*מסד נתונים: ב־$2", + "smw-es-replication-error-divergent-revision": "ניטור שכפול מצא שעבור הערך \"$1\" (מזהה: $2) הגרסה המשויכתמציגה חוסר־עקביות.", + "smw-es-replication-error-divergent-revision-short": "נתוני הגרסאות המשויכים הבאים שימשו להשוואה:", + "smw-es-replication-error-divergent-revision-detail": "גרסה משויכת מוזכרת:\n*Elasticsearch: ב־$1 \n*מסד נתונים: ב־$2", + "smw-es-replication-error-maintenance-mode": "שכפול Elasticsearch מוגבל כעת כי הוא פועל ב[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode מצב תחזוקה], שינויים בישויות ובדפים אינם גלויים מייד ותוצאות השאילתה עשויות להכיל מידע מיושן.", + "smw-es-replication-error-no-connection": "ניטור השכפול אינו מסוגל לבצע בדיקות כלשהן כי אינו יכול ליצור חיבור לאשכול Elasticsearch.", + "smw-es-replication-error-bad-request-exception": "המטפל בחיבור Elasticsearch זרק חריג בקשה גרועה (\"400 conflict http error\") המצביע על בעיה מתמשכת במהלך בקשות שכפול וחיפוש.", + "smw-es-replication-error-other-exception": "המטפל בהתחברות של Elasticsearch זרק חריג: \"$1\".", + "smw-es-replication-error-suggestions": "מומלץ לערוך את הדף או לנקות את המטמון שלו כדי להיפטר מחוסר־העקביות. אם הבעיה נמשכת, יש לבדוק את אשכול ה־Elasticsearch עצמו (מקצה [allocator], חריגים, נפח בכונן, וכו').", + "smw-es-replication-error-suggestions-maintenance-mode": "מומלץ ליצור קשר עם המפעיל של הוויקי כדי לבדוק האם נעשית עכשיו [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild בנייה מחדש של מפתח] או האם refresh_interval לא הוגדרה לערך ברירת המחדל המצופה.", + "smw-es-replication-error-suggestions-no-connection": "מומלץ ליצור קשר עם מפעיל הוויקי ולדווח את בעיית ה\"אין התחברות\".", + "smw-es-replication-error-suggestions-exception": "נא לבדוק את היומנים כדי למצוא מידע על המצב של Elasticsearch, המפתחות שלהם, ובעיות אפשריות של הגדרות שגויות.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "ניטור השכפול מצא שבדף \"$1\" חסרה הערה של מאפיין [[Property:File attachment|צרופת קובץ]] (File attachment) שמציינת שמעבד קליטת הקובץ לא התחיל או לא סיים.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "נא לוודא שמשימת [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion קליטת קובץ] מתוזמנת ומבוצעת לפני שההערה ומפתח הקובץ נהיים זמינים.", + "smw-report": "דו\"ח", + "smw-legend": "מקרא", + "smw-datavalue-constraint-schema-category-invalid-type": "הסכֵמה המוערת \"$1\" אינה תקינה עבור הקטגוריה, היא דורשת את הסוג \"$2\".", + "smw-datavalue-constraint-schema-property-invalid-type": "הסכֵמה המוערת \"$1\" אינה תקינה עבור המאפיין, היא דורשת את הסוג \"$2\".", + "smw-entity-examiner-check": "הרצת {{PLURAL:$1|הבוחן|הבוחנים}} ברקע", + "smw-entity-examiner-indicator": "חלונית בעיית ישות", + "smw-entity-examiner-deferred-check-awaiting-response": "הבוחן \"$1\" ממתין עכשיו לתשובה מהשרת.", + "smw-entity-examiner-deferred-elastic-replication": "Elastic", + "smw-entity-examiner-deferred-constraint-error": "אילוץ", + "smw-entity-examiner-associated-revision-mismatch": "גרסה", + "smw-entity-examiner-deferred-fake": "מזויף", + "smw-entity-examiner-indicator-suggestions": "כחלק מבחינת הישות, {{PLURAL:$1|התגלתה הבעיה הבאה|התגלו הבעיות הבאות}} ומומלץ לסקור {{PLURAL:$1|אותה|אותן}} ונקוט בפעולות מתאימות.", + "smw-indicator-constraint-violation": "{{PLURAL:$1|אילוץ|אילוצים}}", + "smw-indicator-revision-mismatch": "גרסה", + "smw-indicator-revision-mismatch-error": "בדיקת [https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner הגרסה המשויכת] מצאה חוסר־התאמה בין הגרסה שכתובה במדיה־ויקי לבין הגרסה שמשויכת במדיה־ויקי סמנטית עבור הישות הזאת.", + "smw-indicator-revision-mismatch-comment": "חוסר התאמה בדרך־כלל מצביע על כך שתהליך כלשהו הפסיק פעולת אחסון במדיה־ויקי סמנטית. מומלץ לסקור את יומני השרת ולחפש חריגים וכישלונות אחרים.", + "smw-facetedsearch-intro-text": "[https://www.semantic-mediawiki.org/wiki/Faceted_search חיפוש רב־פנים] (Faceted search) של Semantic MediaWiki מספק למשתמשים ממשק פשוט לצמצום מהיר של תוצאות שאילתות מתוך תנאי בעזרת תצוגות מרובות־פנים שנוצרות ממאפיינים וקטגוריות תלויים.", + "smw-facetedsearch-intro-tips": "* אפשר להשתמש ב־category:?, ב־property:? , או ב־concept:? כדי למצוא קטגוריות, מאפיינים או רעיונות זמינים לבניית ערכת תנאים\n* אפשר להשתמש בתחביר #ask כדי לתאר תנאי (למשל [[Category:Foo]])\n* אפשר להשתמש ב־\"OR\", ב־\"AND\" או בביטויי שאילתה אחרים כדי ליצור תנאים מורכבים\n* ביטויים כמו in: או phrase: יכולים לשמש עבור התאמות בטקסט מלא או בחיפושים לא מבניים, אם נבחר [https://www.semantic-mediawiki.org/wiki/Query_engine מנוע שאילתות] שתומך בביטויים האלה", + "smw-facetedsearch-profile-label-default": "פרופיל בררת מחדל", + "smw-facetedsearch-intro-tab-explore": "לחקור", + "smw-facetedsearch-intro-tab-search": "לחפש", + "smw-facetedsearch-explore-intro": "יש לבחור אוסף והתחל לעיין.", + "smw-facetedsearch-profile-options": "אפשרויות ערכת הגדרות", + "smw-facetedsearch-size-options": "אפשרויות דפדוף", + "smw-facetedsearch-order-options": "אפשרויות מיון", + "smw-facetedsearch-format-options": "אפשרויות תצוגה", + "smw-facetedsearch-format-table": "טבלה", + "smw-facetedsearch-input-filter-placeholder": "סינון...", + "smw-facetedsearch-no-filters": "אין מסננים.", + "smw-facetedsearch-no-filter-range": "אין טווח סינון.", + "smw-facetedsearch-no-output": "עבור התסדיר הנבחר \"$1\", לא היה פלט זמין.", + "smw-facetedsearch-clear-filters": "ניקוי {{PLURAL:$1|מסנן|מסננים}}", + "smw-search-placeholder": "חיפוש...", + "smw-listingcontinuesabbrev": "המשך", + "smw-showingresults": "{{PLURAL:$1|מוצגת תוצאה אחת|מוצגות עד $1 תוצאות}} החל ממספר $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/hi.json b/mediawiki/extensions/SemanticMediaWiki/i18n/hi.json new file mode 100644 index 0000000..44f0529 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/hi.json @@ -0,0 +1,280 @@ +{ + "@metadata": { + "authors": [ + "Abijeet Patro", + "AnupamM", + "Bhatakati aatma", + "Jayprakash12345", + "Kaustubh", + "Nitin1485", + "Phoenix303", + "Proabscorp!", + "Rajatkatiyar10", + "Sachinkatiyar", + "Saurmandal", + "Sfic", + "Shypoetess", + "Swapnil.Karambelkar", + "Upendradutt93", + "Wikiuser13", + "गोपाल", + "चक्रपाणी", + "जनक राज भट्ट", + "రహ్మానుద్దీన్" + ] + }, + "smw-desc": "आपके विकि को मशीन और मनुष्य - दोनों के लिए अधिक सुलभ बनाते हुए ([https://www.semantic-mediawiki.org/wiki/Help:User_manual ऑनलाइन प्रलेख])", + "smw-error": "त्रुटि", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ सिमैंटिक मीडियाविकि] स्थापित और सक्षम है मगर इसमें एक उचित [https://www.semantic-mediawiki.org/wiki/Help:Upgrade अपग्रेड कुँजी] नहीं है।", + "smw-upgrade-release": "प्रकाशन", + "smw-upgrade-progress": "प्रगति", + "smw-upgrade-progress-explain": "एक अनुमान कि अपग्रेड कब खत्म होता, क्योंकि यह पता लगाना मुश्किल है और यह डेटा रिपॉज़िटरी के आकार तथा उपलब्ध हार्डवेयर पर निर्भर होता है, साथ ही, बड़े विकियों पर इसे पूरा होने में ज़्यादा समय लग सकता है।\n\nप्रगति के बारे में अधिक जानकारी पाने के लिए कृपया अपने लोकल प्रबंधक से संपर्क करें।", + "smw-upgrade-progress-create-tables": "टेबल और इनडेक्स बनाए (या अपडेट किए) जा रहे हैं...", + "smw-upgrade-progress-post-creation": "सृष्टि के बाद के कार्य चलाए जा रहे हैं...", + "smw-upgrade-progress-table-optimization": "टेबल ऑप्टिमाइज़ेशन्स चलाए जा रहे हैं...", + "smw-upgrade-progress-supplement-jobs": "निम्न कार्य जोड़े जा रहे हैं...", + "smw-upgrade-error-title": "त्रुटि » सिमैंटिक मीडियाविकि", + "smw-upgrade-error-why-title": "मुझे यह पृष्ठ क्यों दिख रहा है?", + "smw-upgrade-error-why-explain": "सिमैंटिक मीडियाविकि के आंतरिक डेटाबेस संरचना में बदलाव आया है और इसे पूरी तरह काम करने के लिए कुछ और बदलावों की ज़रूरत है। इसके कई कारण हो सकते हैं, जैसे:\n* अतिरिक्त ठीक किए गए गुणधर्मों का जोड़ा जाना (जिसमें अतिरिक्त टेबल्स की ज़रूरत है)\n* एक अपग्रेड में टेबल्स या इनडेक्सों पर कुछ ऐसे बदलाव आए हैं जिनकी वजह से डेटा का इस्तेमाल करने से पहले अवरोधन ज़रूरी है\n* संग्रह या क्वेरी इंजन में बदलाव", + "smw-upgrade-error-how-title": "मैं इस त्रुटि को कैसे ठीक करूँ?", + "smw-upgrade-error-how-explain-admin": "एक प्रबंधक (या प्रबंधक के अधिकारों वाले किसी भी सदस्य) को या तो मीडियाविकि का [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] चलाना होगा या फिर सिमैंटिक मीडियाविकि का [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] अनुरक्षण स्क्रिप्ट।", + "smw-upgrade-error-how-explain-links": "आप अधिक जानकारी के लिए इन पृष्ठों से मदद ले सकते हैं:\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation स्थापना] के अनुदेश\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting समस्या निवारण] के लिए सहायता पृष्ठ", + "smw-extensionload-error-why-title": "मुझे यह पृष्ठ क्यों दिख रहा है?", + "smw-extensionload-error-why-explain": "इस एक्सटेंशन को enableSemantics की मदद से लोड करके सीधे wfLoadExtension( 'SemanticMediaWiki' ) जैसे किसी तरीके से सक्षम किया गया है।", + "smw-extensionload-error-how-title": "मैं इस त्रुटि को कैसे ठीक करूँ?", + "smw-extensionload-error-how-explain": "एक्सटेंशन को सक्षम करने तथा नामस्थान घोषणाओं और लंबित कॉन्फ़िगरेशन्स के साथ टकराव से बचने के लिए enableSemantics का इस्तेमाल करना ज़रूरी है, जो सुनिश्चित करेगा कि उचित वेरिएबलों को एक्सटेंशन को लोड करने से पहले ExtensionRegistry के ज़रिए सेट कर दिया जाता है।\n\nअधिक जानकारी के लिए कृपया [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] सहायता पृष्ठ देखें।", + "smw-upgrade-maintenance-title": "अनुरक्षण » सिमैंटिक मीडियाविकि", + "smw-upgrade-maintenance-why-title": "मुझे यह पृष्ठ क्यों दिख रहा है?", + "smw-upgrade-maintenance-note": "प्रणाली में इस समय [https://www.semantic-mediawiki.org/ सिमैंटिक मीडियाविकि] एक्सटेंशन के साथ इसके डेटा रिपॉज़िटरी का एक [https://www.semantic-mediawiki.org/wiki/Help:Upgrade अपग्रेड] चल रहा है, और हम चाहते हैं कि आप थोड़ा धैर्य रखें जब तक अपग्रेड खत्म हो और विकि दोबारा पठनीय हो।", + "smw-upgrade-maintenance-explain": "एक्सटेंशन इसके प्रभाव और डाउनटाइम को न्यूनतम मात्रा में रखने के लिए अपने ज़्यादातर काम update.php के बाद करता है, मगर डेटाबेस में कुछ बदलावों को इसके पहले करना ज़रूरी है, वरना डेटा में असंगतता आ जाएगी। ऐसे कुछ कार्य हैं:\n* टेबल संरचना बदलना जैसे नए फ़ील्ड्स जोड़ना या मौजूदा फ़ील्ड्स को संपादित करना\n* टेबल इनडेक्स बदलना या जोड़ना\n* टेबल ऑप्टिमाइज़ेशन्स चलाना (जब सक्षम हो)", + "smw-semantics-not-enabled": "सिमैंटिक मीडियाविकि कार्यक्षमता इस विकि के लिए अक्षम है।", + "smw_viewasrdf": "RDF फ़ीड", + "smw_finallistconjunct": ", और", + "smw-factbox-head": "... \"$1\" के बारे में अधिक", + "smw-factbox-facts": "तथ्य", + "smw-factbox-facts-help": "किसी सदस्य द्वारा बनाए गए बयान और तथ्य दिखाता है", + "smw-factbox-attachments": "संलग्नक", + "smw-factbox-attachments-value-unknown": "लागू नहीं", + "smw-factbox-attachments-is-local": "लोकल है", + "smw-factbox-attachments-help": "उपलब्ध संलग्नक दिखाता है", + "smw-factbox-facts-derived": "प्राप्त तथ्य", + "smw-factbox-facts-derived-help": "तथ्य दिखाता है जिन्हें नियमों से या फिर दूसरे तार्किक तकनीकों की मदद से प्राप्त किया गया है", + "smw_isspecprop": "यह गुणधर्म इस विकि पर एक विशेष गुणधर्म है।", + "smw-concept-cache-header": "कैश प्रयोग", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count परिकल्पना कैश] में {{PLURAL:$1|'''एक''' सत्ता है|'''$1''' सत्ते हैं}} ($2)।", + "smw-concept-no-cache": "कोई कैश उपलब्ध नहीं।", + "smw_concept_description": "\"$1\" परिकल्पना का विवरण", + "smw_no_concept_namespace": "परिकल्पनाओं को सिर्फ Concept: नामस्थान में परिभाषित किया जा सकता है।", + "smw_multiple_concepts": "हर परिकल्पना पृष्ठ पर सिर्फ एक ही परिकल्पना की परिभाषा हो सकती है।", + "smw_concept_cache_miss": "इस समय परिकल्पना \"$1\" का इस्तेमाल नहीं किया जा सकता, क्योंकि विकि कॉन्फ़िरेशन के अनुसार इसके ऑफ़लाइन कंप्यूट किया जाएगा।\nअगर समस्या कुछ समय बाद भी रहती है, अपने साइट प्रबंधक से कहें कि वे इस परिकल्पना को उपलब्ध कराएँ।", + "smw_noinvannot": "विलोम गुणधर्मों पर वैल्यू जोड़े नहीं जा सकते।", + "version-semantic": "सिमैंटिक एक्सटेंशन्स", + "smw_baduri": "\"$1\" के रूप में URI-ओं की अनुमति नहीं है।", + "smw_printername_count": "परिणाम गिनें", + "smw_printername_csv": "CSV निर्यात", + "smw_printername_dsv": "DSV निर्यात", + "smw_printername_debug": "डीबग क्वेरी (विशेषज्ञों के लिए)", + "smw_printername_embedded": "पृष्ठ की सामग्री एम्बेड करें", + "smw_printername_json": "JSON निर्यात", + "smw_printername_list": "सूची", + "smw_printername_plainlist": "साधारण सूची", + "smw_printername_ol": "संख्यात्मक सूची", + "smw_printername_ul": "बिंदु सूची", + "smw_printername_table": "टेबल", + "smw_printername_broadtable": "विस्तृत टेबल", + "smw_printername_template": "साँचा", + "smw_printername_templatefile": "साँचा फ़ाइल", + "smw_printername_rdf": "RDF निर्यात", + "smw_printername_category": "श्रेणी", + "validator-type-class-SMWParamSource": "टेक्स्ट", + "smw-paramdesc-limit": "लौटाने के लिए परिणामों की अधिकतम संख्या", + "smw-paramdesc-offset": "पहले परिणाम का ऑफ़सेट", + "smw-paramdesc-headers": "हैडर्स/गुणधर्मों के नाम दिखाएँ", + "smw-paramdesc-mainlabel": "मुखपृष्ठ के नाम को देने के लिए लेबल", + "smw-paramdesc-link": "वैल्यूओं को कड़ियों के रूप में दिखाता है", + "smw-paramdesc-intro": "क्वेरी के परिणामों से पहले दिखाने के लिए टेक्स्ट, अगर कोई परिणाम हुआ तो", + "smw-paramdesc-outro": "क्वेरी के परिणामों के बाद दिखाने के लिए टेक्स्ट, अगर कोई परिणाम हुआ तो", + "smw-paramdesc-default": "अगर कोई परिणाम न हुआ तो दिखाने के लिए टेक्स्ट", + "smw-paramdesc-sep": "परिणामों के बीच विभाजक", + "smw-paramdesc-propsep": "परिणाम में एंट्री के गुणधर्मों के बीच विभाजक", + "smw-paramdesc-valuesep": "परिणाम के गुणधर्मों के वैल्यूओं के बीच विभाजक", + "smw-paramdesc-showsep": "CSV फ़ाइल के शीर्ष पर विभाजक दिखाएँ (\"sep=<वैल्यू>\")", + "smw-paramdesc-distribution": "सभी वैल्यू दिखाने की जगह उनके घटनों को गिनें, और उन्हें दिखाएँ।", + "smw-paramdesc-distributionsort": "घटनों की संख्या के अनुसार वैल्यू के वितरण को छाँटें।", + "smw-paramdesc-embedonly": "कोई शीर्षक नहीं प्रदर्शित करें", + "smw-paramdesc-table-class": "टेबल के लिए सेट करने के लिए एक अतिरिक्त सीएसएस क्लास", + "smw-paramdesc-rdfsyntax": "RDF सिंटैक्स का इस्तेमाल किया जायेगा", + "smw-paramdesc-csv-sep": "एक कॉलम विभाजक निर्दिष्ट करता है", + "smw-paramdesc-csv-valuesep": "एक वैल्यू विभाजक निर्दिष्ट करता है", + "smw-paramdesc-csv-merge": "पंक्तियों और कॉमन्स को एक समान विषय पहचानकर्ता (यानी पहले कॉलम) से मर्ज करें", + "smw-paramdesc-csv-bom": "आउटपुट फ़ाइल के ऊपर एक BOM (एंडियानेस को चिह्नित करने के लिए अक्षर) जोड़ें", + "smw-paramdesc-dsv-separator": "उपयोग करने के लिए विभाजक", + "smw-paramdesc-dsv-filename": "DSV फ़ाइल के लिए नाम", + "smw-paramdesc-filename": "आउटपुट फाइल के लिए नाम", + "smw-paramdesc-searchlabel": "खोज को जारी रखने के लिए पाठ", + "smw-paramdesc-export": "निर्यात विकल्प", + "smw-paramdesc-source": "वैकल्पिक क्वेरी स्रोत", + "smw-printername-feed": "आरएसएस और एटम फीड", + "smw-paramdesc-feedtype": "फीड के प्रकार", + "smw-label-feed-description": "$1 $2 फीड", + "smw_iq_moreresults": "… आगे के रिज़ल्ट", + "smw_wrong_namespace": "केवल \"$1\" नामस्थान के पन्ने की यहाँ लिए जाते हैं।", + "smw_manytypes": "गुणो के लिए एक से अधिक प्रकार परिभाषित", + "smw_emptystring": "रिक्त स्ट्रिंग स्वीकार नहीं किए जाते हैं।", + "smw_true_words": "सही,t,हां,y", + "smw_false_words": "गलत,f,ना,n", + "smw_nofloat": "“$1” यह संख्या नहीं हैं।", + "smw_novalues": "कोई मान नहीं दिया गया।", + "smw_nodatetime": "दिनांक \"$1\" समझने लायक नहीं है।", + "smw_type_header": "“$1” प्रकारके गुणधर्म", + "smw-propertylist-subproperty-header": "उपगुण", + "smw-propertylist-redirect-header": "पर्यायवाची", + "exportrdf": "आरडीएफ को पृष्ठ निर्यात करें", + "smw_exportrdf_submit": "निर्यात", + "uriresolver": "यूआरएलरिसोल्वर", + "properties": "गुणधर्म", + "smw-categories": "श्रेणियाँ", + "smw-special-property-searchform": "प्रदर्शित गुण जिसमें शामिल हैं:", + "smw-special-property-searchform-inputinfo": "निविष्ट कारक संवेदनशील है और जब निष्पंदन के लिए प्रयुक्त होता है, केवल गुण जो स्थिति से मेल खाते हैं, प्रदर्शित होते हैं।", + "smw-special-property-searchform-options": "विकल्प", + "smw-special-wantedproperties-filter-label": "निष्पंदन", + "smw-special-wantedproperties-filter-none": "कोई भी नहीं", + "smw-special-wantedproperties-filter-unapproved": "अस्वीकृत", + "concepts": "अवधारणा", + "smw-special-concept-header": "अवधारणाओं की सूची", + "smw-special-concept-empty": "कोई अवधारणा नहीं मिली।", + "unusedproperties": "इस्तेमाल न किये हुए गुणधर्म", + "smw-unusedproperty-template": "$2 प्रकारके $1", + "wantedproperties": "चाहिये होनेवाले गुणधर्म", + "smw_purge": "टटका करौ", + "smw-purge-failed": "ताज़ा करने में विफल रहा", + "types": "प्रकार", + "smw-special-types-no-such-type": "निर्दिष्ट डेटा प्रकार मौजूद नहीं है", + "smw-statistics": "सिमेंटिक आँकड़े", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|गुण}} (कुल)", + "smw-statistics-property-page": "{{PLURAL:$1|गुण}} (पृष्ठ के साथ पंजीकृत)", + "smw-statistics-query-size": "क्वेरी आकार", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|उपवस्तु}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|डाटा प्रकार}}]]", + "ask": "सेमैंटिक खोज", + "smw_ask_sortby": "स्तंभ द्वारा क्रमबद्ध करें (वैकल्पिक)", + "smw_ask_ascorder": "बढ़ते क्रम", + "smw_ask_descorder": "घटते क्रम", + "smw-ask-order-rand": "कोई भी", + "smw_ask_submit": "परिणाम खोजें", + "smw_ask_editquery": "क्वेरी संपादित करें", + "smw_add_sortcondition": "[सॉर्टिंग शर्त जोड़ें]", + "smw-ask-sort-add-action": "चुनी गई शर्त जोङें", + "smw_ask_hidequery": "क्वेरी छुपाएँ", + "smw_ask_help": "क्वेरी सहायता", + "smw_ask_queryhead": "शर्त", + "smw_ask_printhead": "प्रिंटआउट चयन", + "smw_ask_printdesc": "(प्रति पंक्ति एक प्रॉपर्टी नाम जोड़ें)", + "smw_ask_format_as": "इस रूप में स्वरूपित करें:", + "smw_ask_defaultformat": "प्राथमिक", + "smw_ask_otheroptions": "अन्य विकल्प", + "smw_ask_show_embed": "एम्बेड कोड दिखाएं", + "smw_ask_hide_embed": "एम्बेड कोड छुपाएं", + "smw-ask-delete": "हटाएँ", + "smw-ask-sorting": "सोर्टिंग", + "smw-ask-options": "विकल्प", + "smw-ask-options-sort": "चुने गए विकल्प", + "smw-ask-format-options": "प्रारूप और विकल्प", + "smw-ask-parameters": "पैमाने", + "smw-ask-search": "खोजें", + "smw-ask-debug": "दोषमार्जन", + "smw-ask-no-cache": "कैश नही", + "smw-ask-result": "परिणाम", + "smw-ask-empty": "रिक्त", + "smw-ask-format": "प्रारूप", + "smw-ask-format-selection-help": "चयनित प्रारूप के साथ सहायता के लिए: $1", + "smw-ask-format-change-info": "प्रारूप संशोधित किया गया था और नए पैमाने और विज़ुअलाइजेशन विकल्पों से मिलान करने के लिए फिर से जाँच को निष्पादित करना आवश्यक है।", + "searchbyproperty": "गुण अनुसार खोजें", + "smw_sbv_property": "गुण:", + "smw_sbv_value": "मान:", + "smw_sbv_submit": "परिणाम खोजें", + "browse": "विकि देखे", + "smw_browselink": "गुण देखें", + "smw_browse_go": "आगे बढ़ें", + "smw_browse_no_outgoing": "इस पृष्ठ में कोई गुण नहीं है।", + "smw_browse_no_incoming": "इस पृष्ठ से कोई गुण जुड़ा नहीं है।", + "smw-browse-show-group": "समुह दिखाये", + "smw-browse-hide-group": "समुह छुपाए", + "smw-noscript": "इस प्रष्ठ या क्रिया पर काम करने के लिए जावास्क्रिप्ट आवश्यक है, कृपया अपने ब्राउज़र में जावास्क्रिप्ट सक्षम करें या जावास्क्रिप्ट समर्थित ब्राउज़र का उपयोग करें ताकि कार्यक्षमता का लाभ दिया जा सके और अनुरोध पर उपलब्ध कराया जाता है। आगे की सहायता के लिए, कृपया सहायता प्रष्ठ पर नजर डालें [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript]।", + "smw_pp_docu": "या तो सभी सौंपे मूल्यों को प्राप्त करने के लिए एक पृष्ठ और संपत्ति या केवल एक संपत्ति दर्ज करें।", + "smw_pp_from": "पृष्ठ से:", + "smw_pp_type": "गुणधर्म:", + "smw_pp_submit": "परिणाम खोजें", + "smw_result_prev": "पिछला", + "smw_result_next": "अगला", + "smw_result_results": "परिणाम", + "smw_result_noresults": "कोई परिणाम नहीं", + "smw-admin-statistics-job-title": "कार्य आँकड़े", + "smw_smwadmin_return": "$1 पर वापस जायें।", + "smw-admin-deprecation-notice-title-notice": "आगामी बदलाव", + "smw-admin-deprecation-notice-title-removal": "हटाई गई सेटिंग", + "smw_smwadmin_datarefreshbutton": "अनुसूची डेटा पुनर्निर्माण", + "smw_smwadmin_datarefreshstop": "इस अद्यतन को रोकें", + "smw-admin-job-scheduler-note": "निष्पादन के दौरान डेडलॉक परिस्थितियों से बचने के लिए इस खंड में अधिकांश गतिविधियां नौकरी के रूप में होती हैं। प्रसंस्करण के लिए [https://www.mediawiki.org/wiki/Manual:Job_queue कार्य अनुसूचक] जिम्मेदार है और यह महत्वपूर्ण है कि रखरखाव runJobs.php स्क्रिप्ट (यह भी देखें $wgRunJobsAynync) में एक उपयुक्त क्षमता है।", + "smw-admin-outdateddisposal-active": "एक पुरानी संस्थाओं के निपटान की नौकरी निर्धारित की गई है।", + "smw-admin-propertystatistics-active": "एक संपत्ति के आंकड़ों का पुनर्निर्माण कार्य निर्धारित किया गया है।", + "smw-admin-fulltext-active": "एक पूर्ण-पाठ खोज पुनर्निर्माण कार्य निर्धारित किया गया है।", + "smw-admin-supplementary-duplookup-title": "प्रतिरूप प्रविष्टियां", + "smw-admin-supplementary-duplookup-docu": "यह पृष्ठ [https://www.semantic-mediawiki.org/wiki/Help:Entity_table इकाई तालिका] से प्रविष्टियों को सूचीबद्ध करता है जिन्हें डुप्लिकेट के रूप में वर्गीकृत किया गया है। प्रतिरूप प्रविष्टियां (यदि सभी में हों) केवल एक दुर्लभ अवसरों पर होती हैं जो संभावित रूप से एक डेटाबेस अद्यतन या एक असफल रोलबैक लेनदेन के दौरान समाप्त प्रक्रिया के कारण होती हैं।", + "smw-list-count": "सूची में $1 {{PLURAL:$1|प्रविष्टि|प्रविष्टियां}} शामिल हैं|", + "smw_adminlinks_displayingdata": "डाटा डिस्प्ले", + "smw-createproperty-isproperty": "यह $1 प्रकार का गुणधर्म हैं।", + "smw-info-par-message": "दिखाने हेतु संदेश", + "prefs-smw": "सिमेंटिक मीडियाविकि", + "prefs-ask-options": "सिमेंटिक खोज विकल्प", + "smw-ui-tooltip-title-property": "गुणधर्म", + "smw-ui-tooltip-title-quantity": "इकाई परिवर्तन", + "smw-ui-tooltip-title-info": "जानकारी", + "smw-ui-tooltip-title-service": "सेवा कड़ी", + "smw-ui-tooltip-title-warning": "त्रुटि", + "smw-ui-tooltip-title-parameter": "प्राचल", + "smw-ui-tooltip-title-event": "आयोजन", + "smw-ui-tooltip-title-note": "नोट", + "smw-ui-tooltip-title-legend": "कुंजी", + "smw-ui-tooltip-title-reference": "सन्दर्भ", + "smw_unknowntype": "इस गुण का प्रकार अमान्य है।", + "smw-sp-properties-header-label": "गुणों की सूची", + "smw-admin-idlookup-title": "वस्तु आईडी देखें", + "smw-admin-objectid": "वस्तु आईडी:", + "smw-admin-maintenancealerts-invalidentities-alert-title": "अमान्य संस्थाएँ", + "smw-livepreview-loading": "लोड हो रहा है...", + "smw-sp-searchbyproperty-resultlist-header": "परिणामों की सूची", + "smw-search-input-assistance": "उपलब्ध संपत्तियों और श्रेणियों के पूर्व चयन को सरल करने के लिए [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance input assistant] भी सक्षम है।", + "log-name-smw": "सिमेंटिक मीडियाविकि लॉग", + "log-show-hide-smw": "$1 सिमेंटिक मीडियाविकि लॉग", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|$1 आयात]]", + "smw-datavalue-property-create-restriction": "संपत्ति \"$1\" मौजूद नहीं है और उपयोगकर्ता को \"$2\" (देखें [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode authority mode]) बनाने की या असमर्थित संपत्ति के साथ कथित टिप्पणी की अनुमति नहीं है।", + "smw-types-list": "डाटा प्रकारों की सूची", + "smw-special-pageproperty-description": "यह पृष्ठ एक संपत्ति के सभी मूल्यों और एक दिए गए पृष्ठ को खोजने के लिए एक ब्राउज़िंग इंटरफ़ेस प्रदान करता है। अन्य उपलब्ध खोज इंटरफेस में [[Special:SearchByProperty|property search]], और [[Special:Ask|ask query builder]] शामिल है।", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|सेकंड}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|सेकंड}}", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\" अमान्य पता है।", + "smw-data-lookup": "आंकड़ा प्राप्त किया जा रहा है...", + "smw-data-lookup-with-wait": "अनुरोध को संसाधित किया जा रहा है और कुछ समय लग सकता है।", + "smw-no-data-available": "कोई डाटा उपलब्ध नहीं है।", + "smw-edit-protection": "यह प्रष्ठ [[Property:Is edit protected|protected]] आकस्मिक डेटा संशोधन को रोकने के लिए है और उपयुक्त संपादन अधिकार वाले उपयोगकर्ताओं द्वारा ही संपादित किया जा सकता है (\"$1\") या [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups user group]।", + "smw-format-datatable-loadingrecords": "लोड हो रहा है...", + "smw-format-datatable-processing": "प्रोसेस हो रहा...", + "smw-format-datatable-search": "खोज:", + "smw-format-datatable-first": "पहला", + "smw-format-datatable-last": "आखिरी", + "smw-format-datatable-next": "अगला", + "smw-format-datatable-previous": "पिछला", + "smw-section-expand": "अंश का विस्तार करें", + "smw-section-collapse": "अंश को संक्षिप्त करें", + "smw-loading": "खुल रहा है...", + "smw-fetching": "लाया जा रहा है...", + "smw-preparing": "तैयार कर रहे हैं...", + "smw-types-title": "प्रकार: $1", + "smw-facetedsearch-intro-tab-search": "खोजें", + "smw-facetedsearch-format-table": "टेबल", + "smw-facetedsearch-input-filter-placeholder": "फ़िल्टर...", + "smw-search-placeholder": "खोजें...", + "smw-listingcontinuesabbrev": "जारी", + "smw-showingresults": "नीचे क्रमांक '''$2''' से प्रारंभ कर के अधिकतम '''$1''' परिणाम {{PLURAL:$1|दिखाया गया है|दिखाए गए हैं}}।" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/hif-latn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/hif-latn.json new file mode 100644 index 0000000..b6cba7c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/hif-latn.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "Girmitya", + "Thakurji" + ] + }, + "smw-categories": "Vibhag", + "browse": "Wiki me dekho", + "smw-livepreview-loading": "load karaa jaae hae...", + "smw-listingcontinuesabbrev": "aur", + "smw-showingresults": "Niche dekhae hai {{PLURAL:$1|'''1''' result|'''$1''' results}} #'''$2''' se suruu hoe ke." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/hil.json b/mediawiki/extensions/SemanticMediaWiki/i18n/hil.json new file mode 100644 index 0000000..79f214a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/hil.json @@ -0,0 +1,14 @@ +{ + "@metadata": { + "authors": [ + "Berniemack", + "Jose77", + "Pare Mo" + ] + }, + "smw-categories": "Mga kategorya", + "browse": "Maglagula sa wiki", + "smw_browse_go": "Lakat", + "smw-listingcontinuesabbrev": "pdyn", + "smw-showingresults": "Ginapakita sa dalom pakadto sa {{PLURAL:$1|'''1''' ka resulta|'''$1''' ka mga resulta}} umpisa ang #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/hr.json b/mediawiki/extensions/SemanticMediaWiki/i18n/hr.json new file mode 100644 index 0000000..922e04a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/hr.json @@ -0,0 +1,235 @@ +{ + "@metadata": { + "authors": [ + "Bugoslav", + "Dalibor Bosits", + "Ex13", + "Kghbln", + "Neptune, the Mystic", + "Ponor", + "Sociologist", + "SpeedyGonsales", + "Tivek", + "아라" + ] + }, + "smw-desc": "Čini Vaš wiki dostupnijim - za strojeve ''i'' ljude ([https://www.semantic-mediawiki.org/wiki/Help:User_manual dokumentacija])", + "smw-error": "Pogreška", + "smw-upgrade-release": "Verzija", + "smw-upgrade-progress": "Napredak", + "smw-upgrade-progress-create-tables": "Stvaranje (ili ažuriranje) tablica i indeksa ...", + "smw-upgrade-progress-post-creation": "Pokretanje zadaća nakon kreiranja ...", + "smw-upgrade-progress-table-optimization": "Pokretanje optimizacija tablica ...", + "smw-upgrade-progress-supplement-jobs": "Dodavanje naknadnih poslova ...", + "smw-upgrade-error-title": "Pogreška » Semantic MediaWiki", + "smw-upgrade-error-why-title": "Zašto mi se prikazuje ova stranica?", + "smw-upgrade-error-how-title": "Kako popraviti ovu pogrešku?", + "smw-extensionload-error-how-title": "Kako popraviti ovu pogrešku?", + "smw-semantics-not-enabled": "Funkcionalnost Semantičkoga MediaWikija nije omogućena na ovoj wiki.", + "smw_viewasrdf": "RDF feed", + "smw_finallistconjunct": ", i", + "smw_isspecprop": "Ovo svojstvo je posebno svojstvo na ovom wikiju.", + "smw-concept-cache-header": "Upotreba predmemorije", + "smw_concept_description": "Opis koncepta \"$1\"", + "smw_no_concept_namespace": "Koncepti mogu biti definirani jedino u imenskom prostoru Concept: .", + "smw_multiple_concepts": "Stranica koncepta smije imati samo jednu definiciju koncepta.", + "smw_concept_cache_miss": "Koncept \"$1\" se trenutačno ne može se koristiti jer je wiki podešen tako da se koncept mora proračunati i izraditi off-line. Ako problem ne nestane nakon nekog vremena, zamolite administratora da ovaj koncept učini dostupnim.", + "smw_noinvannot": "Vrijednosti se ne mogu dodijeliti inverznim svojstva.", + "version-semantic": "Semantičke ekstenzije", + "smw_baduri": "URI oblika \"$1\" nije dozvoljen.", + "smw_printername_count": "Broji rezultate", + "smw_printername_csv": "Izvoz u CSV", + "smw_printername_debug": "Debugiranje upita (za stručnjake)", + "smw_printername_embedded": "Umetni sadržaj stranice", + "smw_printername_json": "Izvoz u JSON", + "smw_printername_list": "Popis", + "smw_printername_ol": "Numerirani popis", + "smw_printername_ul": "Popis s grafičkim oznakama", + "smw_printername_table": "Tablica", + "smw_printername_broadtable": "Široka tablica", + "smw_printername_template": "Predložak", + "smw_printername_category": "Kategorija", + "validator-type-class-SMWParamSource": "tekst", + "smw-paramdesc-limit": "Maksimalni broj rezultata", + "smw-paramdesc-headers": "Prikaz zaglavlja/imena svojstava", + "smw-paramdesc-mainlabel": "Oznaka imenu glavne stranice", + "smw-paramdesc-link": "Prikaži vrijednosti kao poveznice", + "smw-paramdesc-intro": "Tekst za prikazati prije rezultata upita, ukoliko ih ima", + "smw-paramdesc-outro": "Tekst za prikazati nakon rezultata upita, ukoliko ih ima", + "smw-paramdesc-default": "Tekst koji će se prikazati ako nema rezultata upita", + "smw-paramdesc-sep": "Znak za razdvajanje vrijednosti", + "smw-paramdesc-template": "Naziv predloška kojim će se prikazati ispis", + "smw-paramdesc-columns": "Broj stupaca u kojima se prikazuje rezultat (default je $1)", + "smw-paramdesc-userparam": "Vrijednost koja se prenosi u svaki poziv predloška, ako se predložak koristi", + "smw-paramdesc-introtemplate": "Ime predloška koji će se prikazati prije rezultata upita, ako ih ima", + "smw-paramdesc-outrotemplate": "Ime predloška koji će se prikazati nakon rezultata upita, ako ih ima", + "smw-paramdesc-embedformat": "HTML tag koji definira zaglavlja", + "smw-paramdesc-embedonly": "Ne prikazuj zaglavlja", + "smw-paramdesc-searchlabel": "Tekst poveznice na rezultate", + "smw_iq_disabled": "Semantički upiti su isključeni na ovom wikiju.", + "smw_iq_moreresults": "… daljnji rezultati", + "smw_parseerror": "Dana vrijednost nije razumljiva.", + "smw_notitle": "\"$1\" ne može biti ime stranice na ovom wikiju.", + "smw_wrong_namespace": "U ovom su slučaju dopuštene samo stranice iz imenskoga prostora \"$1\".", + "smw_manytypes": "Za svojstvo je definirano više od jednog tipa.", + "smw_emptystring": "Prazni se nizovi ne prihvaćaju.", + "smw_notinenum": "\"$1\" nije na popisu dozvoljenih vrijednosti ($2) za ovo svojstvo.", + "smw_noboolean": "\"$1\" nije prepoznat kao booleovska vrijednost (\"true/false\" odn. istina/laž).", + "smw_true_words": "true,t,yes,y,istina,i,da,d", + "smw_false_words": "false,f,no,n,laž,l,ne", + "smw_nofloat": "\"$1\" nije broj.", + "smw_infinite": "Veliki brojevi poput \"$1\" nisu podržani.", + "smw_novalues": "Nisu naznačene vrijednosti.", + "smw_nodatetime": "Datum \"$1\" nije prepoznat.", + "smw_toomanyclosing": "Čini se da postoji previše pojava \"$1\" u upitu.", + "smw_noclosingbrackets": "Jedna od \"[[\" u Vašem upitu nije zatvorena odgovarajućom \"]]\".", + "smw_misplacedsymbol": "Simbol \"$1\" se javlja na mjestu gdje nije upotrebljiv.", + "smw_unexpectedpart": "Dio upita \"$1\" nije razumljiv.\nRezultati možda neće biti odgovarajući.", + "smw_emptysubquery": "Neki podupiti nemaju valjani uvjet.", + "smw_misplacedsubquery": "Podupit je postavljen na nedopuštenom mjestu.", + "smw_valuesubquery": "Podupiti ne mogu biti vrijednosti svojstva \"$1\".", + "smw_badqueryatom": "Jedan od dijelova upita \"[[…]]\" nije razumljiv.", + "smw_propvalueproblem": "Vrijednost svojstva \"$1\" nije razumljiva.", + "smw_noqueryfeature": "Ovaj wiki ne podržava neku od osobina upita, pa je dio upita odbačen ($1).", + "smw_noconjunctions": "Ovaj wiki ne podržava veznike u upitima, pa je dio upita odbačen ($1).", + "smw_nodisjunctions": "Ovaj wiki ne podržava razdvajanja u upitima, pa je dio upita odbačen ($1).", + "smw_querytoolarge": "Zbog ograničenja veličine ili dubine upita na ovom wikiju, sljedeći uvjeti upita nisu uzeti u obzir: $1.", + "smw_notemplategiven": "Navedite vrijednost parametra \"template\" (\"predložak\") za ovaj format upita.", + "smw_type_header": "Svojstva tipa \"$1\".", + "smw_typearticlecount": "{{PLURAL:$1|Prikazano je $1 svojstvo koje koristi|Prikazana su $1 svojstva koja koriste|Prikazano je $1 svojstava koja koriste}} ovaj tip.", + "smw_attribute_header": "Stranice koje koriste svojstvo \"$1\".", + "smw_attributearticlecount": "Prikazano {{PLURAL:$1|$1 stranica koja koristi|$1 stranice koje koriste|$1 stranica koje koriste}} ovo svojstvo.", + "specialpages-group-smw_group": "Semantički MediaWiki", + "exportrdf": "Izvezi stranice u RDF", + "smw_exportrdf_docu": "Na ovoj stranici možete dobiti podatke o nekoj stranici u RDF formatu.\nDa biste izvezli stranice unesite njihove naslove u prozor za uređivanje ispod, jedan naslov po retku.", + "smw_exportrdf_recursive": "Rekurzivno izvezi sve srodne stranice.\nImajte na umu da bi rezultat mogao biti velik!", + "smw_exportrdf_backlinks": "Također izvezi sve stranice koje se referenciraju na izvezene stranice.\nGenerira RDF za pregled i pretraživanje.", + "smw_exportrdf_lastdate": "Ne izvozi stranice koje nisu izmijenjene od navedenog datuma.", + "smw_exportrdf_submit": "Izvezi", + "uriresolver": "URI razrješitelj", + "properties": "Svojstva", + "smw-categories": "Kategorije stranica", + "smw_properties_docu": "U wikiju se koriste sljedeća svojstva.", + "smw_property_template": "$1 tipa $2 ($3)", + "smw_propertylackspage": "Svako svojstvo mora biti opisano na svojoj stranici!", + "smw_propertylackstype": "Za ovo svojstvo nije naveden tip (od sad na dalje pretpostavljam tip $1).", + "smw_propertyhardlyused": "Ovo se svojstvo gotovo ne koristi u wikiji!", + "concepts": "Pojmovnici", + "unusedproperties": "Nekorištena svojstva", + "smw-unusedproperties-docu": "Sljedeća svojstva postoje, no ne koristi ih ni jedna stranica.", + "smw-unusedproperty-template": "$1 tipa $2", + "wantedproperties": "Tražena svojstva", + "smw-wantedproperties-docu": "Sljedeća svojstva se koriste u wikiju, no još nemaju svoje stranice koje bi ih opisale.", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|korištenje|korištenja}})", + "smw_purge": "Osvježi", + "types": "Tipovi", + "smw_types_docu": "Slijedi popis svih tipova podataka koji mogu biti dodijeljeni svojstvima.\nSvaki tip podatka ima stranicu koja može pružiti dodatne informacije.", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Pojmovnik|Pojmovnika|Pojmovnici}}]]", + "smw_uri_doc": "URI razrješitelj implementira [$1 W3C traženje TAGova na httpRange-14]\nkoje brine da se ljudi ne pretvore u web stranice.", + "ask": "Semantička tražilica", + "smw_ask_sortby": "Razvrstavanje po stupcu (opcionalno)", + "smw_ask_ascorder": "Rastuće", + "smw_ask_descorder": "padajuće", + "smw_ask_submit": "Nađi rezultate", + "smw_ask_editquery": "Uredi upit", + "smw_add_sortcondition": "[Dodaj uvjet za razvrstavanje]", + "smw_ask_hidequery": "Sakrij upit", + "smw_ask_help": "Pomoć za upite", + "smw_ask_queryhead": "Upit", + "smw_ask_printhead": "Dodatni podaci za prikazati", + "smw_ask_printdesc": "(dodaj jedno svojstvo po retku)", + "smw_ask_format_as": "Formatiraj kao:", + "smw_ask_defaultformat": "prvotno", + "smw_ask_otheroptions": "Ostale opcije", + "smw_ask_show_embed": "Prikaži kôd za umetanje", + "smw_ask_hide_embed": "Sakrij kôd za umetanje", + "smw_ask_embed_instr": "Da biste umetnuli ovaj upit u stranicu koristite kôd dolje.", + "searchbyproperty": "Traži po svojstvu", + "processingerrorlist": "Popis pogrešaka pri obradi", + "propertylabelsimilarity": "Izvješće o sličnosti naljepnice svojstva", + "smw_sbv_docu": "Traži sve stranice koje imaju zadano svojstvo i vrijednost.", + "smw_sbv_novalue": "Unesite valjanu vrijednost za svojstvo ili pogledajte sve vrijednosti za \"$1\".", + "smw_sbv_displayresultfuzzy": "Popis svih stranica koje imaju svojstvo \"$1\" vrijednosti \"$2\".\nBudući da je rezultata malo, također su prikazane i bliske vrijednosti.", + "smw_sbv_property": "Svojstvo:", + "smw_sbv_value": "Vrijednost:", + "smw_sbv_submit": "Nađi rezultate", + "browse": "Pretražuj wiki", + "smw_browselink": "Pregledaj svojstva", + "smw_browse_article": "Unesite ime stranice od koje ćete početi pregledavanje.", + "smw_browse_go": "Kreni", + "smw_browse_show_incoming": "prikaži svojstva koja povezuju ovamo", + "smw_browse_hide_incoming": "sakrij svojstva koja povezuju ovamo", + "smw_browse_no_outgoing": "Ova stranica nema svojstva.", + "smw_browse_no_incoming": "Nijedno svojstvo ne povezuje na ovu stranicu.", + "smw_inverse_label_default": "$1 od", + "smw_inverse_label_property": "Oznaka inverznog svojstva", + "pageproperty": "Pretraživanje svojstava stranica", + "pendingtasklist": "Popis zadataka na čekanju", + "smw_pp_docu": "Pretraži sve vrijednosti nekog svojstva na zadanoj stranici.\nUnesite stranicu i svojstvo.", + "smw_pp_from": "Sa stranice", + "smw_pp_type": "Svojstvo", + "smw_pp_submit": "Nađi rezultate", + "smw_result_prev": "Prethodni", + "smw_result_next": "Sljedeći", + "smw_result_results": "Rezultati", + "smw_result_noresults": "Nema rezultata.", + "smwadmin": "Administratorske funkcije za Semantic MediaWiki", + "smw-admin-setupsuccess": "Spremište je uspješno postavljeno.", + "smw_smwadmin_return": "Vrati se na $1", + "smw_smwadmin_updatestarted": "Pokrenut je novi proces osvježavanja semantičkih podataka.\nSvi spremljeni podaci će biti ponovno izgrađeni ili popravljeni ako je to potrebno.\nNapredak osvježavanja možete pratiti na ovoj posebnoj stranici.", + "smw_smwadmin_updatenotstarted": "Već se izvršava proces osvježavanja.\nNe pokrećem novi.", + "smw_smwadmin_updatestopped": "Svi postojeći procesi osvježavanja su zaustavljeni.", + "smw_smwadmin_updatenotstopped": "Da biste zaustavili proces osvježavanja, označite u potvrdnom okviru da ste zaista sigurni.", + "smw-admin-docu": "Ova posebna stranica pomaže prilikom instalacije i nadogradnje Semantic MediaWiki.\nNe zaboravite napraviti sigurnosnu kopiju važnih podataka prije izvršavanja administrativnih funkcija.", + "smw-admin-db": "Instalacija i nadgradnja baze podataka", + "smw-admin-dbdocu": "Semantic MediaWiki zahtijeva određena proširenja MediaWiki baze podataka za čuvanje semantičkih podataka.\nFunkcija ispod osigurava da je vaša baza pravilno postavljena.\nOvaj korak ne utječe na ostatak MediaWiki baze podataka i lako se može poništiti ukoliko to želite.\nOva se funkcija može izvršiti više puta bez ikakvih štetnih posljedica, no potrebna je samo kod instalacije ili nadgradnje.", + "smw-admin-permissionswarn": "Ako operacija ne uspije i vrati SQL grešku, baza podataka koju koristi Vaš wiki (provjerite svoj LocalSettings.php) vjerojatno nema dovoljna prava.\nUčinite jedno od sljedećeg: dodijelite ovom korisniku dodatna prava za stvaranje i brisanje tablica, privremeno unesite administratorsko korisničko ime i lozinku Vaše baze podataka u LocalSettings.php, ili pokrenite skriptu za održavanje setupStore.php koja će koristiti prava iz AdminSettings.php.", + "smw-admin-dbbutton": "Inicijaliziraj ili nadogradi tablice", + "smw-admin-announce": "Najavite svoj wiki", + "smw-admin-deprecation-notice-title-notice": "Zastarjele postavke", + "smw-admin-deprecation-notice-section-legend": "Legenda", + "smw_smwadmin_datarefresh": "Popravljanje i nadgradnja podataka", + "smw_smwadmin_datarefreshdocu": "Moguće je povratiti sve semantičke podatke Semantic MediaWiki na osnovi trenutnog tekstualnog wikija, što možete koristiti za popravak pokvarenih podataka ili osvježivanje podataka u slučaju internih promjena softvera.\nOsvježavanje se izvršava stranicu po stranicu i neće biti gotovo odmah.\nPrikaz dolje sadrži popis svih osvježavanja u tijeku i omogućuje Vam da zaustavite ili pokrenete osvježavanje (osim ako to nije onemogućio administrator).", + "smw_smwadmin_datarefreshprogress": "Osvježavanje je već u tijeku.\nNormalno je da osvježavanje napreduje sporo jer se podaci osvježavaju u malim obrocima svaki put kad korisnik pristupi wikiju.\nDa bi ovo osvježavanje završilo čim prije, možete pokrenuti MediaWiki skriptu za održavanje runJobs.php (koristite opciju --maxjobs 1000 kako biste ograničili broj zasebnih osvježavanja po jednoj seriji).\nProcjena napretka osvježavanja:", + "smw_smwadmin_datarefreshbutton": "Pokreni osvježavanje podataka", + "smw_smwadmin_datarefreshstop": "Zaustavi ovo osvježavanje", + "smw_smwadmin_datarefreshstopconfirm": "Da, {{GENDER:$1|siguran|sigurna}} sam.", + "smw-admin-support": "Zatražite pomoć", + "smw-admin-supportdocu": "U slučaju problema poslužite se sljedećim izvorima:", + "smw-admin-installfile": "U slučaju problema s Vašom instalacijom pogledajte naputke u datoteci INSTALL.", + "smw-admin-smwhomepage": "Potpuna korisnička dokumentacija za Semantic MediaWiki nalazi se na semantic-mediawiki.org.", + "smw-admin-bugsreport": "Greške (bugove) možete prijaviti na GitHub.", + "smw-admin-questions": "Ukoliko imate pitanja ili prijedloge, pridružite se raspravi na korisničkom forumu Semantic MediaWiki.", + "smw-admin-supplementary-settings-title": "Konfiguracija i postavke", + "smw-admin-supplementary-elastic-version-info": "Inačica", + "smw-admin-supplementary-elastic-config": "Konfiguracije", + "smw_adminlinks_datastructure": "Struktura podataka", + "smw_adminlinks_displayingdata": "Prikaz podataka", + "smw_adminlinks_inlinequerieshelp": "Pomoć za umetnute upite", + "prefs-smw": "Semantički MediaWiki", + "prefs-general-options": "Opće mogućnosti", + "prefs-ask-options": "Semantička tražilica", + "smw-ui-tooltip-title-info": "Obavijest", + "smw_unknowntype": "Tip ovog svojstva je neispravan", + "smw_concept_header": "Stranice koncepta \"$1\"", + "smw_conceptarticlecount": "Prikazano $1 {{PLURAL:$1|stranica koja pripada|stranice koje pripadaju|stranica koje pripadaju}} tom konceptu.", + "right-smw-vieweditpageinfo": "Pregled [https://www.semantic-mediawiki.org/wiki/Help:Edit_help uređivanja pomoći] (Semantički MediaWiki)", + "group-smwadministrator": "Administratori (Semantički MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|administrator (Semantički MediaWiki)|administratorica (Semantički MediaWiki)}}", + "group-smwcurator": "Pomnjici (Semantički MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|pomnjik (Semantički MediaWiki)|pomnjikinja (Semantički MediaWiki)}}", + "group-smweditor": "Uređivači/ce (Semantički MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|uređivač (Semantički MediaWiki)|uređivačica (Semantički MediaWiki)}}", + "grouppage-smweditor": "{{ns:project}}:Uređivači/ce (Semantički MediaWiki)", + "smw-admin-tab-alerts": "Obavijesti", + "smw-livepreview-loading": "Učitavam…", + "log-name-smw": "Evidencija Semantičkoga MediaWikija", + "log-show-hide-smw": "$1 evidenciju Semantičkoga MediaWikija", + "logeventslist-smw-log": "Evidencija Semantičkoga MediaWikija", + "smw-type-tab-errors": "Pogreške", + "smw-type-primitive": "Temeljno", + "smw-install-incomplete-intro-note": "Ova će se poruka prestati prikazivati nakon što svi značajni zadaci budu riješeni.", + "smw-pendingtasks-setup-tasks": "Zadaci", + "smw-listingcontinuesabbrev": "nast.", + "smw-showingresults": "Dolje {{PLURAL:$1|je prikazan '''$1''' rezultat|su prikazana '''$1''' rezultata|je prikazano '''$1''' rezultata}}, počevši od '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/hrx.json b/mediawiki/extensions/SemanticMediaWiki/i18n/hrx.json new file mode 100644 index 0000000..7bf5b6e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/hrx.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "Iohanen", + "Paul Beppler" + ] + }, + "smw-categories": "Kategoriee", + "browse": "Semantisches Browse", + "smw-livepreview-loading": "Am loode …", + "smw-listingcontinuesabbrev": "(Fortsetzung)", + "smw-showingresults": "Hier {{PLURAL:$1|ist '''1''' Ergebnis|sind '''$1''' Ergebnisse}}, beginnend mit Nummer '''$2.'''" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/hsb.json b/mediawiki/extensions/SemanticMediaWiki/i18n/hsb.json new file mode 100644 index 0000000..8b11960 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/hsb.json @@ -0,0 +1,291 @@ +{ + "@metadata": { + "authors": [ + "J budissin", + "Michawiki", + "아라" + ] + }, + "smw-desc": "Twój wiki přistupniši činić - za mašiny ''a'' ludźi ([https://www.semantic-mediawiki.org/wiki/Help:User_manual dokumentacija online])", + "smw-error": "Zmylk", + "smw-upgrade-release": "Wozjewjenje", + "smw-upgrade-progress": "Postup aktualizacije", + "smw-upgrade-error-why-title": "Čehodla widźu tutu zdźělenku?", + "smw-upgrade-error-how-title": "Kak hodźi so tutón problem rozrisać?", + "smw-extensionload-error-why-title": "Čehodla so tuta strona pokazuje?", + "smw-extensionload-error-how-title": "Kak hodźi so tutón problem rozrisać?", + "smw-upgrade-maintenance-why-title": "Čehodla widźu tutu stronu?", + "smw_viewasrdf": "RDF-kanal", + "smw_finallistconjunct": "a", + "smw-factbox-head": "… wjace datow wo stronje „$1“", + "smw-factbox-facts": "Fakty", + "smw-factbox-facts-help": "Pokazuje wuprajenja a fakty, kiž su so wot wužiwarjow wutworili", + "smw-factbox-attachments": "Přiwěški", + "smw-factbox-attachments-value-unknown": "njeznaty", + "smw-factbox-attachments-is-local": "Lokalny", + "smw-factbox-facts-derived": "Wotwodźene fakty", + "smw_isspecprop": "Tuta kajkosć je specialna kajkosć w tutym wikiju.", + "smw_concept_description": "Wopisanje koncepta \"$1\"", + "smw_no_concept_namespace": "Koncepty hodźa so jenož w mjenowym rumje ''Koncept:'' definować.", + "smw_multiple_concepts": "Kóžda konceptowa strona móže jenož jednu konceptowu definiciju měć.", + "smw_concept_cache_miss": "Koncept \"$1\" njeda so tuchwilu wužiwać, dokelž wikijowa konfiguracija jón za předźěłowanje offline trjeba.\nJeli so problem po wěstym času njezhubi, woprašej so sydłoweho administratora, zo by wón tutón koncept k dispoziciji stajił.", + "smw_noinvannot": "Hódnoty njedadźa so nawopačnym kajkosćam připokazać.", + "version-semantic": "Semantiske rozšěrjenja", + "smw_baduri": "URI formy \"$1\" njejsu dowolene.", + "smw_printername_count": "Wuslědki ličić", + "smw_printername_csv": "Eksport CSV", + "smw_printername_dsv": "DSV-eksport", + "smw_printername_debug": "Naprašowanje za zmylkami přepytać (za ekspertow)", + "smw_printername_embedded": "Wobsah strony zasadźić", + "smw_printername_json": "Eksport JSON", + "smw_printername_list": "Lisćina", + "smw_printername_ol": "Naličenje", + "smw_printername_ul": "Nalistowanje", + "smw_printername_table": "Tabela", + "smw_printername_broadtable": "Šěroka tabela", + "smw_printername_template": "Předłoha", + "smw_printername_rdf": "RDF-eksport", + "smw_printername_category": "Kategorija", + "validator-type-class-SMWParamSource": "tekst", + "smw-paramdesc-limit": "Maksimalna ličba wuslědkow, kotraž ma so wróćić", + "smw-paramdesc-offset": "Pozicija prěnjeho wuslědka", + "smw-paramdesc-headers": "Mjena hłowow abo atributow zwobraznić", + "smw-paramdesc-mainlabel": "Pomjenowanje, kotrež ma so hłownej stronje dać", + "smw-paramdesc-link": "Hódnoty jako wotkazy pokazać", + "smw-paramdesc-intro": "Tekst, kotryž ma so před naprašowanskimi wuslědkami zwobraznić, jeli tajke su", + "smw-paramdesc-outro": "Tekst, kotryž ma so za naprašowanskimi wuslědkami zwobraznić, jeli tajke su", + "smw-paramdesc-default": "Tekst, kotryž ma so zwobraznić, jeli žane naprašowanske wuslědki njejsu", + "smw-paramdesc-sep": "Dźělatko za hódnoty", + "smw-paramdesc-showsep": "Dźělatko horjeka w CSV-dataji pokazać (\"sep=\")", + "smw-paramdesc-distribution": "Město toho zo so wšě hódnoty zwobraznjeja, jich wustupowanja ličić a te pokazać.", + "smw-paramdesc-distributionsort": "Rozdźělenje hódnotow po ličbje wustupowanjow sortěrować.", + "smw-paramdesc-distributionlimit": "Rozdźělenje hódnotow na wěste hódnoty wobmjezować.", + "smw-paramdesc-template": "Mjeno předłohi, z kotrejž maja so wućišće zwobraznić", + "smw-paramdesc-columns": "Ličba špaltow, w kotrychž maja so wuslědki zwobraznić (standard je $1)", + "smw-paramdesc-userparam": "Hódnota, kotraž so za kóždu namołwu předłohi přepodawa, jeli předłoha so wužiwa.", + "smw-paramdesc-introtemplate": "Mjeno předłohi, kotraž ma so před naprašowanskimi wuslědkami zwobraznić, jeli tajke su", + "smw-paramdesc-outrotemplate": "Mjeno předłohi, kotraž ma so za naprašowanskimi wuslědkami zwobraznić, jeli tajke su", + "smw-paramdesc-embedformat": "HTML-taflički, kotrež so wužiwaja, zo bychu nadpisma definowali", + "smw-paramdesc-embedonly": "Žane nadpisma zwobraznić", + "smw-paramdesc-table-class": "Přidatna CSS-klasa za tabelu", + "smw-paramdesc-rdfsyntax": "RDF-syntaksa, kotraž ma so wužiwać", + "smw-paramdesc-csv-sep": "Dźělatko, kotrež ma so wužywać", + "smw-paramdesc-dsv-separator": "Dźělatko, kotrež ma so wužywać", + "smw-paramdesc-dsv-filename": "Mjeno za DSV-dataju", + "smw-paramdesc-filename": "Mjeno za wudawansku dataju", + "smw-smwdoc-description": "Pokazuje tabelu wšěch parametrow, kotrež dadźa so za podaty wuslědkowy format hromadźe ze standardnymi hódnotami a wopisanjemi wužiwać.", + "smw-smwdoc-par-format": "Wuslědkowy format, za kotrehož parametry dokumentacija ma so zwobraznić.", + "smw-smwdoc-par-parameters": "Parametry, kotrež maja so pokazać: \"specific\" za tute, kotrež so přez format přidawaja, \"base\" za tute, kotrež su we wšěch formatach k dispoziciji a \"all\" za wobaj.", + "smw-paramdesc-sort": "Kajkosć, po kotrejž naprašowanje ma so sortěrować", + "smw-paramdesc-order": "Sortěrowanski porjad za naprašowanje", + "smw-paramdesc-searchlabel": "Tekst za dalše pytanske wuslědki", + "smw-paramdesc-named_args": "Argumenty, kotrež maja so předłoze přepodać", + "smw-paramdesc-export": "Eksportowe nastajenje", + "smw-paramdesc-prettyprint": "Njeformatowane wudaće, kotrež přidatne zasunjenja a nowe linki zwobraznja", + "smw-paramdesc-source": "Alternatiwne naprašowanske žórło", + "smw-paramdesc-jsonsyntax": "JSON-syntaksa, kotraž ma so wužiwać", + "smw-printername-feed": "RSS- a Atom-kanal", + "smw-paramdesc-feedtype": "Kanalowy typ", + "smw-paramdesc-feedtitle": "Tekst, kotryž ma so jako titul kanala wužiwać", + "smw-paramdesc-feeddescription": "Tekst, kotryž ma so jako wopisanje kanala wužiwać", + "smw-paramdesc-feedpagecontent": "Wobsah strony, kotryž ma so z komentarom zwobraznić", + "smw-label-feed-description": "$2-kanal: $1", + "smw_iq_disabled": "Semantiske naprašowanja su w tutym wikiju znjemóžnjene.", + "smw_iq_moreresults": "... dalše wuslědki", + "smw_parseerror": "Podata hódnota njebu zrozumjena.", + "smw_notitle": "\"$1\" njeda so jako mjeno strony w tutym wikiju wužiwać.", + "smw_noproperty": "\"$1\" njeda so jako kajkosć w tutym wikiju wužiwać.", + "smw_wrong_namespace": "Jenož strony w mjenowym rumje \"$1\" su tu dowolene.", + "smw_manytypes": "Za kajkosć bu wjace hač jeden typ definowany.", + "smw_emptystring": "Prózdne znamješkowe slědy so njeakceptuja.", + "smw_notinenum": "\"$1\" w lisćinje móžnych hódnotow ($2) za tutu kajkosć njeje.", + "smw_noboolean": "\"$1\" płaćiwa hódnota typa boolean (wěrny/njewěrny) njeje.", + "smw_true_words": "wěrny, haj, true", + "smw_false_words": "wopak, njewěrny, ně, false", + "smw_nofloat": "\"$1\" ličba njeje.", + "smw_infinite": "Ličby, kotrež su tak wulke kaž \"$1\", so njepodpěruja.", + "smw_unitnotallowed": "\"$1\" njeje jako płaćiwa měrjenska jednotka za tutón atribut postajił.", + "smw_nounitsdeclared": "Žane měrjenske jednotki njejsu so za tutu kajkosć podali.", + "smw_novalues": "Žane hódnoty podate.", + "smw_nodatetime": "Datum \"$1\" njebu zrozumjeny.", + "smw_toomanyclosing": "Zda so, zo \"$1\" w tutym naprašowanju přehusto wustupuje.", + "smw_noclosingbrackets": "Wustupowanje pora róžkatych spinkow \"[[\" w twojim naprašowanju njeje přez wotpowědny \"]]\" wukónčene.", + "smw_misplacedsymbol": "Symbol \"$1\" so na městnje wužiwa, hdźež wužitny njeje.", + "smw_unexpectedpart": "Dźěl \"$1\" naprašowanja njebu zrozumjeny.\nWuslědki snano kaž wočakowane njejsu.", + "smw_emptysubquery": "Někajke podnaprašowanje nima płaćiwe wuměnjenje.", + "smw_misplacedsubquery": "Někajke podnaprašowanje so na městnje wužiwa, hdźež podnaprašowanja njejsu dowolene.", + "smw_valuesubquery": "Podnaprašowanja so za hódnoty kajkosće \"$1\" njepodpěruja.", + "smw_badqueryatom": "Dźěl \"[[…]]\" naprašowanja njebu zrozumjeny.", + "smw_propvalueproblem": "Hódnota kajkosće \"$1\" njebu zrozumjena.", + "smw_noqueryfeature": "Wotprašowanska funkcija njepodpěruje so w tutym wikiju a dźěl wotprašowanja je so wotstronił ($1).", + "smw_noconjunctions": "A-zwjazanja we wotprašowanajch njepodpěruja so w tutym wikiju a dźěl wotprašowanja je so wotstronił ($1).", + "smw_nodisjunctions": "ABO-zwjazanja we wotprašowanjach njepodpěruja so w tutym wikiju a dźěl wotprašowanja je so wotstronił ($1).", + "smw_querytoolarge": "Slědowace naprašowanske wuměnjenja njedachu so dla wikijowych wobmjezowanjow za wulkosć abo hłubokosć naprašowanja wobkedźbować: $1.", + "smw_notemplategiven": "Podaj hódnotu za parameter \"template\", zo by tutón naprašowanski format fungował.", + "smw_db_sparqlqueryproblem": "Naprašowanski wuslědk njeda so z datoweje banki SPARQL wotwołać. Tutón zmylk móhł nachwilny być abo programowy zmylk w datowej bance być.", + "smw_db_sparqlqueryincomplete": "Wotmołwjenje na naprašowanje je so jako přećežko wukopało a je so přetorhnyło. Někotre wuslědki móhli falować. Jeli je móžno, spytaj jednoriše naprašowanje město toho wužiwać.", + "smw_type_header": "Kajkosće typa \"$1\"", + "smw_typearticlecount": "{{PLURAL:$1|Pokazuje so kajkosć, kotraž tutón typ wužiwa|Pokazujetej so $1 kajkosći, kotrejž tutón typ wužiwatej|Pokazuja so $1 kajkosće, kotrež tutón typ wužiwaja|Pokazuje so $1 kajkosćow, kotrež tutón typ wužiwa}}.", + "smw_attribute_header": "Strony, kotrež kajkosć \"$1\" wužiwaja", + "smw_attributearticlecount": "{{PLURAL:$1|Pokazuje so $1 strona, kotraž tutu kajkosć wužiwa|Pokazujetej $1 stronje, kotrejž tutu kajkosć wužiwatej|Pokazuja so $1 strony, kotrež tutu kajksć wužiwaja|Pokazuje so $1 stronow, kotrež tutu kajkosć wužiwa}}.", + "exportrdf": "Do RDF eksportować", + "smw_exportrdf_docu": "Tuta strona ći zmóžnja daty ze strony we formaće RDF wotwołać. Zo by strony eksportował, zapodaj titule w slědowacym kašćiku, jedyn titul na linku.", + "smw_exportrdf_recursive": "Eksportuj wšě piwuzne strony.\nWobkedźbuj, zo wuslědk móhł wulki być!", + "smw_exportrdf_backlinks": "Eksportuj tež wšě strony, kotrež so na eksportowane strony poćahuja.\nPłodźi přepytujomny RDF.", + "smw_exportrdf_lastdate": "Njeeksportuj strony, kotrež njejsu so wot podateho časoweho dypka změnili.", + "smw_exportrdf_submit": "Eksportować", + "uriresolver": "Rezolwer URI", + "properties": "Kajkosće", + "smw-categories": "Kategorije", + "smw_properties_docu": "Slědowace kajkosće so we wikiju wužiwaja.", + "smw_property_template": "$1 typa $2 ($3 {{PLURAL:$3|wužiće|wužići|wužića|wužićow}})", + "smw_propertylackspage": "Wšě kajkosće měli so přez stronu wopisać!", + "smw_propertylackstype": "Za tutu kajkosć njeje so žadyn typ podał (mjeztym so typ $1 předpokładuje).", + "smw_propertyhardlyused": "Tuta kajkosć so we wikiju lědma wužiwa!", + "smw-property-name-invalid": "Kajkosć $1 njeda so wužiwać (njepłaćiwe kajkostne mjeno)", + "smw-sp-property-searchform": "Kajkosće zwobraznić, kotrež wobsahuja:", + "smw-sp-property-searchform-inputinfo": "Wudaće dźiwa na wulkopisanje. Za filtrowanje so jenož kajkosće zwobraznjeja, kotrež wuměnjenju wotpowěduja.", + "concepts": "Koncepty", + "smw-special-concept-docu": "[https://www.semantic-mediawiki.org/wiki/Help:Concepts Koncept] hodźi so jako \"dynamiska kategorija\" wobhladać, t.r. jako zběrka stronow, kotrež so manuelnje njewutworjeja, ale so přez Semantic mediaWiki z wopisanja dateho naprašowanja wobličuja.", + "smw-special-concept-header": "Lisćina konceptow", + "smw-special-concept-count": "{{PLURAL:$1|Slědowacy koncept|Slědowacej $1 konceptaj|Slědowace $1 koncepty|Slědowacych $1 konceptow}} {{PLURAL:$1|eksistuje|eksistujetej|eksistuja|eksistuje}}.", + "smw-special-concept-empty": "Njeje so žadyn koncept namakał.", + "unusedproperties": "Njewužiwane kajkosće", + "smw-unusedproperties-docu": "Slědowace kajkosće eksistuja, hačrunjež žana druha strona je wužiwa.", + "smw-unusedproperty-template": "$1 typa $2", + "wantedproperties": "Požadane kajkosće", + "smw-wantedproperties-docu": "Slědowace kajkosće so we wikiju wužiwaja, ale nimaja stronu, kotraž je wopisuje.", + "smw-wantedproperty-template": "$1 ({{PLURAL:$2|jónu wužity|dwójce wužitej|$2 razy wužite|$2 razow wužite}})", + "smw_purge": "Aktualizować", + "types": "Typy", + "smw_types_docu": "Deleka je lisćina wšěch datowych typow, kotrež dadźa so kajkosćam připokazać.", + "smw-special-types-no-such-type": "Podaty datowy typ njeeksistuje", + "smw-statistics": "Semantiska statistika", + "smw-statistics-property-instance": "{{PLURAL:$1|Kajkostna hódnota|Kajkostnej hódnoće|Kajkostne hódnoty}} (dohromady)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Kajkosć|Kajkosći|Kajkosće}}]] (dohromady)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Kajkosć|Kajkosći|Kajkosće}} (dohromady)", + "smw-statistics-property-page": "{{PLURAL:$1|Kajkosć|Kajkosći|Kajkosće}} (ze stronu zregistrowane)", + "smw-statistics-property-type": "{{PLURAL:$1|Kajkosć|Kajkosći|Kajkosće}} (datowemu typej připokazane)", + "smw-statistics-query-inline": "{{PLURAL:$1|Naprašowanje|Naprašowani|Naprašowanja}}", + "smw-statistics-query-size": "Wulkosć naprašowanja", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Koncept|Konceptaj|Koncepty}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Koncept|Konceptaj|Koncepty}}]]", + "smw-statistics-subobject-count": "{{PLURAL:$1|Podobjekt|Podobjektaj|Podobjekty}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Datowy typ|Datowej typaj|Datowe typy}}]]", + "smw_uri_doc": "Rozpušćak URI implementuje [$1 W3C TAG finding on httpRange-14].\nStara so wo to, zo so ludźo z websydłami njestanu.", + "ask": "Semantiske pytanje", + "smw_ask_sortby": "Po špalće sortěrować (opcionalny)", + "smw_ask_ascorder": "Postupowacy", + "smw_ask_descorder": "Spadowacy", + "smw_ask_submit": "Wuslědki namakać", + "smw_ask_editquery": "Naprašowanje wobdźěłać", + "smw_add_sortcondition": "[Sortěrowanske wuměnjenje přidać]", + "smw_ask_hidequery": "Naprašowanje schować", + "smw_ask_help": "Pomoc za naprašowanja", + "smw_ask_queryhead": "Wuměnjenje", + "smw_ask_printhead": "Přidatne daty, kotrež maja so zwobraznić", + "smw_ask_printdesc": "(přidaj jedne atributowe mjeno na linku)", + "smw_ask_format_as": "Formatowany jako:", + "smw_ask_defaultformat": "standard", + "smw_ask_otheroptions": "Druhe opcije", + "smw-ask-otheroptions-info": "Tutón wotrězk wobsahuje opcije, kotrež měnjeja ćišćerske wudaće. Parametrowe wopisanje dadźa so wobhladać, jeli so kursor myški nad nich znošuje.", + "smw-ask-otheroptions-collapsed-info": "Prošu wužij plusowy symbol (+), zo by sej wšě k dispoziciji stejace opcije wobhladał", + "smw_ask_show_embed": "Zasadźeny kod pokazać", + "smw_ask_hide_embed": "Zasadźeny kod schować", + "smw_ask_embed_instr": "Wužij slědowacy kod, zo by tute wotprašowanje do wikijoweje strony zasadźił.", + "smw-ask-delete": "Wotstronić", + "smw-ask-sorting": "Sortěrowanje", + "smw-ask-format-selection-help": "Pomoc wo wubranym formaće: $1", + "searchbyproperty": "Po atribuće pytać", + "smw_sbv_docu": "Wšě strrony pytać, kotrež maja wěstu kajkosć a hódnotu.", + "smw_sbv_novalue": "Zapodaj płaćiwu hódnotu za kajkosć abo wobhladaj sej wšě hódnoty kajkosće za \"$1\".", + "smw_sbv_displayresultfuzzy": "Lisćina wšěch stronow, kotrež maja kajkosć \"$1\" z hódnotu \"$2\".\nDokelž je jenož mało wuslědkow, so tež podobne hódnoty nalistuja.", + "smw_sbv_property": "Kajkosć:", + "smw_sbv_value": "Hódnota:", + "smw_sbv_submit": "Wuslědki namakać", + "browse": "Wiki přepytać", + "smw_browselink": "Kajkosće přepytać", + "smw_browse_article": "Zapodaj mjeno strony, wot kotrejež ma so pytanje započeć.", + "smw_browse_go": "Wotpósłać", + "smw_browse_show_incoming": "kajkosće pokazać, kotrež sem wotkazuja", + "smw_browse_hide_incoming": "kajkosće schować, kotrež sem wotkazuja", + "smw_browse_no_outgoing": "Tuta strona nima kajkosće.", + "smw_browse_no_incoming": "Žane kajkosće k tutej stronje njewotkazuja.", + "smw_inverse_label_default": "$1 z", + "smw_inverse_label_property": "Pomjenowanje nawopačneje kajkosće", + "pageproperty": "Pytanje kajkosćow strony", + "smw_pp_docu": "Pytaj wšě hódnoty kajkosće na datej stronje.\nZapodaj stronu kaž tež kajkosć.", + "smw_pp_from": "Ze strony", + "smw_pp_type": "Kajkosć:", + "smw_pp_submit": "Wuslědki namakać", + "smw_result_prev": "Předchadny", + "smw_result_next": "Přichodny", + "smw_result_results": "Wuslědki", + "smw_result_noresults": "Žane wuslědki.", + "smwadmin": "Administraciske funkcije za Semantic MediaWiki", + "smw-admin-setupsuccess": "Składowanska jednotka je so wuspěšnje nastajiła.", + "smw_smwadmin_return": "Wróćo k $1", + "smw_smwadmin_updatestarted": "Nowy proces aktualizacije za wobnowjenje semantiskich datow bu startowany.\nWšě składowane daty budu so znowa tworić abo porjedźeć, hdźež je to trěbne.\nMóžeš proces aktualizacije na tutej specialnej stronje slědować.\n\nWróćo k $1.", + "smw_smwadmin_updatenotstarted": "Proces aktualizacije hižo běži.\nNowy so njezapočnje.\n\nWróćo k $1.", + "smw_smwadmin_updatestopped": "Wšě eksistowace aktualizaciske procesy su so zastajili.\n\nWróćo k $1.", + "smw_smwadmin_updatenotstopped": "Zo by běžny aktualizowanski proces zastajił, dyrbiš kontrolny kašćik aktiwizować, zo by podał, zo sy sej woprawdźe wěsty.\n\nWróćo k $1.", + "smw-admin-docu": "Tuta specialna strona ći za instalaciju a akutalizaciju Semantic MediaWiki pomha.\nNjezabudź hódnotne daty zawěsćić, prjedy hač administratiwne funkcije wuwjedźeš.", + "smw-admin-db": "Instalacija a aktualizacija datoweje banki", + "smw-admin-dbdocu": "Semantic MediaWiki trjeba někotre rozšěrjenja na datowej bance MediaWiki, zo by semantiske daty składował.\nSlědowaca funkcija zawěsćuje, zo twoja datowa banka je prawje zarjadowana.\nZměny, kotrež so w tutym kroku činja, njewobwliwuja zbytk datowje banki MediaWiki a dadźa so lochko cofnyć, jeli požadane.\nTuta zarjadowanska funkcija da so wjacore razy wuwjesć, bjeztoho zo so škoda zawinuje, je wšak jenož jedyn raz při instalaciji abo aktualizaciji trěbna.", + "smw-admin-permissionswarn": "Jeli operacija so ze zmylkami SQL njeradźi, najskerje wužiwar datoweje banki, kotrehož twój wiki wužiwa (hlej twoju dataju LocalSettings.php), dosahace prawa nima.\nZaruč tute přidatne wužiwarske prawa za wutworjenje a wušmórnjenje tabelow, zapodaj nachwilu přizjewjenje twojeho administratora datoweje banki do dataje LocalSettings.php abo wužij wothladowanski skript setupStore.php, kotryž móže wužiwarske daty administratora wužiwać.", + "smw-admin-dbbutton": "Tabele inicializować abo aktualizować", + "smw-admin-announce": "Twój wiki připowědźić", + "smw_smwadmin_datarefresh": "Porjedźenje a aktualizacija datow", + "smw_smwadmin_datarefreshdocu": "Je móžno wšě daty ze Semantic MediaWiki na zakładźe aktualneho wobsaha wikija wobnowić. To móže wužitne być, zo bychu so wobškodźene daty porjedźili abo daty aktualizowali, jeli interny format je so aktualizacije softwary dla změnił.\nAktualizacija so stronu po stronu přewjedźe a njebudźe so hnydom kónčić.\nNaslědne pokazuje, jeli aktualizacija so wotměwa a ći dowoluje aktualizacije startować abo zastajić (chibazo tuta funkcija bu wot administratora sydła znjemóžnjena).", + "smw_smwadmin_datarefreshprogress": "Aktualizacija so hižo wotměwa.\nJe normalnje, zo so aktualizacija jenož pomału wotměwa, dokelž daty jenož w małych porcijach kóždy raz, hdyž wužiwar ma přistup na wiki, aktualizuje.\nZo by tutu aktualizaciju spěšnišo skónčił, móžeš wothladowanski skript MediaWiki runJobs.php zawołać (wužij opciju --maxjobs 1000, zo by ličbu aktualizacijow, kotrež so z jednym wotmachom přewjedu, wobmjezował).\nTrochowany staw aktualneje aktualizacije:", + "smw_smwadmin_datarefreshbutton": "Aktualizaciju datow započeć", + "smw_smwadmin_datarefreshstop": "Tutu aktualizaciju zastajić", + "smw_smwadmin_datarefreshstopconfirm": "Haj, sym {{GENDER:$1|wěsty|wěsta}}.", + "smw-admin-support": "Podpěru dóstać", + "smw-admin-supportdocu": "Wšelake resursy móhli ći w problemowych padach pomhać:", + "smw-admin-installfile": "Jeli su problemy z twojej instalaciju, wobhladaj sej směrnicy w dataji INSTALL.", + "smw-admin-smwhomepage": "Kompletna wužiwarska dokumentacija za Semantic MediaWiki je na semantic-mediawiki.org.", + "smw-admin-bugsreport": "Zmylki móžeš w systemje GitHub zdźělić.", + "smw-admin-questions": "Jeli maš dalše prašenja abo namjety, wobdźěl so na diskusiji na wužiwarskim forumje Semantic MediaWiki.", + "smw-admin-supplementary-elastic-replication-files": "Dataje", + "smw-admin-supplementary-elastic-replication-pages": "Strony", + "smw_adminlinks_datastructure": "Struktura datow", + "smw_adminlinks_displayingdata": "Zwobraznjenje datow", + "smw_adminlinks_inlinequerieshelp": "Pomoc za rjadowe wotprašowanja", + "smw-createproperty-isproperty": "To je kajkosć typa $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Dowolena hódnota za tutu kajkosć je|Dowolenej hódnoće za tutu kajkosć stej|Dowolene hódnoty za tutu kajkosć su|Dowolene hódnoty za tutu kajkosć su}}:", + "smw-paramdesc-category-delim": "Dźělatko", + "smw-paramdesc-category-template": "Předłoha, z kotrejž zapiski maja so formatować", + "smw-paramdesc-category-userparam": "Parmeter, kotryž ma so předłoze přepodać", + "smw-info-par-message": "Powěsć, kotraž ma so zwobraznić.", + "smw-info-par-icon": "Symbol, kotryž ma so pokazać, pak \"info\" pak \"warnowanje\".", + "prefs-smw": "Semantic MediaWiki", + "prefs-ask-options": "Semantiske pytanje", + "smw-prefs-intro-text": "Slědowace nastajenja so wot [https://www.semantic-mediawiki.org/ Semantic MediaWiki] (abo podobnych rozšěrjenjow) k dispoziciji steja, zo bychu indiwiduelne přiměrjenje za wubrane funkcije zmóžnili. Za dalše informacije hlej tutón [https://www.semantic-mediawiki.org/wiki/Help:User_preferences wotrězk pomocy]", + "smw-prefs-ask-options-tooltip-display": "Parametrowy tekst jako spěšne info zwobraznić", + "smw-ui-tooltip-title-property": "Kajkosć", + "smw-ui-tooltip-title-quantity": "Mnóstwo", + "smw-ui-tooltip-title-info": "Informacije", + "smw-ui-tooltip-title-service": "Słužbne wotkazy", + "smw-ui-tooltip-title-warning": "Warnowanje", + "smw-ui-tooltip-title-parameter": "Parameter", + "smw-ui-tooltip-title-event": "Podawk", + "smw-ui-tooltip-title-note": "Přispomnjenka", + "smw-ui-tooltip-title-legend": "Legenda", + "smw_unknowntype": "Typ „$1“ tuteje kajkosće je njepłaćiwy", + "smw-concept-cache-text": "Koncept ma dohromady $1 {{PLURAL:$1|stronu|stronje|strony|stronow}} a je so $2 posledni raz zaktualizował.", + "smw_concept_header": "Strony koncepta \"$1\"", + "smw_conceptarticlecount": "Deleka {{PLURAL:$1|so $1 strona pokazuje|so $1 stronje pokazujetej|so $1 strony pokazuja|so $1 stronow pokazuje}}.", + "right-smw-admin": "Administraciske nadawki (Semantic MediaWiki)", + "group-smwadministrator": "SMW-Administratorojo", + "group-smwadministrator-member": "{{GENDER:$1|SMW-administrator|SMW-administratorka}}", + "grouppage-smwadministrator": "{{ns:project}}:SMW-administratorojo", + "action-smw-admin": "administraciske nadawki Semantic MediaWiki", + "smw-sp-properties-cache-info": "Nalistowane daty pochadźeja z [https://www.semantic-mediawiki.org/wiki/Caching pufrowaka] a su so $1 posledni raz zaktualozowali.", + "smw-sp-properties-header-label": "Lisćina kajkosćow", + "smw-sp-admin-settings-button": "Lisćinu nastajenjow wutworić", + "smw-admin-objectid": "ID:", + "smw-livepreview-loading": "Čita so…", + "smw-listingcontinuesabbrev": "(pokročowanje)", + "smw-showingresults": "Deleka so hač {{PLURAL:$1|'''1''' wuslědk pokazuje|'''$1''' wuslědkaj pokazujetej|'''$1''' wuslědki pokazuja|'''$1''' wuslědkow pokazuje}}, započinajo z #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ht.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ht.json new file mode 100644 index 0000000..88d8ba1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ht.json @@ -0,0 +1,32 @@ +{ + "@metadata": { + "authors": [ + "Amire80", + "Bfpage", + "Boukman", + "Jvm", + "Masterches" + ] + }, + "smw_viewasrdf": "Wè tankou fòma RDF", + "smw_finallistconjunct": ", epi", + "smw_isspecprop": "Pwopriyete sa a espesyal toutbon nan wiki sa a.", + "smw_baduri": "Eskize nou, URIs yo pou domèn \"$1\" pa otorize, oubyen li pa disponib nan plas isit la.", + "smw_iq_disabled": "Eskize nou. Rechèch nan atik wiki sa a pa otorize oubyen nou dezaktive l.", + "smw_iq_moreresults": "… lòt rezilta yo", + "smw_parseerror": "Valè ou bay oubyen sa li retounen pa klè, nou pa kapab konprann li.", + "smw_notitle": "Nou pa kapab itilize \"$1\" tankou non yon paj nan wiki sa.", + "smw_manytypes": "Plizyè tip done pase nan atribi.", + "smw_emptystring": "Chèn mo ou bay an pa dwe vid.", + "smw_notinenum": "\"$1\" pa nan lis valè posib ($2) [[Property:Allows value|valè ki pèmèt]] pou pwopriyete \"$3\".", + "smw_noboolean": "\"$1\" pa rekonèt tankou yon valè bouleyen (vre/fo).", + "smw_true_words": "vre,v,wi,w", + "smw_false_words": "fo,f,non,n", + "smw_nofloat": "\"$1\" pa yon nimewo.", + "smw_infinite": "Nimewo ki gwo tankou \"$1\" pa sipòte.", + "smw-categories": "Kategori yo", + "browse": "Pran yon gade nan wiki sa a", + "smw_unknowntype": "Tip pwopriyete sa a « $1 » pa valab", + "smw-listingcontinuesabbrev": "(kontinye)", + "smw-showingresults": "Men jiska {{PLURAL:$1|$1 rezilta}}, premye se #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/hu-formal.json b/mediawiki/extensions/SemanticMediaWiki/i18n/hu-formal.json new file mode 100644 index 0000000..595eb5a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/hu-formal.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Torontál-vármegye" + ] + }, + "smw-ui-tooltip-title-warning": "Figyelmeztetés", + "smw-ui-tooltip-title-error": "Hiba", + "smw-ui-tooltip-title-parameter": "Paraméter", + "smw-ui-tooltip-title-event": "Esemény", + "smw-ui-tooltip-title-note": "Megjegyzés" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/hu.json b/mediawiki/extensions/SemanticMediaWiki/i18n/hu.json new file mode 100644 index 0000000..7a9c450 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/hu.json @@ -0,0 +1,249 @@ +{ + "@metadata": { + "authors": [ + "Adam78", + "Bencemac", + "Dani", + "David92003", + "Dj", + "Glanthor Reviol", + "Krisztina", + "Misibacsi", + "TK-999", + "Tacsipacsi", + "Wolf Rex", + "아라" + ] + }, + "smw-desc": "A wiki elérhetőbbé tétele – gépek ''és'' emberek számára is ([https://www.semantic-mediawiki.org/wiki/Help:User_manual online dokumentáció])", + "smw-error": "Hiba", + "smw_viewasrdf": "RDF hírcsatorna", + "smw_finallistconjunct": ", és", + "smw_isspecprop": "Ez a tulajdonság különleges ebben a wikiben.", + "smw_concept_description": "A(z) „$1” koncepció leírása", + "smw_no_concept_namespace": "Koncepciókat csak a ''Koncepció:'' névtérben levő lapokon lehet megadni.", + "smw_multiple_concepts": "Minden koncepció lapon csak egy koncepció definíciója szerepelhet.", + "smw_concept_cache_miss": "A(z) „$1” koncepció nem használható pillanatnyilag, mivel a wiki konfigurációja szerint kapcsolat nélküli módban kell kiszámítani.\nHa a probléma nem szűnik meg bizonyos idő elteltével, kérd az oldal adminisztrátorát hogy tegye elérhetővé a koncepciót.", + "smw_noinvannot": "Inverz tulajdonságokhoz nem lehet értékeket rendelni.", + "version-semantic": "Szemantikai kiterjesztések", + "smw_baduri": "„$1” formájú URI-k nem engedélyezettek.", + "smw_printername_count": "Eredmények megszámlálása", + "smw_printername_csv": "CSV exportálás", + "smw_printername_dsv": "DSV formátumú exportálás", + "smw_printername_debug": "Lekérdezés hibakeresése (szakértőknek)", + "smw_printername_embedded": "Lap tartalmának beágyazása", + "smw_printername_json": "JSON exportálás", + "smw_printername_list": "Lista", + "smw_printername_ol": "Számozott lista", + "smw_printername_ul": "Felsorolásjeles lista", + "smw_printername_table": "Táblázat", + "smw_printername_broadtable": "Széles táblázat", + "smw_printername_template": "Sablon", + "smw_printername_rdf": "RDF formátumú exportálás", + "smw_printername_category": "Kategória", + "validator-type-class-SMWParamSource": "szöveg", + "smw-paramdesc-limit": "Legfeljebb ennyi eredmény megjelenítése", + "smw-paramdesc-headers": "Fejlécek/tulajdonságnevek megjelenítése", + "smw-paramdesc-mainlabel": "A kezdőlap nevének címkéje", + "smw-paramdesc-link": "Az értékek hivatkozásként jelenjenek meg", + "smw-paramdesc-intro": "A lekérdezés eredményei előtt megjelenő szöveg", + "smw-paramdesc-outro": "A lekérdezés eredményei után megjelenő szöveg", + "smw-paramdesc-default": "Megjelenítendő szöveg, ha a lekérdezésnek nincs eredménye", + "smw-paramdesc-sep": "Az eredmények közti elválasztó", + "smw-paramdesc-distribution": "Az összes érték megjelenítése helyett számolja meg az előfordulásukat, és mutassa azokat.", + "smw-paramdesc-distributionsort": "Értékszórás rendezése előfordulások száma szerint.", + "smw-paramdesc-distributionlimit": "Értékszórás korlátozása néhány érték előfordulásának számára", + "smw-paramdesc-template": "Egy sablon neve, amellyel megjelenítendő a kiírás", + "smw-paramdesc-columns": "A keresési eredmények oszlopainak száma", + "smw-paramdesc-introtemplate": "A lekérdezés eredményei előtt (ha vannak) megjelenítendő sablon neve", + "smw-paramdesc-outrotemplate": "A lekérdezés eredményei után (ha vannak) megjelenítendő sablon neve", + "smw-paramdesc-embedformat": "A címsorokhoz használt HTML-tag", + "smw-paramdesc-embedonly": "Fejlécek kikapcsolása", + "smw-paramdesc-table-class": "A táblázathoz beállítandó extra CSS osztály", + "smw-paramdesc-rdfsyntax": "A használandó RDF-változat", + "smw-paramdesc-csv-sep": "Add meg az oszlopelválasztó-jelet", + "smw-paramdesc-dsv-separator": "A használandó elválasztójel", + "smw-paramdesc-dsv-filename": "A DSV-fájl neve", + "smw-smwdoc-description": "Egy táblázatot jelenít meg azon összes paraméterrel, amelyek az alapértékekkel és -leírásokkal együtt használhatóak a megadott célformátumban.", + "smw-smwdoc-par-format": "A célfrmátum, amelynek paramétereinek dokumentációját meg kell jeleníteni.", + "smw-smwdoc-par-parameters": "A megjelenítendő paraméterek. \"specific\" a formátum által hozzáadottakhoz, \"base\" a minden formátumban elérhetőkhöz és \"all\" mindkét fajtához.", + "smw-paramdesc-sort": "A tulajdonság, amely szerint rendezni kell a lekérdezést", + "smw-paramdesc-order": "A lekérdezések rendezési sorrendje", + "smw-paramdesc-searchlabel": "Szöveg a keresés folytatásához", + "smw-paramdesc-named_args": "Nevezd meg a sablonba átküldendő argumentumokat", + "smw_iq_disabled": "A szemantikus lekérdezések le vannak tiltva ezen a wikin.", + "smw_iq_moreresults": "… további eredmények", + "smw_parseerror": "A megadott érték nem érthető.", + "smw_notitle": "A(z) „$1” nem használható lap neveként ebben a wikiben.", + "smw_noproperty": "A(z) \"$1\" nem használható tulajdonság neveként ebben a wikiben.", + "smw_wrong_namespace": "Csak a(z) „$1” névtérbeli lapok engedélyezettek itt.", + "smw_manytypes": "Egynél több megadott típus a tulajdonsághoz.", + "smw_emptystring": "Üres sztringek nem elfogadhatóak.", + "smw_notinenum": "„$1” nincs az engedélyezett értékek listájában ($2) a „$3” tulajdonságnak.", + "smw_noboolean": "„$1” nem értelmezhető mint logikai (igaz/hamis) érték", + "smw_true_words": "igaz,igen,i", + "smw_false_words": "hamis,nem,n", + "smw_nofloat": "„$1” nem egy szám.", + "smw_infinite": "Ilyen nagy számok („$1”) nem támogatottak.", + "smw_unitnotallowed": "A(z) \"$1\" nem érvényes mértékegysége ennek a tulajdonságnak.", + "smw_nounitsdeclared": "Nincs meghatározva mértékegység ehhez a tulajdonsághoz.", + "smw_novalues": "Nincsenek megadva értékek.", + "smw_nodatetime": "A(z) „$1” dátum nem értelmezhető.", + "smw_toomanyclosing": "A(z) „$1” túl sokszor fordul elő a lekérdezésben.", + "smw_noclosingbrackets": "A lekérdezésben szerepelnek nyitó szögletes zárójelek „([[)” a lezáró párjuk („]]”) nélkül.", + "smw_misplacedsymbol": "A(z) „$1” szimbólum egy olyan helyen volt használva, ahol nincs haszna.", + "smw_unexpectedpart": "A lekérdezés „$1” része nem értelmezhető.\nAz eredmények eltérhetnek a várttól.", + "smw_emptysubquery": "Valamely allekérdezés nem tartalmaz érvényes feltételt.", + "smw_misplacedsubquery": "Allekérdezés volt egy olyan helyen, ahol nem engedélyezettek az allekérdezések.", + "smw_valuesubquery": "A(z) „$1” tulajdonság értékeinél nem támogatottak az allekérdezések.", + "smw_badqueryatom": "A lekérdezés egy részét („[[…]]”) nem sikerült értelmezni.", + "smw_propvalueproblem": "A(z) „$1” tulajdonság értéke nem értelmezhető.", + "smw_noqueryfeature": "A lekérdezés egyes részei nem támogatottak ebben a wikiben, így a lekérdezés egy része el lett dobva ($1).", + "smw_noconjunctions": "A konjunkció a lekérdezésekben nem támogatott ebben a wikiben, így a lekérdezés egy része el lett dobva ($1).", + "smw_nodisjunctions": "A diszjunkció a lekérdezésekben nem támogatott ebben a wikiben, így a lekérdezés egy része el lett dobva ($1).", + "smw_querytoolarge": "A következő {{PLURAL:$2|lekérdezés-feltétel nem lett|lekérdezés-feltételek nem lettek}} figyelembe véve a wikin érvényes lekérdezésméret- vagy -mélység-korlátozások miatt: $1.", + "smw_notemplategiven": "Adj értéket a lekérdezés „paramétersablonjának”, hogy működjön ez a lekérdezésformátum.", + "smw_db_sparqlqueryproblem": "A lekérdezés eredméynét nem tudtuk begyűjteni a SPARQL adatbázisból. Ez a hiba ideiglenes, de az adatbázisszoftver hibáját is jelentheti.", + "smw_db_sparqlqueryincomplete": "A lekérdezés megválaszolása túl nehéznek bizonyult és megszakadt. Néhány eredmény hiányozhat. Ha lehet, próbálkozz egyszerűbb lekérdezéssel.", + "smw_type_header": "A(z) „$1” típus tulajdonságai", + "smw_typearticlecount": "{{PLURAL:$1|Egy|$1}} tulajdonság megjelenítése ezen típus használatával.", + "smw_attribute_header": "A(z) „$1” tulajdonságot használó lapok", + "smw_attributearticlecount": "{{PLURAL:$1|Egy|$1}} lap megjelenítése ezen tulajdonság használatával.", + "specialpages-group-smw_group": "Szemantikus MediaWiki", + "exportrdf": "Lapok exportálása RDF-be", + "smw_exportrdf_docu": "Ez a lap lehetőséget teremt adatok beszerzésére egy lapról RDF formátumban.\nA lapok exportálásához írd be a címeiket az alábbi szövegdobozba, soronként egyet.", + "smw_exportrdf_recursive": "Az összes kapcsolódó lap rekurzív exportálása.\nAz eredmény elég nagy lehet!", + "smw_exportrdf_backlinks": "Kimenti az összes lapot, ami hivatkozik az exportált lapokra.\nBöngészhető RDF-et készít.", + "smw_exportrdf_lastdate": "Ne exportáljon lapokat, amelyek nem változtak mióta a megadott időpont óta.", + "smw_exportrdf_submit": "Exportálás", + "uriresolver": "URI feloldó", + "properties": "Tulajdonságok", + "smw-categories": "Kategóriák", + "smw_properties_docu": "A wikiben az alábbi tulajdonságok használatosak.", + "smw_property_template": "$2 típusú $1 ($3 használat)", + "smw_propertylackspage": "Minden tulajdonságnak kell hogy legyen leírólapja!", + "smw_propertylackstype": "Nincs típus megadva ehhez a tulajdonsághoz ($1 típus feltételezése).", + "smw_propertyhardlyused": "Ez a tulajdonság aligha használatos a wikiben!", + "smw-sp-property-searchform": "A következőt tartalmazó tulajdonságok listázása:", + "unusedproperties": "Nem használt tulajdonságok", + "smw-unusedproperties-docu": "A következő tulajdonságok habár léteznek, de egyetlen lap sem használja őket.", + "smw-unusedproperty-template": "$2 típusú $1", + "wantedproperties": "Keresett tulajdonságok", + "smw-wantedproperties-docu": "A következő tulajdonságok használva vannak a wikiben, azoban még nem rendelkeznek leíró lappal.", + "smw-wantedproperty-template": "$1 ($2 helyen használva)", + "smw_purge": "Frissítés", + "types": "Típusok", + "smw_types_docu": "Ez a tulajdonságokhoz rendelhető adattípusok listáját tartalmazza.", + "smw-statistics": "Szemantikus statisztikák", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Adattípus|Adattípusok}}]]", + "smw_uri_doc": "Az URI-feloldó implementálja a [$1 W3C TAG finding on httpRange-14]-ben meghatározottakat.\nBiztosítja, hogy az emberek ne váljanak weboldalakká.", + "ask": "Szemantikus keresés", + "smw_ask_sortby": "Rendezés oszlopok szerint (nem kötelező)", + "smw_ask_ascorder": "Növekvő", + "smw_ask_descorder": "Csökkenő", + "smw_ask_submit": "Eredmények keresése", + "smw_ask_editquery": "Lekérdezés szerkesztése", + "smw_add_sortcondition": "[Rendezési feltétel hozzáadása]", + "smw_ask_hidequery": "Lekérdezés elrejtése (kompakt nézet)", + "smw_ask_help": "Lekérdezések súgója", + "smw_ask_queryhead": "Feltétel", + "smw_ask_printhead": "További megjelenítendő adatok", + "smw_ask_printdesc": "(egy tulajdonságnevet adj meg soronként)", + "smw_ask_format_as": "Formázás mint:", + "smw_ask_defaultformat": "alapértelmezett", + "smw_ask_otheroptions": "Egyéb beállítások", + "smw_ask_show_embed": "Beágyazási kód megjelenítése", + "smw_ask_hide_embed": "Beágyazási kód elrejtése", + "smw_ask_embed_instr": "Ha egy wikilapra szeretnéd beilleszteni ezt a lekérdezést, másold be az alábbi kódot.", + "smw-ask-delete": "Eltávolítás", + "smw-ask-sorting": "Rendezés", + "smw-ask-search": "Keresés", + "searchbyproperty": "Keresés tulajdonság szerint", + "smw_sbv_docu": "Az összes olyan lap megkeresése, ami a megadott tulajdonsággal és értékkel rendelkezik.", + "smw_sbv_novalue": "Add meg a tulajdonság egy érvényes értékét, vagy nézd meg a(z) „$1” összes tulajdonság-értékét.", + "smw_sbv_displayresultfuzzy": "Az összes olyan lap listája, melyeknél a(z) „$1” tulajdonság a(z) „$2” értéket veszi fel.\nMivel csak néhány találat van, a közeli értékek is meg vannak jelenítve.", + "smw_sbv_property": "Tulajdonság:", + "smw_sbv_value": "Érték:", + "smw_sbv_submit": "Eredmények keresése", + "browse": "Wiki tallózása", + "smw_browselink": "Tulajdonságok böngészése", + "smw_browse_article": "Add meg a lap nevét, ahonnan el szeretnéd kezdeni a böngészést.", + "smw_browse_go": "Menj", + "smw_browse_show_incoming": "Bejövő tulajdonságok mutatása", + "smw_browse_hide_incoming": "Bejövő tulajdonságok elrejtése", + "smw_browse_no_outgoing": "Ehhez a laphoz nem tartoznak tulajdonságok.", + "smw_browse_no_incoming": "Egy tulajdonság sem hivatkozik erre a lapra.", + "smw_inverse_label_default": "$1", + "smw_inverse_label_property": "Tulajdonság címkéjének felcserélése", + "pageproperty": "Laptulajdonság keresés", + "smw_pp_docu": "Vagy írj be egy oldalt és egy tulajdonságot, vagy csak egy tulajdonságot ahhoz, hogy visszahozz minden hozzárendelt értéket-", + "smw_pp_from": "Ettől a laptól:", + "smw_pp_type": "Tulajdonság:", + "smw_pp_submit": "Eredmények keresése", + "smw_result_prev": "Előző", + "smw_result_next": "Következő", + "smw_result_results": "Eredmények", + "smw_result_noresults": "Nincs találat.", + "smwadmin": "Adminisztrációs és karbantartási funkciók", + "smw-admin-setupsuccess": "A tárolómotor be lett állítva.", + "smw_smwadmin_return": "Vissza ide: $1", + "smw_smwadmin_updatestarted": "Egy új frissítő folyamat indult a szemantikus adatok frissítése céljából.\nMinden tárolt adat újra elő lesz állítva, és javítva lesz, ahol szükséges.\nA frissítési folyamat előrehaladását ezen a speciális lapon követheted figyelemmel.", + "smw_smwadmin_updatenotstarted": "Már fut egy frissítő folyamat.\nNem kell újat készíteni.", + "smw_smwadmin_updatestopped": "Minden futó frissítési folyamat leállítva.", + "smw_smwadmin_updatenotstopped": "Az éppen futó frissítési folyamat megszakításához aktiválnod kell a jelölőnégyzetet, hogy jelezd, tényleg biztos vagy benne.", + "smw-admin-docu": "Ez a speciális lap segít a Szemantikus MediaWiki telepítése, karbantartása, használata és frissítése során.\nNe felejts el másolatot készíteni az értékes adatokról az adminisztratív funkciók használata előtt!", + "smw-admin-db": "Adatbázis-karbantartás", + "smw-admin-dbdocu": "A Szemantikus MediaWikinek szüksége van néhány kiterjesztésre az adatbázison a szemantikus adatok tárolásához.\nAz alábbi funkció ellenőrzi, hogy az adatbázis megfelelően be van-e állítva.\nAz ezen lépés során végrehajtott változások nincsenek hatással a MediaWiki adatbázisának többi részére, és egyszerűen visszavonható, amennyiben szükséges.\nEz a telepítési lépés többször is végrehajtható, anékül, hogy bármilyen kárt tenne, de csak egyszer szükséges a telepítés vagy frissítés során.", + "smw-admin-permissionswarn": "Ha a művelet SQL-hibákkal leáll, a wikid által használt adatbázis-felhasználó (amit a LocalSettings.php-ben adtál meg) valószínűleg nem rendelkezik a megfelelő jogosultságokkal.\nAdj a felhasználó számára táblák készítéséhez és törléséhez jogosultságot, ideiglenesen add meg a root fiók adatait, vagy használd az setupStore.php karbantartó parancsfájlt, ami egy adminisztrátor adataival lép be.", + "smw-admin-dbbutton": "Táblák inicializálása vagy frissítése", + "smw-admin-announce": "Wiki bejelentése", + "smw_smwadmin_datarefresh": "Adatok javítása és aktualizálása", + "smw_smwadmin_datarefreshdocu": "A wiki jelenlegi tartalma alapján lehetőség van az összes Szemantikus MediaWiki-adat helyreállítására.\nEz hasznos lehet a sérült adatok javításakor, vagy az adatok frissítésekor, ha a belső formátum megváltozott szoftverfrissítés miatt.\nA frissítés oldalról oldalra van végrehajtva, és nem lesz azonnal kész.\nAlább látható, hogy jelenleg folyamatban van-e ilyen frissítés, és elindíthatod vagy leállíthatod a frissítéseket (kivéve, ha az oldal adminisztrátora letiltotta ezt a lehetőséget).", + "smw_smwadmin_datarefreshprogress": "Frissítés folyamatban.\nNormális, ha a frissítés lassan halad, hiszen az adatok csak egy kis részét frissíti minden alkalommal, ha egy felhasználó hozzáfér a wikihez.\nHa gyorsabban be szeretnéd fejezni a frissítést, hívd meg a runJobs.php karbantartó parancsfájlt (használd a --maxjobs 1000 kapcsolót az egy menetben végrehajtott frissítések korlátozásához).\nA jelenlegi frissítés becsült előrehaladása:", + "smw_smwadmin_datarefreshbutton": "Adatok frissítésének ütemzése", + "smw_smwadmin_datarefreshstop": "Frissítés megszakítása", + "smw_smwadmin_datarefreshstopconfirm": "Igen, {{GENDER:$1|biztos}} vagyok benne.", + "smw-admin-support": "Segítséget kérek", + "smw-admin-supportdocu": "Különböző források, amelyek segíthetnek problémák esetén:", + "smw-admin-installfile": "Ha problémákat észlelsz a telepítéssel, ellenőrizd az útmutatót az INSTALL fájlban és a telepítési oldalon!", + "smw-admin-smwhomepage": "A Szemantikus MediaWiki teljes felhasználói dokumentációja a semantic-mediawiki.org címen található.", + "smw-admin-bugsreport": "A hibákat a GitHubon lehet jelenteni.", + "smw-admin-questions": "Ha további kérdéseid vagy javaslataid vannak, csatlakozz a Szemantikus MediaWiki felhasználói fórumán folyó beszélgetéshez.", + "smw_adminlinks_datastructure": "Adatstruktúra", + "smw_adminlinks_displayingdata": "Adatok megjelenítése", + "smw_adminlinks_inlinequerieshelp": "Szövegbeli lekérdezés-súgó", + "smw-createproperty-isproperty": "Ez egy „$1” típusú tulajdonság.", + "smw-createproperty-allowedvals": "A tulajdonság a következő {{PLURAL:$1|értéket|értékeket}} veheti fel:", + "smw-paramdesc-category-delim": "A határolójel", + "smw-paramdesc-category-template": "Az elemeket formázandó sablon", + "smw-info-par-message": "Megjelenítendő üzenet.", + "smw-info-par-icon": "Megjelenítendő jel, \"info\" vagy \"warning.\"", + "prefs-smw": "Szemantikus MediaWiki", + "prefs-ask-options": "Szemantikus keresési beállítások", + "smw-prefs-ask-options-tooltip-display": "Paraméterszöveg megjelenítése információs buborék formájában", + "smw-ui-tooltip-title-property": "Tulajdonság", + "smw-ui-tooltip-title-quantity": "Mértékegység-átváltás", + "smw-ui-tooltip-title-info": "Információ", + "smw-ui-tooltip-title-warning": "Figyelmeztetés", + "smw-ui-tooltip-title-parameter": "Paraméter", + "smw-ui-tooltip-title-event": "Esemény", + "smw-ui-tooltip-title-note": "Megjegyzés", + "smw-ui-tooltip-title-legend": "Jelmagyarázat", + "smw_unknowntype": "A tulajdonság „$1” típusa érvénytelen", + "smw_concept_header": "A(z) „$1” koncepcióhoz tartozó lapok", + "smw_conceptarticlecount": "Alább $1 lap látszik.", + "group-smwadministrator": "Adminisztrátorok (Szemantikus MediaWiki)", + "grouppage-smwadministrator": "{{ns:project}}:Adminisztrátorok (Szemantikus MediaWiki)", + "smw-sp-properties-header-label": "Tulajdonságok listája", + "smw-admin-idlookup-input": "Keresés:", + "smw-admin-objectid": "Azonosító:", + "smw-admin-configutation-tab-settings": "Beállítások", + "smw-admin-configutation-tab-namespaces": "Névterek", + "smw-admin-maintenance-tab-scripts": "Karbantartó szkriptek", + "smw-livepreview-loading": "Betöltés…", + "smw-datavalue-allows-value-list-missing-marker": "A(z) „$1” lista tartalmában nincsenek elemek * listajelzővel.", + "smw-schema-error-json": "JSON hiba: \"$1\"", + "smw-schema-usage": "Használat", + "smw-listingcontinuesabbrev": "folyt.", + "smw-showingresults": "Lent '''{{PLURAL:$1|egy|$1}}''' találat látható, az eleje '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/hy.json b/mediawiki/extensions/SemanticMediaWiki/i18n/hy.json new file mode 100644 index 0000000..a774f4e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/hy.json @@ -0,0 +1,52 @@ +{ + "@metadata": { + "authors": [ + "GrigorGB", + "Kareyac", + "Teak", + "Xelgen", + "Սերգեյ Սաֆարյան" + ] + }, + "smw-error": "Սխալ", + "smw_finallistconjunct": ", և", + "smw-factbox-facts": "Փաստեր", + "smw_printername_list": "Ցանկ", + "smw_printername_category": "Կատեգորիա", + "validator-type-class-SMWParamSource": "տեքստ", + "smw-propertylist-redirect-header": "Հոմանիշներ", + "properties": "Կարգավորումներ", + "smw-categories": "Կատեգորիաներ", + "smw-special-property-searchform-options": "Ընտրանքներ", + "smw-special-wantedproperties-filter-none": "Ոչ մեկը", + "smw_purge": "Թարմացնել", + "types": "Տեսակներ", + "smw-ask-delete": "Ջնջել", + "smw-ask-options": "Ընտրանքներ", + "smw-ask-search": "Որոնել", + "smw-ask-empty": "Դատարկ", + "browse": "Կատեգորիաներ", + "smw_browse_go": "Անցնել", + "smw_pp_from": "Էջից՝", + "smw_result_prev": "Նախորդ", + "smw_result_next": "Հաջորդ", + "smw-admin-permissionswarn": "Եթե գործողությունը ընթանում է SQL սխալներով, հավանաբար տվյալ մասնակիցը չունի բավարար թույլտվություն տվյալների բազայի համար։ Ստուգեք Ձեր LocalSettings.php էջը։\nԱյլապես մասնակցին տվեք հավելյալ թույլտվություն՝ ստեղծելու և ջնջելու աղյուսակներ, ժամանակավորապես LocalSettings.php էջում մուտք գործել տվյալների բազայի հիմք կամ օգտագործել սպասարկման setupStore.php սկրիպտ, որը կարող է օգտագորրծել ադմինիստրատորի իրավունքներ.", + "smw-admin-statistics": "Վիճակագրություն", + "smw-admin-supplementary-elastic-version-info": "Տարբերակ", + "smw-admin-supplementary-elastic-replication-files": "Նիշքեր", + "smw-admin-supplementary-elastic-replication-pages": "Էջեր", + "smw-ui-tooltip-title-warning": "Զգուշացում", + "smw-ui-tooltip-title-error": "Սխալ", + "smw-livepreview-loading": "Բեռնվում է…", + "smw-data-lookup": "Տվյալների բեռնում...", + "smw-format-datatable-loadingrecords": "Բեռնվում է...", + "smw-format-datatable-search": "Որոնել.", + "smw-format-datatable-last": "Վերջին", + "smw-help": "Օգնություն", + "smw-processing": "Մշակվում է...", + "smw-loading": "Բեռնում...", + "smw-preparing": "Պատրաստվում է...", + "smw-facetedsearch-intro-tab-search": "Որոնել", + "smw-listingcontinuesabbrev": "շարունակելի", + "smw-showingresults": "Ստորև բերված է մինչև {{PLURAL:$1|'''1''' արդյունք|'''$1''' արդյունք}}՝ սկսած № $2-ից։" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ia.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ia.json new file mode 100644 index 0000000..68624ce --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ia.json @@ -0,0 +1,1108 @@ +{ + "@metadata": { + "authors": [ + "Fanjiayi", + "Malafaya", + "McDutchie", + "아라" + ] + }, + "smw-desc": "Pro render tu wiki plus accessibile – a machinas '''e''' a humanos ([https://www.semantic-mediawiki.org/wiki/Help:User_manual documentation in linea])", + "smw-error": "Error", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] ha essite installate e activate ma il manca un [https://www.semantic-mediawiki.org/wiki/Help:Upgrade clave de actualisation] appropriate.", + "smw-upgrade-release": "Edition", + "smw-upgrade-progress": "Progresso", + "smw-upgrade-progress-explain": "Es difficile anticipar quando le actualisation essera concludite perque isto depende del dimension del repositorio de datos e del material disponibile, e pote prender un momento pro terminar se pro le wikis plus grande.\n\nPer favor contacta tu administrator local pro obtener plus information sur le progresso.", + "smw-upgrade-progress-create-tables": "Creation (o actualisation) de tabellas e indices…", + "smw-upgrade-progress-post-creation": "Execution de cargas post creation…", + "smw-upgrade-progress-table-optimization": "Optimisation de tabellas…", + "smw-upgrade-progress-supplement-jobs": "Addition de travalios supplementari…", + "smw-upgrade-error-title": "Error » Semantic MediaWiki", + "smw-upgrade-error-why-title": "Proque vide io iste pagina?", + "smw-upgrade-error-why-explain": "Le structura de base de datos interne de Semantic MediaWiki ha cambiate e require alcun adjustamentos pro esser totalmente functional. Il pote haber varie rationes pro isto, per exemplo:\n* Proprietates fixe ha essite addite (necessitante un configuration additional del tabella)\n* Un actualisation contine certe cambiamentos a tabellas o indices que rende un interception obligatori ante le accesso al datos\n* Cambiamentos al motor de immagazinage o de consultas", + "smw-upgrade-error-how-title": "Como corrige io iste error?", + "smw-upgrade-error-how-explain-admin": "Un administrator (o qualcunque persona con derectos de administrator) debe executar un del duo scripts de mantenentia, sia [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] de MediaWiki, sia [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] de Semantic MediaWiki.", + "smw-upgrade-error-how-explain-links": "Tu pote etiam consultar le sequente paginas pro ulterior assistentia:\n* Instructiones de [https://www.semantic-mediawiki.org/wiki/Help:Installation installation]\n* Pagina de adjuta pro le [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting resolution de problemas]", + "smw-extensionload-error-why-title": "Proque vide io iste pagina?", + "smw-extensionload-error-why-explain": "Le extension non ha essite cargate usante enableSemantics ma ha essite activate per altere medio, p.ex. le uso directe de wfLoadExtension( 'SemanticMediaWiki' ).", + "smw-extensionload-error-how-title": "Como corrige io iste error?", + "smw-extensionload-error-how-explain": "Pro activar le extension e evitar problemas con declarationes de spatio de nomines e configurationes pendente, es necessari usar enableSemantics, que garantira que le variabiles obligatori es definite ante de cargar le extension via ExtensionRegistry.\n\nPer favor consulta le pagina de adjuta [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] pro plus adjuta.", + "smw-upgrade-maintenance-title": "Mantenentia » Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "Proque vide io iste pagina?", + "smw-upgrade-maintenance-note": "Le systema es actualmente in curso de [https://www.semantic-mediawiki.org/wiki/Help:Upgrade actualisation] del extension [https://www.semantic-mediawiki.org/ Semantic MediaWiki] insimul con su repositorio de datos, e nos volerea sollicitar tu patientia pro permitter que le mantenentia continue ante que le wiki pote esser accessibile de novo.", + "smw-upgrade-maintenance-explain": "Le extension essaya de minimisar le impacto e le tempore de inactivitate postponente le major parte de su cargas de mantenentia post le update.php, ma alcun modificationes associate al bases de datos debe esser concludite primo pro evitar incongruentias de datos. Istes pote includer:\n* Cambiar structuras de tabella como adder nove campos o modificar existentes\n* Cambiar o adder indices de tabella\n* Exequer optimisationes de tabellas (si activate)", + "smw-semantics-not-enabled": "Le functionalitate de MediaWiki semantic non ha essite activate pro iste wiki.", + "smw_viewasrdf": "Syndication RDF", + "smw_finallistconjunct": ", e", + "smw-factbox-head": "... plus sur \"$1\"", + "smw-factbox-facts": "Factos", + "smw-factbox-facts-help": "Monstra declarationes e factos que ha essite create per un usator", + "smw-factbox-attachments": "Annexos", + "smw-factbox-attachments-value-unknown": "N/D", + "smw-factbox-attachments-is-local": "Es local", + "smw-factbox-attachments-help": "Monstra annexos disponibile", + "smw-factbox-facts-derived": "Factos derivate", + "smw-factbox-facts-derived-help": "Monstra factos que ha essite derivate ab regulas o con le adjuta de altere technicas de rationamento", + "smw_isspecprop": "Iste proprietate es special in iste wiki.", + "smw-concept-cache-header": "Uso del cache", + "smw-concept-cache-count": "Le [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count cache de conceptos] contine {{PLURAL:$1|'''un''' entitate|'''$1''' entitates}} ($2).", + "smw-concept-no-cache": "Nulle cache disponibile.", + "smw_concept_description": "Description del concepto \"$1\"", + "smw_no_concept_namespace": "Le conceptos pote solmente esser definite in paginas in le spatio de nomines Concept:.", + "smw_multiple_concepts": "Cata pagina de concepto pote haber un sol definition de concepto.", + "smw_concept_cache_miss": "Le concepto \"$1\" non pote esser usate al momento, post que le configuration del wiki require que illo sia computate foras de linea. Si le problema non dispare post alcun tempore, demanda al administrator de tu sito de render disponibile iste concepto.", + "smw_noinvannot": "Le valores non pote esser assignate al proprietates inverse.", + "version-semantic": "Extensiones semantic", + "smw_baduri": "Le adresses URI del forma \"$1\" non es permittite.", + "smw_printername_count": "Contar resultatos", + "smw_printername_csv": "Exportation in CSV", + "smw_printername_dsv": "Exportation in DSV", + "smw_printername_debug": "Consulta de debugging (pro expertos)", + "smw_printername_embedded": "Incastrar contento de pagina", + "smw_printername_json": "Exportation in JSON", + "smw_printername_list": "Lista", + "smw_printername_plainlist": "Lista simple", + "smw_printername_ol": "Lista numerate", + "smw_printername_ul": "Lista a punctos", + "smw_printername_table": "Tabella", + "smw_printername_broadtable": "Tabella large", + "smw_printername_template": "Patrono", + "smw_printername_templatefile": "File de patrono", + "smw_printername_rdf": "Exportation in RDF", + "smw_printername_category": "Categoria", + "validator-type-class-SMWParamSource": "texto", + "smw-paramdesc-limit": "Le numero maxime de resultatos a retornar", + "smw-paramdesc-offset": "Le position del prime resultato", + "smw-paramdesc-headers": "Monstrar le capites/nomines de proprietate", + "smw-paramdesc-mainlabel": "Le etiquetta a dar al nomine del pagina principal", + "smw-paramdesc-link": "Monstrar valores como ligamines", + "smw-paramdesc-intro": "Le texto a monstrar ante le resultatos del consulta, si existe", + "smw-paramdesc-outro": "Le texto a monstrar post le resultatos del consulta, si existe", + "smw-paramdesc-default": "Le texto a monstrar si le consulta non produce resultatos", + "smw-paramdesc-sep": "Le separator inter resultatos", + "smw-paramdesc-propsep": "Le separator inter le proprietates de un entrata de resultato", + "smw-paramdesc-valuesep": "Le separator inter le valores de un proprietate de un resultato", + "smw-paramdesc-showsep": "Monstrar separator al initio del file CSV (\"sep=\")", + "smw-paramdesc-distribution": "In loco de presentar tote le valores, contar lor occurrentias, e monstrar istes.", + "smw-paramdesc-distributionsort": "Ordinar le distribution de valores per numero de occurrentias.", + "smw-paramdesc-distributionlimit": "Limitar le distribution de valores al numero de solmente alcun valores.", + "smw-paramdesc-aggregation": "Specifica a que le aggregation debe esser associate", + "smw-paramdesc-template": "Le nomine de un patrono con le qual presentar le impressiones", + "smw-paramdesc-columns": "Le numero de columnas in le quales presentar resultatos", + "smw-paramdesc-userparam": "Un valor passate a cata appello de patrono, si un patrono es usate", + "smw-paramdesc-class": "Un classe CSS additional a definir pro le lista", + "smw-paramdesc-introtemplate": "Le nomine de un patrono a monstrar ante le resultatos del consulta, si existe", + "smw-paramdesc-outrotemplate": "Le nomine de un patrono a monstrar post le resultatos del consulta, si existe", + "smw-paramdesc-embedformat": "Le etiquetta HTML usate pro definir capites", + "smw-paramdesc-embedonly": "Non monstrar capites", + "smw-paramdesc-table-class": "Un classe CSS additional a definir pro le tabella", + "smw-paramdesc-table-transpose": "Monstrar le capites del tabella verticalmente e le resultatos horizontalmente", + "smw-paramdesc-prefix": "Controlar le apparentia del spatio de nomines in impressiones", + "smw-paramdesc-rdfsyntax": "Le syntaxe RDF a usar", + "smw-paramdesc-csv-sep": "Specifica un separator de columnas", + "smw-paramdesc-csv-valuesep": "Specifica un separator de valores", + "smw-paramdesc-csv-merge": "Fusionar le valores de lineas e columnas con un identificator de subjecto identic (i.e. le prime columna)", + "smw-paramdesc-csv-bom": "Adder un BOM (character que Marca le Ordine del Bytes) al initio del file producite", + "smw-paramdesc-dsv-separator": "Le separator a usar", + "smw-paramdesc-dsv-filename": "Le nomine del file DSV", + "smw-paramdesc-filename": "Le nomine del file producite", + "smw-smwdoc-description": "Presenta un tabella de tote le parametros que pote esser usate pro le formato de resultatos specificate, insimul con lor valores predefinite e lor descriptiones.", + "smw-smwdoc-default-no-parameter-list": "Iste formato de resultato non forni parametros specific al formato.", + "smw-smwdoc-par-format": "Le formato de resultatos pro le qual presentar le documentation de parametros.", + "smw-smwdoc-par-parameters": "Le parametros a monstrar: \"specific\" pro illos addite per le formato, \"base\" pro illos disponibile in tote le formatos, e \"all\" pro ambes.", + "smw-paramdesc-sort": "Proprietate per le qual ordinar le consulta", + "smw-paramdesc-order": "Ordinamento del consulta", + "smw-paramdesc-searchlabel": "Texto pro continuar le recerca", + "smw-paramdesc-named_args": "Nominar le parametros passate al patrono", + "smw-paramdesc-template-arguments": "Defini le maniera in que le argumentos nominate es passate al patrono", + "smw-paramdesc-import-annotation": "Altere datos annotate debe esser copiate durante le analyse syntactic del subjecto", + "smw-paramdesc-export": "Option de exportation", + "smw-paramdesc-prettyprint": "Imprimer in disposition plus nette con additional indentationes e saltos de linea", + "smw-paramdesc-json-unescape": "Le output continera barras oblique non escappate e characteres Unicode multibyte", + "smw-paramdesc-json-type": "Typo de serialisation", + "smw-paramdesc-source": "Fonte alternative de consultas", + "smw-paramdesc-jsonsyntax": "Syntaxe JSON a usar", + "smw-printername-feed": "Syndication RSS e Atom", + "smw-paramdesc-feedtype": "Typo de syndication", + "smw-paramdesc-feedtitle": "Le texto a usar como titulo del syndication", + "smw-paramdesc-feeddescription": "Le texto a usar como description del syndication", + "smw-paramdesc-feedpagecontent": "Le contento del pagina a monstrar con le syndication", + "smw-label-feed-description": "Syndication $2 $1", + "smw-paramdesc-mimetype": "Le typo de multimedia (typo MIME) pro le file resultante", + "smw_iq_disabled": "Le consultas semantic ha essite disactivate pro iste wiki.", + "smw_iq_moreresults": "… ulterior resultatos", + "smw_parseerror": "Le valor date non esseva comprendite.", + "smw_decseparator": ",", + "smw_kiloseparator": " ", + "smw_notitle": "\"$1\" non pote esser usate como nomine de pagina in iste wiki.", + "smw_noproperty": "\"$1\" non pote esser usate como nomine de proprietate in iste wiki.", + "smw_wrong_namespace": "Solmente le paginas in le spatio de nomines \"$1\" es permittite hic.", + "smw_manytypes": "Plus de un typo definite pro proprietate.", + "smw_emptystring": "Series de characteres vacue non es acceptate.", + "smw_notinenum": "\"$1\" non es in le lista de [[Property:Allows value|valores permittite]] ($2) pro le proprietate \"$3\".", + "smw-datavalue-constraint-error-allows-value-list": "\"$1\" non es in le lista de [[Property:Allows value|valores permittite]] ($2) pro le proprietate \"$3\".", + "smw-datavalue-constraint-error-allows-value-range": "\"$1\" non es in le intervallo \"$2\" specificate per le restriction de [[Property:Allows value|valores permittite]] del proprietate \"$3\".", + "smw-constraint-error": "Problema de restriction", + "smw-constraint-error-suggestions": "Per favor verifica le violationes e proprietates listate insimul con lor valores annotate pro assecurar que tote le exigentias del restriction es satisfacite.", + "smw-constraint-error-limit": "Le lista continera un maximo de $1 violationes.", + "smw_noboolean": "\"$1\" non es recognoscite como un valor boolean (ver/false).", + "smw_true_words": "ver,v,si,s", + "smw_false_words": "false,f,no,n", + "smw_nofloat": "\"$1\" non es un numero.", + "smw_infinite": "Le numeros tanto grande como \"$1\" non es supportate.", + "smw_unitnotallowed": "\"$1\" non es declarate como unitate de mesura valide pro iste proprietate.", + "smw_nounitsdeclared": "Nulle unitate de mesura ha essite declarate pro iste proprietate.", + "smw_novalues": "Nulle valor specificate.", + "smw_nodatetime": "Le data \"$1\" non esseva comprendite.", + "smw_toomanyclosing": "Il pare haber troppo de occurrentias de \"$1\" in le consulta.", + "smw_noclosingbrackets": "Alcun uso de \"[[\" in tu consulta non esseva claudite per un correspondente \"]]\".", + "smw_misplacedsymbol": "Le symbolo \"$1\" esseva usate in un loco ubi illo non es utile.", + "smw_unexpectedpart": "Le parte \"$1\" del consulta non esseva comprendite.\nLe resultatos pote non esser como expectate.", + "smw_emptysubquery": "Alcun subconsulta ha nulle condition valide.", + "smw_misplacedsubquery": "Alcun subconsulta esseva usate in un loco ubi nulle subconsultas es permittite.", + "smw_valuesubquery": "Le subconsultas non es supportate pro valores del proprietate \"$1\".", + "smw_badqueryatom": "Alcun parte \"[[…]]\" del consulta non esseva comprendite.", + "smw_propvalueproblem": "Le valor del proprietate \"$1\" non esseva comprendite.", + "smw_noqueryfeature": "Alcun functionalitate de consulta non esseva supportate in iste wiki; un parte del consulta ha essite omittite ($1).", + "smw_noconjunctions": "Le conjunctiones in consultas non es supportate in iste wiki; un parte del consulta ha essite ommittite ($1).", + "smw_nodisjunctions": "Le disjunctiones in consultas non es supportate in iste wiki; un parte del consulta ha essite omittite ($1).", + "smw_querytoolarge": "Le sequente {{PLURAL:$2|condition|conditiones}} de consulta non poteva esser considerate a causa del restrictiones de iste wiki concernente le grandor o profunditate del consultas: $1.", + "smw_notemplategiven": "Forni un valor pro le parametro \"template\" pro facer functionar iste formato de consulta.", + "smw_db_sparqlqueryproblem": "Le resultato del consulta non poteva esser obtenite del base de datos SPARQL. Iste error pote esser temporari o pote indicar un defecto in le software del base de datos.", + "smw_db_sparqlqueryincomplete": "Responder al consulta provava troppo difficile e ha essite abortate. Alcun resultatos pote mancar. Si possibile, tenta usar un consulta plus simple.", + "smw_type_header": "Proprietates del typo \"$1\"", + "smw_typearticlecount": "Presentation de $1 {{PLURAL:$1|proprietate|proprietates}} que usa iste typo.", + "smw_attribute_header": "Paginas que usa le proprietate \"$1\"", + "smw_attributearticlecount": "Presentation de $1 {{PLURAL:$1|pagina|paginas}} que usa iste proprietate.", + "smw-propertylist-subproperty-header": "Subproprietates", + "smw-propertylist-redirect-header": "Synonymos", + "smw-propertylist-error-header": "Paginas con assignationes improprie", + "smw-propertylist-count": "Es monstrate $1 {{PLURAL:$1|entitate|entitates}} associate.", + "smw-propertylist-count-with-restricted-note": "Es monstrate $1 {{PLURAL:$1|entitate|entitates}} associate (il ha plus, ma le presentation es limitate a \"$2\").", + "smw-propertylist-count-more-available": "Es monstrate $1 {{PLURAL:$1|entitate|entitates}} associate (il ha alteres disponibile).", + "specialpages-group-smw_group": "MediaWiki semantic", + "specialpages-group-smw_group-maintenance": "Mantenentia", + "specialpages-group-smw_group-properties-concepts-types": "Proprietates, conceptos e typos", + "specialpages-group-smw_group-search": "Navigar e cercar", + "exportrdf": "Exportar paginas verso RDF", + "smw_exportrdf_docu": "Iste pagina permitte obtener le datos de un pagina in formato RDF.\nPro exportar paginas, entra le titulos in le quadro de texto in basso, un titulo per linea.", + "smw_exportrdf_recursive": "Exportar recursivemente tote le paginas associate.\nNota que le resultato pote esser grande!", + "smw_exportrdf_backlinks": "Exportar equalmente tote le paginas con referentias al paginas exportate.\nGenera un RDF navigabile.", + "smw_exportrdf_lastdate": "Non exportar paginas que non esseva cambiate post le momento specificate.", + "smw_exportrdf_submit": "Exportar", + "uriresolver": "Resolvitor de URI", + "properties": "Proprietates", + "smw-categories": "Categorias", + "smw_properties_docu": "Le sequente proprietates es usate in le wiki.", + "smw_property_template": "$1 del typo $2 ($3 {{PLURAL:$3|uso|usos}})", + "smw_propertylackspage": "Tote le proprietates debe esser describite per un pagina!", + "smw_propertylackstype": "Nulle typo esseva specificate pro iste proprietate (es assumite le typo $1 pro le momento).", + "smw_propertyhardlyused": "Iste proprietate es a pena usate in iste wiki!", + "smw-property-name-invalid": "Le proprietate $1 non pote esser usate (nomine de proprietate invalide).", + "smw-property-name-reserved": "\"$1\" es listate como nomine reservate e non debe esser usate como proprietate. Iste [https://www.semantic-mediawiki.org/wiki/Help:Property_naming pagina de adjuta] pote continer information explicante proque iste nomine ha essite reservate.", + "smw-sp-property-searchform": "Monstrar proprietates que contine:", + "smw-sp-property-searchform-inputinfo": "Le entrata distingue inter majusculas e minusculas. Quando usate pro filtration, solmente le proprietates que corresponde al condition es monstrate.", + "smw-special-property-searchform": "Monstrar proprietates que contine:", + "smw-special-property-searchform-inputinfo": "Le entrata distingue inter majusculas e minusculas. Quando usate pro filtration, solmente le proprietates que corresponde al condition es monstrate.", + "smw-special-property-searchform-options": "Optiones", + "smw-special-wantedproperties-filter-label": "Filtro:", + "smw-special-wantedproperties-filter-none": "Nulle", + "smw-special-wantedproperties-filter-unapproved": "Non approbate", + "smw-special-wantedproperties-filter-unapproved-desc": "Option de filtrage usate in connexion con le modo de autoritate.", + "concepts": "Conceptos", + "smw-special-concept-docu": "Un [https://www.semantic-mediawiki.org/wiki/Help:Concepts concept] pote esser reguardate como \"categoria dynamic\", i.e. como collection de paginas que non es create manualmente, ma que es computate per Semantic MediaWiki a partir de un description de un consulta fornite.", + "smw-special-concept-header": "Lista de conceptos", + "smw-special-concept-count": "Le sequente {{PLURAL:$1|concepto|$1 conceptos}} es listate.", + "smw-special-concept-empty": "Nulle concepto trovate.", + "unusedproperties": "Proprietates non usate", + "smw-unusedproperties-docu": "Iste pagina lista le [https://www.semantic-mediawiki.org/wiki/Unused_properties proprietates non usate] que es declarate ben que nulle altere pagina los utilisa. Pro un vista differentiate, vide le paginas [[Special:Properties|tote le proprietates]] o [[Special:WantedProperties|proprietates desirate]].", + "smw-unusedproperty-template": "$1 del typo $2", + "wantedproperties": "Proprietates desirate", + "smw-wantedproperties-docu": "Iste pagina lista le [https://www.semantic-mediawiki.org/wiki/Wanted_properties proprietates desirate] que es usate in le wiki ma que non ha un pagina que los describe. Pro un vista differentiate, vide le paginas [[Special:Properties|tote le proprietates]] o [[Special:UnusedProperties|proprietates non usate]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|uso|usos}})", + "smw-special-wantedproperties-docu": "Iste pagina lista le [https://www.semantic-mediawiki.org/wiki/Wanted_properties proprietates desirate] que es usate in le wiki ma non ha un pagina que los describe. Pro un vista differentiate, vide le paginas special listante [[Special:Properties|tote le proprietates]] o le [[Special:UnusedProperties|proprietates non usate]].", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|uso|usos}})", + "smw_purge": "Refrescar", + "smw-purge-update-dependencies": "Semantic MediaWiki purga le pagina actual a causa de alcun dependentias obsolete que illo ha detegite, que necessita un actualisation.", + "smw-purge-failed": "Semantic MediaWiki ha tentate a purgar le pagina ma ha fallite", + "types": "Typos", + "smw_types_docu": "Lista del [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes typos de datos disponibile] in que cata [https://www.semantic-mediawiki.org/wiki/Help:Datatype typo] representa un insimul unic de attributos pro describer un valor in terminos de characteristicas de immagazinage e visualisation que se heredita in un proprietate assignate.", + "smw-special-types-no-such-type": "\"$1\" es incognite o non ha essite specificate como typo de datos valide.", + "smw-statistics": "Statisticas semantic", + "smw-statistics-cached": "Statisticas semantic (in cache)", + "smw-statistics-entities-total": "Entitates (total)", + "smw-statistics-entities-total-info": "Un numero approximative de lineas de entitates. Illo include proprietates, conceptos, o qualcunque altere representation de objecto registrate que require le assignation de un identificator.", + "smw-statistics-property-instance": "Valor{{PLURAL:$1||es}} de proprietate (total)", + "smw-statistics-property-total": "[[Special:Properties|Proprietate{{PLURAL:$1||s}}]] (total)", + "smw-statistics-property-total-info": "Le total de proprietates registrate.", + "smw-statistics-property-total-legacy": "Proprietate{{PLURAL:$1||s}} (total)", + "smw-statistics-property-used": "Proprietate{{PLURAL:$1||s}} (usate con al minus un valor)", + "smw-statistics-property-page": "Proprietate{{PLURAL:$1||s}} (registrate con un pagina)", + "smw-statistics-property-page-info": "Numero de proprietates que ha un pagina dedicate e un description.", + "smw-statistics-property-type": "Proprietate{{PLURAL:$1||s}} (assignate a un typo de datos)", + "smw-statistics-query-inline-legacy": "Consulta{{PLURAL:$1||s}}", + "smw-statistics-query-inline": "[[Property:Has query|Consulta{{PLURAL:$1||s}}]] (incastrate, total)", + "smw-statistics-query-format": "formato $1", + "smw-statistics-query-size": "Dimension del consulta", + "smw-statistics-concept-count-legacy": "Concepto{{PLURAL:$1||s}}", + "smw-statistics-concept-count": "[[Special:Concepts|Concepto{{PLURAL:$1||s}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|Subobjecto{{PLURAL:$1||s}}]]", + "smw-statistics-subobject-count-legacy": "Subobjecto{{PLURAL:$1||s}}", + "smw-statistics-datatype-count": "[[Special:Types|Typo{{PLURAL:$1||s}} de datos]]", + "smw-statistics-error-count": "Valor{{PLURAL:$1||es}} de proprietate ([[Special:ProcessingErrorList|annotation{{PLURAL:$1||es}} incorrecte]])", + "smw-statistics-error-count-legacy": "Valor{{PLURAL:$1||es}} de proprietate (annotation{{PLURAL:$1||es}} incorrecte)", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities Entitate{{PLURAL:$1||s}} obsolete]", + "smw-statistics-delete-count-info": "Entitates que ha essite marcate pro remotion debe esser eliminate regularmente usante le scripts de mantenentia fornite.", + "smw_uri_doc": "Le resolvitor de URL implementa le [$1 conclusion del Gruppo de Architectura Technic del W3C a proposito de httpRange-14].\nIllo assecura le livration de un representation in RDF (pro machinas) o un pagina wiki (pro humanos), dependente del requesta.", + "ask": "Recerca semantic", + "smw-ask-help": "Iste section contine alcun ligamines pro adjutar a explicar como usar le syntaxe #ask:\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Seliger paginas] describe como seliger paginas e construer conditiones;\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Operatores de recerca] lista le operatores de recerca disponibile, includente illos pro consultas que usa intervallos o metacharacteres;\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Monstrar information] explica le uso de declarationes de sortita e optiones de formatation.", + "smw_ask_sortby": "Ordinar per columna (optional)", + "smw_ask_ascorder": "Ascendente", + "smw_ask_descorder": "Descendente", + "smw-ask-order-rand": "Aleatori", + "smw_ask_submit": "Cercar resultatos", + "smw_ask_editquery": "Modificar consulta", + "smw_add_sortcondition": "[Adder condition de ordinamento]", + "smw-ask-sort-add-action": "Adder condition de ordinamento", + "smw_ask_hidequery": "Celar consulta (vista compacte)", + "smw_ask_help": "Adjuta sur consultas", + "smw_ask_queryhead": "Condition", + "smw_ask_printhead": "Selection de datos a monstrar", + "smw_ask_printdesc": "(adde un nomine de proprietate per linea)", + "smw_ask_format_as": "Formatar in:", + "smw_ask_defaultformat": "predefinition", + "smw_ask_otheroptions": "Altere optiones", + "smw-ask-otheroptions-info": "Iste section contine optiones que altera declarationes de sortita. Le descriptiones de parametros pote esser vidite passante le mouse supra illos.", + "smw-ask-otheroptions-collapsed-info": "Per favor usa le icone de plus (+) pro vider tote le optiones disponibile", + "smw_ask_show_embed": "Revelar codice de incastrar", + "smw_ask_hide_embed": "Celar codice de incastrar", + "smw_ask_embed_instr": "Pro incastrar iste consulta in linea in un pagina wiki usa le codice sequente.", + "smw-ask-delete": "Remover", + "smw-ask-sorting": "Ordinamento", + "smw-ask-options": "Optiones", + "smw-ask-options-sort": "Optiones de ordinamento", + "smw-ask-format-options": "Formato e optiones", + "smw-ask-parameters": "Parametros", + "smw-ask-search": "Recerca", + "smw-ask-debug": "Analysar problema", + "smw-ask-debug-desc": "Genera information de depuration de consultas", + "smw-ask-no-cache": "Disactivar cache de consultas", + "smw-ask-no-cache-desc": "Resultatos sin cache de consultas", + "smw-ask-result": "Resultato", + "smw-ask-empty": "Rader tote le entratas", + "smw-ask-download-link-desc": "Discargar le resultatos del consulta in formato $1", + "smw-ask-format": "Formato", + "smw-ask-format-selection-help": "Adjuta con le formato seligite: $1", + "smw-ask-condition-change-info": "Le condition ha essite alterate e le motor de recerca debe re-executar le consulta pro producer resultatos que corresponde al nove requisitos.", + "smw-ask-input-assistance": "Assistentia de entrata", + "smw-ask-condition-input-assistance": "Le [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance assistentia de entrata] es fornite pro le campos de impression, ordinamento e condition. Le campo de condition require un del prefixos sequente:", + "smw-ask-condition-input-assistance-property": "p: pro obtener suggestiones de proprietate (p.ex. [[p:Has ...)", + "smw-ask-condition-input-assistance-category": "c: pro obtener suggestiones de categoria", + "smw-ask-condition-input-assistance-concept": "con: pro obtener suggestiones de concepto", + "smw-ask-format-change-info": "Le formato ha essite modificate e le consulta debe esser executate de novo pro corresponder al nove parametros e optiones de visualisation.", + "smw-ask-format-export-info": "Le formato seligite es un formato de exportation que non ha representation visual, pro isto le resultatos es solmente fornite como discargamento.", + "smw-ask-query-search-info": "Le consulta $1 ha essite respondite per le {{PLURAL:$3|1=$2 (ab cache)|$2 (ab cache)|$2}} in $4 secunda{{PLURAL:$4||s}}.", + "smw-ask-extra-query-log": "Registro de consultas", + "smw-ask-extra-other": "Altere", + "searchbyproperty": "Cercar per proprietate", + "processingerrorlist": "Lista de errores de processamento", + "constrainterrorlist": "Lista de errores de restriction", + "propertylabelsimilarity": "Reporto de similaritates de etiquettas de proprietate", + "missingredirectannotations": "Annotationes de redirection mancante", + "smw-processingerrorlist-intro": "Le lista sequente forni un vista general sur le [https://www.semantic-mediawiki.org/wiki/Processing_errors errores de processamento] que ha apparite in connexion con [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. Es recommendate surveliar iste lista regularmente e corriger annotationes de valor invalide.", + "smw-constrainterrorlist-intro": "Le lista sequente forni un vista general sur le [https://www.semantic-mediawiki.org/wiki/Constraint_errors errores de restriction] que ha apparite in connexion con [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. Es recommendate surveliar iste lista regularmente e corriger annotationes de valor invalide.", + "smw-missingredirects-intro": "Le sequente section listara paginas in le quales manca annotationes de [https://www.semantic-mediawiki.org/wiki/Redirects redirection] in Semantic MediaWiki (comparante con information immagazinate in MediaWiki). Pro restaurar iste annotationes, tu pote [https://www.semantic-mediawiki.org/wiki/Help:Purge purgar] le pagina manualmente o exequer le script de mantenentia rebuildData.php (con option --redirects).", + "smw-missingredirects-list": "Paginas con annotationes mancante", + "smw-missingredirects-list-intro": "Appare $1 pagina{{PLURAL:$1||s}} con annotationes de redirection mancante.", + "smw-missingredirects-noresult": "Necun annotation de redirection mancante trovate.", + "smw_sbv_docu": "Cercar tote le paginas que ha un proprietate e valor date.", + "smw_sbv_novalue": "Entra un valor valide pro le proprietate, o vide tote le valores possibile del proprietate \"$1\".", + "smw_sbv_displayresultfuzzy": "Un lista de tote le paginas que ha le proprietate \"$1\" con valor \"$2\".\nPost que il ha pauc resultatos, le valores proxime es equalmente monstrate.", + "smw_sbv_property": "Proprietate:", + "smw_sbv_value": "Valor:", + "smw_sbv_submit": "Cercar resultatos", + "browse": "Percurrer le wiki", + "smw_browselink": "Percurrer proprietates", + "smw_browse_article": "Entra le nomine del pagina ab le qual tu vole initiar le exploration.", + "smw_browse_go": "Va", + "smw_browse_show_incoming": "Monstrar proprietates entrante", + "smw_browse_hide_incoming": "Celar proprietates entrante", + "smw_browse_no_outgoing": "Iste pagina non ha proprietates.", + "smw_browse_no_incoming": "Nulle proprietate ha un ligamine a iste pagina.", + "smw-browse-from-backend": "Le information es in curso de recuperation del servitor.", + "smw-browse-intro": "Iste pagina forni detalios sur un subjecto o un instantia de entitate. Per favor entra le nomine de un objecto a inspectar.", + "smw-browse-invalid-subject": "Le validation del subjecto ha retornate con un error \"$1\".", + "smw-browse-api-subject-serialization-invalid": "Le subjecto ha un formato de serialisation non valide.", + "smw-browse-js-disabled": "Pare que JavaScript es disactivate o indisponibile. Es recommendate usar un navigator que lo supporta. Altere optiones es discutite sur le pagina del parametro de configuration [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Monstrar gruppos", + "smw-browse-hide-group": "Celar gruppos", + "smw-noscript": "Iste pagina o action require JavaScript pro functionar. Per favor activa JavaScript in tu navigator o usa un navigator que lo supporta, de sorta que le functionalitate pote esser fornite como demandate. Pro ulterior assistentia, per favor consulta le pagina de adjuta [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript].", + "smw_inverse_label_default": "$1 de", + "smw_inverse_label_property": "Etiquetta de proprietate inverse", + "pageproperty": "Recerca de proprietates de paginas", + "pendingtasklist": "Lista de cargas pendente", + "facetedsearch": "Recerca in faciettas", + "smw_pp_docu": "Entra un pagina e un proprietate, o entra solmente un proprietate pro obtener tote le valores assignate.", + "smw_pp_from": "Del pagina:", + "smw_pp_type": "Proprietate:", + "smw_pp_submit": "Cercar resultatos", + "smw-prev": "$1 {{PLURAL:$1|precedente|precedentes}}", + "smw-next": "$1 {{PLURAL:$1|sequente|sequentes}}", + "smw_result_prev": "Precedente", + "smw_result_next": "Sequente", + "smw_result_results": "Resultatos", + "smw_result_noresults": "Nulle resultato.", + "smwadmin": "Tabuliero de instrumentos pro Semantic MediaWiki", + "smw-admin-statistics-job-title": "Statisticas de travalios", + "smw-admin-statistics-job-docu": "Le statisticas de travalios monstra information sur le travalios programmate de Semantic MediaWiki que non ha ancora essite exequite. Le numero de travalios pote esser legiermente inexacte o continer tentativas fallite. Per favor consulta le [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue manual] pro ulterior informationes.", + "smw-admin-statistics-querycache-title": "Cache de consultas", + "smw-admin-statistics-querycache-disabled": "Le [https://www.semantic-mediawiki.org/wiki/QueryCache cache de consultas] non ha essite activate sur iste wiki, e pro isto nulle statisticas es disponibile.", + "smw-admin-statistics-querycache-legend": "Le statisticas del cache debe continer datos provisional cumulative e derivate, includente:\n* \"misses\" es le total de tentativas de obtener datos del cache con responsas inattingibile, fortiante un recuperation directe del repositorio (base de datos, triple-store, etc.)\n* \"deletes\" es le numero total de operationes de eviction del cache (sia per medio de un purga, sia per un dependentia de consulta)\n* \"hits\" contine le numero de recuperationes del cache de fontes incastrate (consultas appellate a partir de un pagina wiki) o non incastrate (si activate, requestate per paginas como Special:Ask o per le API)\n* \"medianRetrievalResponseTime\" es un valor de orientation del tempore de responsa median (in secundas) pro requestas de recuperation del cache e non del cache durante le tempore del processo de collection\n* \"noCache\" indica le numero de requestas sin tentativa de obtener resultatos del cache (consultas limit=0, option 'no-cache' etc.)", + "smw-admin-statistics-section-explain": "Le section forni statisticas additional pro administratores.", + "smw-admin-statistics-semanticdata-overview": "Vista general", + "smw-admin-permission-missing": "Le accesso a iste pagina ha essite blocate a causa de permissiones mancante. Per favor consulta le pagina de adjuta sur le [https://www.semantic-mediawiki.org/wiki/Help:Permissions permissiones] pro detalios sur le configurationes necessari.", + "smw-admin-setupsuccess": "Le motor de immagazinage ha essite configurate.", + "smw_smwadmin_return": "Retornar a $1", + "smw_smwadmin_updatestarted": "Un nove processo de actualisation pro le refrescamento del datos semantic ha essite comenciate.\nTote le datos immagazinate essera reconstruite o reparate ubi necessari.\nTu pote sequer le progresso del actualisation in iste pagina special.", + "smw_smwadmin_updatenotstarted": "Il ha jam un processo de actualisation in curso.\nNon es possibile crear un altere.", + "smw_smwadmin_updatestopped": "Tote le processos de actualisation existente ha essite stoppate.", + "smw_smwadmin_updatenotstopped": "Pro stoppar le processo de actualisation in curso, tu debe marcar le quadrato pro indicar que tu es absolutemente secur de voler facer isto.", + "smw-admin-docu": "Iste pagina special te adjuta durante le installation, actualisation, mantenentia e uso de Semantic MediaWiki e forni anque altere functionalitate administrative assi como statisticas.\nNon oblida de facer un copia de reserva del datos importante ante de executar functiones administrative.", + "smw-admin-environment": "Ambiente de software", + "smw-admin-db": "Configuration del base de datos", + "smw-admin-db-preparation": "Le initialisation del tabella es in curso e pote prender un momento ante que le resultatos es monstrate, dependente del dimension e del possibile optimisationes del tabella.", + "smw-admin-dbdocu": "Semantic MediaWiki require su proprie structura del base de datos pro immagazinar le datos semantic. (Iste structura es independente de MediaWiki, dunque non affecta le resto del installation.)\nIste function de installation pote esser executate plure vices sin causar damno, ma es necessari solmente un vice post cata installation o actualisation.", + "smw-admin-permissionswarn": "Si le operation falle con errores SQL, le usator del base de datos que tu wiki usa (verifica tu file \"LocalSettings.php\") probabilemente non ha permissiones sufficiente.\nO concede a iste usator le permissiones additional de crear e deler tabellas, o insere temporarimente in le file \"LocalSettings.php\" le credentiales pro accesso \"root\" a tu base de datos, o usa le script de mantenentia setupStore.php, le qual pote usar le credentiales de un administrator.", + "smw-admin-dbbutton": "Initialisar o actualisar tabellas", + "smw-admin-announce": "Annunciar tu wiki", + "smw-admin-announce-text": "Si tu wiki es public, tu pote registrar lo sur WikiApiary, le wiki de traciamento de wikis.", + "smw-admin-deprecation-notice-title": "Avisos de obsolescentia", + "smw-admin-deprecation-notice-docu": "Le sequente section contine parametros que ha essite declarate obsolescente o eliminate, ma que ha essite detegite como active sur iste wiki. Es previste que un version futur removera le supporto de iste configurationes.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] es obsolescente e essera removite in $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] removera (o reimplaciara) le sequente option{{PLURAL:$2||es}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 es obsolescente e essera removite in $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] ha essite reimplaciate per [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] ha essite reimplaciate per $2", + "smw-admin-deprecation-notice-config-replacement-option": "Option{{PLURAL:$2||es}} pro [https://www.semantic-mediawiki.org/wiki/Help:$1 $1]:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 es reimplciate per $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] ha essite removite in $2", + "smw-admin-deprecation-notice-title-notice": "Parametros obsolescente", + "smw-admin-deprecation-notice-title-notice-explanation": "Parametros obsolescente monstra parametros que ha essite detegite como usate sur iste wiki e que essera removite o cambiate in un version futur.", + "smw-admin-deprecation-notice-title-replacement": "Parametros reimplaciate o renominate", + "smw-admin-deprecation-notice-title-replacement-explanation": "Parametros reimplaciate o renominate contine parametros que ha essite renominate o alteremente modificate e es recommendate actualisar immediatemente lor nomine o formato.", + "smw-admin-deprecation-notice-title-removal": "Parametros removite", + "smw-admin-deprecation-notice-title-removal-explanation": "Parametros removite identifica le parametros que ha essite removite in un version anterior, ma que ha essite detegite como usate sur iste wiki.", + "smw-admin-deprecation-notice-section-legend": "Legenda", + "smw-smwadmin-refresh-title": "Reparation e actualisation de datos", + "smw_smwadmin_datarefresh": "Reconstruction de datos", + "smw_smwadmin_datarefreshdocu": "Es possibile restaurar tote le datos de Semantic MediaWiki a base del conento actual del wiki.\nIsto pote esser utile pro reparar datos corrumpite o pro refrescar le datos si le formato interne ha cambiate a causa de alcun actualisation de software.\nLe actualisation es executate pagina a pagina e non essera completate immediatemente.\nLo sequente monstra si un actualisation es in progresso e permitte comenciar o stoppar le actualisationes (a minus que iste function ha essite disactivate per le administrator del sito).", + "smw_smwadmin_datarefreshprogress": "Un actualisation es ja in curso.\nEs normal que le actualisation progrede lentemente post que illo refresca datos solmente in micre pecias cata vice que un usator accede al wiki.\nPro completar iste actualisation plus rapidemente, tu pote invocar le script de mantenentia de MediaWiki runJobs.php (usa le option --maxjobs 1000 pro restringer le numero de actualisationes facite in un lot).\nProgresso estimate del actualisation currente:", + "smw_smwadmin_datarefreshbutton": "Planificar le reconstruction del datos", + "smw_smwadmin_datarefreshstop": "Stoppar iste actualisation", + "smw_smwadmin_datarefreshstopconfirm": "Si, io es {{GENDER:$1|secur}}.", + "smw-admin-job-scheduler-note": "Le cargas (illos que es activate) in iste section es realisate via le cauda de actiones pro evitar situationes de blocage durante lor execution. Le [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cauda de actiones] es responsabile del processamento e il es de importantia critic que le script de mantenentia runJobs.php ha un capacitate appropriate (vide etiam le parametro de configuration $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "Elimination de entitates obsolete", + "smw-admin-outdateddisposal-intro": "Alcun activitates (un cambio de un typo de proprietate, le remotion de paginas wiki, o le correction de valores erronee) resultara in [https://www.semantic-mediawiki.org/wiki/Outdated_entities entitates obsolete] e es recommendate remover los periodicamente pro liberar le spatio occupate per lor tabellas.", + "smw-admin-outdateddisposal-active": "Un travalio de elimination de entitates obsolete ha essite programmate.", + "smw-admin-outdateddisposal-button": "Programmar elimination", + "smw-admin-feature-disabled": "Iste function ha essite disactivate sur iste wiki. Per favor consulta le pagina de adjuta sur le parametros o contacta le administrator del systema.", + "smw-admin-propertystatistics-title": "Reconstruction del statisticas de proprietates", + "smw-admin-propertystatistics-intro": "Reconstrue tote le statisticas de uso de proprietates e actualisa e corrige le [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count contator de usos] de proprietates.", + "smw-admin-propertystatistics-active": "Un travalio de reconstruction del statisticas de proprietates ha essite programmate.", + "smw-admin-propertystatistics-button": "Programmar reconstruction del statisticas", + "smw-admin-fulltext-title": "Reconstruction del recerca de texto complete", + "smw-admin-fulltext-intro": "Reconstrue le indice de recerca a partir de tabellas de proprietates con un typo de datos de [https://www.semantic-mediawiki.org/wiki/Full-text recerca de texto complete] activate. Cambiamentos in le regulas del indice (cambiamentos de parolas non significative, un lemmatisator nove, etc.) e/o un tabella novemente addite o alterate necessita exequer iste travalio de novo.", + "smw-admin-fulltext-active": "Un travalio de reconstruction del recerca de texto complete ha essite programmate.", + "smw-admin-fulltext-button": "Programmar reconstruction del recerca de texto complete", + "smw-admin-support": "Obtener supporto", + "smw-admin-supportdocu": "Plure ressources es disponibile pro adjutar te in caso de problemas:", + "smw-admin-installfile": "Si tu incontra problemas con tu installation, comencia per verificar le directivas in le file INSTALL e le pagina de installation.", + "smw-admin-smwhomepage": "Le documentation de usator complete de Semantic MediaWiki se trova a semantic-mediawiki.org.", + "smw-admin-bugsreport": "Defectos pote esser reportate in le traciator de problemas. Le pagina signalar problemas explica como reportar un problema de maniera effective.", + "smw-admin-questions": "Si tu ha altere questiones o suggestiones, participa al lista de discussion pro le usatores de Semantic MediaWiki.", + "smw-admin-other-functions": "Altere functiones", + "smw-admin-statistics-extra": "Functiones statistic", + "smw-admin-statistics": "Statisticas", + "smw-admin-supplementary-section-title": "Functiones supplementari", + "smw-admin-supplementary-section-subtitle": "Functiones central supportate", + "smw-admin-supplementary-section-intro": "Iste section forni functiones additional ultra le ambito de activitates de mantenentia e il es possibile que alcun functiones que es listate (vide le [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions documentation]) es restricte o indisponibile e pro isto inaccessibile sur iste wiki.", + "smw-admin-supplementary-settings-title": "Configuration e parametros", + "smw-admin-supplementary-settings-intro": "$1 monstra parametros que defini le comportamento de Semantic MediaWiki", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Statisticas operational", + "smw-admin-supplementary-operational-statistics-short-title": "statisticas operational", + "smw-admin-supplementary-operational-statistics-intro": "Monstra un insimul extendite de $1", + "smw-admin-supplementary-idlookup-title": "Recerca e elimination de entitates", + "smw-admin-supplementary-idlookup-short-title": "recerca e elimination de entitates", + "smw-admin-supplementary-idlookup-intro": "Supporta un function simple de $1", + "smw-admin-supplementary-duplookup-title": "Recerca de entitates duplicate", + "smw-admin-supplementary-duplookup-intro": "$1 pro trovar entitates que es categorisate como duplicatos pro le matrice de tabellas seligite", + "smw-admin-supplementary-duplookup-docu": "Iste pagina lista entratas de tabellas selecte que ha essite categorisate como [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities duplicatos]. Entratas duplicate (si occurre del toto) debe occurrer solmente in occasiones rar, potentialmente causate per un actualisation interrumpite o un transaction de revocation (''rollback'') non succedite.", + "smw-admin-supplementary-operational-statistics-cache-title": "Statisticas del cache", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 monstra un insimul selecte de statisticas concernente le cache", + "smw-admin-supplementary-operational-table-statistics-title": "Statisticas de tabellas", + "smw-admin-supplementary-operational-table-statistics-short-title": "statisticas de tabellas", + "smw-admin-supplementary-operational-table-statistics-intro": "Genera $1 pro un insimul seligite de tabellas", + "smw-admin-supplementary-operational-table-statistics-explain": "Iste section contine statisticas de tabellas selecte pro adjutar administratores e curatores de datos a prender decisiones informate sur le stato del servitor e del motor de immagazinage.", + "smw-admin-supplementary-operational-table-statistics-legend": "Le legenda describe alcunes del claves usate pro le statisticas de tabellas e include:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count numero total de lineas in un tabella", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id le ultime identificator actualmente in uso\n* duplicate_count numero de duplicatos trovate in le id_table (vide etiam [[Special:SemanticMediaWiki/duplicate-lookup|Recerca de entitates duplicate]])\n* rows.rev_count numero de lineas que ha un revision_id assignate, indicante un ligamine directe a un pagina wiki\n* rows.smw_namespace_group_by_count numeros de lineas aggregate pro spatios de nomines usate in le tabella\n* rows.smw_proptable_hash.query_match_count numero de subobjectos de consulta con un referentia de tabella correspondente\n* rows.smw_proptable_hash.query_null_count numero de subobjectos de consulta sin referentia de tabella (disligate, referentia flottante)", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent percentage de terminos que es unic (un percentage basse indica que terminos repetitive occupa le contento de tabella e indice)\n* rows.terms_occurrence.single_occurrence_total_count numero de terminos que appare solmente un vice\n* rows.terms_occurrence.multi_occurrence_total_count numero de terminos que appare plus de un vice", + "smw-admin-supplementary-elastic-version-info": "Version", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 monstra detalios sur parametros e statisticas de indice", + "smw-admin-supplementary-elastic-docu": "Iste pagina contine informationes sur parametros, mappamentos, sanitate, e statisticas de indice associate a un racemo Elasticsearch connectite a Semantic MediaWiki e su [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Functiones supportate", + "smw-admin-supplementary-elastic-settings-title": "Parametros (indices)", + "smw-admin-supplementary-elastic-settings-intro": "$1 usate per Elasticsearch pro gerer indices de Semantic MediaWiki", + "smw-admin-supplementary-elastic-mappings-title": "Mappamentos", + "smw-admin-supplementary-elastic-mappings-intro": "$1 pro listar indices e mappamentos de campos", + "smw-admin-supplementary-elastic-mappings-docu": "Iste pagina contine detalios de mappamento de campos usate per le indice actual. Es recommendate surveliar le mappamentos in connexion con le index.mapping.total_fields.limit (specifica le numero maxime de campos permittite in un indice).", + "smw-admin-supplementary-elastic-mappings-docu-extra": "Le property_fields se refere al numero de campos central indexate, e le nested_fields se refere al numero accumulate de campos additional assignate a un campo central pro supportar patronos de recerca structurate specific.", + "smw-admin-supplementary-elastic-mappings-summary": "Summario", + "smw-admin-supplementary-elastic-mappings-fields": "Mappamentos de campos", + "smw-admin-supplementary-elastic-nodes-title": "Nodos", + "smw-admin-supplementary-elastic-nodes-intro": "$1 monstra statisticas de nodos", + "smw-admin-supplementary-elastic-indices-title": "Indices", + "smw-admin-supplementary-elastic-indices-intro": "$1 forni un vista general de indices disponibile e lor statisticas", + "smw-admin-supplementary-elastic-statistics-title": "Statisticas", + "smw-admin-supplementary-elastic-statistics-intro": "$1 monstra statisticas a nivello de indice", + "smw-admin-supplementary-elastic-statistics-docu": "Iste pagina forni un vision del statisticas de indices pro differente operationes que occurre a un nivello de indice, le statisticas retornate es aggregate con aggregationes primari e total. Le [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html pagina de adjuta] contine un description detaliate de statisticas de indices disponibile.", + "smw-admin-supplementary-elastic-status-replication": "Stato de replication", + "smw-admin-supplementary-elastic-status-last-active-replication": "Ultime replication active: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Intervallo de refrescamento: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Travalios de recuperation pendente: $1 (estimation)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Travalios de ingestion (de files) pendente: $1 (estimation)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Replication blocate: $1 (reconstruction in curso)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Surveliantia de replication (active): $1", + "smw-admin-supplementary-elastic-replication-header-title": "Stato de replication", + "smw-admin-supplementary-elastic-replication-function-title": "Replication", + "smw-admin-supplementary-elastic-replication-intro": "$1 monstra information sur replicationes fallite", + "smw-admin-supplementary-elastic-replication-docu": "Iste pagina forni information sur le [https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring stato de replication] de entitates que ha essite reportate de haber problemas con le racemo Elasticsearch. Es recommendate revider le entitates listate e purgar le contento pro confirmar que se tractava de un problema temporari.", + "smw-admin-supplementary-elastic-replication-files-docu": "Debe esser notate que, pro le lista de files, es obligatori que le travalio de [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion ingestion de files] se executa primo e conclude su processamento.", + "smw-admin-supplementary-elastic-replication-files": "Files", + "smw-admin-supplementary-elastic-replication-pages": "Paginas", + "smw-admin-supplementary-elastic-endpoints": "Punctos final", + "smw-admin-supplementary-elastic-config": "Configurationes", + "smw-admin-supplementary-elastic-no-connection": "Le wiki es actualmente '''incapace''' de establir un connexion con le racemo Elasticsearch. Per favor contacta le administrator del wiki pro investigar le problema, perque illo rende indisponibile le capacitate de indexation e de recerca del systema.", + "smw-list-count": "Le lista contine $1 entrata{{PLURAL:$1||s}}.", + "smw-property-label-uniqueness": "Le etiquetta \"$1\" coincideva con al minus un altere representation de proprietate. Per favor consulta le [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness pagina de adjuta] sur como resolver iste problema.", + "smw-property-label-similarity-title": "Reporto de similaritates de etiquettas de proprietate", + "smw-property-label-similarity-intro": "$1 calcula similaritates pro etiquettas existente de proprietates", + "smw-property-label-similarity-threshold": "Limine:", + "smw-property-label-similarity-type": "Monstrar identificator de typo", + "smw-property-label-similarity-noresult": "Nulle resultato ha essite trovate pro le optiones seligite.", + "smw-property-label-similarity-docu": "Iste pagina comparara le [https://www.semantic-mediawiki.org/wiki/Property_similarity distantia de similaritate] (non confunder con un similaritate semantic o lexical) inter etiquettas de proprietate e los reporta si illos excede le limine. Le reporto pote adjutar a filtrar proprietates mal orthographiate o equivalente que representa le mesme concepto (vide le pagina special [[Special:Properties|proprietates]] pro adjutar a clarificar le concepto e uso del proprietates reportate). Le limine pote esser adjustate pro augmentar o reducer le distantia usate pro le correspondentia per approximation. [[Property:$1|$1]] es usate pro exemptar proprietates del analyse.", + "smw-admin-operational-statistics": "Iste pagina contine statisticas operational colligite in o ab functiones de Semantic MediaWiki. Un lista extendite de statisticas specific de wikis pote esser trovate [[Special:Statistics|hic]].", + "smw_adminlinks_datastructure": "Structura de datos", + "smw_adminlinks_displayingdata": "Monstrar datos", + "smw_adminlinks_inlinequerieshelp": "Adjuta sur consultas integrate", + "smw-page-indicator-usage-count": "[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count Numero de usos] estimate: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "Proprietate definite per le {{PLURAL:$1|usator|systema}}", + "smw-property-indicator-last-count-update": "Numero estimate de usos\nUltime actualisation: $1", + "smw-concept-indicator-cache-update": "Contator del cache\nUltime actualisation: $1", + "smw-createproperty-isproperty": "Es un proprietate del typo $1.", + "smw-createproperty-allowedvals": "Le {{PLURAL:$1|valor|valores}} permittite pro iste proprietate es:", + "smw-paramdesc-category-delim": "Le delimitator", + "smw-paramdesc-category-template": "Un patrono con le qual formatar le elementos", + "smw-paramdesc-category-userparam": "Un parametro a passar al patrono", + "smw-info-par-message": "Le message a monstrar.", + "smw-info-par-icon": "Le icone a monstrar, o \"info\" o \"attention!\".", + "prefs-smw": "MediaWiki semantic", + "prefs-general-options": "Optiones general", + "prefs-extended-search-options": "Recerca extendite", + "prefs-ask-options": "Recerca semantic", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] e extensiones associate forni preferentias individual pro un gruppo selecte de functiones e characteristicas. Un lista de parametros individual con lor description e characteristicas es disponibile sur le sequente [https://www.semantic-mediawiki.org/wiki/Help:User_preferences pagina de adjuta].", + "smw-prefs-ask-options-tooltip-display": "Monstrar le texto del parametro como un legenda emergente de information sur le pagina special del [[Special:Ask|constructor de consultas]] #ask.", + "smw-prefs-ask-options-compact-view-basic": "Activar le vista compacte basic", + "smw-prefs-help-ask-options-compact-view-basic": "Si activate, monstra un insimul reducite de ligamines sur le vista compacte de Special:Ask", + "smw-prefs-general-options-time-correction": "Activar le correction horari pro paginas special usante le preferentia local [[Special:Preferences#mw-prefsection-rendering|Differentia de tempore]].", + "smw-prefs-general-options-jobqueue-watchlist": "Monstrar le observatorio del cauda de actiones in mi barra personal", + "smw-prefs-help-general-options-jobqueue-watchlist": "Si activate, monstra un [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist lista] de travalios pendente seligite con lor dimension de cauda estimate.", + "smw-prefs-general-options-disable-editpage-info": "Disactivar le texto introductori sur le pagina de modification", + "smw-prefs-general-options-disable-search-info": "Disactivar le information de adjuta al syntaxe sur le pagina de recerca standard", + "smw-prefs-general-options-suggester-textinput": "Activar le assistentia de entrata pro entitates semantic", + "smw-prefs-help-general-options-suggester-textinput": "Si activate, permitte usar un [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance assistentia de entrata] pro cercar proprietates, conceptos, e categorias ab un contexto de entrata.", + "smw-prefs-general-options-show-entity-issue-panel": "Monstra le pannello de problemas de entitate", + "smw-prefs-help-general-options-show-entity-issue-panel": "Si activate, facera verificationes de integritate sur cata pagina e monstrara le [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel pannello de problemas de entitate].", + "smw-prefs-factedsearch-profile": "Selige un profilo predefinite pro le [[Special:FacetedSearch|recerca in faciettas]]:", + "smw-ui-tooltip-title-property": "Proprietate", + "smw-ui-tooltip-title-quantity": "Conversion de unitates", + "smw-ui-tooltip-title-info": "Information", + "smw-ui-tooltip-title-service": "Ligamines de servicio", + "smw-ui-tooltip-title-warning": "Advertimento", + "smw-ui-tooltip-title-error": "Error", + "smw-ui-tooltip-title-parameter": "Parametro", + "smw-ui-tooltip-title-event": "Evento", + "smw-ui-tooltip-title-note": "Nota", + "smw-ui-tooltip-title-legend": "Legenda", + "smw-ui-tooltip-title-reference": "Referentia", + "smw_unknowntype": "Le typo \"$1\" de iste proprietate non es valide.", + "smw-concept-cache-text": "Le concepto ha un total de $1 pagina{{PLURAL:$1||s}} e ha essite actualisate pro le ultime vice le $2 a $3.", + "smw_concept_header": "Paginas del concepto \"$1\"", + "smw_conceptarticlecount": "Presentation de $1 {{PLURAL:$1|pagina|paginas}}.", + "smw-qp-empty-data": "Le datos requestate non poteva esser monstrate a causa de alcun criterios de selection insufficiente.", + "right-smw-admin": "Accesso al cargas administrative (Semantic MediaWiki)", + "right-smw-patternedit": "Accesso de modification pro mantener le expressiones regular e patronos permittite (Semantic MediaWiki)", + "right-smw-pageedit": "Accesso de modification pro paginas annotate Is edit protected (Semantic MediaWiki)", + "right-smw-schemaedit": "Modificar [https://www.semantic-mediawiki.org/wiki/Help:Schema paginas de schema] (Semantic MediaWiki)", + "right-smw-viewjobqueuewatchlist": "Accesso al [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist observatorio] del cauda de actiones (Semantic MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "Acceder a information sur un disaccordo de versiones associate a un entitate (Semantic MediaWiki)", + "right-smw-vieweditpageinfo": "Vider le [https://www.semantic-mediawiki.org/wiki/Help:Edit_help adjuta al modification] (Semantic MediaWiki)", + "restriction-level-smw-pageedit": "protegite (solmente usatores eligibile)", + "action-smw-patternedit": "modificar expressiones regular usate per Semantic MediaWiki", + "action-smw-pageedit": "modificar paginas annotate con Is edit protected (Semantic MediaWiki)", + "group-smwadministrator": "Administratores (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|administrator (Semantic MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:Administratores (Semantic MediaWiki)", + "group-smwcurator": "Curatores (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|curator (Semantic MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:Curatores (Semantic MediaWiki)", + "group-smweditor": "Redactores (Semantic MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|redactor|redactrice}} (Semantic MediaWiki)", + "grouppage-smweditor": "{{ns:project}}:Redactores (Semantic MediaWiki)", + "action-smw-admin": "acceder al cargas administrative de Semantic MediaWiki", + "action-smw-ruleedit": "modificar paginas de regulas (Semantic MediaWiki)", + "smw-property-namespace-disabled": "Le proprietate [https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks spatio de nomines] es disactivate. Non es possibile declarar un typo o altere characteristicas specific de proprietates pro iste proprietate.", + "smw-property-predefined-default": "\"$1\" es un proprietate predefinite del typo $2.", + "smw-property-predefined-common": "Iste proprietate es pre-installate (etiam cognoscite como [https://www.semantic-mediawiki.org/wiki/Help:Special_properties proprietate special]) e veni con privilegios administrative additional, ma pote esser usate como qualcunque altere [https://www.semantic-mediawiki.org/wiki/Property proprietate definite per usatores].", + "smw-property-predefined-ask": "\"$1\" es un proprietate predefinite que representa meta-information (in forma de un [https://www.semantic-mediawiki.org/wiki/Subobject subobjecto]) sur consultas individual e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksi": "\"$1\" es un proprietate predefinite que collige le numero de conditiones usate in un consulta e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askde": "\"$1\" es un proprietate predefinite que informa sur le profunditate de un consulta e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askde": "Es un valor numeric computate a base del annidation de subconsultas, del catenas de proprietates, e del elementos de description disponibile, le execution de un consulta essente restringite per le parametro de configuration [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-property-predefined-askpa": "\"$1\" es un proprietate predefinite que describe le parametros que influentia le resultato de un consulta e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askpa": "Es parte de un collection de proprietates que specifica un [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler profilo de consultas].", + "smw-sp-properties-docu": "Iste pagina lista le [https://www.semantic-mediawiki.org/wiki/Property proprietates] disponibile sur iste wiki e lor numeros de usos. Pro mantener le statisticas sempre actual, es recommendate executar regularmente le script de [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics mantenentia del statisticas de proprietates]. Pro un vista differentiate, vide le paginas special [[Special:UnusedProperties|proprietates non usate]] o [[Special:WantedProperties|proprietates desirate]].", + "smw-sp-properties-cache-info": "Le datos listate ha essite recuperate del [https://www.semantic-mediawiki.org/wiki/Caching cache]. Ultime actualisation: $1.", + "smw-sp-properties-header-label": "Lista de proprietates", + "smw-admin-settings-docu": "Monstra un lista de tote le parametros predefinite e localisate que es relevante al ambiente de Semantic MediaWiki. Pro detalios sur parametros individual, per favor consulta le pagina de adjuta sur le [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuration].", + "smw-sp-admin-settings-button": "Generar lista de parametros", + "smw-admin-idlookup-title": "Cercar", + "smw-admin-idlookup-docu": "Iste section monstra detalios technic sur un entitate individual (pagina wiki, subobjecto, proprietate, etc.) in Semantic MediaWiki. Le entrata pote esser un identificator numeric o un valor textual pro coincider con le campo de recerca pertinente, ma tote referentia de identificator es relative a Semantic MediaWiki e non al identificator de pagina o version de MediaWiki.", + "smw-admin-iddispose-title": "Elimination", + "smw-admin-iddispose-docu": "Debe esser notate que le operation de elimination es sin restrictiones e removera le entitate del motor de immagazinage insimul con tote su referentias in tabellas pendente, si confirmate. Per favor, exeque iste operation con '''caution''' e solmente post que le [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal documentation] ha essite consultate.", + "smw-admin-iddispose-done": "Le identificator \"$1\" ha essite removite del servitor de immagazinage.", + "smw-admin-iddispose-references": "Le identificator \"$1\" {{PLURAL:$2|non ha alcun|ha al minus un}} referentia active:", + "smw-admin-iddispose-references-multiple": "Lista de correspondentias con al minus un registro active de referentias.", + "smw-admin-iddispose-no-references": "Le recerca non ha trovate un entrata de tabella que corresponde a \"$1\".", + "smw-admin-idlookup-input": "Cercar:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Vista general", + "smw-admin-tab-notices": "Avisos de obsolescentia", + "smw-admin-tab-maintenance": "Mantenentia", + "smw-admin-tab-supplement": "Functiones supplementari", + "smw-admin-tab-registry": "Registro", + "smw-admin-tab-alerts": "Alertas", + "smw-admin-alerts-tab-deprecationnotices": "Avisos de obsolescentia", + "smw-admin-alerts-tab-maintenancealerts": "Alertas de mantenentia", + "smw-admin-alerts-section-intro": "Iste section monstra alertas e notificationes relative a configurationes, operationes, e altere activitates que ha essite classificate como requirente attention de un administrator o usator con derectos appropriate.", + "smw-admin-maintenancealerts-section-intro": "Le sequente alertas e notificationes debe esser resolvite, e ben que non es essential, es previste que isto adjuta a meliorar le mantenibilitate del systema e de operationes.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Optimisation de tabellas", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "Le systema ha trovate que le ultime [https://www.semantic-mediawiki.org/wiki/Table_optimization optimisation de tabellas] ha essite exequite $2 dies retro (registro del $1), lo que excede le limite de mantenentia de $3 dies. Como mentionate in le documentation, le execution de optimisationes permittera al planificator de consultas de prender melior decisiones sur consultas, pro isto es recommendate exequer regularmente le optimisation de tabellas.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Entitates obsolete", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "Le systema ha contate $1 [https://www.semantic-mediawiki.org/wiki/Outdated_entities entitates obsolete] e ha attingite un nivello critic de mantenentia arretrate, excedente le limite de $2. Es recommendate executar le script de mantenentia [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php].", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Entitates non valide", + "smw-admin-maintenancealerts-invalidentities-alert": "Le systema ha detegite que $1 [https://www.semantic-mediawiki.org/wiki/Invalid_entities entitate{{PLURAL:$1||s}}] es in un spatio de nomines non mantenite. Es recommendate executar le script de mantenentia [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] o [https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php].", + "smw-admin-deprecation-notice-section": "Semantic MediaWiki", + "smw-admin-configutation-tab-settings": "Parametros", + "smw-admin-configutation-tab-namespaces": "Spatios de nomines", + "smw-admin-configutation-tab-schematypes": "Typos de schema", + "smw-admin-maintenance-tab-tasks": "Cargas", + "smw-admin-maintenance-tab-scripts": "Scripts de mantenentia", + "smw-admin-maintenance-no-description": "Sin description.", + "smw-admin-maintenance-script-section-title": "Lista de scripts de mantenentia disponibile", + "smw-admin-maintenance-script-section-intro": "Le sequente scripts de mantenentia require un administrator e accesso al linea de commando pro poter executar le scripts listate.", + "smw-admin-maintenance-script-description-dumprdf": "Exportation in RDF de triplettos existente.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "Iste script es usate pro gerer le caches de conceptos pro Semantic MediaWiki, ubi illo pote crear, remover, e actualisar le caches seligite.", + "smw-admin-maintenance-script-description-rebuilddata": "Recrea tote le datos semantic in le base de datos, iterante per tote le paginas que poterea haber datos semantic.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "Reconstrue le indice de Elasticsearch (solmente pro installationes que usa le ElasticStore), iterante per tote le entitates que ha datos semantic.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Cercar entitates mancante in Elasticsearch (solmente pro installationes que usa le ElasticStore) e programmar travalios de actualisation appropriate.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "Reconstrue le indice de recerca de texto integral de SQLStore (pro installationes ubi le configuration ha essite activate).", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Reconstrue le statisticas de uso pro tote le entitates de proprietate.", + "smw-admin-maintenance-script-description-removeduplicateentities": "Remove entitates duplicate trovate in tabellas seligite que non ha referentias active.", + "smw-admin-maintenance-script-description-setupstore": "Configura le servitor de immagazinage e de consultas como es definite in LocalSettings.php.", + "smw-admin-maintenance-script-description-updateentitycollation": "Actualisa le campo smw_sort in SQLStore (secundo le parametro [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation]).", + "smw-admin-maintenance-script-description-populatehashfield": "Plena le campo smw_hash pro lineas in le quales iste non ha valor.", + "smw-admin-maintenance-script-description-purgeentitycache": "Purga entratas de cache pro entitates cognoscite e lor datos associate.", + "smw-admin-maintenance-script-description-updatequerydependencies": "Actualisa consultas e dependentias de consulta (vide le parametro [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore]).", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "Eliminar entitates e ligamines de consulta obsolete.", + "smw-admin-maintenance-script-description-runimport": "Reimpler e importar contento auto-discoperite ab [https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs].", + "smw-admin-maintenance-script-section-update": "Scripts de actualisation", + "smw-admin-maintenance-script-section-rebuild": "Scripts de reconstruction", + "smw-livepreview-loading": "Cargamento in curso…", + "smw-sp-searchbyproperty-description": "Iste pagina forni un [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces interfacie de navigation] simple pro trovar entitates describite per un proprietate e un valor nominate. Altere interfacies de recerca disponibile include le [[Special:PageProperty|recerca de proprietate de pagina]] e le [[Special:Ask|constructor de consultas ask]].", + "smw-sp-searchbyproperty-resultlist-header": "Lista de resultatos", + "smw-sp-searchbyproperty-nonvaluequery": "Un lista de valores que ha le proprietate \"$1\" assignate.", + "smw-sp-searchbyproperty-valuequery": "Un lista de paginas que ha le proprietate \"$1\" con valor \"$2\" annotate.", + "smw-datavalue-number-textnotallowed": "\"$1\" non pote esser assignate a un typo de numero declarate con valor $2.", + "smw-datavalue-number-nullnotallowed": "\"$1\" ha retornate con \"NULL\" le qual non es permittite como numero.", + "smw-editpage-annotation-enabled": "Iste pagina supporta annotationes semantic in le texto (p.ex. \"[[Is specified as::World Heritage Site]]\") pro construer contento structurate e consultabile fornite per Semantic MediaWiki. Pro un description comprehensive de como usar annotationes o del function de analysator #ask, per favor visita iste paginas de adjuta: [https://www.semantic-mediawiki.org/wiki/Help:Getting_started como initiar], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation annotation in texto], o [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries consultas in linea].", + "smw-editpage-annotation-disabled": "Iste pagina non es activate pro annotationes semantic in le texto a causa de restrictiones de spatio de nomines. Detalios sur como activar le spatio de nomines pote esser trovate in le pagina de adjuta sur le [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuration].", + "smw-editpage-property-annotation-enabled": "Iste proprietate pote esser extendite usante annotationes semantic pro specificar un typo de datos (p.ex. \"[[Has type::Page]]\") o altere declarationes secundari (p.ex. \"[[Subproperty of::dc:date]]\"). Pro un description de como augmentar iste pagina, vide le pagina de adjuta [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration declaration de un proprietate] o le pagina de adjuta [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes lista de typos de datos disponibile].", + "smw-editpage-property-annotation-disabled": "Iste proprietate non pote esser extendite con un annotation de typo de datos (p.ex. \"[[Has type::Page]]\") perque illo es ja predefinite (vide le pagina de adjuta sur le [https://www.semantic-mediawiki.org/wiki/Help:Special_properties proprietates special] pro plus informationes).", + "smw-editpage-concept-annotation-enabled": "Iste concepto pote esser extendite usante le function de analysator #concept. Pro un description de como usar #concept, vide le pagina de adjuta sur le [https://www.semantic-mediawiki.org/wiki/Help:Concepts conceptos].", + "smw-search-syntax-support": "Le entrata de recerca supporta le uso del [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search syntaxe de consulta semantic] pro adjutar a trovar resultatos usante Semantic MediaWiki.", + "smw-search-input-assistance": "Le [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance assistente de entrata] es equalmente activate pro facilitar le pre-selection de proprietates e categorias disponibile.", + "smw-search-help-intro": "Un entrata [[ ... ]] signalara al processor de entrata de usar le servitor de recerca de Semantic MediaWiki. Debe esser notate que combinar [[ ... ]] con un recerca de texto non structurate como [[ ... ]] OR Lorem ipsum non es supportate.", + "smw-search-help-structured": "Recercas structurate:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] (como [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context contexto filtrate])\n\n*[[Has text::~*lorem*]] (con un [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context contexto de consulta])", + "smw-search-help-proximity": "Recercas de proximitate (un proprietate essente incognite, '''solmente''' disponibile pro le servitores que forni un integration de recerca de texto integral):\n\n*[[in:lorem ipsum]] (cercar \"lorem\" e \"ipsum\" in tote le documentos que ha essite indexate)\n\n* [[phrase:lorem ipsum]] (trovar \"lorem ipsum\" como phrase)", + "smw-search-help-ask": "Le sequente ligamines explica como usar le syntaxe #ask:\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selection de paginas] describe como seliger paginas e construer conditiones;\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Operatores de recerca] lista le operatores de recerca disponibile, includente illos pro consultas de intervallo e con metacharacteres.", + "smw-search-input": "Entrata e recerca", + "smw-search-help-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Assistentia de entrata] es fornite pro le campo de entrata e necessita usar un del sequente prefixos:\n\n*p: pro activar le suggestiones de proprietates (p.ex. [[p:Has ...)\n\n*c: pro activar le suggestiones de categorias\n\n*con: pro activar le suggestiones de conceptos", + "smw-search-syntax": "Syntaxe", + "smw-search-profile": "Extendite", + "smw-search-profile-tooltip": "Functiones de recerca in connexion con Semantic MediaWiki", + "smw-search-profile-sort-best": "Melior correspondentia", + "smw-search-profile-sort-recent": "Le plus recente", + "smw-search-profile-sort-title": "Titulo", + "smw-search-profile-extended-help-intro": "Le [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile profilo extendite] de Special:Recerca forni accesso a functiones de recerca specific a Semantic MediaWiki e su servitor de consultas supportate.", + "smw-search-profile-extended-help-sort": "Specifica un preferentia de ordinamento pro le presentation de resultatos con:", + "smw-search-profile-extended-help-sort-title": "* \"Titulo\" usante le titulo del pagina (o le titulo a monstrar) como criterio de ordinamento", + "smw-search-profile-extended-help-sort-recent": "* \"Le plus recente\" monstrara primo le entitates le plus recentemente modificate (entitates de subobjecto essera supprimite perque ille entitates non es annotate con un [[Property:Modification date|data de modification]])", + "smw-search-profile-extended-help-sort-best": "* \"Melior correspondentia\" ordinara le entitates per [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy relevantia] a base del scores/punctos fornite per le servitor", + "smw-search-profile-extended-help-form": "Formularios es providite (si mantenite) pro trovar casos de uso specific, exponente differente campos de proprietate e valor pro restringer le processo de entrata e facilitar al usatores de proceder con un requesta de recerca. (vide $1)", + "smw-search-profile-extended-help-namespace": "Le quadro de selection de spatio de nomines essera celate quando un formulario es seligite, ma pote esser rendite visibile per medio del button \"monstrar/celar\".", + "smw-search-profile-extended-help-search-syntax": "Le campo de entrata de recerca supporta le uso del syntaxe #ask pro definir un contexto de recerca specific de Semantic MediaWiki. Expressiones utile include:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: pro trovar tote lo que contine \"...\" e es particularmente utile quando le contexto de recerca o proprietates implicate es incognite (p.ex. in:(lorem && ipsum) es equivalente a [[~~*lorem*]] && [[~~*ipsum*]]).", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: pro trovar tote lo que contine \"...\" in exactemente le mesme ordine", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: pro trovar qualcunque entitate con un proprietate \"...\" (p.ex. has:(Foo && Bar) es equivalente a [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: pro excluder omne entitate que include \"...\"", + "smw-search-profile-extended-help-search-syntax-prefix": "* Prefixos additional personalisate es disponibile e definite, como: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* Alcun expressiones es reservate, como: $1", + "smw-search-profile-extended-help-search-syntax-note": "''Alcunes del operationes listate es solmente utile in connexion con un indice de texto integral activate o con le ElasticStore.''", + "smw-search-profile-extended-help-query": "Ha usate $1 como consulta.", + "smw-search-profile-extended-help-query-link": "Pro plus detalios, per favor usa le $1.", + "smw-search-profile-extended-help-find-forms": "le formularios disponibile", + "smw-search-profile-extended-section-sort": "Ordinar per", + "smw-search-profile-extended-section-form": "Formularios", + "smw-search-profile-extended-section-search-syntax": "Entrata de recerca", + "smw-search-profile-extended-section-namespace": "Spatio de nomines", + "smw-search-profile-extended-section-query": "Consulta", + "smw-search-profile-link-caption-query": "constructor de consultas", + "smw-search-show": "Monstrar", + "smw-search-hide": "Celar", + "log-name-smw": "Registro de Semantic MediaWiki", + "log-show-hide-smw": "$1 le registro de Semantic MediaWiki", + "logeventslist-smw-log": "Registro de Semantic MediaWiki", + "log-description-smw": "Activitates pro le [https://www.semantic-mediawiki.org/wiki/Help:Logging typos de evento activate] que ha essite reportate per Semantic MediaWiki e su componentes.", + "logentry-smw-maintenance": "Eventos concernente le mantenentia emittite per Semantic MediaWiki", + "smw-datavalue-import-unknown-namespace": "Le spatio de nomines de importation \"$1\" es incognite. Per favor assecura te que le detalios de importation OWL es disponibile via [[MediaWiki:Smw import $1]]", + "smw-datavalue-import-missing-namespace-uri": "Impossibile trovar un URI de spatio de nomines \"$1\" in le [[MediaWiki:Smw import $1|importation de $1]].", + "smw-datavalue-import-missing-type": "Nulle definition de typo esseva trovate pro \"$1\" in le [[MediaWiki:Smw import $2|importation de $2]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|Importation de $1]]", + "smw-datavalue-import-invalid-value": "\"$1\" non es un formato valide e es expectate que illo consiste de \"spatio de nomines\":\"identificator\" (p.ex. \"foaf:nomine\").", + "smw-datavalue-import-invalid-format": "Se expectava que le catena \"$1\" es dividite in quatro partes, ma le formato non esseva comprendite.", + "smw-property-predefined-impo": "\"$1\" es un proprietate predefinite que describe un relation a un [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary vocabulario importate] e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-type": "\"$1\" es un proprietate predefinite que describe le [[Special:Types|typo de datos]] de un proprietate e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-sobj": "\"$1\" es un proprietate predefinite que representa un constructo de [https://www.semantic-mediawiki.org/wiki/Help:Container contentor] e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-sobj": "Le contentor permitte accumular assignationes de proprietate-valor similar a un pagina wiki normal, ma intra un spatio de entitates differente, ben que illo es ligate al subjecto que lo incorpora.", + "smw-property-predefined-errp": "\"$1\" es un proprietate predefinite que tracia errores de entrata pro annotationes de valores irregular e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-errp": "In le major parte de casos, illo es causate per un disaccordo de typo o un restriction de [[Property:Allows value|valor]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value \"$1\"] es un proprietate predefinite que pote definir un lista de valores permittite pro restringer assignationes de valor pro un proprietate e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list \"$1\"] es un proprietate predefinite que pote specificar un referentia a un lista que contine valores permittite pro restringer assignationes de valor pro un proprietate e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-datavalue-property-restricted-annotation-use": "Le proprietate \"$1\" ha un area de application restricte e non pote esser usate como proprietate de annotation per un usator.", + "smw-datavalue-property-restricted-declarative-use": "Le proprietate \"$1\" es un proprietate declarative e pote esser usate solmente in un pagina de proprietate o categoria.", + "smw-datavalue-property-create-restriction": "Le proprietate \"$1\" non existe e le usator non dispone del permission \"$2\" (vide [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoritate]) pro crear o annotar valores con un proprietate non approbate.", + "smw-datavalue-property-invalid-character": "\"$1\" contine un character \"$2\" listate como parte del etiquetta de proprietate e ha essite classificate como non valide.", + "smw-datavalue-property-invalid-chain": "Usar \"$1\" como catena de proprietate non es permittite durante le processo de annotation.", + "smw-datavalue-restricted-use": "Le valor de datos \"$1\" ha essite marcate pro uso restricte.", + "smw-datavalue-invalid-number": "\"$1\" non pote esser interpretate como numero.", + "smw-query-condition-circular": "Un possibile condition circular ha essite detegite in \"$1\".", + "smw-query-condition-empty": "Le description del consulta ha un condition vacue.", + "smw-types-list": "Lista de typos de datos", + "smw-types-default": "\"$1\" es un typo de datos integrate.", + "smw-types-help": "Ulterior information e exemplos pote esser trovate sur iste [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 pagina de adjuta].", + "smw-type-anu": "\"$1\" es un variante del typo de datos [[Special:Types/URL|URL]] e es usate principalmente pro un declaration de exportation ''owl:AnnotationProperty''.", + "smw-type-boo": "\"$1\" es un typo de datos basic pro describer un valor ver/false.", + "smw-type-cod": "\"$1\" es un variante del typo de datos [[Special:Types/Text|Texto]] que es destinate pro esser usate con textos technic de qualcunque longitude, como codice fonte.", + "smw-type-geo": "\"$1\" es un typo de datos que describe locos geographic e require le extension [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"] pro fornir un functionalitate extendite.", + "smw-type-tel": "\"$1\" es un typo de datos special pro describer numeros de telephono international secundo RFC 3966.", + "smw-type-txt": "\"$1\" es un typo de datos basic pro describer catenas de longitude arbitrari.", + "smw-type-dat": "\"$1\" es un typo de datos basic pro representar punctos in tempore in un formato unificate.", + "smw-type-ema": "\"$1\" es un typo de datos special pro representar un e-mail.", + "smw-type-tem": "\"$1\" es un typo de datos numeric special pro representar un temperatura.", + "smw-type-qty": "\"$1\" es un typo de datos pro describer quantitates con un representation numeric e un unitate de mesura.", + "smw-type-rec": "\"$1\" es un typo de datos de contentor que specifica un lista de proprietates con typos in un ordine fixe.", + "smw-type-extra-tem": "Le schema de conversion include unitates supportate como Kelvin, Celsius, Fahrenheit, e Rankine.", + "smw-type-tab-properties": "Proprietates", + "smw-type-tab-types": "Typos", + "smw-type-tab-type-ids": "Identificatores de typo", + "smw-type-tab-errors": "Errores", + "smw-type-primitive": "Basic", + "smw-type-contextual": "Contextual", + "smw-type-compound": "Composite", + "smw-type-container": "Contentor", + "smw-type-no-group": "Non classificate", + "smw-special-pageproperty-description": "Iste pagina forni un interfacie de navigation pro trovar tote le valores de un proprietate e un pagina date. Altere interfacies de recerca disponibile include le [[Special:SearchByProperty|recerca de proprietates]] e le [[Special:Ask|constructor de consultas \"ask\"]].", + "smw-property-predefined-errc": "\"$1\" es un proprietate predefinite fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] que representa errores connexe a mal annotationes de valores o mal tractamento de entrata.", + "smw-property-predefined-long-errc": "Le errores se collige in un [https://www.semantic-mediawiki.org/wiki/Help:Container receptaculo] que pote includer un referentia al proprietate que ha causate le discrepantia.", + "smw-property-predefined-errt": "\"$1\" es un proprietate predefinite que contine un description textual de un error e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-subobject-parser-invalid-naming-scheme": "Un subobjecto definite per usator contineva un schema de nomination invalide. Le notation de puncto ($1) usate in le prime cinque characteres es reservate pro extensiones. Tu pote definir un [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier identificator nominate].", + "smw-datavalue-record-invalid-property-declaration": "Le definition del registro contine le proprietate \"$1\" que es declarate illo mesme como typo de registro e isto non es permittite.", + "smw-property-predefined-mdat": "\"$1\" es un proprietate predefinite que corresponde al data del ultime modification de un subjecto e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cdat": "\"$1\" es un proprietate predefinite que corresponde al data del prime version de un subjecto e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-newp": "\"$1\" es un proprietate predefinite que indica si un subjecto es nove o non e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-ledt": "\"$1\" es un proprietate predefinite que contine le nomine de pagina del usator qui creava le ultime version e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-mime": "\"$1\" es un proprietate predefinite que describe le typo MIME de un file incargate e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-media": "\"$1\" es un proprietate predefinite que describe le typo multimedial de un file incargate e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askfo": "\"$1\" es un proprietate predefinite que contine le nomine del formato de resultato usate in un consulta e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askst": "\"$1\" es un proprietate predefinite que describe le conditiones del consulta como un catena e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askdu": "\"$1\" es un proprietate predefinite que contine le tempore (in secundas) que esseva necessari pro completar le execution del consulta e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksc": "\"$1\" es un proprietate predefinite fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] que identifica fontes alternative de consultas (per exemplo, remote, federate).", + "smw-property-predefined-askco": "\"$1\" es un proprietate predefinite fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] pro describer le stato de un consulta o su componentes.", + "smw-property-predefined-long-askco": "Le numero o numeros assignate representa un stato codificate interne que es explicate sur le [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler pagina de adjuta].", + "smw-property-predefined-prec": "\"$1\" es un proprietate predefinite que describe un [https://www.semantic-mediawiki.org/wiki/Help:Display_precision precision de presentation] (in digitos decimal) pro typos de datos numeric.", + "smw-property-predefined-attch-link": "\"$1\" es un proprietate predefinite que collige ligamines a files e imagines incastrate sur un pagina e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-inst": "\"$1\" es un proprietate predefinite interne que immagazina information de categorias independentemente de MediaWiki e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-unit": "\"$1\" es un proprietate predefinite declarative pro definir unitates de presentation pro proprietates numeric con typos e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-unit": "Un lista separate per commas permitte describer le unitates o formatos a usar pro le visualisation.", + "smw-property-predefined-conv": "\"$1\" es un proprietate predefinite declarative pro definir le factor de conversion pro un certe unitate de un quantitate physic e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-serv": "\"$1\" es un proprietate predefinite declarative pro adder ligamines de servicio a un proprietate e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-redi": "\"$1\" es un proprietate predefinite interne pro registrar redirectiones e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-subp": "\"$1\" es un proprietate predefinite declarative pro definir que un proprietate es un [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of subproprietate de] un altere e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-subc": "\"$1\" es un proprietate predefinite pro definir que un categoria es un [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of subcategoria de] un altere e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-conc": "\"$1\" es un proprietate predefinite interne pro definir un concepto associate e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-err-type": "\"$1\" es un proprietate predefinite pro identificar un gruppo o classe de [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors errores de processamento] e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-skey": "\"$1\" es un proprietate predefinite interne pro continer un referentia de ordinamento e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pplb": "\"$1\" es un proprietate predefinite declarative pro specificar un [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label etiquetta de proprietate preferite] e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-chgpro": "\"$1\" es un proprietate predefinite pro continer informationes sur le [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation propagation de modificationes] e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-link": " e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-format-schema": " e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-profile-schema": " e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans": " e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-source": " e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-group": " e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cont-len": "\"$1\" es un proprietate predefinite pro immagazinar informationes de longitude e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-len": "Illo es usate in connexion con le [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e le [https://www.semantic-mediawiki.org/Attachment_processor processor de annexos]) pro colliger e immagazinar informationes de longitude obtenite ab un file ingerite (si fornite).", + "smw-property-predefined-cont-lang": "\"$1\" es un proprietate predefinite pro immagazinar informationes de lingua e es fornite per Semantic MediaWiki (https://www.semantic-mediawiki.org/wiki/Help:Special_properties).", + "smw-property-predefined-long-cont-lang": "Illo es usate in connexion con le [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e le [https://www.semantic-mediawiki.org/Attachment_processor processor de annexos]) pro colliger e immagazinar information de lingua recuperate ab un file ingerite (si fornite).", + "smw-property-predefined-cont-title": "\"$1\" es un proprietate predefinite pro immagazinar informationes de titulo e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-title": "Illo es usate in connexion con le [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e le [https://www.semantic-mediawiki.org/Attachment_processor processor de annexos]) pro colliger e immagazinar informationes de titulo extrahite ab un file ingerite (si fornite).", + "smw-property-predefined-cont-author": "\"$1\" es un proprietate predefinite pro immagazinar informationes de autor e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-author": "Illo es usate in connexion con le [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e le [https://www.semantic-mediawiki.org/Attachment_processor processor de annexos]) pro colliger e immagazinar informationes de autor obtenite ab un file ingerite (si fornite).", + "smw-property-predefined-cont-date": "\"$1\" es un proprietate predefinite pro immagazinar informationes de data e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-date": "Illo es usate in connexion con le [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e le [https://www.semantic-mediawiki.org/Attachment_processor processor de annexos]) pro colliger e immagazinar informationes de data extrahite ab un file ingerite (si fornite).", + "smw-property-predefined-cont-type": "\"$1\" es un proprietate predefinite pro immagazinar informationes de typo de file e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-type": "Illo es usate in connexion con le [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e le [https://www.semantic-mediawiki.org/Attachment_processor processor de annexos]) pro colliger e immagazinar informationes de typo de file extrahite ab un file ingerite (si fornite).", + "smw-property-predefined-cont-keyw": "\"$1\" es un proprietate predefinite pro representar parolas clave e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-keyw": "Illo es usate in connexion con le [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e le [https://www.semantic-mediawiki.org/Attachment_processor processor de annexos]) pro colliger e immagazinar parolas clave extrahite ab un file ingerite (si fornite).", + "smw-property-predefined-file-attch": "\"$1\" es un proprietate predefinite pro representar un contentor que immagazina information de annexos e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-file-attch": "Illo es usate in connexion con le [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e le [https://www.semantic-mediawiki.org/Attachment_processor processor de annexos]) pro colliger tote le informationes specific al contento recuperabile ab un file ingerite (si fornite).", + "smw-types-extra-geo-not-available": "Le [https://www.semantic-mediawiki.org/wiki/Extension:Maps extension \"Maps\"] non esseva detegite, pro isto \"$1\" es restringite in su capacitate de operation.", + "smw-datavalue-monolingual-dataitem-missing": "Manca un elemento expectate pro construer un valor composite monolingue.", + "smw-datavalue-languagecode-missing": "Pro le annotation \"$1\", le analysator syntactic non poteva determinar un codice de lingua (i.e. \"foo@en\").", + "smw-datavalue-languagecode-invalid": "\"$1\" non es recognoscite como codice de lingua supportate.", + "smw-property-predefined-lcode": "\"$1\" es un proprietate predefinite que representa un codice de lingua formate secundo BCP47 e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-type-mlt-rec": "\"$1\" es un typo de datos [https://www.semantic-mediawiki.org/wiki/Help:Container contentor] que associa un valor de texto con un [[Property:Language code|codice de lingua]] specific.", + "smw-types-extra-mlt-lcode": "Le typo de datos {{PLURAL:$2||non}} require un codice de lingua (i.e., un annotation de valor sin codice de lingua {{PLURAL:$2|non|}} es acceptate).", + "smw-property-predefined-text": "\"$1\" es un proprietate predefinite que representa texto de longitude arbitrari e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pdesc": "\"$1\" es un proprietate predefinite que permitte describer un proprietate in le contexto de un lingua e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-list": "\"$1\" es un proprietate predefinite pro definir un lista de proprietates usate con un proprietate de typo [[Special:Types/Record|registro]] e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] Tempore de analyse syntactic de annotationes in texto", + "smw-limitreport-intext-postproctime": "[SMW] tempore post processamento", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|secunda|secundas}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|secunda|secundas}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Tempore de actualisation de immagazinage (sur un purga de pagina)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|secunda|secundas}}", + "smw_allows_pattern": "Iste pagina se expecta de continer un lista de referentias (sequite per [https://en.wikipedia.org/wiki/Regular_expression expressiones regular]) a render disponibile per le proprietate [[Property:Allows pattern|Permitte patrono]]. Pro modificar iste pagina, le derecto smw-patternedit es necessari.", + "smw-datavalue-allows-pattern-mismatch": "\"$1\" ha essite classificate como invalide per le expression regular \"$2\".", + "smw-datavalue-allows-pattern-reference-unknown": "Le referentia de patrono \"$1\" non corresponde a un entrata in [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "Le referentia de lista \"$1\" non corresponde a un pagina [[MediaWiki:Smw allows list $1]].", + "smw-datavalue-allows-value-list-missing-marker": "Le contento de lista \"$1\" non contine elementos con un marcator de lista *.", + "smw-datavalue-feature-not-supported": "Le functionalitate \"$1\" non es supportate o ha essite disactivate sur iste wiki.", + "smw-property-predefined-pvap": "\"$1\" es un proprietate predefinite que pote specificar un [[MediaWiki:Smw allows pattern|referentia de patrono]] pro applicar correspondentia de [https://en.wikipedia.org/wiki/Regular_expression expressiones regular] e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-dtitle": "\"$1\" es un proprietate predefinite que pote assignar un titulo de presentation distincte a un entitate e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvuc": "\"$1\" es un proprietate predefinite fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] pro restringer assignationes de valores a fin que cata instantia sia unic (o un, al maximo).", + "smw-property-predefined-long-pvuc": "Unicitate es establite quando duo valores non es equal in lor representation literal e omne violation de iste restriction essera categorisate como error.", + "smw-datavalue-constraint-uniqueness-violation": "Le proprietate \"$1\" permitte solmente assignationes de valores unic e ''$2'' ja habeva essite annotate in le subjecto \"$3\".", + "smw-datavalue-constraint-uniqueness-violation-isknown": "Le proprietate \"$1\" permitte solmente annotationes de valores unic, ''$2'' ja contine un valor assignate. \"$3\" viola le restriction de unicitate.", + "smw-datavalue-constraint-violation-non-negative-integer": "Le proprietate \"$1\" ha un restriction de \"numero integre non negative\" e le valor ''$2'' viola iste requisito.", + "smw-datavalue-constraint-violation-must-exists": "Le proprietate \"$1\" ha un restriction de must_exists e le valor ''$2'' viola iste requisito.", + "smw-datavalue-constraint-violation-single-value": "Le proprietate \"[[Property:$1|$1]]\" ha un restriction de single_value e le valor \"$2\" viola iste requisito.", + "smw-constraint-violation-uniqueness": "Un restriction de unique_value_constraint es assignate al proprietate \"[[Property:$1|$1]]\" le qual permitte solmente assignationes de valores unic e le annotation de valor ''$2'' ja habeva essite trovate como annotate in le subjecto \"$3\".", + "smw-constraint-violation-uniqueness-isknown": "Un restriction de unique_value_constraint es assignate al proprietate \"[[Property:$1|$1]]\", dunque, solmente annotationes de valores unic es permittite. ''$2'' ja contine un valor annotate con \"$3\", violante le restriction de unicitate pro le subjecto actual.", + "smw-constraint-violation-non-negative-integer": "Un restriction de integer_non_negative es assignate al proprietate \"[[Property:$1|$1]]\" e le annotation de valor ''$2'' viola le requisito de restriction.", + "smw-constraint-violation-must-exists": "Un restriction de must_exists es assignate al proprietate \"[[Property:$1|$1]]\" e le annotation de valor ''$2'' viola le requisito de restriction.", + "smw-constraint-violation-single-value": "Un restriction de single_value es assignate al proprietate \"[[Property:$1|$1]]\" e le annotation de valor \"$2\" viola le requisito de restriction.", + "smw-constraint-violation-class-shape-constraint-missing-property": "Un restriction de shape_constraint es assignate al categoria \"[[:$1]]\" con un clave de property, le proprietate obligatori \"$2\" manca.", + "smw-constraint-violation-class-shape-constraint-wrong-type": "Un restriction de shape_constraint es assignate al categoria \"[[:$1]]\" con un clave de property_type, le proprietate \"$2\" non corresponde al typo de \"$3\".", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "Un restriction de shape_constraint es assignate al categoria \"[[:$1]]\" con un clave de max_cardinality, le proprietate \"$2\" non corresponde al cardinalitate de \"$3\".", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "Un restriction de shape_constraint es assignate al categoria \"[[:$1]]\" con un clave de min_textlength, le proprietate \"$2\" non corresponde al requisito de longitude de \"$3\".", + "smw-constraint-violation-class-mandatory-properties-constraint": "Un restriction mandatory_properties ha essite assignate al categoria \"[[:$1]]\" de sorta que illo require le proprietates obligatori sequente: $2", + "smw-constraint-violation-allowed-namespace-no-match": "Un restriction de allowed_namespaces es assignate al proprietate \"[[Property:$1|$1]]\" e \"$2\" viola le requisito de spatio de nomines, solmente le sequente spatios de nomines \"$3\" es permittite.", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "Le restriction de allowed_namespaces require un typo de pagina.", + "smw-constraint-schema-category-invalid-type": "Le schema \"$1\" annotate es invalide pro un categoria, illo require un typo \"$2\".", + "smw-constraint-schema-property-invalid-type": "Le schema \"$1\" annotate es invalide pro un proprietate, illo require un typo \"$2\".", + "smw-constraint-error-allows-value-list": "\"$1\" non es in le lista ($2) de [[Property:Allows value|valores permittite]] pro le proprietate \"$3\".", + "smw-constraint-error-allows-value-range": "\"$1\" non es in le intervallo \"$2\" specificate per le restriction de [[Property:Allows value|valores permittite]] del proprietate \"$3\".", + "smw-property-predefined-boo": "\"$1\" es un [[Special:Types/Boolean|typo]] e proprietate predefinite fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] pro representar valores boolean.", + "smw-property-predefined-num": "\"$1\" es un [[Special:Types/Number|typo]] e proprietate predefinite fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] pro representar valores numeric.", + "smw-property-predefined-dat": "\"$1\" es un [[Special:Types/Date|typo]] e proprietate predefinite fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] pro representar valores de data.", + "smw-property-predefined-uri": "\"$1\" es un [[Special:Types/URL|typo]] e proprietate predefinite fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] pro representar valores URI/URL.", + "smw-property-predefined-qty": "\"$1\" es un [[Special:Types/Quantity|typo]] e proprietate predefinite fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] pro representar valores de quantitate.", + "smw-datavalue-time-invalid-offset-zone-usage": "\"$1\" contine un offset/differentia e un identificator de zona; isto non es supportate.", + "smw-datavalue-time-invalid-values": "Le valor \"$1\" contine information non interpretabile in forma de \"$2\".", + "smw-datavalue-time-invalid-date-components-common": "\"$1\" contine alcun information non interpretabile.", + "smw-datavalue-time-invalid-date-components-dash": "\"$1\" contine un lineetta extrinsec o altere characteres que es invalide pro un interpretation de data.", + "smw-datavalue-time-invalid-date-components-empty": "\"$1\" contine alcun componentes vacue.", + "smw-datavalue-time-invalid-date-components-three": "\"$1\" contine plus de tres componentes requirite pro un interpretation de data.", + "smw-datavalue-time-invalid-date-components-sequence": "\"$1\" contine un sequentia que non poteva esser interpretate contra un matrice de correspondentia disponibile pro componentes de datas.", + "smw-datavalue-time-invalid-ampm": "\"$1\" contine \"$2\" como elemento de hora que es invalide pro un convention de 12 horas.", + "smw-datavalue-time-invalid-jd": "Impossibile interpretar le valor de entrata \"$1\" como un numero DJ (die julian) valide con \"$2\" reportate.", + "smw-datavalue-time-invalid-prehistoric": "Impossibile interpretar un valor de entrata prehistoric \"$1\". Per exemplo, haber specificate plus que annos o un modello de calendario pote retornar resultatos non expectate in un contexto prehistoric.", + "smw-datavalue-time-invalid": "Impossibile interpretar le valor de entrata \"$1\" como componente de data o hora valide con \"$2\" reportate.", + "smw-datavalue-external-formatter-uri-missing-placeholder": "Le URI a formatar non contine le marcator de spatio reservate ''$1''.", + "smw-datavalue-external-formatter-invalid-uri": " \"$1\" es un URL non valide.", + "smw-datavalue-external-identifier-formatter-missing": "Le proprietate non contine un assignamento [[Property:External formatter uri|\"URI externe a formatar\"]].", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "Le identificator externe \"$1\" expecta un substitution de campos multiple, ma al valor currente \"$2\" manca al minus un parametro de valor pro satisfacer le requisito.", + "smw-datavalue-keyword-maximum-length": "Le parola clave excedeva le longitude maxime de $1 character{{PLURAL:$1||es}}.", + "smw-property-predefined-eid": "\"$1\" es un [[Special:Types/External identifier|typo]] e proprietate predefinite fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] pro representar identificatores externe.", + "smw-property-predefined-peid": "\"$1\" es un proprietate predefinite que specifica un identificator externe e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pefu": "\"$1\" es un proprietate predefinite fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] pro specificar un ressource externe con un marcator de spatio reservate.", + "smw-property-predefined-long-pefu": "Es expectate que le URI contine un marcator de spatio reservate le qual essera adjustate con un valor de [[Special:Types/External identifier|identificator externe]] pro formar un referentia de ressource valide.", + "smw-type-eid": "\"$1\" es un variante del typo de datos [[Special:Types/Text|Texto]] pro describer ressources externe (basate sur URI) e require que le proprietates assignate declara un [[Property:External formatter uri|URI de formatator externe]].", + "smw-property-predefined-keyw": "\"$1\" es un proprietate predefinite e [[Special:Types/Keyword|typo]] fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] que normalisa un texto e ha un longitude de characteres restringite.", + "smw-type-keyw": "\"$1\" es un variante del typo de datos [[Special:Types/Text|Texto]] que ha un longitude de characteres restringite con un representation de contento normalisate.", + "smw-datavalue-stripmarker-parse-error": "Le valor fornite \"$1\" contine [https://en.wikipedia.org/wiki/Help:Strip_marker marcatores de \"strip\"] e, pro isto, non pote esser analysate sufficientemente.", + "smw-datavalue-parse-error": "Le valor date \"$1\" non esseva comprendite.", + "smw-datavalue-propertylist-invalid-property-key": "Le lista de proprietates \"$1\" contineva un clave de proprietate invalide \"$2\".", + "smw-datavalue-type-invalid-typeuri": "Le typo \"$1\" non poteva esser transformate in un representation valide de URI.", + "smw-datavalue-wikipage-missing-fragment-context": "Le valor de entrata \"$1\" del pagina wiki non pote esser usate sin pagina de contexto.", + "smw-datavalue-wikipage-invalid-title": "Le valor de typo de pagina \"$1\" contine characteres invalide o es incomplete e, pro isto, pote causar resultatos non expectate durante un processo de consulta o annotation.", + "smw-datavalue-wikipage-property-invalid-title": "Le proprietate \"$1\" (como typo de pagina) con le valor de entrata \"$2\" contine characteres invalide o es incomplete e, pro isto, pote causar resultatos non expectate durante un processo de consulta o annotation.", + "smw-datavalue-wikipage-empty": "Le valor de entrata de pagina wiki es vacue (p.ex. [[SomeProperty::]], [[]]) e, pro isto, non pote esser usate como nomine o como parte de un condition de consulta.", + "smw-type-ref-rec": "\"$1\" es un typo de [https://www.semantic-mediawiki.org/wiki/Container contentor] que permitte registrar information additional (per exemplo, datos de provenientia) sur un assignation de valor.", + "smw-datavalue-reference-invalid-fields-definition": "Le typo de datos [[Special:Types/Reference|Referentia]] expecta un lista de proprietates que deberea esser declarate usante le proprietate [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Ha campos].", + "smw-parser-invalid-json-format": "Le analysator de syntaxe JSON ha retornate con un \"$1\".", + "smw-property-preferred-label-language-combination-exists": "\"$1\" non pote esser usate como etiquetta preferite perque le lingua \"$2\" es ja assignate al etiquetta \"$3\".", + "smw-clipboard-copy-link": "Copiar ligamine al area de transferentia", + "smw-property-userdefined-fixedtable": "\"$1\" ha essite configurate como [https://www.semantic-mediawiki.org/wiki/Fixed_properties proprietate fixe] e qualcunque modification de su [https://www.semantic-mediawiki.org/wiki/Type_declaration declaration de typo] necessita executar le script setupStore.php o realisar le carga special [[Special:SemanticMediaWiki|\"Installation e actualisation del base de datos\"]].", + "smw-data-lookup": "Obtention de datos…", + "smw-data-lookup-with-wait": "Le requesta es in curso de processamento e pote prender un momento.", + "smw-no-data-available": "Nulle datos disponibile.", + "smw-property-req-violation-missing-fields": "Al proprietate \"$1\" manca un declaration [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Ha campos] que es obligatori pro iste typo \"$2\".", + "smw-property-req-violation-multiple-fields": "Proprietate \"$1\" contine multiple declarationes [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Ha campos] confligente; solmente un declaration es expectate pro iste typo \"$2\".", + "smw-property-req-violation-missing-formatter-uri": "Al proprietate \"$1\" manca detalios de declaration pro le typo annotate per le fallimento de definir le proprietate URI del formatator externe.", + "smw-property-req-violation-predefined-type": "\"$1\" es un proprietate predefinite que contine un declaration de typo \"$2\" que es incompatibile con le typo predefinite de iste proprietate.", + "smw-property-req-violation-import-type": "Un declaration de typo esseva detegite que es incompatibile con le typo predefinite del vocabulario importate \"$1\". In general, non es necessari declarar un typo perque le informationes es recuperate del definition de importation.", + "smw-property-req-violation-change-propagation-locked-error": "Proprietate \"$1\" ha essite alterate e require que le entitates assignate sia evalutate de novo usante un processo de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagation de cambiamentos]. Le pagina del proprietate ha essite blocate usque le actualisation del specification principal ha terminate pro evitar interruptiones intermediari o specificationes contradictori. Le processo pote prender un momento ante que le pagina pote esser disblocate, perque illo depende del grandor e frequentia del [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cauda de actiones].", + "smw-property-req-violation-change-propagation-locked-warning": "Le proprietate \"$1\" ha essite alterate e require que le entitates assignate sia reevalutate per medio de un processo de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagation de cambiamentos]. Le actualisation pote prender un momento, post que illo depende del grandor e frequentia del [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cauda de actiones]. Es suggerite postponer le cambiamentos al proprietate pro evitar interruptiones intermediari o specificationes contradictori.", + "smw-property-req-violation-change-propagation-pending": "Il ha actualisationes de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagation de cambiamentos] in progresso ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|action|actiones}}] estimate). Es melior non modificar proprietates usque le fin de iste processo, alteremente il pote occurrer interruptiones intermediari o specificationes contradictori.", + "smw-property-req-violation-missing-maps-extension": "Semantic MediaWiki non poteva deteger le extension [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"] que es un prerequisito, e in consequentia limita le functionalitate de iste proprietate (i.e., incapace de immagazinar o processar datos geographic).", + "smw-property-req-violation-type": "Le proprietate contine specificationes de typo concurrente, que pote resultar in annotationes de valor non valide. Pro iste motivo, se attende que un usator assigna solmente un typo appropriate.", + "smw-property-req-error-list": "Le proprietate contine le sequente errores o avisos:", + "smw-property-req-violation-parent-type": "Le proprietate \"$1\" e le proprietate parente assignate \"$2\" ha differente annotationes de typo.", + "smw-property-req-violation-forced-removal-annotated-type": "Le application del [https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance hereditage obligatori del typo del genitor] ha essite activate; le typo de annotation pro le proprietate \"$1\" non correspondente al typo de su proprietate genitor \"$2\" e ha essite alterate pro reflecter iste requisito. Es recommendate adjustar le definition del typo in le pagina de maniera que le message de error e le application obligatori sia removite pro iste proprietate.", + "smw-change-propagation-protection": "Iste pagina es blocate pro evita rle modification accidental de datos durante un processo de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagation de cambiamentos]. Le actualisation pote prender un momento ante que le pagina pote esser disblocate, perque illo depende del grandor e frequentia del [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cauda de actiones].", + "smw-category-change-propagation-locked-error": "Le categoria \"$1\" ha essite alterate. Isto necessita que le entitates includite sia re-evaluate con un processo de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagation de cambiamentos]. Intertanto, le pagina del categoria ha essite blocate usque le fin del actualisation del specification primari, a fin de evitar interruptiones intermediari o specificationes contradictori. Le actualisation pote prender un momento ante que le pagina pote esser disblocate, perque illo depende del grandor e frequentia del [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cauda de actiones].", + "smw-category-change-propagation-locked-warning": "Le categoria \"$1\" ha essite alterate. Isto necessita que le entitates includite sia re-evaluate con un processo de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagation de cambiamentos]. Le actualisation pote prender un momento perque illo depende del grandor e frequentia del [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue cauda de actiones]. Es suggerite postponer cambiamentos al categoria pro evitar interruptiones intermediari o specificationes contradictori.", + "smw-category-change-propagation-pending": "Il ha actualisationes de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagation de cambiamentos] in progresso ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|action|actiones}}] estimate). Es melior non modificar categorias usque le fin de iste processo, alteremente il pote occurrer interruptiones intermediari o specificationes contradictori.", + "smw-category-invalid-value-assignment": "\"$1\" non es recognoscite como categoria o annotation de valor valide.", + "protect-level-smw-pageedit": "Permitter solmente usatores con le permission de modificar paginas (Semantic MediaWiki)", + "smw-create-protection": "Le creation del proprietate \"$1\" es restringite al usatores con le derecto (o [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups gruppo de usatores]) \"$2\" appropriate durante que le [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoritate] es activate.", + "smw-create-protection-exists": "Le modification del proprietate \"$1\" es restringite al usatores con le derecto (o [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups gruppo de usatores]) \"$2\" appropriate durante que le [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoritate] es activate.", + "smw-edit-protection": "Iste pagina es [[Property:Is edit protected|protegite]] pro impedir le modification accidental de datos e pote solmente esser modificate per usatores con le derecto de modification o [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups gruppo de usatores] appropriate (\"$1\").", + "smw-edit-protection-disabled": "Le protection contra le modification ha essite disactivate, dunque \"$1\" non pote esser usate pro proteger paginas de entitate contra le modification non autorisate.", + "smw-edit-protection-auto-update": "Semantic MediaWiki ha actualisate le stato de protection de accordo con le proprietate \"Es protegite contra modification\".", + "smw-edit-protection-enabled": "Protegite contra modification (Semantic MediaWiki)", + "smw-patternedit-protection": "Iste pagina es protegite e pote solmente esser modificate per usatores con le [https://www.semantic-mediawiki.org/wiki/Help:Permissions permission] smw-patternedit appropriate.", + "smw-property-predefined-edip": "\"$1\" es un proprietate predefinite fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] pro indicar si le modification es protegite o non.", + "smw-property-predefined-long-edip": "Ben que qualcunque usator es qualificate pro adder iste proprietate a un subjecto, solmente un usator con un permission dedicate pote modificar o revocar le protection a un entitate post que illo ha essite addite.", + "smw-query-reference-link-label": "Referentia de consulta", + "smw-format-datatable-emptytable": "Nulle datos disponibile in tabella", + "smw-format-datatable-info": "Se monstra le entratas _START_ a _END_ de _TOTAL_", + "smw-format-datatable-infoempty": "Se monstra le entratas 0 a 0 de 0", + "smw-format-datatable-infofiltered": "(filtrate de un total de _MAX_ entratas)", + "smw-format-datatable-lengthmenu": "Monstrar _MENU_ entratas", + "smw-format-datatable-loadingrecords": "Cargamento…", + "smw-format-datatable-processing": "Processamento…", + "smw-format-datatable-search": "Recerca:", + "smw-format-datatable-zerorecords": "Nulle registro correspondente trovate", + "smw-format-datatable-first": "Prime", + "smw-format-datatable-last": "Ultime", + "smw-format-datatable-next": "Sequente", + "smw-format-datatable-previous": "Precedente", + "smw-format-datatable-sortascending": ": activar pro mitter le columna in ordine ascendente", + "smw-format-datatable-sortdescending": ": activar pro mitter le columna in ordine descendente", + "smw-format-datatable-toolbar-export": "Exportar", + "smw-category-invalid-redirect-target": "Le categoria \"$1\" contine un destination de redirection invalide a un spatio de nomines non-categoria.", + "smw-parser-function-expensive-execution-limit": "Le function del analysator syntactic ha attingite le limite de executiones costose (vide le parametro de configuration [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "Semantic MediaWiki refresca iste pagina in function de certe operationes necessari post le execution de consultas.", + "apihelp-smwinfo-summary": "Modulo API pro obtener information sur statisticas de Semantic MediaWiki e altere meta-information.", + "apihelp-ask-summary": "Modulo API pro consultar Semantic MediaWiki usante le linguage \"ask\".", + "apihelp-askargs-summary": "Modulo API pro consultar Semantic MediaWiki usante le linguage \"ask\" como lista de conditiones, visualisationes e parametros.", + "apihelp-browsebyproperty-summary": "Modulo API pro obtener information sur un proprietate o lista de proprietates.", + "apihelp-browsebysubject-summary": "Modulo API pro obtener information sur un subjecto.", + "apihelp-smwtask-summary": "Modulo API pro executar cargas concernente Semantic MediaWiki (solmente pro uso interne, non pro uso public).", + "apihelp-smwbrowse-summary": "Modulo API pro supportar activitates de navigation pro differente typos de entitate in Semantic MediaWiki.", + "apihelp-ask-parameter-api-version": "Formato del sortita:\n;2:Formato compatibile con versiones ancian que usa {} pro le lista de resultatos.\n;3:Formato experimental que usa [] como lista de resultatos.", + "apihelp-smwtask-param-task": "Defini le typo de carga", + "apihelp-smwtask-param-params": "Parametros codificate in JSON que corresponde al requisitos del typo de carga seligite", + "smw-apihelp-smwtask-example-update": "Exemplo de execution de un carga de actualisation pro un subjecto particular:", + "smw-api-invalid-parameters": "Parametros invalide, \"$1\"", + "smw-parser-recursion-level-exceeded": "Le nivello de recursiones de $1 ha essite excedite durante un processo de analyse syntactic. Es suggerite validar le structura del patrono, o si necessari adjustar le parametro de configuration $maxRecursionDepth.", + "smw-property-page-list-count": "Presentation de $1 {{PLURAL:$1|pagina|paginas}} que usa iste proprietate.", + "smw-property-page-list-search-count": "Presentation de $1 {{PLURAL:$1|pagina|paginas}} que usa iste proprietate con un valor correspondente a \"$2\".", + "smw-property-page-filter-note": "Le [https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter filtro de recerca] permitte le inclusion de [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions expressiones de consulta] como ~ o !. Le [https://www.semantic-mediawiki.org/wiki/Query_engine motor de consultas] seligite poterea tamben esser capace de ignorar le differentia inter majusculas e minusculas o supportar altere expressiones curte como:\n\n* in: le resultato debe continer le termino, p.ex. 'in:Foo'\n\n* not: le resultato non debe continer le termino, p.ex. 'not:Bar'", + "smw-property-reserved-category": "Categoria", + "smw-category": "Categoria", + "smw-datavalue-uri-invalid-scheme": " \"$1\" non ha essite listate como schema de URI valide.", + "smw-datavalue-uri-invalid-authority-path-component": "Ha essite constatate que “$1” contine un componente de autoritate o de percurso “$2” non valide.", + "smw-browse-property-group-title": "Gruppo de proprietates", + "smw-browse-property-group-label": "Etiquetta de gruppo de proprietates", + "smw-browse-property-group-description": "Description de gruppo de proprietates", + "smw-property-predefined-ppgr": "\"$1\" es un proprietate predefinite que identifica entitates (principalmente categorias) que es usate como instantia de gruppamento pro proprietates. Es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-filter": "Filtro", + "smw-section-expand": "Expander le section", + "smw-section-collapse": "Contraher le section", + "smw-ask-format-help-link": "Formato [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Adjuta", + "smw-cheat-sheet": "Folio de trucos", + "smw-personal-jobqueue-watchlist": "Observatorio del cauda de actiones", + "smw-personal-jobqueue-watchlist-explain": "Le numeros indica un estimation de entratas del cauda de actiones que attende execution.", + "smw-property-predefined-label-skey": "Clave de ordinamento", + "smw-processing": "Processamento…", + "smw-loading": "Cargamento…", + "smw-fetching": "Obtention…", + "smw-preparing": "Preparation…", + "smw-expand": "Expander", + "smw-collapse": "Contraher", + "smw-copy": "Copiar", + "smw-copy-clipboard-title": "Copia le contento al area de transferentia", + "smw-jsonview-expand-title": "Expande le vista JSON", + "smw-jsonview-collapse-title": "Contrahe le vista JSON", + "smw-jsonview-search-label": "Cercar:", + "smw-redirect-target-unresolvable": "Le destination es irresolubile pro le ration \"$1\"", + "smw-types-title": "Typo: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "Non es permittite cambiar le modello de contento de un pagina de [https://www.semantic-mediawiki.org/wiki/Help:Schema schema].", + "smw-schema-namespace-edit-protection": "Iste pagina es protegite e pote solmente esser modificate per usatores con le [https://www.semantic-mediawiki.org/wiki/Help:Permissions permission] smw-schemaedit appropriate.", + "smw-schema-namespace-edit-protection-by-import-performer": "Iste pagina ha essite importate per un [https://www.semantic-mediawiki.org/wiki/Import_performer executor de importationes] listate, e isto significa que iste pagina pote solmente esser cambiate per iste usatores listate.", + "smw-schema-error-title": "Error{{PLURAL:$1||es}} de validation", + "smw-schema-error-schema": "Le schema de validation '''$1''' ha trovate le sequente inconsistentias:", + "smw-schema-error-miscellaneous": "Error miscellanee ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "Le validator de JSON \"$1\" non es accessibile (o installate); pro isto, le file \"$2\" non pote esser examinate, impediente le salveguarda o alteration del pagina actual.", + "smw-schema-error-validation-file-inaccessible": "Le file de validation \"$1\" es inaccessibile.", + "smw-schema-error-type-missing": "Al contento manca un typo necessari pro render lo recognoscibile e usabile in le [https://www.semantic-mediawiki.org/wiki/Help:Schema spatio de nomines de schema].", + "smw-schema-error-type-unknown": "Le typo \"$1\" non es registrate e non pote esser usate pro contento in le spatio de nomines [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-error-json": "Error JSON: \"$1\"", + "smw-schema-error-input": "Le validation de entrata ha trovate le sequente problemas, le quales debe esser remediate ante que le contento pote esser salveguardate. Le pagina de [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling adjuta sur le schemas] poterea fornir alcun consilios sur como remover inconsistentias o resolver problemas con le entrata de schemas.", + "smw-schema-error-input-schema": "Le schema de validation '''$1''' ha trovate le sequente inconsistentias e illos debe esser remediate ante que le contento pote esser salveguardate. Le pagina de [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling adjuta sur le schemas] pote fornir alcun consilios sur como resolver iste problemas.", + "smw-schema-error-title-prefix": "Iste typo de schema require que le titulo del schema comencia con un prefixo \"$1\".", + "smw-schema-validation-error": "Le typo \"$1\" non es registrate e non pote esser usate pro contento in le spatio de nomines [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-validation-schema-title": "Schema JSON", + "smw-schema-summary-title": "Summario", + "smw-schema-title": "Schema", + "smw-schema-usage": "Uso", + "smw-schema-type": "Typo de schema", + "smw-schema-type-description": "Description del typo", + "smw-schema-description": "Description del schema", + "smw-schema-description-link-format-schema": "Iste typo de schema supporta le definition de characteristicas pro crear ligamines sensibile al contexto in connexion con un proprietate assignate a un [[Property:Formatter schema|schema formatator]].", + "smw-schema-description-search-form-schema": "Iste typo de schema supporta le definition de formularios de entrata e characteristicas pro le profilo de [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch recerca extendite] ubi illo contine instructiones sur como generar campos de entrata, definir spatios de nomines predefinite, o declarar expressiones de prefixo pro un requesta de recerca.", + "smw-schema-description-property-profile-schema": "Iste typo de schema supporta le definition de un profilo pro declarar characteristicas al proprietate assignate e su valores de annotation.", + "smw-schema-description-facetedsearch-profile-schema": "Iste typo de schema supporta le definition de profilos usate como parte del ambiente de [[Special:FacetedSearch|recerca in faciettas]]", + "smw-schema-description-property-group-schema": "Iste typo de schema supporta le definition de [https://www.semantic-mediawiki.org/wiki/Help:Property_group gruppos de proprietates] pro adjutar a structurar le interfacie de [https://www.semantic-mediawiki.org/wiki/Help:Special:Browse navigation].", + "smw-schema-description-property-constraint-schema": "Isto supporta le definition de regulas de restriction pro un instantia de proprietate assi como le valores assignate a illo.", + "smw-schema-description-class-constraint-schema": "Iste typo de schema supporta le definition de regulas de restriction pro un instantia de classe (i.e. un categoria).", + "smw-schema-tag": "Etiquetta{{PLURAL:$1||s}}", + "smw-property-predefined-constraint-schema": "\"$1\" es un proprietate predefinite que defini un schema de restriction e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-desc": "\"$1\" es un proprietate predefinite que immagazina un description de schema e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-def": "\"$1\" es un proprietate predefinite que immagazina le contento del schema e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-tag": "\"$1\" es un proprietate predefinite fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] pro identificar un collection de schemas.", + "smw-property-predefined-long-schema-tag": "Un etiquetta que identifica le schemas de contento o characteristicas similar.", + "smw-property-predefined-schema-type": "\"$1\" es un proprietate predefinite que describe un typo pro distinguer un gruppo de schemas e es fornite per [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-schema-type": "Cata [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type typo] forni su proprie interpretation de elementos de syntaxe e regulas de application e pote esser exprimite con le adjuta de un [https://www.semantic-mediawiki.org/wiki/Help:Schema#validation schema de validation].", + "smw-ask-title-keyword-type": "Recerca de parolas clave", + "smw-ask-message-keyword-type": "Iste recerca corresponde al condition $1.", + "smw-remote-source-unavailable": "Non pote connecter al destination remote \"$1\".", + "smw-remote-source-disabled": "Le fonte '''$1''' ha disactivate le supporto de requestas remote!", + "smw-remote-source-unmatched-id": "Le fonte '''$1''' non concorda con un version de Semantic MediaWiki que pote supportar un requesta remote.", + "smw-remote-request-note": "Le resultato es recuperate del fonte remote '''$1''' e il es probabile que le contento generate continera information que non es disponibile desde le wiki actual.", + "smw-remote-request-note-cached": "Le resultato ha essite '''immagazinate in cache''' desde le fonte remote '''$1''' e il es probabile que le contento generate continera information que non es disponibile desde le wiki actual.", + "smw-parameter-missing": "Le parametro \"$1\" manca.", + "smw-property-tab-usage": "Uso", + "smw-property-tab-profile-schema": "Schema de profilo", + "smw-property-tab-redirects": "Synonymos", + "smw-property-tab-subproperties": "Subproprietates", + "smw-property-tab-errors": "Assignationes incorrecte", + "smw-property-tab-constraint-schema": "Schema de restriction", + "smw-property-tab-constraint-schema-title": "Schema de restriction compilate", + "smw-property-tab-specification": "… plus", + "smw-concept-tab-list": "Lista", + "smw-concept-tab-errors": "Errores", + "smw-ask-tab-result": "Resultato", + "smw-ask-tab-extra": "Extra", + "smw-ask-tab-debug": "Debug", + "smw-ask-tab-code": "Codice", + "smw-install-incomplete-tasks-title": "Cargas de administration incomplete", + "smw-install-incomplete-intro": "Il ha $2 carga{{PLURAL:$2||s}} incomplete o [[Special:PendingTaskList|pendente]] a facer pro finir le {{PLURAL:$1|installation|actualisation}} de [https://www.semantic-mediawiki.org Semantic MediaWiki]. Un administrator o usator con sufficiente derectos pote completar lo{{PLURAL:$2||s}}. Isto debe esser facite ante de adder nove datos pro evitar inconsistentias.", + "smw-install-incomplete-intro-note": "Iste message disparera post que tote le cargas pertinente ha essite concludite.", + "smw-pendingtasks-intro-empty": "Nulle cargas ha essite classificate como pendente, incomplete, o non concludite in connexion con Semantic MediaWiki.", + "smw-pendingtasks-intro": "Iste pagina forni information sur le cargas que ha essite classificate como pendente, incomplete, o non concludite in connexion con Semantic MediaWiki.", + "smw-pendingtasks-setup-no-tasks-intro": "Le installation (o actualisation) ha terminate. Actualmente il non ha cargas pendente o non concludite.", + "smw-pendingtasks-tab-setup": "Installation", + "smw-updateentitycollation-incomplete": "Le parametro [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] recentemente alterate require que le script [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php] es executate de sorta que le entitates es actualisate e continera le valor correcte del campo de ordination.", + "smw-updateentitycountmap-incomplete": "Le campo smw_countmap addite in un edition recente require que le script [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php] es executate de sorta que functiones pote acceder al contento de iste campo.", + "smw-populatehashfield-incomplete": "Le plenamento del campo smw_hash ha essite omittite durante le installation. Le script [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] debe esser executate.", + "smw-install-incomplete-populate-hash-field": "Le plenamento del campo smw_hash ha essite omittite durante le installation. Le script [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] debe esser executate.", + "smw-install-incomplete-elasticstore-indexrebuild": "Le ElasticStore ha essite seligite como le mechanismo de [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore immagazinage predefinite], totevia le extension non poteva trovar alcun indication que le script [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] ha essite executate. Per favor, executa le script como instruite.", + "smw-elastic-rebuildelasticindex-run-incomplete": "Le ElasticStore ha essite seligite como le mechanismo de [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore immagazinage predefinite], totevia le extension non poteva trovar alcun indication que le script [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] ha essite executate. Per favor, executa le script como instruite.", + "smw-pendingtasks-setup-intro": "Le {{PLURAL:$1|installation|actualisation}} de Semantic MediaWiki ha classificate le sequente cargas como [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade incomplete] e un administrator (o usator con derectos sufficiente) debe concluder ille cargas ante que le usatores continua a crear o alterar contento.", + "smw-pendingtasks-setup-tasks": "Cargas", + "smw-filter-count": "Numero de filtros", + "smw-es-replication-check": "Verification del replication (Elasticsearch)", + "smw-es-replication-error": "Problema de replication de Elasticsearch", + "smw-es-replication-file-ingest-error": "Problema de ingestion de file", + "smw-es-replication-maintenance-mode": "Mantenentia de Elasticsearch", + "smw-es-replication-error-missing-id": "Le surveliantia de replication ha trovate que le articulo \"$1\" (ID: $2) manca sur le servitor Elasticsearch.", + "smw-es-replication-error-divergent-date": "Le surveliantia de replication ha trovate que le data de modification monstra un discrepantia pro le articulo \"$1\" (ID: $2).", + "smw-es-replication-error-divergent-date-short": "Le sequente information de data ha essite usate pro comparation:", + "smw-es-replication-error-divergent-date-detail": "Data de modification referentiate:\n*Elasticsearch: $1 \n*Base de datos: $2", + "smw-es-replication-error-divergent-revision": "Le surveliantia de replication ha trovate que le version associate monstra un discrepantia pro le articulo \"$1\" (ID: $2).", + "smw-es-replication-error-divergent-revision-short": "Le sequente datos de version associate ha essite usate pro comparation:", + "smw-es-replication-error-divergent-revision-detail": "Version associate referentiate:\n*Elasticsearch: $1 \n*Base de datos: $2", + "smw-es-replication-error-maintenance-mode": "Le replication de Elasticsearch es actualmente restringite proque illo opera in un [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode modo de mantenentia], le cambios a entitates e paginas non es immediatemente visibile e le resultatos de consultas pote continer information obsolete.", + "smw-es-replication-error-no-connection": "Le surveliantia de replication non pote exequer verificationes perque illo non pote establir un connexion al racemo Elasticsearch.", + "smw-es-replication-error-bad-request-exception": "Le gestor de connexiones a Elasticsearch ha levate un exception de requesta incorrecte (\"400 conflict http error\") que indica un problema persistente durante le replication e requestas de recerca.", + "smw-es-replication-error-other-exception": "Le gestor de connexiones a Elasticsearch ha levate un exception: \"$1\".", + "smw-es-replication-error-suggestions": "Es suggerite modificar o purgar le pagina pro eliminar le discrepantia. Si le problema persiste, alora verifica le racemo de Elasticsearch mesme (allocator, exceptiones, spatio de disco, etc.).", + "smw-es-replication-error-suggestions-maintenance-mode": "Es suggerite contactar le administrator del wiki pro verificar si un [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild reconstruction del indice] es actualmente in curso o le parametro refresh_interval non ha essite configurate al valor predefinite expectate.", + "smw-es-replication-error-suggestions-no-connection": "Es suggerite contactar le administrator del wiki pro signalar le problema \"nulle connexion\".", + "smw-es-replication-error-suggestions-exception": "Per favor consulta le registros pro information sur le stato de Elasticsearch, su indices, e possibile problemas de mal configuration.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "Le surveliantia de replication ha trovate que a \"$1\" manca un annotation de [[Property:File attachment|annexo de file]], indicante que le processator de ingestion de file non ha comenciate o non ha finite.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "Per favor assecura te que le carga de [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion ingestion de files] es programmate e executate ante que le indice de annotationes e files es rendite disponibile.", + "smw-report": "Reporto", + "smw-legend": "Legenda", + "smw-datavalue-constraint-schema-category-invalid-type": "Le schema annotate \"$1\" es invalide pro un categoria; illo require un typo \"$2\".", + "smw-datavalue-constraint-schema-property-invalid-type": "Le schema annotate \"$1\" es invalide pro un proprietate; illo require un typo \"$2\".", + "smw-entity-examiner-check": "Execution de {{PLURAL:$1|un examinator|examinatores}} in secunde plano", + "smw-entity-examiner-indicator": "Pannello de problemas de entitates", + "smw-entity-examiner-deferred-check-awaiting-response": "Le examinator \"$1\" attende actualmente un responsa del servitor.", + "smw-entity-examiner-deferred-elastic-replication": "Elasticsearch", + "smw-entity-examiner-deferred-constraint-error": "Restriction", + "smw-entity-examiner-associated-revision-mismatch": "Version", + "smw-entity-examiner-deferred-fake": "False", + "smw-entity-examiner-indicator-suggestions": "Como parte del examination de entitates, le sequente problema{{PLURAL:$1||s}} ha essite trovate e es suggerite revider {{PLURAL:$1|le problema|los}} con attention e prender le action{{PLURAL:$1||es}} appropriate.", + "smw-indicator-constraint-violation": "Restriction{{PLURAL:$1||es}}", + "smw-indicator-revision-mismatch": "Version", + "smw-indicator-revision-mismatch-error": "Le verification de [https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner versiones associate] ha trovate un disaccordo inter le version referentiate in MediaWiki e le version associate in Semantic MediaWiki pro iste entitate.", + "smw-indicator-revision-mismatch-comment": "Un discrepantia normalmente indica que alcun processo ha interrumpite le operation de immagazinage in Semantic MediaWiki. Es recommendate revider le registros del servitor e cercar exceptiones o altere fallimentos.", + "smw-facetedsearch-intro-text": "Le [https://www.semantic-mediawiki.org/wiki/Faceted_search recerca in faciettas] de Semantic MediaWiki forni al usatores un interfacie simple pro restringer rapidemente le resultatos del consulta a partir de un condition per medio de vistas in faciettas create desde proprietates e categorias dependente.", + "smw-facetedsearch-intro-tips": "*Usa category:?, property:? o concept:? pro trovar le categorias, proprietates o conceptos disponibile pro construer un insimul de conditiones\n*Usa le syntaxe #ask pro describer un condition (p.ex. [[Category:Foo]])\n* Usa “OR”, “AND”, o altere expressiones de consulta pro crear conditiones complexe\n*Expressiones como in: o phrase: pote esser usate pro trovar phrases complete o pro recercas non structurate, si le [https://www.semantic-mediawiki.org/wiki/Query_engine motor de consultas] seligite supporta ille expressiones", + "smw-facetedsearch-profile-label-default": "Profilo predefinite", + "smw-facetedsearch-intro-tab-explore": "Explorar", + "smw-facetedsearch-intro-tab-search": "Cercar", + "smw-facetedsearch-explore-intro": "Selige un collection e comenciar a percurrer.", + "smw-facetedsearch-profile-options": "Optiones de profilo", + "smw-facetedsearch-size-options": "Optiones de pagination", + "smw-facetedsearch-order-options": "Optiones de ordine", + "smw-facetedsearch-format-options": "Optiones de presentation", + "smw-facetedsearch-format-table": "Tabella", + "smw-facetedsearch-input-filter-placeholder": "Filtrar…", + "smw-facetedsearch-no-filters": "Necun filtro.", + "smw-facetedsearch-no-filter-range": "Necun gamma de filtros.", + "smw-facetedsearch-no-output": "Pro le formato “$1” seligite, necun sortita es disponibile.", + "smw-facetedsearch-clear-filters": "Rader filtro{{PLURAL:$1||s}}", + "smw-search-placeholder": "Cercar…", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "Infra appare non plus de {{PLURAL:$1|1 resultato|$1 resultatos}} a partir del numero $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/id.json b/mediawiki/extensions/SemanticMediaWiki/i18n/id.json new file mode 100644 index 0000000..fb9e6d1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/id.json @@ -0,0 +1,271 @@ +{ + "@metadata": { + "authors": [ + "Agam Riyandana", + "Arief", + "ArlandGa", + "Bagas Chrisara", + "Bennylin", + "Daud I.F. Argana", + "Farras", + "Hidayatsrf", + "Ilham151096", + "Irwangatot", + "IvanLanin", + "Leapofod", + "Naval Scene", + "Presidenvolksraad", + "RXerself", + "Rachmat.Wahidi", + "Rachmat04", + "Rebeccayoga", + "Rex", + "පසිඳු කාවින්ද", + "아라" + ] + }, + "smw-desc": "Membuat wiki Anda lebih mudah diakses - oleh mesin ''dan'' manusia ([https://www.semantic-mediawiki.org/wiki/Help:User_manual dokumentasi daring])", + "smw-error": "Galat", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] telah dipasang dan diaktifkan tetapi tidak punya [https://www.semantic-mediawiki.org/wiki/Help:Upgrade kunci peningkatan] yang sesuai.", + "smw-upgrade-release": "Rilis", + "smw-upgrade-progress": "Kemajuan", + "smw-upgrade-error-why-title": "Mengapa saya melihat halaman ini?", + "smw-upgrade-error-how-title": "Bagaimana saya memperbaiki galat ini?", + "smw-extensionload-error-why-title": "Mengapa saya melihat halaman ini?", + "smw-extensionload-error-how-title": "Bagaimana saya memperbaiki galat ini?", + "smw-upgrade-maintenance-why-title": "Mengapa saya melihat halaman ini?", + "smw_viewasrdf": "Umpan RDF", + "smw_finallistconjunct": ", dan", + "smw-factbox-facts": "Fakta", + "smw_isspecprop": "Sifat ini adalah sifat khusus di wiki ini.", + "smw_concept_description": "Deskripsi konsep \"$1\"", + "smw_no_concept_namespace": "Konsep hanya dapat didefinisikan pada halaman dalam ruang nama Konsep:.", + "smw_multiple_concepts": "Setiap halaman konsep hanya dapat memiliki satu konsep definisi.", + "smw_concept_cache_miss": "Konsep \"$1\" tidak dapat digunakan saat ini karena konfigurasi wiki membutuhkannya untuk dihitung secara luring.\nJika masalah ini tidak hilang setelah beberapa waktu, mintalah pengelola situs untuk membuat konsep ini tersedia.", + "smw_noinvannot": "Nilai tidak dapat diberikan pada properti inversi.", + "version-semantic": "Ekstensi semantik", + "smw_baduri": "URI berbentuk \"$1\" tidak diperbolehkan.", + "smw_printername_count": "Hasil perhitungan", + "smw_printername_csv": "Expor CSV", + "smw_printername_dsv": "Ekspor DSV", + "smw_printername_debug": "Debug query (untuk ahli)", + "smw_printername_embedded": "Sertakan isi halaman", + "smw_printername_json": "Ekspor JSON", + "smw_printername_list": "Daftar", + "smw_printername_plainlist": "Daftar polos", + "smw_printername_ol": "Daftar bernomor", + "smw_printername_ul": "Daftar berpoin", + "smw_printername_table": "Tabel", + "smw_printername_broadtable": "Tabel lebar", + "smw_printername_template": "Templat", + "smw_printername_templatefile": "Berkas templat", + "smw_printername_rdf": "Ekspor RDF", + "smw_printername_category": "Kategori", + "validator-type-class-SMWParamSource": "teks", + "smw-paramdesc-limit": "Jumlah maksimum hasil yang diberikan", + "smw-paramdesc-headers": "Tampilkan nama kepala/properti", + "smw-paramdesc-mainlabel": "Label untuk nama halaman utama", + "smw-paramdesc-link": "Tampilkan nilai sebagai pranala", + "smw-paramdesc-intro": "Tulisan yang ditampilkan sebelum hasil kueri, jika ada", + "smw-paramdesc-outro": "Tulisan untuk ditampilkan setelah hasil kueri, jika ada", + "smw-paramdesc-default": "Tulisan untuk ditampilkan jika tidak ada hasil kueri", + "smw-paramdesc-sep": "Pemisah di antara nilai-nilai", + "smw-paramdesc-propsep": "Pemisah di antara atribut-atribut entri hasil", + "smw-paramdesc-valuesep": "Pemisah di antara nilai-nilai atribut hasil", + "smw-paramdesc-showsep": "Tampilkan pemisah di atas berkas CSV (\"sep=\")", + "smw-paramdesc-template": "Nama templat yang digunakan untuk menampilkan cetakan", + "smw-paramdesc-columns": "Jumlah kolom untuk menampilkan hasil", + "smw-paramdesc-userparam": "Sebuah nilai dimasukkan ke setiap pencarian templat, bila sebuah templat digunakan", + "smw-paramdesc-introtemplate": "Nama templat yang ditampilkan sebelum hasil pencarian, bila ada", + "smw-paramdesc-outrotemplate": "Nama templat yang ditampilkan setelah hasil pencarian, bila ada", + "smw-paramdesc-embedformat": "Tag HTML yang digunakan untuk menentukan judul", + "smw-paramdesc-embedonly": "Jangan tampilkan judul", + "smw-paramdesc-rdfsyntax": "Sintaks RDF untuk digunakan", + "smw-paramdesc-csv-sep": "Menentukan pemisah kolom", + "smw-paramdesc-csv-valuesep": "Menentukan pemisah nilai", + "smw-paramdesc-dsv-separator": "Pemisah yang dipakai", + "smw-paramdesc-dsv-filename": "Nama berkas DSV", + "smw-paramdesc-searchlabel": "Teks untuk melanjutkan pencarian", + "smw_iq_disabled": "Query semantik telah dinonaktifkan di wiki ini.", + "smw_iq_moreresults": "… hasil lebih lanjut", + "smw_parseerror": "Nilai yang diberikan tidak dipahami.", + "smw_notitle": "\"$1\" tidak dapat digunakan sebagai nama halaman di wiki ini.", + "smw_noproperty": "\"$1\" tidak dapat digunakan sebagai nama properti di wiki ini.", + "smw_wrong_namespace": "Hanya halaman pada ruang nama \"$1\" yang diizinkan di sini.", + "smw_manytypes": "Lebih dari satu tipe yang ditetapkan untuk properti.", + "smw_emptystring": "Untaian kosong tidak diterima.", + "smw_notinenum": "\"$1\" tidak ada dalam daftar ($2) dari [[Property:Allows value|nilai diizinkan]] untuk atribut \"$3\".", + "smw_noboolean": "\"$1\" tidak dikenali sebagai suatu nilai Boolean (true/false)", + "smw_true_words": "benar,t,ya,y", + "smw_false_words": "salah,f,tidak,n", + "smw_nofloat": "\"$1\" bukan angka.", + "smw_infinite": "Angka sebesar \"$1\" tidak didukung.", + "smw_unitnotallowed": "\"$1\" bukanlah satuan ukuran yang sah untuk properti ini.", + "smw_nounitsdeclared": "Tidak ada satuan pengukuran yang dinyatakan untuk properti ini.", + "smw_novalues": "Tidak ada nilai yang disebutkan.", + "smw_nodatetime": "Tanggal \"$1\" tidak dipahami.", + "smw_toomanyclosing": "Tampaknya ada terlalu banyak penyebutan \"$1\" pada query.", + "smw_noclosingbrackets": "Penggunaan beberapa \"[[\" pada query Anda tidak ditutup dengan pasangan \"]]\".", + "smw_misplacedsymbol": "Simbol \"$1\" digunakan pada tempat yang mubazir.", + "smw_unexpectedpart": "Bagian \"$1\" dari query tidak dipahami.\nHasilnya mungkin tidak seperti yang diharapkan.", + "smw_emptysubquery": "Beberapa subquery tidak memiliki kondisi yang valid.", + "smw_misplacedsubquery": "Beberapa subquery digunakan pada tempat yang tidak mengizinkan subquery.", + "smw_valuesubquery": "Subquery tidak didukung untuk nilai dari properti \"$1\".", + "smw_badqueryatom": "Beberapa bagian \"[[…]]\" pada query tidak dipahami.", + "smw_propvalueproblem": "Nilai properti \"$1\" tidak dipahami.", + "smw_noqueryfeature": "Beberapa fitur query belum didukung di wiki ini dan sebagian query diabaikan ($1).", + "smw_noconjunctions": "Konjungsi dalam query tidak didukung dalam wiki ini dan sebagian dari query diabaikan ($1).", + "smw_nodisjunctions": "Disjungsi dalam query tidak didukung dalam wiki ini dan sebagian dari query diabaikan ($1).", + "smw_querytoolarge": "{{PLURAL:$2|Kondisi}} kueri berikut tidak dapat diproses karena pembatas wiki terhadap ukuran atau kedalaman kueri: $1.", + "smw_notemplategiven": "Berikan suatu nilai bagi parameter \"template\" agar format query ini dapat bekerja.", + "smw_db_sparqlqueryproblem": "Hasil kueri tidak dapat diambil dari basis data SPARQL. Galat ini mungkin sementara atau menandakan adanya bug dalam perangkat lunak basis data.", + "smw_type_header": "Properti bertipe \"$1\"", + "smw_typearticlecount": "Menampilkan $1 {{PLURAL:$1|properti|properti}} yang menggunakan tipe ini.", + "smw_attribute_header": "Halaman yang menggunakan properti \"$1\"", + "smw_attributearticlecount": "Menampilkan $1 {{PLURAL:$1|halaman|halaman}} yang menggunakan properti ini.", + "smw-propertylist-subproperty-header": "Subatribut", + "smw-propertylist-redirect-header": "Sinonim", + "specialpages-group-smw_group-maintenance": "Pemeliharaan", + "exportrdf": "Ekspor halaman ke RDF", + "smw_exportrdf_docu": "Halaman ini mengizinkan Anda untuk mendapatkan data dari suatu halaman dalam format RDF.\nUntuk mengekspor halaman, masukkan judul di kotak teks di bawah, satu judul per baris.", + "smw_exportrdf_recursive": "Ekspor semua halaman yang terkait secara rekursif.\nPerhatikan bahwa hasilnya bisa besar!", + "smw_exportrdf_backlinks": "Ekspor juga semua halaman yang merujuk ke halaman yang diekspor.\nMenghasilkan RDF yang dapat ditelurusi.", + "smw_exportrdf_lastdate": "Jangan mengekspor halaman yang tidak berubah sejak waktu yang diberikan.", + "smw_exportrdf_submit": "Ekspor", + "uriresolver": "Pengurai URI", + "properties": "Atribut", + "smw-categories": "Daftar kategori", + "smw_properties_docu": "Properti berikut digunakan dalam wiki ini.", + "smw_property_template": "$1 dari tipe $2 ($3 {{PLURAL:$3|digunakan|digunakan}})", + "smw_propertylackspage": "Semua properti harus dideskripsikan dengan suatu halaman!", + "smw_propertylackstype": "Tidak ada tipe yang dispesifikasikan untuk properti ini (untu saat ini diasumsikan bertipe $1)", + "smw_propertyhardlyused": "Properti ini hampir tak digunakan di wiki ini!", + "smw-property-name-invalid": "Atribut $1 tidak bisa digunakan (nama atribut tidak sah).", + "smw-sp-property-searchform": "Menampilkan atribut yang berisi:", + "smw-special-property-searchform": "Menampilkan atribut yang berisi:", + "smw-special-property-searchform-options": "Pilihan", + "smw-special-wantedproperties-filter-label": "Penyaring:", + "smw-special-wantedproperties-filter-none": "Tidak ada", + "smw-special-wantedproperties-filter-unapproved": "Tidak disetujui", + "concepts": "Konsep", + "smw-special-concept-header": "Daftar konsep", + "smw-special-concept-empty": "Tidak ada konsep yang ditemukan", + "unusedproperties": "Properti yang tak digunakan", + "smw-unusedproperties-docu": "Halaman ini berisi daftar [https://www.semantic-mediawiki.org/wiki/Unused_properties atribut tidak terpakai] yang dideklarasikan padahal tidak ada halaman lain yang menggunakannya. Untuk daftar sejenis, lihat halaman istimewa [[Special:Properties|semua atribut]] atau [[Special:WantedProperties|yang diinginkan saja]].", + "smw-unusedproperty-template": "$1 bertipe $2", + "wantedproperties": "Properti yang diinginkan", + "smw-wantedproperties-docu": "Halaman ini berisi daftar [https://www.semantic-mediawiki.org/wiki/Wanted_properties atribut yang diinginkan] yang dideklarasikan padahal tidak ada halaman lain yang menggunakannya. Untuk daftar sejenis, lihat halaman istimewa [[Special:Properties|semua atribut]] atau [[Special:UnusedProperties|yang tidak digunakan saja]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|penggunaan|penggunaan}})", + "smw-special-wantedproperties-docu": "Halaman ini berisi daftar [https://www.semantic-mediawiki.org/wiki/Wanted_properties atribut yang diinginkan] yang dideklarasikan padahal tidak ada halaman lain yang menggunakannya. Untuk daftar sejenis, lihat halaman istimewa [[Special:Properties|semua atribut]] atau [[Special:UnusedProperties|yang tidak digunakan saja]].", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|penggunaan}})", + "smw_purge": "Segarkan", + "types": "Tipe", + "smw_types_docu": "Daftar [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes tipe data yang tersedia] dengan setiap [https://www.semantic-mediawiki.org/wiki/Help:Datatype tipe] merepresentasikan sehimpunan atribut unik untuk menjelaskan nilai penyimpanan dan karakteristik tampilan yang diturunkan dari atribut yang ditetapkan.", + "smw_uri_doc": "Pengurai URI menerapkan [$1 W3C pencarian TAG pada httpRange-14].\nIni memastikan bahwa manusia tidak berubah menjadi situs web.", + "ask": "Pencarian semantik", + "smw_ask_sortby": "Urut berdasar kolom (pilihan)", + "smw_ask_ascorder": "Menanjak", + "smw_ask_descorder": "Menurun", + "smw_ask_submit": "Temukan hasil", + "smw_ask_editquery": "Sunting kueri", + "smw_add_sortcondition": "[Tambahkan kondisi pengurutan]", + "smw_ask_hidequery": "Sembunyikan kueri (tampilan padat)", + "smw_ask_help": "Bantuan kueri", + "smw_ask_queryhead": "Kondisi", + "smw_ask_printhead": "Pemilihan untuk ditampilkan", + "smw_ask_printdesc": "(tambahkan satu nama properti per baris)", + "smw_ask_format_as": "Format sebagai:", + "smw_ask_defaultformat": "baku", + "smw_ask_otheroptions": "Pilihan lain", + "smw_ask_show_embed": "Tampilkan kode sertaan", + "smw_ask_hide_embed": "Sembunyikan kode sertaan", + "smw_ask_embed_instr": "Untuk menyertakan query ini secara tersisip dalam suatu halaman wiki gunakan kode di bawah.", + "searchbyproperty": "Pencarian menurut properti", + "smw_sbv_docu": "Cari semua halaman yang memiliki properti dan nilai yang diberikan.", + "smw_sbv_novalue": "Masukkan nilai yang valid untuk properti, atau lihat semua nilai properti untuk \"$1\".", + "smw_sbv_displayresultfuzzy": "Daftar semua halaman yang memiliki properti \"$1\" dengan nilai \"$2\".\nKarena hanya ada sedikit hasil, nilai yang mendekati juga ditampilkan.", + "smw_sbv_property": "Properti:", + "smw_sbv_value": "Nilai:", + "smw_sbv_submit": "Temukan hasil", + "browse": "Jelajahi wiki", + "smw_browselink": "Jelajahi properti", + "smw_browse_article": "Masukkan nama halaman untuk memulai penelusuran", + "smw_browse_go": "Tuju ke", + "smw_browse_show_incoming": "Tampilkan properti yang bertaut ke sini", + "smw_browse_hide_incoming": "Sembunyikan properti yang bertaut ke sini", + "smw_browse_no_outgoing": "Halaman ini tidak memiliki properti.", + "smw_browse_no_incoming": "Tidak ada properti yang bertaut ke halaman ini.", + "smw_inverse_label_default": "$1 dari", + "smw_inverse_label_property": "Label properti inversi", + "pageproperty": "Pencarian properti halaman", + "smw_pp_docu": "Masukkan satu halaman dan satu atribut, atau hanya satu atribut untuk mengambil semua nilai yang ditetapkan.", + "smw_pp_from": "Dari halaman:", + "smw_pp_type": "Properti:", + "smw_pp_submit": "Temukan hasil", + "smw-prev": "{{PLURAL:$1|$1}} sebelumnya", + "smw-next": "{{PLURAL:$1|$1}} selanjutnya", + "smw_result_prev": "Sebelumnya", + "smw_result_next": "Selanjutnya", + "smw_result_results": "Hasil", + "smw_result_noresults": "Tidak ada hasilnya.", + "smwadmin": "Dasbor Semantic MediaWiki", + "smw-admin-statistics-job-title": "Statistik pekerjaan", + "smw-admin-setupsuccess": "Mesin penyimpanan telah disiapkan.", + "smw_smwadmin_return": "Kembali ke $1", + "smw_smwadmin_updatestarted": "Proses pemutakhiran baru untuk menyegarkan data semantik dimulai.\nSemua data yang tersimpan akan dibangun kembali atau diperbaiki ketika diperlukan.\nAnda dapat mengikuti kemajuan pembaruan pada halaman khusus ini.", + "smw_smwadmin_updatenotstarted": "Sudah ada suatu proses pembaruan yang sedang berjalan.\nJangan membuat proses lain.", + "smw_smwadmin_updatestopped": "Semua proses pembaruan yang ada telah dihentikan.", + "smw_smwadmin_updatenotstopped": "Untuk menghentikan proses pembaruan yang sedang berjalan, Anda harus memilih kotak centang untuk menunjukkan bahwa Anda benar-benar yakin.", + "smw-admin-docu": "Halaman istimewa ini akan membantu Anda selama instalasi, pemutakhiran, pemeliharaan, dan penggunaan Semantic MediaWiki dan juga memberikan fungsi dan pekerjaan adminstratif tambahan beserta statistik.\nJangan lupa untuk mencadangkan data Anda yang berharga sebelum melaksanakan fungsi administratif.", + "smw-admin-environment": "Lingkungan perangkat lunak", + "smw-admin-db": "Persiapan basis data", + "smw-admin-db-preparation": "Inisialisasi tabel sedang berjalan dan mungkin perlu beberapa waktu sebelum hasilnya ditampilkan tergantung ukuran dan pengoptimalan tabel yang ada.", + "smw-admin-dbdocu": "Semantic MediaWiki memerlukan struktur basis datanya sendiri (dan tidak bergantung pada MediaWiki sehingga tidak mempengaruhi bagian instalasi MediaWiki lainnya) untuk menyimpan data semantik.\nFungsi penyiapan ini bisa dieksekusi beberapa kali tanpa menyebabkan bahasa, tetapi hanya perlu dilakukan sekali ketika instalasi atau memutakhirkan.", + "smw-admin-permissionswarn": "Jika operasi gagal karena kesalahan SQL, pengguna basis data yang digunakan oleh wiki Anda (cek LocalSettings.php Anda) mungkin tidak mempunyai hak akses yang cukup.\nAnda dapat memberikan hak akses tambahan untuk membuat dan menghapus tabel, memasukkan sementara pengguna root basis data Anda di LocalSettings.php, atau menggunakan skrip pemeliharaan setupStore.php yang dapat menggunakan hak akses seorang pengurus.", + "smw-admin-dbbutton": "Inisiasi atau tingkatkan tabel", + "smw-admin-announce": "Umumkan wiki Anda", + "smw-admin-announce-text": "Jika wiki Anda bersifat publik, Anda bisa mendaftarkannya ke WikiApiary, wiki pelacak wiki.", + "smw_smwadmin_datarefresh": "Perbaikan dan peningkatan data", + "smw_smwadmin_datarefreshdocu": "Dimungkinkan untuk memulihkan semua data Semantic MediaWiki berdasarkan isi yang ada sekarang di wiki ini.\nHal ini berguna untuk memperbaiki data yang rusak atau menyegarkan data jika format internal telah berubah karena suatu peningkatan perangkat lunak.\nPembaruan dilaksanakan halaman per halaman dan tidak akan langsung selesai.\nTampilan berikut menunjukkan jika suatu pembaruan sedang berlangsung dan memungkinkan Anda untuk memulai atau menghentikan proses (kecuali jika fitur ini dimatikan oleh pengelola situs).", + "smw_smwadmin_datarefreshprogress": "Suatu pembaruan sedang dalam proses.\nAdalah wajar jika kemajuan pembaruan berjalan lambat karena ia hanya menyegarkan data sedikit demi sedikit setiap kali seorang pengguna mengakses wiki ini.\nUntuk menyelesaikan pembaruan ini dengan lebih cepat, Anda dapat menjalankan skrip pemeliharaan MediaWiki runJobs.php (gunakan opsi --maxjobs 1000 untuk membatasi jumlah pembaruan yang dilakukan dalam satu saat).\nPerkiraan kemajuan pembaruan saat ini:", + "smw_smwadmin_datarefreshbutton": "Jadwalkan pembangunan ulang data", + "smw_smwadmin_datarefreshstop": "Hentikan pembaruan ini", + "smw_smwadmin_datarefreshstopconfirm": "Ya, saya {{GENDER:$1|yakin}}", + "smw-admin-support": "Cari dukungan", + "smw-admin-supportdocu": "Berbagai sumber disediakan untuk membantu Anda jika ada masalah:", + "smw-admin-installfile": "Jika Anda menghadapi masalah dengan instalasi Anda, mulailah dengan mengecek pedoman di berkas INSTALL dan halaman instalasi.", + "smw-admin-smwhomepage": "Dokumentasi pengguna lengkap untuk Semantic MediaWiki tersedia di semantic-mediawiki.org.", + "smw-admin-bugsreport": "Bug dapat dilaporkan ke pelacak isu, halaman melaporkan bug menyediakan beberapa bantuan tentang cara menulis laporan isu yang efektif.", + "smw-admin-questions": "Jika Anda memiliki pertanyaan atau saran lain, bergabunglah dengan diskusi di milis pengguna Semantic MediaWiki.", + "smw-admin-other-functions": "Fungsi lain", + "smw-admin-statistics-extra": "Fungsi statistik", + "smw-admin-statistics": "Statistik", + "smw-admin-supplementary-section-title": "Fungsi pelengkap", + "smw_adminlinks_datastructure": "Struktur data", + "smw_adminlinks_displayingdata": "Menampilkan data", + "smw_adminlinks_inlinequerieshelp": "Bantuan kueri sisip", + "smw-createproperty-isproperty": "Ini adalah properti bertipe $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Nilai|Nilai}} yang diizinkan untuk properti ini adalah:", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ MediaWiki Semantik] dan ekstensi-ekstensi terkait menyediakan preferensi untuk sekelompok fitur dan fungsi terpilih. Daftar pengaturan individu beserta deskripsi dan karakteristiknya tersedia di [http://semantic-mediawiki.org/wiki/Help:User_preferences halaman bantuan] berikut.", + "smw-prefs-general-options-show-entity-issue-panel": "Tampilkan panel masalah entitas", + "smw-prefs-help-general-options-show-entity-issue-panel": "Jika diaktifkan, jalankan pemeriksaan integritas pada setiap halaman dan tampilkan [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel Entity issue panel].", + "smw-ui-tooltip-title-quantity": "satuan konversi", + "smw-ui-tooltip-title-info": "Informasi", + "smw-ui-tooltip-title-warning": "Peringatan", + "smw-ui-tooltip-title-parameter": "Parameter", + "smw-ui-tooltip-title-event": "Peristiwa", + "smw-ui-tooltip-title-note": "Catatan", + "smw_unknowntype": "Tipe \"$1\" yang ditetapkan untuk properti ini tidak sah.", + "smw_concept_header": "Halaman berkonsep \"$1\"", + "smw_conceptarticlecount": "Menampilkan $1 {{PLURAL:$1|halaman}} berikut.", + "smw-livepreview-loading": "Mengunggah...", + "smw-datavalue-number-nullnotallowed": "\"$1\" kembali dengan sebuah \"NULL\" yang tidak mengizinkan sebagai nomor.", + "smw-processing": "Memproses...", + "smw-loading": "Memuat...", + "smw-preparing": "Menyiapkan...", + "smw-facetedsearch-profile-label-default": "Profil bawaan", + "smw-facetedsearch-no-filters": "Tanpa filter.", + "smw-search-placeholder": "Cari...", + "smw-listingcontinuesabbrev": "samb.", + "smw-showingresults": "Di bawah ini ditampilkan hingga {{PLURAL:$1|1 hasil|$1 hasil}}, dimulai dari #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ig.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ig.json new file mode 100644 index 0000000..f0a0f5e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ig.json @@ -0,0 +1,24 @@ +{ + "@metadata": { + "authors": [ + "Ukabia", + "Uzoma Ozurumba" + ] + }, + "smw_viewasrdf": "ntá RDF", + "smw_finallistconjunct": ", na", + "smw_printername_count": "güó ihe futárá", + "smw_printername_list": "Ndetu", + "smw_printername_table": "Agada", + "smw_printername_template": "Àtụ", + "smw_printername_category": "Ụdàkọ", + "smw-categories": "Ụdàkọ", + "smw-ask-search": "Tùwe", + "browse": "Ngaghari na wiki", + "smw-admin-idlookup-input": "Tùwe:", + "smw-livepreview-loading": "Ọ biágó...", + "smw-format-datatable-search": "Tùwe:", + "smw-property-reserved-category": "Ụdàkọ", + "smw-category": "Ụdàkọ", + "smw-listingcontinuesabbrev": "gàzi." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ilo.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ilo.json new file mode 100644 index 0000000..5834396 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ilo.json @@ -0,0 +1,93 @@ +{ + "@metadata": { + "authors": [ + "Lam-ang" + ] + }, + "smw_finallistconjunct": ", ken", + "smw-factbox-head": "... adu pay a maipanggep iti \"$1\"", + "smw-factbox-facts": "Dagiti kinapudno", + "smw-factbox-facts-help": "Ipakita dagiti insasao ken dagiti kinapudno a pinartuaten iti maysa nga agar-aramat", + "smw_concept_description": "Deskripsion ti konsepto ti \"$1\"", + "smw_printername_count": "Bilangen dagiti resulta", + "smw_printername_list": "Listaan", + "smw_printername_ol": "Enumerasion", + "smw_printername_table": "Tabla", + "smw_printername_template": "Plantilia", + "smw_printername_templatefile": "Plantilia a papeles", + "smw_printername_category": "Kategoria", + "validator-type-class-SMWParamSource": "teksto", + "smw-paramdesc-limit": "Ti kaaduan a bilang dagiti maisubli a resulta", + "smw-paramdesc-offset": "Ti tangdan iti umuna a resulta", + "smw-paramdesc-headers": "Iparang dagiti paulo/tagikua ti nagnagan", + "smw-paramdesc-mainlabel": "Ti maited nga etiketa iti nagan ti umuna a panid", + "smw-paramdesc-link": "Ipakita dagiti pateg a kas dagiti silpo", + "smw-paramdesc-sep": "Ti panangisina para kadagiti pateg", + "smw-paramdesc-embedonly": "Saan nga agiparang kadagiti paulo", + "smw-paramdesc-table-class": "Ti isaad a maysa a maipatinayon a klase ti CSS para iti tabla", + "smw-paramdesc-table-transpose": "Bertikal nga iparang dagiti paulo ti tabla ken horisontal dagiti resulta", + "smw-paramdesc-rdfsyntax": "Ti mausarto a sintaksis ti RDF", + "smw-paramdesc-csv-sep": "Mangibaga iti panangisina ti batong", + "smw-paramdesc-csv-valuesep": "Mangibaga iti panangisina ti pateg", + "smw-paramdesc-dsv-separator": "Ti mausar a panangisina", + "smw-paramdesc-dsv-filename": "Ti nagan para iti papeles ti DSV", + "smw-paramdesc-filename": "Ti nagan para iti maiparuar a papeles", + "properties": "Tagtagikua", + "smw-categories": "Katkategoria", + "smw-special-property-searchform-options": "Dagiti pagpilian", + "smw-special-wantedproperties-filter-label": "Sagat:", + "smw-special-wantedproperties-filter-none": "Awan", + "smw-special-wantedproperties-filter-unapproved": "Di napasingkedan", + "concepts": "Dagiti konsepto", + "smw-special-concept-header": "Listaan dagiti konsepto", + "smw-special-concept-empty": "Awan ti nabirukan a konsepto.", + "unusedproperties": "Dagiti saan a nausar a tagikua", + "smw_purge": "Pasadiwaen", + "smw-purge-failed": "Napaay ti panagpasadiwa", + "types": "Dagiti kita", + "smw-statistics-query-size": "Kadakkel ti usisa", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Konsepto|Dagiti konsepto}}", + "smw_ask_ascorder": "Agpangato", + "smw_ask_descorder": "Agpababa", + "smw-ask-order-rand": "Pugto", + "smw_ask_submit": "Agbiruk kaadagiti resulta", + "smw_ask_editquery": "Urnosen ti usisa", + "smw_ask_hidequery": "Ilemmeng ti usisa", + "smw_ask_help": "Tulong iti panagusisa", + "smw_ask_format_as": "Pormaten a kas:", + "smw_ask_defaultformat": "kasisigud", + "smw_ask_otheroptions": "Dagiti sabali a pagpilian", + "smw-ask-delete": "Ikkaten", + "smw-ask-options": "Dagiti pagpilian", + "smw-ask-parameters": "Dagiti parametro", + "smw-ask-search": "Agbiruk", + "smw-ask-format": "Pormat", + "smw-ask-format-selection-help": "Tulong iti napili a pormat: $1", + "searchbyproperty": "Agbiruk babaen ti tagikua", + "smw_sbv_property": "Tagikua:", + "smw_sbv_value": "Pateg:", + "smw_sbv_submit": "Agbiruk kaadagiti resulta", + "browse": "Agbasabasa iti wiki", + "smw_browselink": "Agbasabasa kadagiti tagikua", + "smw_browse_go": "Inkan", + "smw-browse-show-group": "Ipakita dagiti grupo", + "smw-browse-hide-group": "Ilemmeng dagiti grupo", + "smw_pp_from": "Manipud iti panid:", + "smw_pp_type": "Tagikua:", + "smw_pp_submit": "Agbiruk kaadagiti resulta", + "smw_result_prev": "Dati", + "smw_result_next": "Sumaruno", + "smw_result_results": "Dagiti resulta", + "smw_result_noresults": "Awan dagiti resulta.", + "smwadmin": "Dagiti administratibo nga annong", + "smw-admin-statistics-job-title": "Estadistika ti trabaho", + "smw_smwadmin_return": "Agsubli iti $1", + "smw_adminlinks_datastructure": "Estruktura ti datos", + "smw-admin-idlookup-input": "Agbiruk:", + "smw-admin-objectid": "ID:", + "smw-livepreview-loading": "Maikarkarga…", + "smw-sp-searchbyproperty-resultlist-header": "Listaan dagiti resulta", + "smw-search-syntax": "Sintaksis", + "smw-listingcontinuesabbrev": "tuloy.", + "smw-showingresults": "Maiparang dita baba agingga {{PLURAL:$1|iti 1 a nagbanagan|dagiti $1 a nagbanagan}} a mangrugi iti #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/io.json b/mediawiki/extensions/SemanticMediaWiki/i18n/io.json new file mode 100644 index 0000000..8a710b0 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/io.json @@ -0,0 +1,59 @@ +{ + "@metadata": { + "authors": [ + "Joao Xavier", + "Malafaya" + ] + }, + "smw_finallistconjunct": ", e", + "smw-factbox-head": "... pluse pri \"$1\"", + "smw-factbox-facts": "Fakti", + "smw_printername_template": "Shablono", + "smw_nodatetime": "La dato \"$1\" ne komprenesis.", + "smw_exportrdf_submit": "Exportacar", + "properties": "Atributi", + "smw-categories": "Kategorii", + "smw-special-wantedproperties-filter-none": "Nula", + "smw_purge": "Rinovigar", + "types": "Tipi di datumi", + "smw_ask_descorder": "Decensanta", + "smw_ask_defaultformat": "predeterminita", + "smw-ask-delete": "Removar", + "smw-ask-search": "Serchez", + "smw-ask-extra-other": "Altra", + "smw_sbv_value": "Valoro:", + "browse": "Serchez en la Wiki", + "smw_browselink": "Vidar singularaji", + "smw_browse_go": "Irez", + "smw_inverse_label_property": "Etiketo di la proprajo inversa", + "smw_result_prev": "Antea", + "smw_result_next": "Sequanta", + "smw_result_results": "Rezulti", + "smw_result_noresults": "Nula rezulti.", + "smw-admin-deprecation-notice-section-legend": "Surskriburo", + "smw-admin-supplementary-elastic-version-info": "Versiono", + "smw-admin-supplementary-elastic-replication-pages": "Pagini", + "smw-ui-tooltip-title-property": "Proprajo", + "smw-ui-tooltip-title-error": "Eroro", + "smw-ui-tooltip-title-event": "Eventajo", + "smw-ui-tooltip-title-legend": "Surskriburo", + "smw-ui-tooltip-title-reference": "Refero", + "smw-admin-tab-alerts": "Avizi", + "smw-livepreview-loading": "Ol kargesas…", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|sekundo|sekundi}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|sekundo|sekundi}}", + "smw-change-propagation-protection": "Ca pagino esas tempale blokusata por preventar modifiki, samatempe kam l'aktualigo di la [https://www.semantic-mediawiki.org/wiki/Change_propagation programo aktualigar la modifikuri la propago] facesas. Ca procedo povas durar kelka tempo ante ke la pagino esos desblokusota, nam ol dependas de la serio di [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue job modifikuri bezonata].", + "smw-format-datatable-loadingrecords": "Karganta...", + "smw-format-datatable-next": "Sequanta", + "smw-format-datatable-previous": "Antea", + "smw-format-datatable-toolbar-export": "Exportacar", + "smw-property-page-filter-note": "La [https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter sercho-filtrilo] posibligas inkluzar [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions inquesto-frazi], exemple ~ o !. L'[https://www.semantic-mediawiki.org/wiki/Query_engine inquesto-utensilo selektita] anke povas suportar mayuskuli/minuskuli (''case insensitive matching'') od altra kurta frazi, exemple:\n\n* in: rezulto DEVAS kontenar la frazo, exemple 'in:Foo'\n\n* not: rezulto NE DEVAS kontenar la frazo, exemple 'not:Bar'", + "smw-property-reserved-category": "Kategorio", + "smw-loading": "Ol kargesas…", + "smw-fetching": "Surveyanta…", + "smw-preparing": "Kreado ...", + "smw-expand": "Montrar la listo", + "smw-copy": "Kopiar", + "smw-listingcontinuesabbrev": "seq.", + "smw-showingresults": "Montrante infre {{PLURAL:$1|'''1''' rezulto|'''$1''' rezulti}}, qui komencas kun numero #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/is.json b/mediawiki/extensions/SemanticMediaWiki/i18n/is.json new file mode 100644 index 0000000..6a0fd5e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/is.json @@ -0,0 +1,30 @@ +{ + "@metadata": { + "authors": [ + "LoveIceLang", + "Steinninn", + "Sveinn í Felli" + ] + }, + "specialpages-group-smw_group-properties-concepts-types": "Eiginleikar, hugtök og tegundir", + "properties": "Eiginleikar", + "smw-categories": "Flokkar", + "concepts": "Hugtök", + "unusedproperties": "Ónotaðir eiginleikar", + "wantedproperties": "Eiginleikar sem vantar", + "types": "Tegundir", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Hugtak|Hugtök}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Hugtak|Hugtök}}]]", + "browse": "Skoða wiki", + "smw_browselink": "Skoða eiginleika", + "smw-browse-js-disabled": "Grunur leikur á að JavaScript sé óvirkt eða ekki tiltækt og við mælum með að nota vafra þar sem þetta er stutt. Fjallað er um aðra valkosti á síðunni [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi] stillingarfæribreytusíðunni.", + "smw-admin-support": "Að fá aðstoð", + "smw-admin-supplementary-elastic-functions": "Tiltæk virkni", + "smw-admin-supplementary-elastic-settings-title": "Stillingar", + "smw-admin-supplementary-elastic-statistics-title": "Tölfræði", + "smw-livepreview-loading": "Framkalla…", + "log-name-smw": "Aðgerðaskrá yfir málskipan MediaWiki", + "smw-type-tab-types": "Tegundir", + "smw-listingcontinuesabbrev": "frh.", + "smw-showingresults": "Sýni $1 {{PLURAL:$1|niðurstöðu|niðurstöður}} frá og með #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/it.json b/mediawiki/extensions/SemanticMediaWiki/i18n/it.json new file mode 100644 index 0000000..54181b6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/it.json @@ -0,0 +1,510 @@ +{ + "@metadata": { + "authors": [ + "Ajeje Brazorf", + "Alexmar983", + "Beta16", + "Candalua", + "Champ0999", + "Civvì", + "Cruccone", + "Darth Kule", + "Davide Eynard, David Laniado", + "F. Cosoleto", + "FRacco", + "Fitoschido", + "G.garatti", + "Gianfranco", + "Giuseppe Forte", + "Gmelfi", + "Kaspo", + "Lorelai87", + "Lucamauri", + "Macofe", + "Matteocng", + "McDutchie", + "Melos", + "Nemo bis", + "OrbiliusMagister", + "Pietrodn", + "S4b1nuz E.656", + "Sakretsu", + "Samuele2002", + "Sarah Bernabei", + "Statix64", + "Urielejh", + "Wikitoni", + "Ximo17", + "පසිඳු කාවින්ද", + "아라" + ] + }, + "smw-desc": "Rende la tua wiki più accessibile - per le macchine ''e'' per gli umani ([https://www.semantic-mediawiki.org/wiki/Help:User_manual documentazione in linea])", + "smw-error": "Errore", + "smw-upgrade-progress": "Avanzamento", + "smw-upgrade-error-title": "Errore » Semantic MediaWiki", + "smw-upgrade-error-why-title": "Perché visualizzo questa pagina?", + "smw-upgrade-error-how-title": "Come risolvo questo errore?", + "smw-extensionload-error-why-title": "Perché visualizzo questa pagina?", + "smw-extensionload-error-how-title": "Come risolvo questo errore?", + "smw-upgrade-maintenance-title": "Manutenzione » Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "Perché visualizzo questa pagina?", + "smw-semantics-not-enabled": "Le funzionalità di Semantic MediaWiki non sono abilitate per questo wiki.", + "smw_viewasrdf": "Feed RDF", + "smw_finallistconjunct": " e", + "smw-factbox-head": "... altro su \"$1\"", + "smw-factbox-facts": "Dati", + "smw-factbox-facts-help": "Mostra dichiarazioni e dati che sono stati creati da un utente", + "smw-factbox-attachments": "Allegati", + "smw-factbox-attachments-value-unknown": "N/D", + "smw-factbox-attachments-is-local": "È locale", + "smw-factbox-attachments-help": "Mostra allegati disponibili", + "smw-factbox-facts-derived": "Dati derivati", + "smw-factbox-facts-derived-help": "Mostra dati che sono stati derivati da principi o con l'aiuto di altre tecniche di ragionamento", + "smw_isspecprop": "Questa proprietà è una proprietà speciale all'interno di questo wiki.", + "smw-concept-cache-header": "Utilizzo della cache", + "smw-concept-cache-count": "La [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count cache di concetti] contiene {{PLURAL:$1|'''una''' entità|'''$1''' entità}} ($2).", + "smw-concept-no-cache": "La cache non è disponibile.", + "smw_concept_description": "Descrizione del concetto \"$1\"", + "smw_no_concept_namespace": "I concetti possono essere definiti solo sulle pagine nel namespace Concept:.", + "smw_multiple_concepts": "Ogni pagina concetto può avere una sola definizione di concetto.", + "smw_concept_cache_miss": "Il concetto \"$1\" non può essere usato ora, siccome la configurazione della wiki richiede che sia elaborato off-line. Se il problema non si risolve dopo un po' di tempo, chiedi all'amministratore del tuo sito di rendere disponibile questo concetto.", + "smw_noinvannot": "Il valore non può essere assegnato alla proprietà inversa.", + "version-semantic": "Estensioni semantiche", + "smw_baduri": "Spiacenti. Gli URI del tipo “$1” non sono consentiti.", + "smw_printername_count": "Conta risultati", + "smw_printername_csv": "Esportazione CSV", + "smw_printername_dsv": "Esportazione DSV", + "smw_printername_debug": "Debug della query (per utenti esperti)", + "smw_printername_embedded": "Includi i contenuti della pagina", + "smw_printername_json": "Esportazione JSON", + "smw_printername_list": "Elenco", + "smw_printername_plainlist": "Lista semplice", + "smw_printername_ol": "Elenco numerato", + "smw_printername_ul": "Elenco puntato", + "smw_printername_table": "Tabella", + "smw_printername_broadtable": "Tabella estesa", + "smw_printername_template": "Template", + "smw_printername_rdf": "Esportazione RDF", + "smw_printername_category": "Categoria", + "validator-type-class-SMWParamSource": "testo", + "smw-paramdesc-limit": "Il numero massimo di risultati da restituire", + "smw-paramdesc-headers": "Mostra i nomi di header/proprietà", + "smw-paramdesc-mainlabel": "L'etichetta da dare al nome della pagina principale", + "smw-paramdesc-link": "Mostra i valori come link", + "smw-paramdesc-intro": "Testo da mostrare prima dei risultati della query, se ce ne sono", + "smw-paramdesc-outro": "Testo da mostrare dopo i risultati della query, se ce ne sono", + "smw-paramdesc-default": "Testo da mostrare se la query non dà risultati", + "smw-paramdesc-sep": "Il separatore tra i risultati", + "smw-paramdesc-template": "Il nome di un template con cui mostrare quanto restituito", + "smw-paramdesc-columns": "Il numero di colonne in cui ordinare la visualizzazione dei risultati", + "smw-paramdesc-embedformat": "Il tag HTML usato per definire le intestazioni", + "smw-paramdesc-embedonly": "Non mostrare intestazioni", + "smw-paramdesc-rdfsyntax": "La sintassi RDF da utilizzare", + "smw-paramdesc-csv-sep": "Specifica un separatore di colonna", + "smw-paramdesc-csv-valuesep": "Specifica un separatore di valori", + "smw-paramdesc-dsv-separator": "Il separatore da usare", + "smw-paramdesc-dsv-filename": "Il nome per il file DSV", + "smw-paramdesc-searchlabel": "Testo per continuare la ricerca ai risultati successivi", + "smw-paramdesc-export": "Opzioni di esportazione", + "smw-printername-feed": "Feed RSS e Atom", + "smw-paramdesc-feedtype": "Tipo di feed", + "smw-paramdesc-feedtitle": "Il testo da utilizzare come titolo del feed", + "smw-paramdesc-feeddescription": "Il testo da utilizzare come descrizione del feed", + "smw-paramdesc-feedpagecontent": "Il contenuto della pagina da visualizzare con il feed", + "smw-label-feed-description": "Feed $2 $1", + "smw_iq_disabled": "Le query semantiche sono state disabilitate per questo wiki.", + "smw_iq_moreresults": "… risultati successivi", + "smw_parseerror": "Il valore dato non è stato compreso.", + "smw_notitle": "“$1” non può essere utilizzato come nome di una pagina all'interno di questo wiki.", + "smw_wrong_namespace": "Qui sono consentite solo pagine del namespace \"$1\".", + "smw_manytypes": "È stato definito più di un tipo per la proprietà.", + "smw_emptystring": "Le stringhe vuote non sono accettate.", + "smw_notinenum": "\"$1\" non è nell'elenco ($2) dei [[Property:Allows value|valori consentiti]] per la proprietà \"$3\".", + "smw_noboolean": "“$1” non è riconosciuto come valore Booleano (vero/falso).", + "smw_true_words": "vero,v,si,s,true,t,yes,y", + "smw_false_words": "falso,f,no,n,false", + "smw_nofloat": "“$1” non è un numero.", + "smw_infinite": "I numeri grandi come \"$1\" non sono supportati.", + "smw_novalues": "Nessun valore specificato", + "smw_nodatetime": "Non è stato possibile comprendere la data “$1”.", + "smw_toomanyclosing": "Sembrano esserci troppe ripetizioni di “$1” all'interno della query.", + "smw_noclosingbrackets": "Alcune \"[[\" all'interno della query non sono state chiuse con le corrispondenti \"]]\".", + "smw_misplacedsymbol": "Il simbolo “$1” ` stato usato in un punto in cui è inutile.", + "smw_unexpectedpart": "Non è stato possibile comprendere la parte “$1” della query. Il risultato potrebbe essere diverso da quello atteso.", + "smw_emptysubquery": "Qualche subquery ha una condizione non valida.", + "smw_misplacedsubquery": "Qualche subquery è stata utilizzata in una posizione in cui non era consentito.", + "smw_valuesubquery": "Le subquery non sono supportate per i valori della proprietà \"$1\".", + "smw_badqueryatom": "Non è stato possibile comprendere parte \"[[…]]\" della query.", + "smw_propvalueproblem": "Non è stato possibile comprendere il valore della proprietà \"$1\".", + "smw_noqueryfeature": "Qualche funzionalità di query non è stata supportata in questa wiki e parte della query è stata rimossa ($1).", + "smw_noconjunctions": "Le congiunzioni nelle query non sono supportate in questa wiki e parte della query è stata rimossa ($1).", + "smw_nodisjunctions": "La disgiunzione all'interno delle query non è supportata in questo wiki, quindi parte della query è stata ignorata ($1).", + "smw_querytoolarge": "{{PLURAL:$2|La seguente condizione|Le seguenti condizioni}} all'interno della query $1 non {{PLURAL:$2|è stata considerata|sono state considerate}} a causa delle restrizioni di dimensione o profondità delle query impostate per questo wiki: $1.", + "smw_notemplategiven": "Per favore fornisci un valore per il parametro \"template\" per far funzionare questo formato di query.", + "smw_type_header": "Proprietà del tipo \"$1\"", + "smw_typearticlecount": "Visualizzazione di $1 {{PLURAL:$1|proprietà|proprietà}} che usano questo tipo.", + "smw_attribute_header": "Pagine che usano la proprietà \"$1\"", + "smw_attributearticlecount": "Visualizzazione di $1 {{PLURAL:$1|pagina che usa|pagine che usano}} questa proprietà.", + "smw-propertylist-subproperty-header": "Sottoproprietà", + "smw-propertylist-redirect-header": "Sinonimi", + "specialpages-group-smw_group-maintenance": "Manutenzione", + "exportrdf": "Esporta le pagine in RDF", + "smw_exportrdf_docu": "Questa pagina consente di ottenere dati da una pagina in formato RDF. Per esportare delle pagine, inseritene i titoli nella casella di testo sottostante, un titolo per riga.", + "smw_exportrdf_recursive": "Esporta ricorsivamente tutte le pagine correlate. Nota: il risultato potrebbe essere molto grande!", + "smw_exportrdf_backlinks": "Esporta anche le pagine che si riferiscono a quelle esportate. Genera un RDF navigabile.", + "smw_exportrdf_lastdate": "Non esportare le pagine che non hanno subìto modifiche dal momento specificato.", + "smw_exportrdf_submit": "Esporta", + "uriresolver": "Risolutore di URI", + "properties": "Proprietà", + "smw-categories": "Categorie", + "smw_properties_docu": "Le seguenti proprietà sono utilizzate all'interno del wiki.", + "smw_property_template": "$1 di tipo $2 (usata $3 {{PLURAL:$3|volta|volte}})", + "smw_propertylackspage": "Tutte le proprietà dovrebbero essere descritte da una pagina!", + "smw_propertylackstype": "Non è stato specificato nessun tipo per questa proprietà (per il momento si suppone sia di tipo $1).", + "smw_propertyhardlyused": "Questa proprietà non è quasi mai usata nel wiki!", + "smw-special-property-searchform": "Mostra le proprietà che contengono:", + "smw-special-property-searchform-inputinfo": "L'input distingue le maiuscole dalle minuscole e quando viene usato per filtrare, solamente le proprietà che soddisfano le condizioni vengono mostrate.", + "smw-special-property-searchform-options": "Opzioni", + "smw-special-wantedproperties-filter-label": "Filtro:", + "smw-special-wantedproperties-filter-none": "Nessuno", + "smw-special-wantedproperties-filter-unapproved": "Non approvato.", + "concepts": "Concetti", + "smw-special-concept-header": "Elenco di concetti", + "smw-special-concept-empty": "Nessun concetto trovato.", + "unusedproperties": "Proprietà non utilizzate", + "smw-unusedproperties-docu": "Questa pagina elenca le [https://www.semantic-mediawiki.org/wiki/Unused_properties proprietà inutilizzate] che esistono nonostante nessun'altra pagina ne faccia uso. Per una vista differenziale, vedi le pagine speciali [[Special:Properties|intere]] o [[Special:WantedProperties|proprietà richieste]].", + "smw-unusedproperty-template": "$1 di tipo $2", + "wantedproperties": "Proprietà senza descrizione", + "smw-wantedproperties-docu": "Questa pagina elenca le [https://www.semantic-mediawiki.org/wiki/Wanted_properties proprietà richieste] che sono usate nel wiki ma non hanno ancora una pagina che le descriva. Per una vista differenziale, vedi le pagine speciali [[Special:Properties|intere]] o [[Special:UnusedProperties|proprietà inutilizzate]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|uso|usi}})", + "smw_purge": "Aggiorna", + "types": "Tipi", + "smw_types_docu": "Elenco dei [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes tipi di dati disponibili] con ogni [https://www.semantic-mediawiki.org/wiki/Help:Datatype tipo] che rappresenta un unico insieme di attributi per descrivere un valore in termini di archiviazione e visualizzazione di caratteristiche che sono ereditari a una proprietà assegnata.", + "smw-special-types-no-such-type": "\"$1\" è sconosciuto o non è stato specificato come tipo di dati valido.", + "smw-statistics": "Statistiche semantiche", + "smw-statistics-entities-total": "Entità (totali)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Proprietà}}]] (totale)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Proprietà}} (totale)", + "smw-statistics-property-used": "Proprietà ({{PLURAL:$1|utilizzata|utilizzate}} con almeno un valore)", + "smw-statistics-property-page": "Proprietà ({{PLURAL:$1|registrata|registrate}} con una pagina)", + "smw-statistics-property-page-info": "Conta le proprietà che hanno una pagina e una descrizione dedicate.", + "smw-statistics-property-type": "Proprietà ({{PLURAL:$1|assegnata|assegnate}} a un tipo di dati)", + "smw-statistics-query-format": "formato $1", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Concetto|Concetti}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Concetto|Concetti}}]]", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Tipo|Tipi}} di dato]]", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities Entità {{PLURAL:$1|obsoleta|obsolete}}]", + "smw_uri_doc": "Il risolutore di URI implementa il [$1 W3C TAG finding on httpRange-14].\nGarantisce che una rappresentazione RDF (per le macchine) o una pagina wiki (per gli esseri umani) venga fornita a seconda della richiesta.", + "ask": "Ricerca semantica", + "smw_ask_sortby": "Ordina per colonna (opzionale)", + "smw_ask_ascorder": "Crescente", + "smw_ask_descorder": "Decrescente", + "smw-ask-order-rand": "Casuale", + "smw_ask_submit": "Trova risultati", + "smw_ask_editquery": "Modifica query", + "smw_add_sortcondition": "[Aggiungi condizione di ordinamento]", + "smw_ask_hidequery": "Nascondi query (vista compatta)", + "smw_ask_help": "Help sulle query", + "smw_ask_queryhead": "Condizione", + "smw_ask_printhead": "Selezione dei dati da mostrare", + "smw_ask_printdesc": "(aggiungi un nome di proprietà per riga)", + "smw_ask_format_as": "Formatta come:", + "smw_ask_defaultformat": "predefinito", + "smw_ask_otheroptions": "Altre opzioni", + "smw_ask_show_embed": "Mostra codice di inclusione", + "smw_ask_hide_embed": "Nascondi codice di inclusione", + "smw_ask_embed_instr": "Per includere questa query in linea in una pagina wiki, usa il codice qui sotto.", + "smw-ask-delete": "Rimuovi", + "smw-ask-sorting": "Ordinamento", + "smw-ask-options": "Opzioni", + "smw-ask-format-options": "Formato e opzioni", + "smw-ask-parameters": "Parametri", + "smw-ask-search": "Cerca", + "smw-ask-debug": "Debug", + "smw-ask-result": "Risultato", + "smw-ask-empty": "Pulisci tutte le voci", + "smw-ask-format": "Format", + "smw-ask-format-selection-help": "Aiuto con il formato selezionato: $1", + "smw-ask-condition-input-assistance-property": "p: per recuperare i suggerimenti di proprietà (e.g. [[p:Has ...)", + "smw-ask-condition-input-assistance-category": "c: per recuperare i suggerimenti di categoria", + "smw-ask-condition-input-assistance-concept": "con: per recuperare i suggerimenti di categoria", + "smw-ask-query-search-info": "La query $1 è stata eseguita da {{PLURAL:$3|1=$2 (dalla cache)|$2 (dalla cache)|$2}} in $4 {{PLURAL:$4|secondo|secondi}}.", + "smw-ask-extra-other": "Altro", + "searchbyproperty": "Cerca per proprietà", + "smw-missingredirects-list": "Pagine con annotazioni mancanti", + "smw_sbv_docu": "Cerca tutte le pagine che hanno proprietà e valore specificati.", + "smw_sbv_novalue": "Inserire un valore valido per la proprietà, o visualizzare tutti i valori di proprietà per \"$1\".", + "smw_sbv_displayresultfuzzy": "Una lista di tutte le pagine che hanno la proprietà \"$1\" col valore \"$2\".\nSiccome ci sono solo pochi risultati, sono visualizzati anche i valori vicini.", + "smw_sbv_property": "Proprietà:", + "smw_sbv_value": "Valore:", + "smw_sbv_submit": "Trova risultati", + "browse": "Esplora il sito", + "smw_browselink": "Sfoglia le proprietà", + "smw_browse_article": "Inserire il nome della pagina da cui iniziare l'esplorazione", + "smw_browse_go": "Vai", + "smw_browse_show_incoming": "Mostra proprietà in entrata", + "smw_browse_hide_incoming": "Nascondi proprietà in entrata", + "smw_browse_no_outgoing": "Questa pagina non ha proprietà.", + "smw_browse_no_incoming": "Nessuna proprietà ha collegamenti verso questa pagina.", + "smw-browse-show-group": "Mostra gruppi", + "smw-browse-hide-group": "Nascondi gruppi", + "smw-noscript": "Questa pagina o azione richiede JavaScript per funzionare. Abilita JavaScript nel tuo browser o utilizza un browser in cui è supportato, così che la funzionalità possa essere utilizzata e sia a disposizione come richiesto. Per ulteriore assistenza, dai un'occhiata alla pagina di supporto [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript].", + "smw_inverse_label_default": "$1 di", + "smw_inverse_label_property": "Etichetta della proprietà inversa", + "pageproperty": "Ricerca proprietà della pagina", + "smw_pp_docu": "Inserisci una pagina e una proprietà o solo una proprietà per recuperare tutti i valori assegnati.", + "smw_pp_from": "Da pagina:", + "smw_pp_type": "Proprietà:", + "smw_pp_submit": "Trova risultati", + "smw-prev": "{{PLURAL:$1|precedente|precedenti $1}}", + "smw-next": "{{PLURAL:$1|successivo|successivi $1}}", + "smw_result_prev": "Precedente", + "smw_result_next": "Successivo", + "smw_result_results": "Risultati", + "smw_result_noresults": "Nessun risultato.", + "smwadmin": "Cruscotto Semantic MediaWiki", + "smw-admin-statistics-semanticdata-overview": "Panoramica", + "smw-admin-permission-missing": "L'accesso a questa pagina è stato bloccato a causa di autorizzazioni mancanti, consulta la pagina di aiuto sulle [https://www.semantic-mediawiki.org/wiki/Help:Permissions autorizzazioni] per i dettagli sulle impostazioni necessarie.", + "smw-admin-setupsuccess": "Il motore di storage è stato installato.", + "smw_smwadmin_return": "Torna a $1", + "smw_smwadmin_updatestarted": "È iniziato un nuovo processo di aggiornamento per ricaricare i dati semantici.\nTutti i dati registrati saranno ricostruiti o riparati se necessario.\nPuoi seguire i progressi dell'aggiornamento in questa pagina speciale.", + "smw_smwadmin_updatenotstarted": "Un processo di aggiornamento è già in corso.\nNon ne verrà avviato un altro.", + "smw_smwadmin_updatestopped": "Tutti i processi di aggiornamento in corso sono stati arrestati.", + "smw_smwadmin_updatenotstopped": "Per arrestare il processo di aggiornamento in corso, devi cliccare nel riquadro per confermare che sei davvero sicuro di volerlo fare.", + "smw-admin-docu": "Questa pagina speciale serve ad aiutarti durante l'installazione, aggiornamento, manutenzione e l'utilizzo di Semantic MediaWiki e fornirti anche ulteriori funzioni ed attività amministrative, nonché statistiche.\nRicordati di fare un backup dei dati importanti prima di eseguire funzioni amministrative.", + "smw-admin-environment": "Ambiente software", + "smw-admin-db": "Configurazione database", + "smw-admin-dbdocu": "Semantic MediaWiki richiede la propria struttura di database (ed è indipendente da MediaWiki, quindi non influisce sul resto dell'installazione di MediaWiki) per archiviare i dati semantici.\nQuesta funzione di impostazione può essere rieseguita più volte senza conseguenze indesiderate, ma è richiesta solo una volta all'atto dell'installazione o dell'aggiornamento.", + "smw-admin-permissionswarn": "Se l'operazione avrà esito negativo con errori SQL, l'utente del database usato dal tuo wiki (controlla il tuo file \"LocalSettings.php\") probabilmente non ha permessi sufficienti.\nPuoi assegnare a questo utente permessi aggiuntivi per creare e cancellare tabelle, oppure inserire temporaneamente nel file \"LocalSettings.php\" i dati di accesso root al database, oppure usare lo script di manutenzione setupStore.php, che può utilizzare le credenziali di un utente amministratore.", + "smw-admin-dbbutton": "Inizializza o aggiorna tabelle", + "smw-admin-announce": "Annuncia il tuo wiki", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] è stato sostituito da $2", + "smw-admin-deprecation-notice-title-notice": "Impostazioni obsolete", + "smw-admin-deprecation-notice-title-removal": "Impostazioni rimosse", + "smw-admin-deprecation-notice-section-legend": "Legenda", + "smw_smwadmin_datarefresh": "Ricostruzione dati", + "smw_smwadmin_datarefreshdocu": "Si possono ripristinare tutti i dati Semantic MediaWiki basati sui contenuti attuali del wiki.\nQuesto può essere utile per riparare dati corrotti o per aggiornare i dati se il loro formato interno si è modificato per qualche aggiornamento di software.\nL'aggiornamento è eseguito pagina per pagina e non sarà completato immediatamente.\nQui di seguito si vede se un aggiornamento è in corso e potrai avviare od arrestare gli aggiornamenti (a meno che questa funzionalità non sia stata disattivata dall'amministratore del sito).", + "smw_smwadmin_datarefreshprogress": "Un aggiornamento è già in corso.\nNon è anormale che l'aggiornamento proceda solo lentamente, poiché verifica i dati solo a piccoli pacchetti ogni volta che un utente accede al wiki.\nPer terminare il processo pià rapidamente, puoi invocare lo script di manutenzione MediaWiki runJobs.php (usa l'opzione --maxjobs 1000 per restringere il numero di verifiche svolte in ciascuna tornata).\nProgresso stimato dell'aggiornamento in corso:", + "smw_smwadmin_datarefreshbutton": "Pianifica ricostruzione dati", + "smw_smwadmin_datarefreshstop": "Ferma questo aggiornamento", + "smw_smwadmin_datarefreshstopconfirm": "Sì, sono {{GENDER:$1|sicuro|sicura}}.", + "smw-admin-support": "Ottieni supporto", + "smw-admin-supportdocu": "Diverse risorse sono fornite per esserti d'aiuto in caso di problemi:", + "smw-admin-installfile": "Se hai problemi con la tua installazione, inizia a verificare le linee guida nel file INSTALL e la pagina di installazione.", + "smw-admin-smwhomepage": "La documentazione utente completa per Semantic MediaWiki si trova in semantic-mediawiki.org.", + "smw-admin-bugsreport": "Gli errori possono essere segnalati sul tracker di anomalie, la pagina riportare errori fornisce alcune guide su come scrivere una segnalazione effettiva.", + "smw-admin-questions": "Se hai altre domande o suggerimenti, unisciti alle discussioni sulla mailing list degli utenti di Semantic MediaWiki.", + "smw-admin-other-functions": "Altre funzioni", + "smw-admin-statistics": "Statistiche", + "smw-admin-supplementary-section-title": "Funzioni supplementari", + "smw-admin-supplementary-settings-title": "Configurazione e impostazioni", + "smw-admin-supplementary-settings-intro": "$1 mostra i parametri che definiscono il comportamento di Semantic MediaWiki", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count numero totale di righe in una tabella", + "smw-admin-supplementary-elastic-version-info": "Versione", + "smw-admin-supplementary-elastic-functions": "Funzioni supportate", + "smw-admin-supplementary-elastic-settings-title": "Impostazioni (indici)", + "smw-admin-supplementary-elastic-nodes-title": "Nodi", + "smw-admin-supplementary-elastic-statistics-title": "Statistiche", + "smw-admin-supplementary-elastic-status-refresh-interval": "Intervallo di aggiornamento: $1", + "smw-admin-supplementary-elastic-replication-files": "File", + "smw-admin-supplementary-elastic-replication-pages": "Pagine", + "smw-admin-supplementary-elastic-config": "Configurazioni", + "smw-property-label-similarity-threshold": "Soglia:", + "smw_adminlinks_datastructure": "Struttura dei dati", + "smw_adminlinks_displayingdata": "Visualizzazione dati", + "smw_adminlinks_inlinequerieshelp": "Aiuto sulle query inline", + "smw-page-indicator-usage-count": "[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count Numero di utilizzi] stimati: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "Proprietà definita da {{PLURAL:$1|utente|sistema}}", + "smw-createproperty-isproperty": "È una proprietà di tipo $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Il valore permesso per questa proprità è|I valori permessi per questa proprietà sono}}:", + "smw-paramdesc-category-delim": "Il delimitatore", + "smw-info-par-message": "Messaggio da visualizzare.", + "prefs-general-options": "Opzioni generali", + "prefs-ask-options": "Ricerca semantica", + "smw-prefs-general-options-disable-search-info": "Disabilita le informazioni del supporto sintattico sulla pagina di ricerca standard", + "smw-ui-tooltip-title-property": "Proprietà", + "smw-ui-tooltip-title-quantity": "Conversione unità", + "smw-ui-tooltip-title-info": "Informazione", + "smw-ui-tooltip-title-service": "Collegamento di servizio", + "smw-ui-tooltip-title-warning": "Attenzione", + "smw-ui-tooltip-title-error": "Errore", + "smw-ui-tooltip-title-parameter": "Parametro", + "smw-ui-tooltip-title-event": "Evento", + "smw-ui-tooltip-title-note": "Nota", + "smw-ui-tooltip-title-legend": "Legenda", + "smw-ui-tooltip-title-reference": "Nota", + "smw_unknowntype": "Il tipo \"$1\" di questa proprietà non è valido", + "smw_concept_header": "Pagine del concetto \"$1\"", + "smw_conceptarticlecount": "Mostro {{PLURAL:$1|una pagina|$1 pagine}}.", + "right-smw-patternedit": "Modifica accesso per mantenere le espressioni regolari e i modelli consentiti (Semantic MediaWiki)", + "right-smw-pageedit": "Modifica l'accesso per Is edit protected nelle pagine di annotazione (Semantic MediaWiki)", + "action-smw-patternedit": "modificare le espressioni regolari utilizzate da Semantic MediaWiki", + "group-smwadministrator": "Amministratori (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|amministratore|amministratrice|amministratore/trice}} (Semantic MediaWiki)", + "grouppage-smwadministrator": "{{ns:project}}:Amministratori (Semantic MediaWiki)", + "group-smwcurator": "Curatori (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|curatore|curatrice|curatore/trice}} (Semantic MediaWiki)", + "grouppage-smwcurator": "{{ns:project}}:Curatori (Semantic MediaWiki)", + "group-smweditor": "Editori (Semantic MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|editore|editrice|editore/trice}} (Semantic MediaWiki)", + "grouppage-smweditor": "{{ns:project}}:Editori (Semantic MediaWiki)", + "smw-property-predefined-ask": "\"$1\" è una proprietà predefinita che rappresenta meta informazioni (sotto forma di [https://www.semantic-mediawiki.org/wiki/Subobject sottoggetto]) su singole interrogazioni ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksi": "\"$1\" è una proprietà predefinita che contiene il numero delle condizioni usate in una interrogazione ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askde": "\"$1\" è una proprietà predefinita che informa sulla profondità di un'interrogazione ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-sp-properties-header-label": "Elenco delle proprietà", + "smw-admin-iddispose-title": "Smaltimento", + "smw-admin-iddispose-docu": "Da notare che l'operazione di smaltimento non ha restrizioni e rimuove l'entità dal motore di archiviazione insieme a tutti i suoi riferimenti nelle tabelle, se confermata. Avvia questa attività con '''cautela''' e solo dopo aver consultato la [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal documentazione].", + "smw-admin-idlookup-input": "Ricerca:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-maintenance": "Manutenzione", + "smw-admin-tab-registry": "Registro", + "smw-admin-tab-alerts": "Avvisi", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Entità non valide", + "smw-admin-configutation-tab-settings": "Impostazioni", + "smw-admin-configutation-tab-namespaces": "Namespace", + "smw-admin-configutation-tab-schematypes": "Tipi schema", + "smw-admin-maintenance-no-description": "Nessuna descrizione.", + "smw-livepreview-loading": "Caricamento in corso...", + "smw-sp-searchbyproperty-resultlist-header": "Elenco dei risultati", + "smw-datavalue-number-nullnotallowed": "\"$1\" ha restituito un \"NULL\", che non è consentito come numero.", + "smw-search-help-intro": "Un [[ ... ]] input sarà segnalato al processore di input per usare la ricerca finale del Semantic MediaWiki. Si dovrà notare che la combinazione [[ ... ]] con una ricerca di testo non strutturato come [[ ... ]] O Lorem ipsum non è supportato.", + "smw-search-help-structured": "Ricerche strutturate:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] (come [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context filtro sul contesto])\n\n*[[Has text::~*lorem*]] (con un [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context query del contesto])", + "smw-search-input": "Inserisci e cerca", + "smw-search-syntax": "Sintassi", + "smw-search-profile": "Esteso", + "smw-search-profile-tooltip": "Cerca le funzioni in connessione con Semantic MediaWiki", + "smw-search-profile-sort-title": "Titolo", + "smw-search-profile-extended-help-search-syntax-reserved": "* Alcune espressioni sono riservate come: $1", + "smw-search-profile-extended-section-sort": "Ordina per", + "smw-search-profile-extended-section-namespace": "Namespace", + "smw-search-show": "Mostra", + "smw-search-hide": "Nascondi", + "log-name-smw": "Semantic MediaWiki", + "log-show-hide-smw": "$1 registro Semantic MediaWiki", + "logeventslist-smw-log": "Semantic MediaWiki", + "smw-property-predefined-impo": "\"$1\" è una proprietà predefinita che descrive una relazione ad un [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary vocabolario importato] ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-type": "\"$1\" è una proprietà predefinita che descrive il [[Special:Types|tipo di dati]] di una proprietà ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-sobj": "\"$1\" è una proprietà predefinita che rappresenta un costrutto [https://www.semantic-mediawiki.org/wiki/Help:Container contenitore] ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-sobj": "Il contenitore consente di accumulare assegnazioni proprietà-valore simili a quelli di una normale pagina wiki, ma all'interno di una diversa entità di spazio, pur essendo collegati al soggetto incorporato .", + "smw-property-predefined-errp": "\"$1\" è una proprietà predefinita che traccia gli errori di inserimento per valori di annotazioni irregolari ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value \"$1\"] è una proprietà predefinita che può definire una lista di valori ammissibili per limitare assegnazioni di valori per una proprietà ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-datavalue-property-create-restriction": "La proprietà \"$1\" non esiste e l'utente non possiede il premesso \"$2\" (vedi [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode authority mode]) per creare o annotare valori o proprietà non approvate.", + "smw-datavalue-restricted-use": "Il valore dei dati \"$1\" è stato contrassegnato per l'uso limitato.", + "smw-datavalue-invalid-number": "\"$1\" non può essere interpretato come un numero.", + "smw-query-condition-circular": "Una possibile condizione circolare è stata rilevata in \"$1\".", + "smw-types-list": "Elenco dei tipi di dati", + "smw-types-help": "Ulteriori informazioni ed esempi sono riportati su questa [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 pagina di aiuto].", + "smw-type-anu": "\"$1\" è una variante del tipo di dati [[Special:Types/URL|URL]] ed è in gran parte utilizzata per una dichiarazione di esportazione \"owl:AnnotationProperty\".", + "smw-type-tel": "\"$1\" è un particolare tipo di dati utilizzato per descrivere i numeri di telefono internazionali secondo la RFC 3966.", + "smw-type-dat": "\"$1\" è un tipo di dati base impiegato per rappresentare punti nel tempo in un formato unificato.", + "smw-type-ema": "\"$1\" è un tipo di dati speciale per rappresentare una email.", + "smw-type-tab-properties": "Proprietà", + "smw-type-tab-types": "Tipi", + "smw-type-tab-errors": "Errori", + "smw-type-primitive": "Base", + "smw-type-contextual": "Contestuale", + "smw-type-no-group": "Non classificato", + "smw-property-predefined-errc": "\"$1\" è una proprietà predefinita fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] che rappresenta errori che appaiono in connessioni con valori di annotazioni o processi di inserimento impropri.", + "smw-property-predefined-long-errc": "Gli errori sono raccolti in un [https://www.semantic-mediawiki.org/wiki/Help:Container contenitore] che può includere un riferimento alla proprietà che ha causato la discrepanza.", + "smw-property-predefined-errt": "\"$1\" è una proprietà predefinita che contiene una descrizione testuale di un errore ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-mdat": "\"$1\" è una proprietà predefinita che corrisponde alla data dell'ultima modifica ad un soggetto ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cdat": "\"$1\" è una proprietà predefinita che corrisponde alla data della prima versione di un soggetto ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-newp": "\"$1\" è una proprietà predefinita che indica se un soggetto è nuovo o no ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-ledt": "\"$1\" è una proprietà predefinita che contiene il nome della pagina dell'utente che ha creato l'ultima versione ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-mime": "\"$1\" è una proprietà predefinita che descrive il tipo MIME di un file caricato ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-media": "\"$1\" è una proprietà predefinita che descrive il tipo di media di un file caricato ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askfo": "\"$1\" è una proprietà predefinita che contiene il nome del formato del risultato usato in una interrogazione ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askst": "\"$1\" è una proprietà predefinita che descrive le condizioni di un'interrogazione come stringa ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askdu": "\"$1\" è una proprietà predefinita che contiene il tempo (in secondi) che è stato richiesto per completare l'esecuzione di un'interrogazione ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-prec": "\"$1\" è una proprietà predefinita che descrive una [https://www.semantic-mediawiki.org/wiki/Help:Display_precision precisione di visualizzazione] (in cifre decimali) per tipi di dati numerici.", + "smw-types-extra-geo-not-available": "L'[https://www.semantic-mediawiki.org/wiki/Extension:Maps estensione \"Maps\"] non è stata rilevata, pertanto \"$1\" è limitato nella sua capacità di operare.", + "smw-datavalue-languagecode-invalid": "\"$1\" non è stato riconosciuto come un codice di lingua supportato.", + "smw-property-predefined-lcode": "\"$1\" è una proprietà predefinita che rappresenta un codice di lingua in formato BCP47 ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-type-mlt-rec": "\"$1\" è un tipo di dati [https://www.semantic-mediawiki.org/wiki/Help:Container contenitore] che associa un valore testuale con un specifico [[Property:Language code|codice lingua]].", + "smw-types-extra-mlt-lcode": "Il tipo di dati {{PLURAL:$2|richiede|non richiede}} un codice per la lingua (cioè {{PLURAL:$2|un'annotazione di un valore senza un codice per la lingua non è accetatta|un'annotazione di un valore senza un codice per la lingua è accetatta}}).", + "smw-property-predefined-text": "\"$1\" è una proprietà predefinita che rappresenta un testo di lunghezza arbitraria ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pdesc": "\"$1\" è una proprietà predefinita che consente di descrivere una proprietà in contesto di una lingua ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-list": "\"$1\" è una proprietà predefinita per definire un elenco di proprietà utilizzate con una proprietà tipo [[Special:Types/Record|record]] ed è fornito da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|secondo|secondi}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|secondo|secondi}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|secondo|secondi}}", + "smw_allows_pattern": "Questa pagina dovrebbe contenere un elenco di riferimenti (seguito da [https://it.wikipedia.org/wiki/Espressione_regolare espressioni regolari]) disponibile alla proprietà [[Property:Allows pattern|modello consentito]]. Per modificare questa pagina, è necessario il diritto smw-patternedit.", + "smw-datavalue-allows-pattern-mismatch": "\"$1\" è stato classificato come non valido dall'espressione regolare \"$2\".", + "smw-datavalue-allows-pattern-reference-unknown": "Il modello di riferimento \"$1\" non può aver corrispondenza ad un elemento in [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-feature-not-supported": "La funzionalità \"$1\" non è supportata o è stata disattivata su questo wiki.", + "smw-property-predefined-pvap": "\"$1\" è una proprietà predefinita che può specificare un [[MediaWiki:Smw allows pattern|modello di riferimento]] da applicare alle corrispondenze delle [https://it.wikipedia.org/wiki/Espressione_regolare espressioni regolari] ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-dtitle": "\"$1\" è una proprietà predefinita che può assegnare un titolo da visualizzare diverso ad un'entità ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvuc": "\"$1\" è una proprietà predefinita fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] per limitare i valori assegnabili a ciascuna istanza ad essere unici (o uno al massimo).", + "smw-property-predefined-long-pvuc": "L'unicità è stabilita quando i due valori non sono uguali nella loro rappresentazione letterale, e qualsiasi violazione di questo vincolo sarà classificato come errore.", + "smw-datavalue-constraint-uniqueness-violation": "La proprietà \"$1\" consente l'assegnazione sono di valori unici, e ''$2'' è stato già annotato nel soggetto \"$3\".", + "smw-property-predefined-boo": "\"$1\" è un [[Special:Types/Boolean|tipo]] e una proprietà predefinita fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] per rappresentare valori booleani.", + "smw-property-predefined-num": "\"$1\" è un [[Special:Types/Number|tipo]] e una proprietà predefinita fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] per rappresentare valori numerici.", + "smw-property-predefined-dat": "\"$1\" è un [[Special:Types/Date|tipo]] e una proprietà predefinita fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] per rappresentare valori di date.", + "smw-property-predefined-uri": "\"$1\" è un [[Special:Types/URL|tipo]] e una proprietà predefinita fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] per rappresentare valori di URI/URL.", + "smw-property-predefined-qty": "\"$1\" è un [[Special:Types/Quantity|tipo]] e una proprietà predefinita fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] per rappresentare valori di quantità.", + "smw-datavalue-time-invalid-date-components-common": "\"$1\" contiene alcune informazioni non interpretabili.", + "smw-datavalue-time-invalid-date-components-empty": "\"$1\" contiene alcuni componenti vuoti.", + "smw-datavalue-time-invalid-date-components-three": "\"$1\" contiene più di tre componenti necessari per un'interpretazione della data.", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\" è un URL non valido.", + "smw-property-predefined-eid": "\"$1\" è un [[Special:Types/External identifier|tipo]] e una proprietà predefinita fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] per rappresentare identificatori esterni.", + "smw-property-predefined-peid": "\"$1\" è una proprietà predefinita che rappresenta un identificatore esterno ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pefu": "\"$1\" è una proprietà predefinita fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] per specificare una risorsa esterna con un segnaposto.", + "smw-datavalue-parse-error": "Il valore dato \"$1\" non è stato compreso.", + "smw-property-preferred-label-language-combination-exists": "\"$1\" non può essere utilizzato come etichetta preferita perché la lingua \"$2\" è già stata assegnata all'etichetta \"$3\".", + "smw-clipboard-copy-link": "Copia il collegamento negli appunti", + "smw-no-data-available": "Nessun dato disponibile.", + "smw-property-req-violation-missing-fields": "Alla proprietà \"$1\" manca la dichiarazione obbligatoria [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] per questo tipo \"$2\".", + "protect-level-smw-pageedit": "Consentito solo agli utenti con autorizzazione di modifica delle pagine (Semantic MediaWiki)", + "smw-edit-protection": "Questa pagina è [[Property:Is edit protected|protetta]] per prevenire la modifica accidentale di dati e può essere modificata solo da utenti in possesso di un'appropriata autorizzazione (\"$1\") oppure [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups gruppo utente].", + "smw-edit-protection-disabled": "La modifica di protezione è stata disattivata, pertanto \"$1\" non può essere utilizzato per proteggere il contenuto della pagina dalle modifiche non autorizzate.", + "smw-property-predefined-long-edip": "Mentre qualsiasi utente è qualificato per aggiungere questa proprietà ad un soggetto, soltanto utenti con uno specifico permesso possono modificare o rimuovere la protezione ad un'entità, una volta che questa è stata aggiunta.", + "smw-format-datatable-emptytable": "Nessun dato disponibile nella tabella", + "smw-format-datatable-loadingrecords": "Caricamento in corso...", + "smw-format-datatable-processing": "Elaborazione...", + "smw-format-datatable-search": "Cerca:", + "smw-format-datatable-first": "Primo", + "smw-format-datatable-last": "Ultimo", + "smw-format-datatable-next": "Successivo", + "smw-format-datatable-previous": "Precedente", + "smw-format-datatable-toolbar-export": "Esporta", + "smw-format-list-other-fields-open": "(", + "apihelp-smwbrowse-summary": "Modulo API per supportare le attività di navigazione per differenti tipi di entità in Semantic MediaWiki.", + "smw-property-reserved-category": "Categoria", + "smw-category": "Categoria", + "smw-filter": "Filtro", + "smw-section-expand": "Espandi la sezione", + "smw-section-collapse": "Compimi la sezione", + "smw-ask-format-help-link": "Formato [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Aiuto", + "smw-property-predefined-label-skey": "Chiave di ordinamento", + "smw-loading": "Caricamento...", + "smw-expand": "Espandi", + "smw-collapse": "Comprimi", + "smw-copy": "Copia", + "smw-copy-clipboard-title": "Copia il contenuto negli appunti", + "smw-jsonview-expand-title": "Espandi la vista JSON", + "smw-jsonview-collapse-title": "Comprimi la vista JSON", + "smw-jsonview-search-label": "Cerca:", + "smw-types-title": "Tipo: $1", + "smw-schema-error-title": "{{PLURAL:$1|Errore|Errori}} di convalida", + "smw-schema-error-miscellaneous": "Errore vario ($1)", + "smw-schema-error-json": "Errore JSON: \"$1\"", + "smw-schema-usage": "Utilizzo", + "smw-schema-type": "Tipo schema", + "smw-property-predefined-constraint-schema": "\"$1\" è una proprietà predefinita che definisce uno schema di vincoli ed è fornita da [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-tab-usage": "Utilizzo", + "smw-property-tab-redirects": "Sinonimi", + "smw-property-tab-subproperties": "Sottoproprietà", + "smw-concept-tab-list": "Elenco", + "smw-concept-tab-errors": "Errori", + "smw-ask-tab-code": "Codice", + "smw-legend": "Legenda", + "smw-entity-examiner-associated-revision-mismatch": "Versione", + "smw-facetedsearch-intro-tab-explore": "Esplora", + "smw-facetedsearch-format-options": "Opzioni di visualizzazione", + "smw-facetedsearch-no-filters": "Nessun filtro.", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "Di seguito {{PLURAL:$1|viene presentato al massimo '''1''' risultato|vengono presentati al massimo '''$1''' risultati}} a partire dal numero '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ja.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ja.json new file mode 100644 index 0000000..b1bf6ed --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ja.json @@ -0,0 +1,609 @@ +{ + "@metadata": { + "authors": [ + "48pedoa", + "Aefgh39622", + "Ant176", + "Aotake", + "Eduardo Addad de Oliveira", + "Foomin10", + "Fryed-peach", + "Hinaloe", + "Hosiryuhosi", + "Kokage si", + "LaMagiaaa", + "Likibp", + "Macofe", + "Mfuji", + "Müller857", + "Naohiro19", + "Nemo bis", + "Ochaochaocha3", + "Omotecho", + "Otokoume", + "Puntti ja", + "Ridmevo", + "Rootflag", + "Rxy", + "Schu", + "Shirayuki", + "SkyDaisy9", + "Suchichi02", + "Sujiniku", + "Suyama", + "Wat", + "Whym", + "Yamagata Yusuke", + "Yusuke1109", + "Zero 1 k", + "沈澄心", + "背番号4のエース", + "青子守歌", + "아라" + ] + }, + "smw-desc": "ウィキを機械や人間にとってよりアクセスしやすいものにする ([https://www.semantic-mediawiki.org/wiki/Help:User_manual オンラインドキュメント])", + "smw-error": "エラー", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki]はインストールが済んで有効に設定しましたが、適切な [https://www.semantic-mediawiki.org/wiki/Help:Upgrade 更新キー]が見当たりません。", + "smw-upgrade-release": "リリース", + "smw-upgrade-progress": "進捗", + "smw-upgrade-progress-explain": "更新の完了時期について、データリポジトリのサイズならびに使える機器に左右されるため、予測の算出は難しく、大規模ウィキでは所要時間が長くかかる可能性があります。\n\nローカルの管理者にご連絡の上、プロセスの詳細をご確認ください。", + "smw-upgrade-progress-create-tables": "テーブルと索引の作成 (もしくは更新中) です...", + "smw-upgrade-progress-post-creation": "作成後のタスクを実行中です...", + "smw-upgrade-progress-table-optimization": "テーブルの最適化を実行中です...", + "smw-upgrade-progress-supplement-jobs": "補充ジョブを追加中です...", + "smw-upgrade-error-title": "エラー » Semantic MediaWiki", + "smw-upgrade-error-why-title": "このページが表示される理由は?", + "smw-upgrade-error-why-explain": "Semantic MediaWiki の内部データベース構造は変更され、十分に機能するための調整が必要です。理由として複数あげられます。\n* 修正済みプロパティを追加したため (テーブルに追加設定が必要)\n* 更新によりテーブルもしくは索引の変更が発生しデータへのアクセス前に処理の中断を余儀なくされたため\n* ストレージもしくはクエリエンジンに変更があったため", + "smw-upgrade-error-how-title": "このエラーの修復方法は?", + "smw-upgrade-error-how-explain-admin": "管理者 (もしくは管理者権限の保有者) に連絡しし MediaWiki の [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] もしくは Semantic MediaWiki の [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] 管理用スクリプトの実行を依頼してください。", + "smw-upgrade-error-how-explain-links": "また手助けに関する詳細情報は以下のページを参照してください。\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation インストール]の手順\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting トラブル解決]用のヘルプページ", + "smw-extensionload-error-why-title": "このページが表示される理由は?", + "smw-extensionload-error-how-explain": "拡張機能を有効にし、名前空間の宣言や未設定の構成による問題を回避するには、enableSemantics を使用して必要な変数を設定してから、ExtensionRegistry を通じて拡張機能を読み込む必要があります。\n\n詳細は [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] のヘルプページを参照してください。", + "smw-upgrade-maintenance-title": "メンテナンス » Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "このページが表示される理由は?", + "smw-upgrade-maintenance-explain": "この拡張機能は、影響とダウンタイムを最小限に抑えるため、メンテナンスタスクの大半を update.php の後に遅延させるようにしていますが、いくつかのデータベース関連の変更については、データの不整合を避けるために先に完了させる必要があります。これには以下が含まれることがあります:\n* テーブル構造の変更 (既存のフィールドの変更や新規フィールドの追加など)\n* テーブル索引の変更または追加\n* テーブル最適化の実行 (有効に設定されている場合)", + "smw-semantics-not-enabled": "この wiki では Semantic MediaWiki の機能が有効化されていませんでした。", + "smw_viewasrdf": "RDF フィード", + "smw_finallistconjunct": ",", + "smw-factbox-head": "...「$1」についてさらに詳しく", + "smw-factbox-facts": "ファクト", + "smw-factbox-facts-help": "特定の利用者が作成した文とファクトを表示", + "smw-factbox-attachments": "添付ファイル", + "smw-factbox-attachments-value-unknown": "利用不可", + "smw-factbox-attachments-is-local": "ローカル", + "smw-factbox-attachments-help": "利用可能な添付ファイルを表示", + "smw_isspecprop": "このプロパティはこのウィキ内の特別なプロパティです。", + "smw-concept-cache-header": "キャッシュの使用", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count コンセプトのキャッシュ]には {{PLURAL:$1|エンティティが'''1件''' |エンティティが'''$1'''件}}あります ($2)。", + "smw-concept-no-cache": "利用可能なキャッシュはありません。", + "smw_concept_description": "コンセプト「$1」の説明", + "smw_no_concept_namespace": "コンセプトを定義できるのは、Concept: 名前空間内のみです。", + "smw_multiple_concepts": "各コンセプトページが持てるコンセプト定義は 1 つのみです。", + "smw_concept_cache_miss": "コンセプト「$1」は、ウィキの設定によりオフラインでの処理が必要なため、現時点では利用できません。しばらく経っても問題が解消されない場合は、このコンセプトを利用可能にするようにサイト管理者にお問い合わせください。", + "smw_noinvannot": "逆プロパティには値を割り当てられません。", + "version-semantic": "意味的拡張機能", + "smw_baduri": "「$1」の形式の URI は許可されていません。", + "smw_printername_count": "集計結果", + "smw_printername_csv": "CSV 形式で書き出し", + "smw_printername_dsv": "DSV 形式で書き出し", + "smw_printername_debug": "クエリをデバッグ (上級者向け)", + "smw_printername_embedded": "ページの内容を埋め込む", + "smw_printername_json": "JSON 形式で書き出し", + "smw_printername_list": "一覧", + "smw_printername_plainlist": "平文の一覧", + "smw_printername_ol": "番号付き箇条書き", + "smw_printername_ul": "箇条書き", + "smw_printername_table": "表", + "smw_printername_broadtable": "幅広の表", + "smw_printername_template": "テンプレート", + "smw_printername_templatefile": "テンプレートファイル", + "smw_printername_rdf": "RDF 形式で書き出し", + "smw_printername_category": "カテゴリ", + "validator-type-class-SMWParamSource": "テキスト", + "smw-paramdesc-limit": "返す結果の最大数", + "smw-paramdesc-offset": "最初の結果のオフセット", + "smw-paramdesc-headers": "ヘッダー名やプロパティ名を表示", + "smw-paramdesc-mainlabel": "メインページ名に付けるラベル", + "smw-paramdesc-link": "値をリンクとして表示", + "smw-paramdesc-intro": "問い合わせ結果がある場合、その前に表示する文字列", + "smw-paramdesc-outro": "問い合わせ結果がある場合、その後に表示する文字列", + "smw-paramdesc-default": "問い合わせ結果がない場合に表示する文字列", + "smw-paramdesc-sep": "結果の区切り文字", + "smw-paramdesc-valuesep": "結果の属性値の区切り文字", + "smw-paramdesc-showsep": "CSV ファイルの先頭に区切り文字を表示する (\"sep=<値>\")", + "smw-paramdesc-distribution": "すべての値を表示する代わりに、出現数を数えて表示します。", + "smw-paramdesc-distributionsort": "出現数によって値の分布を整列します。", + "smw-paramdesc-template": "印刷出力とともに表示するテンプレートの名前", + "smw-paramdesc-columns": "結果を表示する列の数", + "smw-paramdesc-userparam": "テンプレートが使用されている場合に、各テンプレート呼出しに渡される値", + "smw-paramdesc-introtemplate": "問い合わせ結果がある場合、その前に表示するテンプレートの名前", + "smw-paramdesc-outrotemplate": "問い合わせ結果がある場合、その後に表示するテンプレートの名前", + "smw-paramdesc-embedformat": "見出しの定義に使用する HTML タグ", + "smw-paramdesc-embedonly": "見出しを表示しない", + "smw-paramdesc-table-class": "表に設定する追加 CSS クラス", + "smw-paramdesc-table-transpose": "表の見出しを縦に、結果を横に表示する", + "smw-paramdesc-prefix": "印刷出力における名前空間名の表示を制御", + "smw-paramdesc-rdfsyntax": "使用する RDF 構文", + "smw-paramdesc-csv-sep": "使用する区切り文字の指定", + "smw-paramdesc-csv-valuesep": "使用する区切り文字の指定", + "smw-paramdesc-csv-bom": "出力するファイルの先頭にBOM (エンディアンネス識別文字) をつける", + "smw-paramdesc-dsv-separator": "使用する区切り文字", + "smw-paramdesc-dsv-filename": "DSV ファイルの名前", + "smw-paramdesc-filename": "出力ファイルの名前", + "smw-paramdesc-sort": "クエリの並べ替えに使用するプロパティ", + "smw-paramdesc-order": "クエリの並べ替えでの並び順", + "smw-paramdesc-searchlabel": "検索結果の続きへのリンク文字列", + "smw-paramdesc-named_args": "テンプレートに渡した引数に名前を付ける", + "smw-paramdesc-export": "書き出しオプション", + "smw-paramdesc-jsonsyntax": "JSON 構文を使用します", + "smw-printername-feed": "RSS / Atom フィード", + "smw-paramdesc-feedtype": "フィードの種類", + "smw-paramdesc-feedtitle": "フィードの表題として使用する文字列", + "smw-paramdesc-feeddescription": "フィードの説明として使用する文字列", + "smw-paramdesc-feedpagecontent": "フィードにページの本文も含める", + "smw-label-feed-description": "$1 の $2 フィード", + "smw_iq_disabled": "このウィキでは、意味的クエリは無効になっています。", + "smw_iq_moreresults": "…その他の結果", + "smw_parseerror": "指定した値を理解できませんでした。", + "smw_notitle": "「$1」はこのウィキではページ名として使用できません。", + "smw_noproperty": "「$1」はこのウィキではプロパティ名として使用できません。", + "smw_wrong_namespace": "ここでは、「$1」名前空間のページのみが許可されています。", + "smw_manytypes": "プロパティに対して複数の型を定義しました。", + "smw_emptystring": "空文字列は受け入れられません。", + "smw_notinenum": "「$1」は、「$3」プロパティに対して[[Property:Allows value|許可された値]]の一覧 ($2) の中に存在しません。", + "smw-datavalue-constraint-error-allows-value-list": "\"$1\"は、\"$3\"で [[Property:Allows value|許可された値]] ($2) にありません。", + "smw-constraint-error-suggestions": "一覧の違反項目とプロパティをそれぞれの注釈付きの値と比べて制限要項に合致するか確認してください。", + "smw_noboolean": "「$1」は真偽値 (true/false) として認識されません。", + "smw_true_words": "真,true,t,yes,y", + "smw_false_words": "偽,false,f,no,n", + "smw_nofloat": "「$1」は数値ではありません。", + "smw_infinite": "「$1」を超える数値には対応していません。", + "smw_unitnotallowed": "「$1」はこのプロパティの測定値の有効な単位として宣言されていません。", + "smw_nounitsdeclared": "このプロパティの測定の単位は何も宣言されませんでした。", + "smw_novalues": "値が指定されていません。", + "smw_nodatetime": "日付「$1」を理解できませんでした。", + "smw_toomanyclosing": "クエリ内の「$1」の数が多すぎるようです。", + "smw_noclosingbrackets": "クエリ内の「[[」に、対応する「]]」で閉じられていないものがありました。", + "smw_misplacedsymbol": "記号「$1」が、無意味な場所で使用されました。", + "smw_unexpectedpart": "クエリの一部「$1」を理解できませんでした。\n結果は予期しないものになる可能性があります。", + "smw_emptysubquery": "有効な条件がないサブクエリがあります。", + "smw_misplacedsubquery": "許可されていない場所で使用されているサブクエリがあります。", + "smw_valuesubquery": "プロパティ「$1」の値は、サブクエリに対応していません。", + "smw_badqueryatom": "クエリの一部「[[…]]」を理解できませんでした。", + "smw_propvalueproblem": "プロパティ「$1」の値を理解できませんでした。", + "smw_noqueryfeature": "このウィキが対応していないクエリ機能があるため、クエリの一部を破棄しました ($1)。", + "smw_noconjunctions": "このウィキはクエリの連言に対応していないため、クエリの一部を破棄しました ($1)。", + "smw_nodisjunctions": "このウィキはクエリの選言に対応していないため、クエリの一部を破棄しました ($1)。", + "smw_querytoolarge": "クエリの長さまたは深さに関するこのウィキでの制限のため、以下の{{PLURAL:$2|クエリ条件}}は考慮されませんでした: $1", + "smw_notemplategiven": "このクエリ形式を動作させるには、引数「テンプレート」の値を指定してください。", + "smw_db_sparqlqueryproblem": "クエリの結果を SPARQL データベースから取得できませんでした。このエラーは一時的なものである可能性、またはデータベース ソフトウェアのバグである可能性があります。", + "smw_db_sparqlqueryincomplete": "クエリへの応答が非常に難しいと判断されたため、中止されました。いくつかの結果が失われている可能性があります。可能ならば、より単純なクエリを試してください。", + "smw_type_header": "型「$1」のプロパティ", + "smw_typearticlecount": "この型を使用している $1 {{PLURAL:$1|プロパティ}}を表示しています。", + "smw_attribute_header": "プロパティ「$1」を使用しているページ", + "smw_attributearticlecount": "このプロパティを使用している $1 {{PLURAL:$1|件のページ}}を表示しています。", + "smw-propertylist-redirect-header": "同義語", + "smw-propertylist-count": "関連する $1 {{PLURAL:$1|件の要素}}を表示しています。", + "smw-propertylist-count-more-available": "関連する $1 {{PLURAL:$1|件の要素}}を表示しています(さらに利用可能)。", + "specialpages-group-smw_group": "Semantic MediaWiki", + "specialpages-group-smw_group-maintenance": "メンテナンス", + "specialpages-group-smw_group-search": "閲覧と検索", + "exportrdf": "ページを RDF に書き出し", + "smw_exportrdf_docu": "このページを使用すると、ページからデータを RDF 形式で取得できます。ページを書き出すには、下のテキストボックスに、ページ名を一行に一つずつ入力してください。", + "smw_exportrdf_recursive": "すべての関連ページを再帰的に書き出します。結果が大きくなる場合があるため注意してください。", + "smw_exportrdf_backlinks": "書き出し対象のページを参照するページもすべて書き出す。\n閲覧できるRDFを生成する。", + "smw_exportrdf_lastdate": "指定した時点以降に変更がされていないページを書き出さない。", + "smw_exportrdf_submit": "書き出し", + "uriresolver": "URI リゾルバー", + "properties": "プロパティ", + "smw-categories": "カテゴリ", + "smw_properties_docu": "このウィキでは以下のプロパティが使用されています。", + "smw_property_template": "$1、$2 型 ($3 {{PLURAL:$3|回使用}})", + "smw_property_template_notype": "$1 ($2 件)", + "smw_propertylackspage": "すべてのプロパティについて、各プロパティのページで解説する必要があります!", + "smw_propertylackstype": "このプロパティには型が指定されていません (現時点では型 $1 と想定します)。", + "smw_propertyhardlyused": "このプロパティはウィキ内でほとんど使用されていません!", + "smw-property-name-invalid": "プロパティ $1 は使用できません (無効なプロパティ名)。", + "smw-sp-property-searchform": "以下を含むプロパティを表示:", + "smw-sp-property-searchform-inputinfo": "入力した内容は大文字・小文字が区別され、絞り込みに使用されます。条件に該当したプロパティのみが表示されます。", + "smw-special-property-searchform-inputinfo": "入力した内容は大文字・小文字が区別され、絞り込みに使用されたときは、条件に該当したプロパティのみ表示されます。", + "smw-special-property-searchform-options": "設定", + "smw-special-wantedproperties-filter-label": "絞り込み:", + "smw-special-wantedproperties-filter-none": "なし", + "smw-special-wantedproperties-filter-unapproved": "未承認", + "concepts": "コンセプト", + "smw-special-concept-header": "コンセプト一覧", + "smw-special-concept-count": "以下に{{PLURAL:$1|コンセプト}}を列挙します。", + "smw-special-concept-empty": "コンセプトが見つかりませんでした。", + "unusedproperties": "使われていないプロパティ", + "smw-unusedproperties-docu": "このページの[https://www.semantic-mediawiki.org/wiki/Unused_properties 未使用のプロパティ]は存在しますが、他のページで使用されていません。特別ページで[[Special:Properties|全件]]もしくは[[Special:WantedProperties|要望で作成されたプロパティの一覧]]が確認できます。", + "smw-unusedproperty-template": "$1: 型 $2", + "wantedproperties": "望まれているプロパティ", + "smw-wantedproperties-docu": "このページの[https://www.semantic-mediawiki.org/wiki/Wanted_properties 要望で作成されたプロパティ]は存在しますが、説明ページがありません。特別ページで[[Special:Properties|全件]]もしくは[[Special:UnusedProperties|未使用のプロパティを抽出した]]一覧が確認できます。", + "smw-wantedproperty-template": "$1 ($2{{PLURAL:$2|件}})", + "smw-special-wantedproperties-docu": "このページの[https://www.semantic-mediawiki.org/wiki/Wanted_properties 要望で作成されたプロパティ]は存在しますが、説明ページがありません。特別ページで[[Special:Properties|全件]]もしくは[[Special:UnusedProperties|未使用のプロパティを抽出した一覧]]が確認できます。", + "smw_purge": "更新", + "smw-purge-failed": "Semantic MediaWiki はページのリフレッシュを試みましたが失敗しました", + "types": "型", + "smw_types_docu": "[https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes 利用可能なデータ型]の一覧です。各々の[https://www.semantic-mediawiki.org/wiki/Help:Datatype 型]は、保管および、割り当てられたプロパティから遺伝する性質の表示の点で、値を特徴付ける属性の一意な集合に相当します。", + "smw-special-types-no-such-type": "\"$1\" は適切なデータ型ではありません。", + "smw-statistics": "意味的統計", + "smw-statistics-property-instance": "プロパティ{{PLURAL:$1|値}} (合計)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|プロパティ}}]] (合計)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|プロパティ}} (合計)", + "smw-statistics-property-used": "{{PLURAL:$1|プロパティ}}(少なくとも1つの値で使用)", + "smw-statistics-property-page": "{{PLURAL:$1|プロパティ}}(ページに登録)", + "smw-statistics-property-type": "{{PLURAL:$1|プロパティ}}(データ型に割り当てられています)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|クエリ}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|クエリ}}]] (総数、埋め込みされたもの)", + "smw-statistics-query-size": "クエリのサイズ", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|コンセプト}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|コンセプト}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|下位オブジェクト}}]]", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|データ型}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|プロパティ値}} ([[Special:ProcessingErrorList|{{PLURAL:$1|不適切な注記}}]])", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities 期限切れ{{PLURAL:$1|エンティティ}}]", + "smw_uri_doc": "URI リゾルバーは [$1 W3C TAG での httpRange-14 に関する議論成果]を実装しています。\nそれにより(機械向けの)RDF表現または(人間向けの)ウィキページがリクエストに応じて配信されることを保証します。", + "ask": "意味的検索", + "smw-ask-help": "この節には #ask 構文の使い方を説明するリンクが含まれます。\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selecting pages] - ページを選択し条件を作成する方法について\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Search operators] - 範囲クエリやワイルドカードなどの使用可能な検索演算子について\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Displaying information] - 印刷用ステートメントとフォーマットオプションの使用方法の概要", + "smw_ask_sortby": "列ごとに並べ替え (任意選択)", + "smw_ask_ascorder": "昇順", + "smw_ask_descorder": "降順", + "smw-ask-order-rand": "おまかせ表示", + "smw_ask_submit": "結果を取得", + "smw_ask_editquery": "クエリを編集", + "smw_add_sortcondition": "[並べ替え条件の追加]", + "smw-ask-sort-add-action": "並べ替え条件の追加", + "smw_ask_hidequery": "クエリを非表示 (折りたたむ)", + "smw_ask_help": "クエリのヘルプ", + "smw_ask_queryhead": "条件", + "smw_ask_printhead": "表示内容の選択", + "smw_ask_printdesc": "(プロパティ名を各行に 1 つ追加してください)", + "smw_ask_format_as": "書式:", + "smw_ask_defaultformat": "既定", + "smw_ask_otheroptions": "その他のオプション", + "smw-ask-otheroptions-collapsed-info": "利用できるオプションをすべて表示するには + アイコンを使用してください", + "smw_ask_show_embed": "埋め込み用コードを表示", + "smw_ask_hide_embed": "埋め込み用コードを非表示", + "smw_ask_embed_instr": "このクエリをウィキページにインラインで埋め込むには、下記のコードを使用します。", + "smw-ask-delete": "削除", + "smw-ask-sorting": "並べ替え", + "smw-ask-options": "オプション", + "smw-ask-options-sort": "並べ替えオプション", + "smw-ask-format-options": "フォーマットとオプション", + "smw-ask-parameters": "パラメーター", + "smw-ask-search": "検索", + "smw-ask-debug": "デバッグ", + "smw-ask-result": "結果", + "smw-ask-empty": "すべての入力のクリア", + "smw-ask-download-link-desc": "クエリ結果を $1 形式でダウンロードする", + "smw-ask-format": "フォーマット", + "smw-ask-format-selection-help": "選択したフォーマットに関するヘルプ: $1", + "smw-ask-query-search-info": "問い合わせ $1 に対して {{PLURAL:$3|1=$2(キャッシュ)|$2(キャッシュ)|$2}} より $4 {{PLURAL:$4|秒}}で応答が返りました。", + "searchbyproperty": "プロパティによる検索", + "processingerrorlist": "処理エラーの一覧", + "propertylabelsimilarity": "プロパティラベル類似性レポート", + "smw-processingerrorlist-intro": "以下の一覧は[https://www.semantic-mediawiki.org/ Semantic MediaWiki] に関連して発生した[https://www.semantic-mediawiki.org/wiki/Processing_errors 処理エラー]の概要を提供します。この一覧は定期的に監視し、無効な値の注記を訂正することをお勧めします。", + "smw_sbv_docu": "指定したプロパティと値を持つすべてのページを検索します。", + "smw_sbv_novalue": "そのプロパティに対して有効な値を入力するか、「$1」のすべてのプロパティ値を確認してください。", + "smw_sbv_displayresultfuzzy": "プロパティ「$1」の値が「$2」であるすべてのページの一覧。\n結果がごく少数だったため、近い値も表示しています。", + "smw_sbv_property": "プロパティ:", + "smw_sbv_value": "値:", + "smw_sbv_submit": "結果を取得", + "browse": "ウィキの閲覧", + "smw_browselink": "プロパティを閲覧", + "smw_browse_article": "閲覧を開始するページの名前を入力してください。", + "smw_browse_go": "表示", + "smw_browse_show_incoming": "リンク元のプロパティを表示", + "smw_browse_hide_incoming": "リンク元のプロパティを隠す", + "smw_browse_no_outgoing": "このページにはプロパティはありません。", + "smw_browse_no_incoming": "このページにリンクしているプロパティはありません。", + "smw-browse-intro": "このページは主題もしくは実態のインスタンスの詳細を述べており、検査対象のオブジェクト名を入力してください。", + "smw-browse-show-group": "グループを表示する", + "smw-browse-hide-group": "グループを隠す", + "smw-noscript": "このページもしくは操作の実行には JavaScript が必要です。要求された機能を提供できるように、ブラウザーで JavaScript を有効にするか、 JavaScript がサポートされているブラウザーを使用してください。詳細情報は、[https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript] ヘルプページをご参照ください。", + "smw_inverse_label_default": "$1である", + "smw_inverse_label_property": "逆プロパティのラベル", + "pageproperty": "ページのプロパティの検索", + "smw_pp_docu": "指定したプロパティの値をすべて検索するには、ページとプロパティ、もしくはプロパティだけ入力します。", + "smw_pp_from": "対象ページ", + "smw_pp_type": "プロパティ", + "smw_pp_submit": "結果を取得", + "smw-prev": "前の {{PLURAL:$1|$1件}}", + "smw-next": "次の {{PLURAL:$1|$1件}}", + "smw_result_prev": "前へ", + "smw_result_next": "次へ", + "smw_result_results": "結果", + "smw_result_noresults": "該当結果はありません。", + "smwadmin": "Semantic MediaWiki のダッシュボード", + "smw-admin-statistics-job-title": "ジョブ統計", + "smw-admin-statistics-job-docu": "ジョブ統計は、まだ実行されていないスケジュールされた Semantic MeidaWiki ジョブについての情報を表示します。ジョブ数はわずかに不正確である可能性があり、また失敗した試行が含まれます。さらなる詳細については、[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue マニュアル]を参照してください。", + "smw-admin-statistics-querycache-title": "クエリキャッシュ", + "smw-admin-statistics-querycache-disabled": "このウィキでは[https://www.semantic-mediawiki.org/wiki/QueryCache クエリキャッシュ]が有効化されていないため、統計は利用できません。", + "smw-admin-statistics-querycache-legend": "キャッシュ統計には暫定的な累積データと以下の派生データが含まれます:\n* 「misses」は、達成不可能という応答だった、キャッシュからのデータ検索の合計試行回数です。この応答により、直接のリポジトリ(DB、triple-store など)検索が強いられます。\n* 「deletes」は、キャッシュ追い出し操作の総量です(パージあるいはクエリの依存関係によります)\n* 「hits」には、埋め込まれた(ウィキページ内から呼ばれたクエリ)ソースあるいは埋め込まれていない(有効化されていれば、特別:問い合わせのようなページまたは API からリクエストされた)ソースからのキャッシュ検索量が含まれます\n* 「medianRetrievalResponseTime」は、収集プロセスの期間にわたる、キャッシュされた検索リクエストおよびキャッシュされていない検索リクエストの応答時間(秒単位)の中央値です\n* 「noCache」は、結果をキャッシュから検索しようとしないリクエスト(limit=0 クエリ、'no-cache' オプションなど)の量を示します", + "smw-admin-statistics-semanticdata-overview": "概要", + "smw-admin-permission-missing": "このページへのアクセスは権限がないためブロックされました。[https://www.semantic-mediawiki.org/wiki/Help:Permissions 権限]ヘルプページを参照して必要な設定の詳細をご確認ください。", + "smw-admin-setupsuccess": "ストレージエンジンが構築されました。", + "smw_smwadmin_return": "$1 に戻る", + "smw_smwadmin_updatestarted": "意味的データを最新の状態にするための新しい更新プロセスを開始しました。\n格納済みのデータはすべて必要に応じて再構築または修復されます。\nこの特別ページで更新の状況を追うことができます。", + "smw_smwadmin_updatenotstarted": "既に実行中の更新プロセスがあります。\n新たに作成しないでください。", + "smw_smwadmin_updatestopped": "既存のすべての更新プロセスは停止されました。", + "smw_smwadmin_updatenotstopped": "実行中の更新プロセスを停止するには、本当に理解していることを示すためにチェックボックスを選択する必要があります。", + "smw-admin-docu": "この特別ページは Semantic MediaWiki のインストール、アップグレード、保守および使用を支援します。また、統計と同様にさらなる管理者向け機能およびタスクを提供します。\n管理機能を実行する前に、重要なデータをバックアップするようにしてください。", + "smw-admin-environment": "ソフトウェア環境", + "smw-admin-db": "データベース設定", + "smw-admin-dbdocu": "Semantic MediaWiki は、意味的データを格納するため、独自のデータベース構造を必要とします(Semantic MediaWiki は MediaWiki から独立しており、MediaWiki の他の要素には影響しません)。この設定機能を複数回実行しても何の害もありませんが、インストール時もしくは更新時に一度だけ実行すれば十分です。", + "smw-admin-permissionswarn": "SQL エラーを出して処理が失敗する場合、おそらくあなたのウィキのデータベース ユーザー (\"LocalSettings.php\" を確認してください) に必要な権限がありません。\n\"LocalSettings.php\" に一時的にデータベースの root のログイン情報を記入してこのユーザーにテーブルを作成および削除するための追加権限を与えるか、setupStore.php の認証情報を使用できるメンテナンススクリプト setupStore.php を使用してください。", + "smw-admin-dbbutton": "テーブルを初期化またはアップグレード", + "smw-admin-announce": "ウィキの発表", + "smw-admin-announce-text": "ウィキが公開されている場合、ウィキを監視するウィキである WikiApiary に登録できます。", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 は非推奨となり、$2 で削除される予定です。", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1$2 に置き換えられます", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] は $2 で削除されました", + "smw-admin-deprecation-notice-title-replacement": "代替または名前が変更された設定", + "smw-admin-deprecation-notice-title-removal": "削除された設定", + "smw-admin-deprecation-notice-title-removal-explanation": "削除された設定以前のリリースで削除されたが、このウィキでまだ使用していることを検出した識別された設定項目", + "smw-smwadmin-refresh-title": "データの修復と更新", + "smw_smwadmin_datarefresh": "データの再構築", + "smw_smwadmin_datarefreshdocu": "ウィキの現在の内容に基づいて、Semantic MediaWiki の全データを復旧できます。\nこの機能は、破損したデータを修復する場合や、ソフトウェアのアップグレードによって内部形式が変わった際にデータをリフレッシュする場合などに有用です。\n更新は1ページずつ実行され、直ちには完了しません。\n以下に更新が進行中かどうかを表示します。更新を開始または停止できます(サイト管理者が機能を無効にしていない場合のみ)。", + "smw_smwadmin_datarefreshprogress": "更新が既に進行中です。\n利用者がウィキにアクセスするたびに少量の塊のデータを更新するのみであるため、更新がゆっくりとしか進まないのは正常な動作です。\nこの更新をより早く終えるには、MediaWiki のメンテナンス スクリプト runJobs.php を実行してください (1つのバッチで行われる更新の数を制限するには --maxjobs 1000 オプションを使用してください)。\n現在の更新の推定進捗:", + "smw_smwadmin_datarefreshbutton": "データの再構築をスケジュールする", + "smw_smwadmin_datarefreshstop": "この更新を停止する", + "smw_smwadmin_datarefreshstopconfirm": "はい、{{GENDER:$1|もちろん}}です。", + "smw-admin-job-scheduler-note": "この節のタスク (有効なもの) は、実行中にデッドロック状態となることを避けるため、ジョブキューを使用して実行されます。[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue ジョブキュー]が処理を担当しているため、runJobs.php メンテナンススクリプトが適切な処理能力をもっていることが重要です (設定パラメーター $wgRunJobsAsync も参照してください)。", + "smw-admin-outdateddisposal-title": "期限切れエンティティの破棄", + "smw-admin-outdateddisposal-intro": "アクティビティによっては(プロパティの型の変更、ウィキページの除去、エラー値の修正)、[https://www.semantic-mediawiki.org/wiki/Outdated_entities 期限切れエンティティ]が発生します。関連するテーブル空間を解放するため、それらを定期的に除去することをお勧めします。", + "smw-admin-outdateddisposal-active": "期限切れエンティティ破棄ジョブはスケジュールされています。", + "smw-admin-outdateddisposal-button": "破棄をスケジュールする", + "smw-admin-feature-disabled": "このウィキでは当該の機能は無効にされているため、設定のヘルプページを参照するかシステム管理者にお問い合わせください。", + "smw-admin-propertystatistics-title": "プロパティ統計の再構築", + "smw-admin-propertystatistics-intro": "プロパティ使用統計をすべて再構築し、プロパティ[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count 使用数]を更新、修正します。", + "smw-admin-propertystatistics-active": "プロパティ統計再構築ジョブはスケジュールされています。", + "smw-admin-propertystatistics-button": "統計の再構築をスケジュールする", + "smw-admin-fulltext-title": "全文検索データの再構築", + "smw-admin-fulltext-button": "全文検索データを再構築する", + "smw-admin-support": "支援を得る", + "smw-admin-supportdocu": "問題が発生したときに助けとなるよう、次のようなさまざまなリソースが提供されます。", + "smw-admin-installfile": "インストール中に問題が発生した場合の対策は、はじめにINSTALL ファイルと、インストールページ\nにある指針を確認します。", + "smw-admin-smwhomepage": "Semantic MediaWiki 利用者向け説明文書の全文は semantic-mediawiki.org にあります。", + "smw-admin-bugsreport": "バグは 問題追跡ツールバグの報告ページで報告できます。このページには、効果的な課題レポートの作成方法に関するガイダンスがあります。", + "smw-admin-questions": "さらに質問や提案がある場合は、Semantic MediaWikiの利用者メーリングリストでの議論に参加してください。", + "smw-admin-other-functions": "その他の機能", + "smw-admin-statistics": "統計", + "smw-admin-supplementary-section-title": "追加機能", + "smw-admin-supplementary-section-intro": "このセクションは、メンテナンスの範囲を超えた追加機能を提供します。記載されている機能([https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions ドキュメント]を参照)の中には制限されているものや利用できないものもあり、したがってこのウィキではアクセスできない可能性があります。", + "smw-admin-supplementary-settings-title": "設定", + "smw-admin-supplementary-settings-intro": "$1は Semantic MediaWiki の動作を定義するパラメーターを示しています", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "運用統計", + "smw-admin-supplementary-operational-statistics-short-title": "運用統計", + "smw-admin-supplementary-operational-statistics-intro": "広範な$1のセットを表示します", + "smw-admin-supplementary-idlookup-title": "エンティティの検索および破棄", + "smw-admin-supplementary-idlookup-short-title": "エンティティの検索および破棄", + "smw-admin-supplementary-idlookup-intro": "単純な$1機能をサポートします", + "smw-admin-supplementary-duplookup-title": "重複エンティティ検索", + "smw-admin-supplementary-duplookup-intro": "選択されたテーブル行列で重複と分類されたエンティティを検索するには、$1を実行します", + "smw-admin-supplementary-duplookup-docu": "このページは、選択されたテーブルから[https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities 重複]と分類されたエントリを一覧表示します。重複エントリは(仮にあったとしても)稀にしか発生しません。潜在的な原因は、更新の中止またはロールバックトランザクションの失敗です。", + "smw-admin-supplementary-operational-statistics-cache-title": "キャッシュ統計", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1は、キャッシュ関連統計の選択されたセットを表示します", + "smw-admin-supplementary-elastic-functions": "対応している関数", + "smw-admin-supplementary-elastic-settings-title": "設定 (インデックス)", + "smw-admin-supplementary-elastic-mappings-summary": "要約", + "smw-admin-supplementary-elastic-nodes-title": "ノード", + "smw-admin-supplementary-elastic-statistics-title": "統計", + "smw-admin-supplementary-elastic-status-last-active-replication": "最後に同期した時刻: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "更新間隔: $1", + "smw-admin-supplementary-elastic-replication-files": "ファイル", + "smw-admin-supplementary-elastic-replication-pages": "ページ", + "smw-admin-supplementary-elastic-no-connection": "ウィキから現在、Elasticsearch クラスタへの接続が確立'''できない'''状態のため、ウィキの管理者に連絡してシステムの索引とクエリ機能が無効の問題の精査を依頼してください、", + "smw-list-count": "一覧には$1{{PLURAL:$1|個}}のエントリが含まれています。", + "smw-property-label-similarity-title": "プロパティラベル類似性レポート", + "smw-property-label-similarity-threshold": "閾値:", + "smw-admin-operational-statistics": "このページには、Semantic MediaWiki の関連機能内で収集された、あるいはそれらから収集された運用統計が含まれています。ウィキ固有の統計の広範な一覧は[[Special:Statistics|ここ]]に記載されています。", + "smw_adminlinks_datastructure": "データ構造", + "smw_adminlinks_displayingdata": "データの表示", + "smw_adminlinks_inlinequerieshelp": "インラインクエリのヘルプ", + "smw-property-indicator-type-info": "{{PLURAL:$1|利用者|システム}}が定義したプロパティ", + "smw-createproperty-isproperty": "これは型 $1 のプロパティです。", + "smw-createproperty-allowedvals": "このプロパティが取れる{{PLURAL:$1|値}}:", + "smw-paramdesc-category-delim": "区切り文字", + "smw-paramdesc-category-template": "項目の整形に使用するテンプレート", + "smw-paramdesc-category-userparam": "テンプレートに渡すパラメーター", + "smw-info-par-message": "表示するメッセージです。", + "smw-info-par-icon": "表示するアイコン (「info」と「warning」のいずれか) です。", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "全般オプション", + "prefs-extended-search-options": "拡張検索", + "prefs-ask-options": "意味的検索", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] および関連する拡張機能により、一部の選択された機能と関数に個別の個人設定ができます。 個別の特徴と解説および設定については、以下の[https://www.semantic-mediawiki.org/wiki/Help:User_preferences ヘルプ]を参照してください。", + "smw-prefs-ask-options-tooltip-display": "特別ページ #ask [[Special:Ask|クエリビルダー]]でパラメーター文字列を情報ツールチップとして表示", + "smw-prefs-general-options-time-correction": "地域の[[Special:Preferences#mw-prefsection-rendering|時差]]を使った特別ページ上の時刻補正を有効にする", + "smw-prefs-general-options-disable-editpage-info": "編集ページ上の導入テキストを無効化する", + "smw-prefs-general-options-disable-search-info": "標準の検索ページでの構文サポート情報を無効にする", + "smw-prefs-general-options-suggester-textinput": "Semantic MediaWikiの要素の入力補助を有効にする", + "smw-prefs-help-general-options-suggester-textinput": "有効にすると、入力したテキストからプロパティ、コンセプト、カテゴリの候補を表示する[https\n://www.semantic-mediawiki.org/wiki/Help:Input_assistance 入力補助機能]を使用できるようになります。", + "smw-prefs-general-options-show-entity-issue-panel": "エンティティ問題パネルを表示", + "smw-prefs-help-general-options-show-entity-issue-panel": "有効にすると、各ページにおいて整合性確認を実行し[https\n://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel エンティティ問題パネル]を表示します。", + "smw-ui-tooltip-title-property": "プロパティ", + "smw-ui-tooltip-title-quantity": "単位の換算", + "smw-ui-tooltip-title-info": "情報", + "smw-ui-tooltip-title-service": "サービスのリンク", + "smw-ui-tooltip-title-warning": "警告", + "smw-ui-tooltip-title-error": "エラー", + "smw-ui-tooltip-title-parameter": "パラメーター", + "smw-ui-tooltip-title-event": "イベント", + "smw-ui-tooltip-title-note": "注記", + "smw-ui-tooltip-title-legend": "凡例", + "smw_unknowntype": "このプロパティの型「$1」は無効です", + "smw-concept-cache-text": "このコンセプトについては合計 $1 {{PLURAL:$1|件のページ}}があり、最終更新は $2 $3です。", + "smw_concept_header": "コンセプト「$1」のページ", + "smw_conceptarticlecount": "以下に $1 {{PLURAL:$1|件のページ}}を表示しています。", + "right-smw-admin": "管理作業にアクセス (Semantic MediaWiki)", + "right-smw-patternedit": "許可された正規表現およびパターンの維持のための編集アクセス (Semantic MediaWiki)", + "right-smw-pageedit": "Is edit protected が付与されたページに対する編集アクセス (Semantic MediaWiki)", + "action-smw-pageedit": "Is edit protected が付与されたページの編集 (Semantic MediaWiki)", + "group-smwadministrator": "管理者 (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|管理者 (Semantic MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:管理者 (Semantic MediaWiki)", + "group-smwcurator": "キュレーター (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|キュレーター (Semantic MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:キュレーター (Semantic MediaWiki)", + "action-smw-admin": "Semantic MediaWiki 管理作業へのアクセス", + "smw-property-predefined-default": "「$1」は型 $2 の定義済みプロパティです。", + "smw-property-predefined-common": "このプロパティは事前に設置されています ([https://www.semantic-mediawiki.org/wiki/Help:Special_properties 特別プロパティ]として知られています)。このプロパティには追加の管理権限が付属していますが、他の[https://www.semantic-mediawiki.org/wiki/Property 利用者定義プロパティ]と同様に使用できます。", + "smw-sp-properties-docu": "このページはこのウィキにおける[https://www.semantic-mediawiki.org/wiki/Property プロパティ]およびその使用回数の一覧を表示します。最新の回数統計を表示するために、[https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics プロパティ統計]メンテナンススクリプトを定期的に実行することをお勧めします。異なる表示を行うには、[[Special:UnusedProperties|使われていないプロパティ]]あるいは[[Special:WantedProperties|望まれているプロパティ]]特別ページを参照してください。", + "smw-sp-properties-header-label": "プロパティ一覧", + "smw-admin-settings-docu": "Semantic MediaWiki 環境に関連するすべての既定とローカルの設定の一覧を表示します。個別の設定の詳細については、[https://www.semantic-mediawiki.org/wiki/Help:Configuration configuration] ヘルプページを参照してください。", + "smw-sp-admin-settings-button": "設定の一覧を生成", + "smw-admin-idlookup-title": "検索", + "smw-admin-idlookup-docu": "この節では、Semantic MediaWikiにおける個々のエンティティ(ウィキぺージ、サブオブジェクト、プロパティ等)に関する詳細な技術情報を表示します。該当する検索フィールドに一致する数値IDまたは文字列を入力しますが、どのID参照もSemantic MediaWikiが対象であり、MediaWiki上のページやIDではないことに注意してください。", + "smw-admin-iddispose-title": "破棄", + "smw-admin-iddispose-docu": "破棄操作は制限されておらず、さらに確認された場合はストレージエンジンからエンティティを削除するばかりかペンディングテーブルのレファレンスもすべて消去します。このタスクは必ず[https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal ドキュメント]を参照してから'''注意して'''実行してください。", + "smw-admin-iddispose-done": "ID「$1」はストレージバックエンドから除去されました。", + "smw-admin-iddispose-no-references": "検索しましたが「$1」に対するテーブルのエントリが一致しませんでした。", + "smw-admin-idlookup-input": "検索:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "概要", + "smw-admin-tab-maintenance": "メンテナンス", + "smw-admin-tab-supplement": "追加機能", + "smw-admin-deprecation-notice-section": "Semantic MediaWiki", + "smw-admin-configutation-tab-settings": "設定", + "smw-admin-configutation-tab-namespaces": "名前空間", + "smw-admin-maintenance-tab-tasks": "タスク", + "smw-admin-maintenance-tab-scripts": "メンテナンススクリプト", + "smw-admin-maintenance-no-description": "説明はありません。", + "smw-livepreview-loading": "読み込み中...", + "smw-sp-searchbyproperty-description": "このページは、プロパティと名前を付けられた値によって記述されたエントリを見つけるための簡素な[https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces 閲覧インターフェース]を提供します。[[Special:PageProperty|ページのプロパティの検索]]や[[Special:Ask|問い合わせクエリビルダー]]といった他の検索インターフェースも利用可能です。", + "smw-sp-searchbyproperty-resultlist-header": "結果の一覧", + "smw-sp-searchbyproperty-nonvaluequery": "プロパティ「$1」が割り当てられている値の一覧です。", + "smw-sp-searchbyproperty-valuequery": "値「$2」が付けられたプロパティ「$1」のあるページの一覧です。", + "smw-editpage-annotation-enabled": "このページは意味的テキスト内注記(例:[[Is specified as::World Heritage Site]])をサポートしています。これは構造化され問い合わせ可能なコンテンツを構築するためのもので、Semantic MediaWiki が提供しています。注記や #ask パーサー関数についての完全な説明は [https://www.semantic-mediawiki.org/wiki/Help:Getting_started getting started]、[https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation in-text annotation]、または [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries inline queries] ヘルプページをご覧ください。", + "smw-editpage-annotation-disabled": "名前空間の制限により、このページでは意味的テキスト内注記を行えません。この名前空間において有効化する方法についての詳細は [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuration] ヘルプページに記載されています。", + "smw-search-syntax": "構文", + "smw-search-profile-sort-recent": "最新", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in:は、「...」を含む項目を全て検出し、検索に用いる文脈もしくはプロパティが不明の場合に特に便利です (例:in:(lorem && ipsum) と入力すると[[~~*lorem*]] && [[~~*ipsum*]] と記述したのと同じ検索を実行できる。)", + "smw-search-profile-extended-help-query-link": "詳細情報は、$1をご使用ください。", + "smw-search-profile-extended-help-find-forms": "利用可能なフォーム", + "smw-search-profile-extended-section-sort": "並び順", + "smw-search-profile-extended-section-form": "フォーム", + "smw-search-profile-extended-section-namespace": "名前空間", + "smw-search-profile-extended-section-query": "クエリ", + "smw-search-show": "表示", + "smw-search-hide": "非表示", + "log-name-smw": "Semantic MediaWiki ログ", + "log-show-hide-smw": "Semantic MediaWiki 記録を$1", + "logeventslist-smw-log": "Semantic MediaWiki ログ", + "log-description-smw": "Semantic MediaWiki とその構成要素によって報告された、[https://www.semantic-mediawiki.org/wiki/Help:Logging 有効なイベントの種類]についての活動です。", + "smw-datavalue-import-unknown-namespace": "インポート名前空間「$1」が不明です。OWL インポートの詳細を [[MediaWiki:Smw import $1]]経由で取得できるかどうか確認してください。", + "smw-datavalue-import-missing-namespace-uri": "[[MediaWiki:Smw import $1|$1 インポート]]を検索しましたが「$1」名前空間URIは見つかりませんでした。", + "smw-datavalue-import-invalid-value": "「$1」は有効な書式ではありません。\"名前空間\":\"識別子\"(例:「foaf:name」)から成ることが要求されています。", + "smw-property-predefined-type": "「$1」は、プロパティの[[Special:Types|データ型]]を記述する定義済みプロパティです。これは [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] によって提供されています。", + "smw-property-predefined-sobj": "「$1」は[https://www.semantic-mediawiki.org/wiki/Help:Container コンテナ]構造を表す定義済みのプロパティであり、[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] によって提供されています。", + "smw-property-predefined-long-sobj": "コンテナはプロパティ・値の割り当てを蓄積することを可能にします。これは通常のページと同様ですが、埋め込んでいるテーマとリンクされ、異なるエンティティ空間の中で行われます。", + "smw-datavalue-invalid-number": "「$1」は数値として解釈できません。", + "smw-query-condition-circular": "「$1」において循環条件の可能性が検出されました。", + "smw-types-list": "データ型の一覧", + "smw-types-default": "「$1」は組み込みのデータ型です。", + "smw-types-help": "追加の情報と例は、この[https://www.semantic-mediawiki.org/wiki/Help:Type_$1 ヘルプページ]で閲覧できます。", + "smw-type-anu": "「$1」は [[Special:Types/URL|URL]] データ型の異形です。主に「owl:AnnotationProperty」の出力定義に使われます。", + "smw-type-boo": "「$1」は真偽値を記述するための基本データ型です。", + "smw-type-cod": "「$1」はソースコードリストのような任意の長さの技術的テキストに使われる [[Special:Types/Text|Text]] データ型の異形です。", + "smw-type-geo": "「$1」は地理的な場所を記述するデータ型です。このデータ型は、拡張された機能を提供するために[https://www.semantic-mediawiki.org/wiki/Extension:Maps 「Maps」]拡張機能を必要とします。", + "smw-type-tel": "「$1」は RFC 3966 に従った国際電話番号を記述するための特別なデータ型です。", + "smw-type-txt": "「$1」は任意の長さの文字列を記述するための基本データ型です。", + "smw-type-dat": "「$1」は統一された書式で時点を表すための基本データ型です。", + "smw-type-ema": "「$1」はメールアドレスを表現する特別なデータ型です。", + "smw-type-tem": "「$1」は温度を表現する特別なデータ型です。", + "smw-type-qty": "「$1」は数値表現と測定単位を使用して数量を記述するためのデータ型です。", + "smw-type-rec": "「$1」は型のあるプロパティを固定の順序で持つ一覧のコンテナ データ型です。", + "smw-type-tab-properties": "プロパティ", + "smw-type-tab-types": "型", + "smw-type-tab-errors": "エラー", + "smw-type-primitive": "基本型", + "smw-type-contextual": "文脈型", + "smw-type-compound": "複合型", + "smw-type-container": "コンテナ型", + "smw-type-no-group": "未分類", + "smw-property-predefined-errt": "「$1」という定義済みのプロパティにはエラーの説明文が含まれ、[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]から取得します。", + "smw-property-predefined-mime": "「$1」は、アップロードされたファイルの MIME タイプを記述する定義済みプロパティです。これは [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] によって提供されています。", + "smw-property-predefined-askst": "「$1」は、文字列としてクエリの条件を記述する定義済みプロパティです。これは [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] によって提供されています。", + "smw-datavalue-languagecode-missing": "「$1」注釈に対して、パーサは言語コード (例えば「foo@en」形式) を判断できませんでした。", + "smw-type-mlt-rec": "「$1」は指定したテキスト値を[[Property:Language code|言語コード]]に関連付ける[https://www.semantic-mediawiki.org/wiki/Help:Container コンテナ] データ型です。", + "smw-limitreport-intext-parsertime": "[SMW] テキスト内注記パーサー時間", + "smw-limitreport-intext-parsertime-value": "$1{{PLURAL:$1|秒}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1{{PLURAL:$1|秒}}", + "smw-property-predefined-long-pvuc": "2つの値が文による表現が等価ではない場合に重み付けをし、もしその制約に違反するとエラーに分類します。", + "smw-constraint-violation-uniqueness": "unique_value_constraint制約が \"[[Property:$1|$1]]\" プロパティに割り当てられ、一意の値の割り当てのみを許可し、'' $2 '' 値の注釈は既に \" $3 \" サブジェクトで注釈が付けられています。", + "smw-constraint-violation-uniqueness-isknown": "\"[[Property:$1|$1]]\" プロパティにunique_value_constraint制約が割り当てられた際に一意の値の注釈のみが許可されます。'' $2 '' には、現在のサブジェクトの一意性制約に違反する \" $3 \" の注釈付きの値が含まれています。", + "smw-datavalue-time-invalid-jd": "入力値「$1」に対して JD (Julian day=ユリウス日 ) 「$2」が返されたため解釈ができませんでした。", + "smw-datavalue-time-invalid": "入力値「$1」の解釈を試みましたが「」Unable to interpret the \"$1\" input value as valid date or time component with \"$2\" being reported.", + "smw-datavalue-external-formatter-invalid-uri": "「$1」は無効な URL です。", + "smw-type-eid": "「$1」は外部リソース(URI ベース)を記述する [[Special:Types/Text|Text]] データ型の一種です。[[Property:External formatter uri|External formatter URI]] を記述する定義済みプロパティに使われます。", + "smw-type-keyw": "「$1」は文字数が制限された正規化コンテンツ表現のための [[Special:Types/Text|Text]] データ型の一種です。", + "smw-datavalue-stripmarker-parse-error": " \"$1 \"には [https://ja.wikipedia.org/wiki/Help:Strip_markers strip markers] が含まれており解析できません。", + "smw-datavalue-propertylist-invalid-property-key": "プロパティリスト「$1」は無効なプロパティキー「$2」を含んでいました。", + "smw-type-ref-rec": "「$1」は値の割り当てに関する追加の情報(例:出典データ)を記録することを可能にする [https://www.semantic-mediawiki.org/wiki/Container コンテナ] データ型です。", + "smw-data-lookup-with-wait": "要求は処理中です。しばらく時間がかかることがあります。", + "smw-no-data-available": "利用できるデータがありません。", + "smw-property-req-violation-missing-maps-extension": "Semantic MediaWiki は不可欠な[https://www.semantic-mediawiki.org/wiki/Extension:Maps 「地図」Maps]拡張機能の検出に失敗し、結果としてこのプロパティの機能性に制限をかけました (つまり地理的データの保存もしくは処理が不可能。)", + "smw-edit-protection": "このページは意図しないデータの変更を防止するため[[Property:Is edit protected|保護]]されており、適切な編集権限(「$1」)を持っているか適切な利用者グループに所属している利用者のみ編集できます。", + "smw-edit-protection-auto-update": "Semantic MediaWiki は「Is edit protected」プロパティに従い保護状態を更新しました。", + "smw-format-datatable-emptytable": "テーブルにデータがありません", + "smw-format-datatable-info": "_TOTAL_ 件中 _START_ から _END_ まで表示", + "smw-format-datatable-infoempty": "0 件中 0 から 0 まで表示", + "smw-format-datatable-infofiltered": "(全 _MAX_ 件より抽出)", + "smw-format-datatable-lengthmenu": "_MENU_ 件表示", + "smw-format-datatable-loadingrecords": "読み込み中...", + "smw-format-datatable-processing": "処理中...", + "smw-format-datatable-search": "検索:", + "smw-format-datatable-zerorecords": "一致するレコードがありません", + "smw-format-datatable-first": "先頭", + "smw-format-datatable-last": "最終", + "smw-format-datatable-next": "次", + "smw-format-datatable-previous": "前", + "smw-format-datatable-sortascending": ": 列を昇順に並べ替えるにはアクティブにする", + "smw-format-datatable-sortdescending": ": 列を降順に並べ替えるにはアクティブにする", + "smw-format-datatable-toolbar-export": "エクスポート", + "smw-api-invalid-parameters": "無効なパラメーター:「$1」", + "smw-property-page-list-count": "このプロパティを使用している $1 {{PLURAL:$1|件のページ}}を表示しています。", + "smw-property-page-list-search-count": "Showing $1 {{PLURAL:$1|page|pages}} using this property with a \"$2\" value match.\nこのプロパティを使用していて値が「$2」に一致した $1 {{PLURAL:$1|件のページ}}を表示しています。", + "smw-property-page-filter-note": "[https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter search filter] では ~! などの [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions query expressions] を使用できます。選択した [https://www.semantic-mediawiki.org/wiki/Query_engine query engine] では、大文字と小文字を区別しない検索や次のような短い式もサポートされているかもしれません:\n\n* in: - この文字列を結果に含む(例:'in:Foo')\n\n* not: - この文字列を結果に含まない(例:'not:Bar')", + "smw-property-reserved-category": "カテゴリ", + "smw-category": "カテゴリ", + "smw-section-expand": "すべての節を展開", + "smw-section-collapse": "節を折りたたむ", + "smw-ask-format-help-link": "[https://www.semantic-mediawiki.org/wiki/Help:$1_format $1] 形式", + "smw-help": "ヘルプ", + "smw-cheat-sheet": "早見表", + "smw-property-predefined-label-skey": "ソートキー", + "smw-processing": "処理中...", + "smw-loading": "読み込み中...", + "smw-expand": "展開する", + "smw-collapse": "折り畳む", + "smw-copy": "コピー", + "smw-schema-error-title": "検証 {{PLURAL:$1|エラー|エラー}}", + "smw-ask-title-keyword-type": "キーワード検索", + "smw-remote-source-unavailable": "リモートのターゲット「$1」に接続できませんでした。", + "smw-parameter-missing": "パラメーター \"$1\" がありません。", + "smw-property-tab-usage": "使用", + "smw-property-tab-redirects": "同義語", + "smw-property-tab-subproperties": "下位プロパティ", + "smw-concept-tab-errors": "エラー", + "smw-ask-tab-result": "結果", + "smw-ask-tab-debug": "デバッグ", + "smw-ask-tab-code": "コード", + "smw-pendingtasks-tab-setup": "セットアップ", + "smw-install-incomplete-elasticstore-indexrebuild": "ElasticStore を[https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore 既定のストア]に選択しましたが、拡張機能は記録を検知できないため[https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] スクリプトが発動、スクリプトを指示どおりに走らせてください。", + "smw-es-replication-check": "複製を検査 (Elasticsearch)", + "smw-es-replication-error-no-connection": "複製の監視において Elasticsearch への接続に失敗したため検査はまったく実施できませんでした。", + "smw-es-replication-error-suggestions": "ページを編集して矛盾を除去する推奨されます。問題がそれでも残る場合は Elasticsearch クラスタ自体の確認をお願いします (アロケータ、例外状況、ディスク空間その他。)", + "smw-es-replication-error-suggestions-exception": "ログを調べて Elasticsearch の状態、その索引、設定の錯誤の問題が発生していないか情報を確認してください。", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "注釈とファイル索引より以前に[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion ファイル取得]ジョブの予定が確立していて実行されるかどうか確認してください。", + "smw-report": "レポート", + "smw-legend": "凡例", + "smw-entity-examiner-indicator": "エンティティ問題パネル", + "smw-indicator-revision-mismatch-error": "[https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner 関連する改版]検査により、このエントリに対して MediaWiki が引用する改版と Semantic MediaWiki に紐付けされたものに不一致が見つかりました。", + "smw-listingcontinuesabbrev": "の続き", + "smw-showingresults": "$2 件目以降の最大 {{PLURAL:$1|$1 件の結果}}を表示しています。" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/jam.json b/mediawiki/extensions/SemanticMediaWiki/i18n/jam.json new file mode 100644 index 0000000..028a509 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/jam.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Katxis" + ] + }, + "smw-categories": "Kiatigaridem‎", + "browse": "Brouz wiki", + "smw-listingcontinuesabbrev": "kant." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/jbo.json b/mediawiki/extensions/SemanticMediaWiki/i18n/jbo.json new file mode 100644 index 0000000..212ed44 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/jbo.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Gleki" + ] + }, + "smw-categories": "klesi", + "smw_purge": "vifnygau", + "smw_browselink": "zgana lo se ckaji", + "smw-listingcontinuesabbrev": "ranji" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/jut.json b/mediawiki/extensions/SemanticMediaWiki/i18n/jut.json new file mode 100644 index 0000000..87cda6f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/jut.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Jyllanj" + ] + }, + "smw-categories": "Kategorie", + "browse": "Djennemsie wiki", + "smw-listingcontinuesabbrev": "forts." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/jv.json b/mediawiki/extensions/SemanticMediaWiki/i18n/jv.json new file mode 100644 index 0000000..5876e9a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/jv.json @@ -0,0 +1,105 @@ +{ + "@metadata": { + "authors": [ + "Bennylin", + "Meursault2004", + "NoiX180", + "Pras", + "Sumbukompor", + "아라" + ] + }, + "smw_viewasrdf": "RDF feed", + "smw_finallistconjunct": ", lan", + "smw_isspecprop": "Properti iki minangka properti mirunggan ing wiki iki.", + "smw_baduri": "Nuwun sèwu, URI awujud “$1” ora diidinaké.", + "smw_iq_disabled": "Nuwun sèwu. Kwéri sémantik kanggo wiki iki dipatèni.", + "smw_iq_moreresults": "… pituwas sabanjuré", + "smw_parseerror": "Aji kang kawènèhaké ora kaweruhan.", + "smw_notitle": "“$1” ora bisa dienggo minangka jeneng kaca ing wiki iki.", + "smw_manytypes": "Ana jinis luwih saka siji mungguh properti iki.", + "smw_emptystring": "Rangkéan kosong ora ditampa.", + "smw_notinenum": "“$1” ora ana ing daftar bijih-bijih sing mungkin ($2) kanggo sifat iki.", + "smw_noboolean": "“$1” ora ditepungi minangka sawijining bijih Boolean (bener/salah).", + "smw_true_words": "bener,t,ya,y", + "smw_false_words": "salah,s,ora,o", + "smw_nofloat": "“$1” iku dudu angka.", + "smw_infinite": "Angka sing gedhéné nganti \"$1\" ora didhukung.", + "smw_nodatetime": "Tanggal “$1” ora dimangertèni.", + "smw_toomanyclosing": "Katoné ana kakèhan “$1” sajroning kwéri.", + "smw_noclosingbrackets": "Sawetara panrapan “[[” ing kwéri panjenengan ora ditutup déning “]]” sing cocog.", + "smw_misplacedsymbol": "Simbul “$1” dienggo ing sawijining panggonan sing ora miguna.", + "smw_unexpectedpart": "Bagéyan “$1” saka kwéri ora dimangertèni.\nPituwasé bisa-bisa ora kaya sing diarepaké.", + "smw_emptysubquery": "Sawetara subkwéri ora nduwé kondisi absah.", + "smw_misplacedsubquery": "Sawetara subkwéri dienggo ing panggonan sing ora diparengaké anané subkwéri.", + "smw_valuesubquery": "Subkwéri ora disengkuyung kanggo bijih saka sifat “$1”.", + "smw_badqueryatom": "Ora mudheng “[[…]]” sawetara bagéyan kwéri.", + "smw_propvalueproblem": "Bijih sifat \"$1\" ora dimangertèni.", + "smw_nodisjunctions": "Pamisahan ing kwéri ora disengkuyung ing wiki iki lan sabagéyan saka kwéri dadi dilirwakaké ($1).", + "smw_querytoolarge": "Sarat kwéri sing kapacak ing ngisor iki ora bisa digalih amerga anané rèstriksi wiki ing ukuran utawa jeroné: $1.", + "smw_type_header": "Sifat-sifat saka jinis \"$1\"", + "smw_typearticlecount": "Nuduhaké $1 {{PLURAL:$1|sifat|sifat}} nganggo jinis iki.", + "smw_attribute_header": "Kaca-kaca sing nganggo sifat “$1”", + "smw_attributearticlecount": "Nuduhaké $1 {{PLURAL:$1|kaca|kaca}} nganggo sifat iki.", + "exportrdf": "Èkspor kaca-kaca menyang RDF", + "smw_exportrdf_docu": "Kaca iki marengaké panjenengan kanggo olèh data saka sawijining kaca ing format RDF.\nKanggo ngèkspor kaca-kaca, mangga lebokna irah-irahan ing kothak tèks ing ngisor iki, sairah-irahan per baris.", + "smw_exportrdf_recursive": "Ngèkspor kabèh kaca sing ana gandhèngané minangka rékursif.\nPènget: pituwasé bisa gedhé!", + "smw_exportrdf_backlinks": "Uga ngèkspor kabèh kaca ing ngrujuk ing kaca-kaca sing dièkspor.\nNggawé berkas RDF sing bisa dijlajah.", + "smw_exportrdf_lastdate": "Aja ngèkspor kaca-kaca sing ora diowahi wiwit sawijining wektu tartamtu.", + "uriresolver": "URI Resolver", + "properties": "Sifat-sifat", + "smw-categories": "Katégori", + "smw_properties_docu": "Sifat-sifat ing ngisori iki dienggo ing wiki iki.", + "smw_property_template": "$1 saka jenis $2 ($3)", + "smw_propertylackspage": "Kabèh sifat kudu didèskripsi déning sawijining kaca!", + "smw_propertylackstype": "Ora ana jinis sing dispésifikasi kanggo sifat iki (ngasumsi jinis $1 kanggo saiki).", + "smw_propertyhardlyused": "Sifat iki mèh ora dienggo sajroning wiki iki!", + "unusedproperties": "Sifat-sifat sing ora dienggo", + "smw-unusedproperties-docu": "Sifat-sifat sing kapacak iki ana, senadyan ora ana kaca liya sing nganggo.", + "smw-unusedproperty-template": "$1 saka jinis $2", + "wantedproperties": "Properti kang kapéngini", + "smw-wantedproperties-docu": "Sifat-sifat iki dienggo ing wiki, nanging durung duwé kaca sing ndéskripsi.", + "smw-wantedproperty-template": "$1 ({{PLURAL:$2|dianggo kaping|dianggo kaping }}$2)", + "smw_purge": "Anyarana", + "types": "Jinis-jinis", + "smw_types_docu": "Ing ngisor iki kapacak sawijining daftar kabèh jenis data sing bisa ditunjukaké menyang sifat-sifat.\nSaben jenis data duwé kaca ing ngendi informasi tambahan bisa diwènèhaké.", + "smw_uri_doc": "''URI resolver''-é ngimplèmèntasi [$1 W3C TAG finding on httpRange-14]. Iku ngurusi supaya manungsa ora owah lan dadi situs-situs wèb.", + "ask": "Gegolèkan sémantik", + "smw_ask_sortby": "Sortir miturut kolom (manasuka)", + "smw_ask_ascorder": "Munggah saka ngisor menyang ndhuwur", + "smw_ask_descorder": "Mudhun saka ndhuwur menyang ngisor", + "smw_ask_submit": "Golèk kasil", + "smw_ask_editquery": "Besut pitakon", + "smw_add_sortcondition": "[Tambah sarat nyortir]", + "smw_ask_hidequery": "Delikna kwéri", + "smw_ask_help": "Pitulung kwéri", + "smw_ask_queryhead": "Kwéri", + "smw_ask_printhead": "Cithakan tambahan (opsional)", + "searchbyproperty": "Golèk miturut sifat", + "smw_sbv_docu": "Golèk kabèh kaca sing duwé sifat lan bijih tartamtu.", + "smw_sbv_novalue": "Isi biji sing sah kanggo properti iki, utawa tuduhaké kabèh biji-biji properti kanggo “$1.”", + "smw_sbv_property": "Sifat/properti:", + "smw_sbv_value": "Aji:", + "smw_sbv_submit": "Golèk pituwas (kasil)", + "browse": "Ndedeleng wiki", + "smw_browse_article": "Isi jeneng kaca kanggo miwiti leluron.", + "smw_browse_go": "Tumuju", + "pageproperty": "Panggolèkan sifat kaca", + "smw_pp_docu": "Nggolèki kabèh pangisi sawijining sifat ing sawijining kaca.\nTulung isèkna loro-loroné sawijining kaca lan sifat.", + "smw_pp_from": "Saka kaca", + "smw_pp_type": "Sifat", + "smw_pp_submit": "Golèk kasil", + "smw_result_prev": "Sadurungé", + "smw_result_next": "Sabanjuré", + "smw_result_results": "Pituwas (kasil)", + "smw_result_noresults": "Nuwun sèwu, ora ana pituwasé (kasilé).", + "smw-ui-tooltip-title-warning": "Masalah", + "smw_unknowntype": "Jenis “$1” sing ora disengkuyung, didéfinisi kanggo sifat.", + "restriction-level-smw-pageedit": "direksa (déning naraguna sing kawogan)", + "smw-livepreview-loading": "Ngunggahaké…", + "smw-type-tab-properties": "Properti", + "smw-type-tab-types": "Jinis", + "smw-type-tab-errors": "Masalah", + "smw-listingcontinuesabbrev": "samb.", + "smw-showingresults": "Ing ngisor iki dituduhaké {{PLURAL:$1|'''1''' kasil|'''$1''' kasil}}, wiwitané saking #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ka.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ka.json new file mode 100644 index 0000000..9769db5 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ka.json @@ -0,0 +1,95 @@ +{ + "@metadata": { + "authors": [ + "David1010", + "Lemon134340", + "MIKHEIL", + "Malafaya", + "Otogi" + ] + }, + "smw_finallistconjunct": ", და", + "version-semantic": "სემანტიკური გაფართოებები", + "smw_printername_count": "დათვლის შედეგები", + "smw_printername_csv": "CSV-ის ექსპორტი", + "smw_printername_dsv": "DSV-ის ექსპორტი", + "smw_printername_json": "JSON-ის ექსპორტი", + "smw_printername_list": "სია", + "smw_printername_ol": "დანომრილი სია", + "smw_printername_ul": "მარკირებული სია", + "smw_printername_table": "ცხრილი", + "smw_printername_broadtable": "ფართო ცხრილი", + "smw_printername_template": "თარგი", + "smw_printername_rdf": "RDF-ის ექსპორტი", + "smw_printername_category": "კატეგორია", + "validator-type-class-SMWParamSource": "ტექსტი", + "smw-paramdesc-showsep": "გამყოფის ჩვენება CSV ფაილის ზედა ნაწილში (\"sep=\")", + "smw-paramdesc-columns": "რეზულტატების საჩვენებელი სვეტების რაოდენობა", + "smw-paramdesc-csv-sep": "გამყოფის გამოყენება", + "smw-paramdesc-dsv-separator": "გამყოფის გამოყენება", + "smw-paramdesc-export": "ექსპორტის პარამეტრები", + "smw_iq_moreresults": "… შემდეგი შედეგები", + "smw_true_words": "სიმართლე,ს,დიახ,დ", + "smw_false_words": "ტყუილი,ტ,არა,ა", + "smw_nofloat": "„$1“ არ არის ნომერი.", + "exportrdf": "გვერდების ექსპორტი RDF-ში", + "smw_exportrdf_submit": "ექსპორტი", + "properties": "პარამეტრები", + "smw-categories": "კატეგორიები", + "smw_purge": "განახლება", + "types": "ტიპები", + "ask": "სემანტიკური ძიება", + "smw_ask_sortby": "სვეტების მოხედვით დალაგება (არასავალდებულო)", + "smw_ask_ascorder": "ზრდის მიხედვით", + "smw_ask_descorder": "კლების მიხედვით", + "smw_ask_submit": "შედეგების ძიება", + "smw_ask_editquery": "მოთხოვნის რედაქტირება", + "smw_add_sortcondition": "[სორტირების პირობის დამატება]", + "smw_ask_hidequery": "მოთხოვნის დამალვა", + "smw_ask_queryhead": "მოთხოვნა", + "smw_ask_defaultformat": "სტანდარტული", + "smw_ask_otheroptions": "სხვა პარამეტრები", + "smw-ask-delete": "წაშლა", + "searchbyproperty": "თვისებებით ძიება", + "smw_sbv_property": "თვისება:", + "smw_sbv_value": "მნიშვნელობა:", + "smw_sbv_submit": "შედეგების ძიება", + "browse": "ვიკის დათვალიერება", + "smw_browse_go": "მიდი", + "smw_pp_from": "გვერდიდან:", + "smw_pp_type": "თვისება:", + "smw_pp_submit": "შედეგების ძიება", + "smw_result_prev": "წინა", + "smw_result_next": "შემდეგი", + "smw_result_results": "შედეგები", + "smw_result_noresults": "შედეგები არ არის.", + "smw-admin-dbbutton": "ცხრილების ინიციალიზაცია ან განახლება", + "smw_smwadmin_datarefresh": "მონაცემების აღდგენა და განახლება", + "smw_smwadmin_datarefreshbutton": "მონაცემების განახლების დაწყება", + "smw_smwadmin_datarefreshstop": "ამ განახლების შეჩერება", + "smw_smwadmin_datarefreshstopconfirm": "დიახ, დარწმუნებული {{GENDER:$1|ვარ}}.", + "smw-admin-support": "დახმარების მიღება", + "smw-admin-bugsreport": "შეცდომების შეტყობინება შესაძლებელია ბაგზილაში.", + "smw_adminlinks_datastructure": "მონაცემების სტრუქტურა", + "smw_adminlinks_displayingdata": "მონაცემთა გამოსახვა", + "smw-createproperty-isproperty": "ეს არის $1 ტიპის თვისება.", + "smw-paramdesc-category-delim": "გამყოფი", + "prefs-smw": "სემანტიკური მედიავიკი", + "prefs-general-options": "მთავარი პარამეტრები", + "prefs-ask-options": "სემანტიკური ძიების პარამეტრები", + "smw-prefs-intro-text": "პარამეტრები ქვემოთ წარმოდგენილია [https://www.semantic-mediawiki.org/ სემანტიკურ მედიავიკისთან] (ან მასთან დაკავშირებულ გაფართოებასთან), იმისათვის, რომ ჩაირთოს ცალკეული პარამეტრები ამორჩეული ფუნქციებით. დამატებითი ინფორმაციის მისაღებად, გთხოვთ, შეიხედეთ [https://www.semantic-mediawiki.org/wiki/Help:User_preferences დახმარების სექციაში].", + "smw-prefs-ask-options-tooltip-display": "გამოაქვს პარამეტრი ტექსტი ეკრანის მინიშნების სახით", + "smw-ui-tooltip-title-property": "თვისება", + "smw-ui-tooltip-title-quantity": "რაოდენობა", + "smw-ui-tooltip-title-info": "ინფორმაცია", + "smw-ui-tooltip-title-service": "სერვის-ბმულები", + "smw-ui-tooltip-title-warning": "გაფრთხილება", + "smw-ui-tooltip-title-parameter": "პარამეტრი", + "smw-ui-tooltip-title-event": "ღონისძიება", + "smw-ui-tooltip-title-note": "შენიშვნა", + "smw-ui-tooltip-title-legend": "ლეგენდა", + "smw_unknowntype": "ამ თვისების ტიპი „$1“ არასწორია", + "smw-livepreview-loading": "იტვირთება…", + "smw-listingcontinuesabbrev": "გაგრძ.", + "smw-showingresults": "ქვემოთ იხილეთ $1-მდე შედეგი დაწყებული #$2-იდან." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/kab.json b/mediawiki/extensions/SemanticMediaWiki/i18n/kab.json new file mode 100644 index 0000000..13c8328 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/kab.json @@ -0,0 +1,69 @@ +{ + "@metadata": { + "authors": [ + "Agurzil", + "Belkacem77", + "ButterflyOfFire", + "Mastanabal" + ] + }, + "smw_printername_template": "Taneɣruft", + "smw_printername_rdf": "Sifeḍ ar umasal RDF", + "smw_printername_category": "Taggayt", + "validator-type-class-SMWParamSource": "aḍris", + "smw-paramdesc-limit": "Amḍan afellay n igmaḍ ara d-ibanen", + "smw-paramdesc-offset": "Aswexxeṛ n ugmuḍ amezwaru", + "smw-paramdesc-headers": "Sken iqeṛṛa / Ismawen n tmeẓliyin", + "smw-paramdesc-mainlabel": "Tabzimt n usebter agejdan", + "smw-paramdesc-link": "Sken azalen am iseɣwan", + "smw-paramdesc-intro": "Aḍris ara d-yettwaseknen send igmaḍ n tuttra, ma yella", + "smw-paramdesc-outro": "Aḍris ara d-yettwaseknen seld igmaḍ n tuttra, ma yella kra", + "smw-paramdesc-default": "Aḍris ara d-yettwaseknen ma ulac agmuḍ i tuttra", + "smw-paramdesc-sep": "Anabraz i wazalen", + "smw-paramdesc-showsep": "Sken anabraz n usawen n ufaylu CSV (\"sep=\")", + "smw-paramdesc-distribution": "Deg umdiq n uskan n wazalen meṛṛa, siḍen timeḍriwt-nsen sakin sken-iten-id.", + "smw-paramdesc-distributionsort": "Smizzwer tussa n wazalen s umḍan n tmeḍriwt.", + "smw-paramdesc-distributionlimit": "Err talast i tussa n wazalen s tuṭṭfa n kra n wazalen kan.", + "smw-paramdesc-template": "Isem n tneɣruft ara yettwasqedcen i uskan n igmaḍ", + "smw-paramdesc-columns": "Amḍan n tgejda anida yessefk ad ttwaseknen igmaḍ (amezwer d $1)", + "smw-paramdesc-userparam": "Azal iɛeddan deg yal asiwel n tneɣruft, ma tettwaseqdac tneɣruft", + "smw-paramdesc-introtemplate": "Isem n tneɣruft ara d-yettwaseknen send igmaḍ n tuttra, ma yella kra", + "smw-paramdesc-outrotemplate": "Isem n tneɣruft ara d-yettwaseknen seld igmaḍ n tuttra, ma yella kra", + "smw-paramdesc-embedformat": "Taṛekkizt HTML ara yettwasqedcen di tbadut n iqeṛṛa", + "smw-paramdesc-embedonly": "Ur d-skan ara iqeṛṛa", + "smw-paramdesc-table-class": "Taneɣrit-nniḍen CSS ara ternuɣ ar tfelwit", + "smw-paramdesc-table-transpose": "Sken iqeṛṛa n tfelwit s wudem ubdid akked igmaḍ s wudem aglawan", + "smw-paramdesc-rdfsyntax": "Taɣdira RDF ara yettwasqedcen", + "smw-paramdesc-csv-sep": "Anabraz ara yettwasqedcen", + "smw-paramdesc-dsv-separator": "Anabraz ara yettwasqedcen", + "smw-paramdesc-dsv-filename": "Isem n ufaylu DSV", + "smw-paramdesc-filename": "ISem n ufaylu n tuffɣa", + "smw-smwdoc-par-format": "Amasal n ugmuḍ anida ara d-ttwasken tsemlit n uɣewwaṛ.", + "smw_exportrdf_submit": "Sifeḍ", + "smw-categories": "Taggayin", + "smw-special-property-searchform-options": "Iɣewwaṛen", + "smw-special-wantedproperties-filter-label": "Imzizdig:", + "smw-special-wantedproperties-filter-none": "Ulac", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|n useqdec|n iseqdac}})", + "smw-statistics": "Tidaddanin n tesnamka", + "smw-ask-order-rand": "agacuran", + "smw_ask_queryhead": "Ccerṭ", + "smw-ask-delete": "Kkes", + "smw-ask-options": "Iɣewwaṛen", + "smw-ask-debug": "Tamseɣtayt", + "smw-ask-result": "Agmuḍ", + "smw-ask-empty": "Ilem", + "smw-ask-format": "Amasal", + "browse": "Snirem awiki", + "smw-admin-statistics-job-title": "Tidaddanin n umahil", + "smw-admin-statistics-querycache-title": "Tidaddanin n tuffirt n tuttriwin", + "smw-admin-db-preparation": "Tafelwit n uwennez ad t-tteddu udiɣ ahat ad tawi kra n wakud send ad banen igmaḍ yettraǧun teɣzi akked uṣeggem n tfelwit.", + "smw-property-indicator-type-info": "Ayla yesbadu-t {{PLURAL:$1|useqdac|unagraw}}", + "smw-info-par-message": "Iznan ara yettwaseknen", + "smw-admin-idlookup-input": "Ḥuf", + "smw-livepreview-loading": "Asali…", + "protect-level-smw-pageedit": "Sirek iseqdacen yesɛan azref n usnifel n isebtar (Semantic MediaWiki)", + "smw-postproc-queryref": "Asebter yettwacreḍ d akken yessefk ad ittusmiren imi yesra asesfer uḍfiṛ.", + "smw-listingcontinuesabbrev": "asartu", + "smw-showingresults": "Tamuli n {{PLURAL:$1|'''Yiwen''' wegmud|'''$1''' n yigmad}} seg #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/khw.json b/mediawiki/extensions/SemanticMediaWiki/i18n/khw.json new file mode 100644 index 0000000..94e8708 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/khw.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Rachitrali" + ] + }, + "smw-categories": "زمرہ جات", + "browse": "ویکپیڈیا براوزر", + "smw-listingcontinuesabbrev": "جاری" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/kiu.json b/mediawiki/extensions/SemanticMediaWiki/i18n/kiu.json new file mode 100644 index 0000000..39198b6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/kiu.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "Erdemaslancan", + "Mirzali" + ] + }, + "smw-categories": "Kategoriyi", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Şêrkerdışê jêdekerdışi (aktif): $1", + "smw-es-replication-error": "Problemê jêdekerdışi", + "smw-es-replication-error-divergent-date": "*$1 (Cıcêrayışo elastik)\n*$2 (Mığazaya SQLi)", + "smw-listingcontinuesabbrev": "dewam" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/kk-arab.json b/mediawiki/extensions/SemanticMediaWiki/i18n/kk-arab.json new file mode 100644 index 0000000..28ffd6a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/kk-arab.json @@ -0,0 +1,9 @@ +{ + "@metadata": { + "authors": [] + }, + "smw-categories": "ساناتتار", + "smw-livepreview-loading": "جۇكتەۋدە…", + "smw-listingcontinuesabbrev": "(جالع.)", + "smw-showingresults": "تومەندە ٴنومىر '''$2''' ورنىنان باستاپ بارىنشا '''$1''' ناتىيجە كورسەتىلەدى." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/kk-cyrl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/kk-cyrl.json new file mode 100644 index 0000000..2fd23fa --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/kk-cyrl.json @@ -0,0 +1,15 @@ +{ + "@metadata": { + "authors": [ + "Arystanbek", + "Mirgulkali" + ] + }, + "smw-paramdesc-json-unescape": "Нәтижеде құтылмаған қиғаш сызықтармен көп байттылы Unicode белгілер болу керек.", + "smw-categories": "Санаттар", + "smw_purge": "Жаңарту", + "browse": "Уикиді шолу", + "smw-livepreview-loading": "Жүктеуде…", + "smw-listingcontinuesabbrev": "(жалғ.)", + "smw-showingresults": "Төменде #$2 нәтижеден бастап {{PLURAL:$1|1 нәтиже|$1 нәтиже}}ге дейін нәтижелер көрсетілуде." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/kk-latn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/kk-latn.json new file mode 100644 index 0000000..f91fdcc --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/kk-latn.json @@ -0,0 +1,9 @@ +{ + "@metadata": { + "authors": [] + }, + "smw-categories": "Sanattar", + "smw-livepreview-loading": "Jüktewde…", + "smw-listingcontinuesabbrev": "(jalğ.)", + "smw-showingresults": "Tömende nömir '''$2''' ornınan bastap barınşa '''$1''' nätïje körsetiledi." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/km.json b/mediawiki/extensions/SemanticMediaWiki/i18n/km.json new file mode 100644 index 0000000..1f43d38 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/km.json @@ -0,0 +1,88 @@ +{ + "@metadata": { + "authors": [ + "Lovekhmer", + "Thearith", + "គីមស៊្រុន" + ] + }, + "smw_finallistconjunct": "និង", + "smw_isspecprop": "លក្ខណៈសម្បត្តិ​នេះ គឺជា​លក្ខណៈសម្បត្តិ​ពិសេស​នៅក្នុង​វិគី​នេះ​។", + "smw_baduri": "URIs នៃ​ទម្រង់ \"$1\" មិន​ត្រូវ​បាន​អនុញ្ញាត​ទេ​។", + "smw-paramdesc-limit": "ចំនួនអតិបរមារបស់លទ្ធផលត្រូវបង្ហាញ", + "smw-paramdesc-columns": "ចំនួនជួរឈរត្រូវបង្ហាញក្នុងលទ្ធផល", + "smw_iq_moreresults": "... លទ្ធផល​ខាងមុខ​ទៀត", + "smw_parseerror": "តម្លៃ​ដែល​បាន​ផ្ដល់ឱ្យ មិន​អាច​យល់​បាន​ទេ​។", + "smw_notitle": "\"$1\" មិន​អាច​ត្រូវ​បាន​ប្រើប្រាស់​ជា​ឈ្មោះ​ទំព័រ​នៅក្នុង​វិគី​នេះ​ទេ​។", + "smw_wrong_namespace": "មានតែ​ទំព័រ​នៅ​ក្នុង​លំហឈ្មោះ \"$1\" ប៉ុណ្ណោះ ដែល​ត្រូវ​បាន​អនុញ្ញាត​នៅទីនេះ​។", + "smw_noboolean": "\"$1\" មិន​ត្រូវ​បាន​ទទួលស្គាល់​ជា​តម្លៃ​ប៊ូលីន (ត្រូវ/ខុស) ទេ​។", + "smw_true_words": "ត្រូវ,ត,បាទ,ប", + "smw_false_words": "ខុស,ខ,ទេ,ទ", + "smw_nofloat": "\"$1\" មិនមែន​ជា​លេខ​ទេ​។", + "smw_nodatetime": "កាលបរិច្ឆេទ \"$1\" មិន​អាច​យល់​បាន​ទេ​។", + "smw_toomanyclosing": "ហាក់ដូចជា មាន​​ការគាប់ជួន​ច្រើនពេក​នៃ \"$1\" នៅក្នុង​សំណួរ​របស់​អ្នក​។", + "smw_noclosingbrackets": "ការប្រើប្រាស់​នៃ \"[[\" នៅក្នុង​សំណួរ​របស់​អ្នក​មិនត្រូវ​បាន​បិទ​ដោយ​សញ្ញា​ \"]]\" ជាគូ​។", + "smw_misplacedsymbol": "និមិត្តសញ្ញា \"$1\" ត្រូវ​បាន​ប្រើ​ជំនួស​កន្លែង ដែល​មិន​ត្រូវ​បាន​ប្រើ​។", + "smw_propvalueproblem": "តម្លៃ​នៃ​លក្ខណៈសម្បត្តិ \"$1\" មិន​អាច​យល់​បាន​ទេ​។", + "smw_notemplategiven": "ផ្ដល់​តម្លៃ​សម្រាប់​ប៉ារ៉ាម៉ែត្រ \"ទំព័រគំរូ\" សម្រាប់​ទ្រង់ទ្រង់​សំណួរ​នេះ​ដើម្បី​ធ្វើការ​។", + "smw_type_header": "លក្ខណៈសម្បត្តិ​នៃ​គំរូ \"$1\"", + "smw_typearticlecount": "បង្ហាញ $1 {{PLURAL:$1|លក្ខណៈសម្បត្តិ|លក្ខណៈសម្បត្តិ}} ដែល​កំពុង​ប្រើប្រាស់​គំរូនេះ​។", + "smw_attribute_header": "ទំព័រ​ដែល​កំពុង​ប្រើប្រាស់​លក្ខណៈសម្បត្តិ \"$1\"", + "smw_attributearticlecount": "បង្ហាញ $1 {{PLURAL:$1|ទំព័រ|ទំព័រ}} ដែល​កំពុង​ប្រើប្រាស់​លក្ខណៈសម្បត្តិ​នេះ​។", + "exportrdf": "នាំចេញ​ទំព័រ​ទៅ RDF", + "uriresolver": "អ្នកដោះស្រាយ URI", + "properties": "លក្ខណៈសម្បត្តិ", + "smw-categories": "ចំណាត់ថ្នាក់ក្រុម", + "smw_properties_docu": "លក្ខណៈសម្បត្តិ​ដូច​ខាងក្រោម​ត្រូវ​បាន​ប្រើប្រាស់​នៅ​ក្នុង​វិគី​។", + "smw_property_template": "$1 នៃ​គំរូ $2 ($3)", + "smw_propertylackspage": "លក្ខណៈសម្បត្តិ​ទាំងអស់ គួរតែ​ត្រូវ​បាន​ពីពណ៌នា​ដោយ​ទំព័រ​មួយ​!", + "smw_propertyhardlyused": "លក្ខណៈសម្បត្តិ ស្ទើរតែ​មិនត្រូវ​បាន​ប្រើប្រាស់​ជាមួយ​វិគី​!", + "unusedproperties": "លក្ខណៈសម្បត្តិ​មិន​ប្រើប្រាស់", + "smw-unusedproperty-template": "$1 នៃ​គំរូ $2", + "wantedproperties": "លក្ខណៈសម្បត្តិ​ដែល​ចង់បាន", + "smw-wantedproperties-docu": "លក្ខណៈសម្បត្តិ​ដូចតទៅនេះ ត្រូវ​បាន​ប្រើប្រាស់​នោក្នុង​វិគី ប៉ុន្ដែ​នៅ​មិនទាំន់​មាន​ទំព័រ​ណាមួយ​សម្រាប់​ពិពណ៌នា​ពួកវា​ឡើយ​។", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|ប្រើប្រាស់|ប្រើប្រាស់}})", + "smw_purge": "ធ្វើឱ្យស្រស់", + "types": "ប្រភេទ", + "smw_ask_sortby": "តម្រៀប​តាម​ជួរឈរ (តាមបំណង)", + "smw_ask_ascorder": "លំដាប់ឡើង", + "smw_ask_descorder": "លំដាប់ចុះ", + "smw_ask_submit": "ស្វែងរកលទ្ធផល", + "searchbyproperty": "ស្វែងរក​តាម​រយៈ​លក្ខណៈសម្បត្តិ", + "smw_sbv_docu": "ស្វែងរក​គ្រប់​ទំព័រ​ទាំងអស់ ដែល​ត្រូវ​បាន​ផ្ដល់​លក្ខណៈសម្បត្តិ និង​តម្លៃ​។", + "smw_sbv_novalue": "បញ្ចូល​តម្លៃ​ត្រឹមត្រូវ​សម្រាប់​លក្ខណៈសម្បត្តិ ឬ​ក៏ មើល​គ្រប់​លក្ខណៈសម្បត្តិ​ទាំងអស់​សម្រាប់ \"$1\"​។", + "smw_sbv_displayresultfuzzy": "បញ្ជី​មួយ​នៃ​ទំព័រ​ទាំងអស់ ដែល​មានន​លក្ខណៈសម្បត្តិ \"$1\" ជាមួយ​តម្លៃ \"$2\"​។\nដោយហេតុតែ មាន​លទ្ធផល​តិចតួច​ប៉ុណ្ណោះ ក៏ប្រហាក់ប្រហែល​ជាមួយ​តម្លៃ​ដែល​ត្រូវ​បាន​បង្ហាញ​ផងដែរ​។", + "smw_sbv_property": "លក្ខណៈសម្បត្តិ៖", + "smw_sbv_value": "តម្លៃលេខ៖", + "smw_sbv_submit": "ស្វែងរក​លទ្ធផល", + "browse": "រាវរកវិគី", + "smw_browselink": "រកមើល​លក្ខណៈសម្បត្តិ", + "smw_browse_article": "សូម​បញ្ចូល​ឈ្មោះ​នៃ​ទំព័រ ដើម្បី​ចាប់ផ្ដើម​រុករក​ពី​។", + "smw_browse_go": "ទៅ", + "smw_browse_show_incoming": "បង្ហាញ​លក្ខណៈសម្បត្តិ ដែល​មាន​តំណភ្ជាប់​នៅទីនេះ​។", + "smw_browse_hide_incoming": "លាក់​លក្ខណៈសម្បត្តិ ដែល​មាន​តំណភ្ជាប់​នៅទីនេះ​។", + "smw_browse_no_outgoing": "ទំព័រ​នេះ​មិនមាន​លក្ខណៈសម្បត្តិ​ទេ​។", + "smw_browse_no_incoming": "គ្មាន​លក្ខណៈសម្បត្តិ ដែល​ភ្ជាប់ទៅ​ទំព័រ​នេះ​ទេ​។", + "smw_inverse_label_default": "$1 នៃ", + "pageproperty": "ស្វែងរក​លក្ខណៈសម្បត្តិ​ទំព័រ", + "smw_pp_from": "ពីទំព័រ", + "smw_pp_type": "លក្ខណៈសម្បត្តិ", + "smw_pp_submit": "ស្វែងរកលទ្ធផល", + "smw_result_prev": "មុន", + "smw_result_next": "បន្ទាប់", + "smw_result_results": "លទ្ធផល", + "smw_result_noresults": "សូមអភ័យទោស! មិនមានលទ្ធផលទេ។", + "smw_smwadmin_return": "ត្រឡប់​ទៅកាន់ $1", + "smw-admin-db": "ការដំឡើង និង​ធ្វើឱ្យប្រសើរ​នូវ​មូលដ្ឋានទិន្នន័យ", + "smw-admin-announce": "ប្រកាស​វិគី​របស់​អ្នក", + "smw_smwadmin_datarefresh": "ជួសជុល និង​ធ្វើឱ្យ​ប្រសើរ​នូវ​ទិន្នន័យ", + "smw_smwadmin_datarefreshbutton": "ចាប់ផ្ដើម​បន្ទាន់សម័យ​ទិន្នន័យ", + "smw_smwadmin_datarefreshstop": "បញ្ឈប់​ការ​បន្ទាន់សម័យ​នេះ", + "smw_smwadmin_datarefreshstopconfirm": "បាទ/ចាស៎, ខ្ញុំ​{{GENDER:$1|ប្រាកដ​ហើយ}}​។", + "smw-createproperty-isproperty": "នេះ​គឺជា​លក្ខណៈសម្បត្តិមួយ​នៃ​គំរូ $1 ។", + "smw-createproperty-allowedvals": "តម្លៃ​ចំនួន$1 ​សម្រាប់​លក្ខណៈសម្បត្តិ​នេះគឺ​៖", + "smw-livepreview-loading": "កំពុងផ្ទុក…", + "smw-search-show": "បង្ហាញ", + "smw-listingcontinuesabbrev": "បន្ត", + "smw-showingresults": "ខាងក្រោមកំពុងបង្ហាញរហូតដល់ {{PLURAL:$1|'''១''' លទ្ឋផល|'''$1''' លទ្ឋផល}} ចាប់ផ្ដើមពីលេខ #'''$2'''។" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/kn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/kn.json new file mode 100644 index 0000000..14d9800 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/kn.json @@ -0,0 +1,20 @@ +{ + "@metadata": { + "authors": [ + "Nayvik", + "Omshivaprakash", + "Rakshika", + "VASANTH S.N.", + "ಮಲ್ನಾಡಾಚ್ ಕೊಂಕ್ಣೊ" + ] + }, + "smw_finallistconjunct": ", ಮತ್ತು", + "smw_printername_template": "ಟೆಂಪ್ಲೇಟು", + "smw-categories": "ವರ್ಗಗಳು", + "browse": "ವಿಕಿ ಜಾಲಾಡಿ", + "smw_browse_go": "ಹೋಗು", + "smw-livepreview-loading": "ತುಂಬಿಸಲಾಗುತ್ತಿದೆ....", + "smw-processing": "ಸಂಸ್ಕರಿಸಲಾಗುತ್ತಿದೆ...", + "smw-listingcontinuesabbrev": "ಮುಂದು.", + "smw-showingresults": "ಕೆಳಗೆ #$2 ಇಂದ ಶುರುವಾದ {{PLURAL:$1| ಫಲಿತಾಂಶದ|$1 ಫಲಿತಾಂಶಗಳ}}ವರೆಗೂ ತೋರಿಸಲಾಗುತ್ತಿದೆ." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ko.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ko.json new file mode 100644 index 0000000..6766ff5 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ko.json @@ -0,0 +1,709 @@ +{ + "@metadata": { + "authors": [ + "*Youngjin", + "Albamhandae", + "Aster15", + "Bluehill", + "Codenstory", + "Ellif", + "HDNua", + "Hwangjy9", + "Jerrykim306", + "Jonghaya", + "Keysuck", + "Kghbln", + "Kwj2772", + "McDutchie", + "MemphisA5", + "Nemo bis", + "Nuevo Paso", + "Priviet", + "Revi", + "SeoJeongHo", + "Suleiman the Magnificent Television", + "Tensama0415", + "Ykhwong", + "밥풀떼기", + "아라" + ] + }, + "smw-desc": "위키를 기계와 사람이 더 접근하기 쉽게 합니다 ([https://www.semantic-mediawiki.org/wiki/Help:User_manual 온라인 설명서])", + "smw-error": "오류", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ 시맨틱 미디어위키]가 설치되었고 활성화되었으나 적절한 [https://www.semantic-mediawiki.org/wiki/Help:Upgrade 업그레이드 키]가 없습니다.", + "smw-upgrade-release": "배포판", + "smw-upgrade-progress": "진행도", + "smw-upgrade-progress-create-tables": "테이블과 인덱스를 생성(또는 업데이트)하는 중...", + "smw-upgrade-progress-table-optimization": "테이블 최적화를 수행 중...", + "smw-upgrade-error-title": "오류 » 시맨틱 미디어위키", + "smw-upgrade-error-why-title": "이 페이지가 왜 표시됩니까?", + "smw-upgrade-error-how-title": "이 오류를 어떻게 수정합니까?", + "smw-extensionload-error-why-title": "이 페이지가 왜 표시됩니까?", + "smw-extensionload-error-how-title": "이 오류를 어떻게 수정합니까?", + "smw-upgrade-maintenance-title": "유지보수 » 시맨틱 미디어위키", + "smw-upgrade-maintenance-why-title": "이 페이지가 왜 표시됩니까?", + "smw-semantics-not-enabled": "시맨틱 미디어위키 기능은 이 위키에서 사용할 수 없습니다.", + "smw_viewasrdf": "RDF 피드", + "smw_finallistconjunct": ", 그리고", + "smw-factbox-head": "... \"$1\"에 대하여 더 알아보기", + "smw-factbox-facts": "상식", + "smw-factbox-attachments": "첨부", + "smw-factbox-attachments-value-unknown": "N/A", + "smw-factbox-attachments-is-local": "로컬 여부", + "smw-factbox-attachments-help": "사용 가능한 첨부 파일을 표시합니다", + "smw_isspecprop": "이 속성은 이 위키에 특수한 속성입니다.", + "smw-concept-cache-header": "캐시 사용률", + "smw-concept-no-cache": "이용 가능한 캐시가 없습니다.", + "smw_concept_description": "\"$1\" 개념의 설명", + "smw_no_concept_namespace": "개념은 Concept: 이름공간의 문서에만 지정할 수 있습니다.", + "smw_multiple_concepts": "각 개념 문서는 개념 정의 하나만 할 수 있습니다.", + "smw_concept_cache_miss": "\"$1\" 개념은 위키 설정은 오프라인에서 처리해야 하기 때문에 현재는 사용할 수 없습니다.\n문제가 잠시 후 사라지지 않으면 이 개념을 사용할 수 있도록 사이트 관리자에게 문의하세요.", + "smw_noinvannot": "값은 역 속성에 할당할 수 없습니다.", + "version-semantic": "시맨틱 확장 기능", + "smw_baduri": "\"$1\" 양식의 URI는 허용하지 않습니다.", + "smw_printername_count": "개수 결과", + "smw_printername_csv": "CSV 내보내기", + "smw_printername_dsv": "DSV 내보내기", + "smw_printername_debug": "(전문가용) 쿼리 디버그", + "smw_printername_embedded": "문서 내용 포함", + "smw_printername_json": "JSON 내보내기", + "smw_printername_list": "목록", + "smw_printername_plainlist": "단순 목록", + "smw_printername_ol": "번호를 매긴 목록", + "smw_printername_ul": "글머리 기호 목록", + "smw_printername_table": "표", + "smw_printername_broadtable": "넓은 표", + "smw_printername_template": "틀", + "smw_printername_templatefile": "틀 파일", + "smw_printername_rdf": "PDF 내보내기", + "smw_printername_category": "분류", + "validator-type-class-SMWParamSource": "텍스트", + "smw-paramdesc-limit": "반환할 결과의 최대 수", + "smw-paramdesc-offset": "첫 결과의 오프셋", + "smw-paramdesc-headers": "머리글/속성 이름 표시", + "smw-paramdesc-mainlabel": "대문 이름으로 주어지는 레이블", + "smw-paramdesc-link": "링크로 값 보이기", + "smw-paramdesc-intro": "질문에 답이 있으면 쿼리 결과 앞에 표시할 텍스트", + "smw-paramdesc-outro": "질문에 답이 있으면 쿼리 결과 뒤에 표시할 텍스트", + "smw-paramdesc-default": "질문에 답이 없으면 표시할 텍스트", + "smw-paramdesc-sep": "결과 간 구분자", + "smw-paramdesc-propsep": "결과 엔트리 속성 간 구분자", + "smw-paramdesc-valuesep": "결과 속성 값 간 구분자", + "smw-paramdesc-showsep": "CSV 파일의 위에 구분자를 보이기 (\"sep=<값>\")", + "smw-paramdesc-distribution": "모든 값을 표시하는 대신 값의 발생을 세서 보여줍니다.", + "smw-paramdesc-distributionsort": "발생 횟수로 값 분포를 정렬합니다.", + "smw-paramdesc-distributionlimit": "일부 값만의 횟수로 값 분포를 제한합니다.", + "smw-paramdesc-template": "인쇄 출력과 함께 표시할 틀의 이름", + "smw-paramdesc-columns": "결과를 표시할 열의 수", + "smw-paramdesc-userparam": "틀이 사용되는 경우 각 틀 호출에 전달되는 값입니다", + "smw-paramdesc-class": "리스트에 설정할 추가적인 CSS 클래스", + "smw-paramdesc-introtemplate": "질문에 답이 있으면 쿼리 결과 앞에 표시할 틀의 이름", + "smw-paramdesc-outrotemplate": "질문에 답이 있으면 쿼리 결과 뒤에 표시할 틀의 이름", + "smw-paramdesc-embedformat": "머리글을 정의하는 데 사용하는 HTML 태그", + "smw-paramdesc-embedonly": "머리글을 표시하지 않음", + "smw-paramdesc-table-class": "표에 설정할 추가적인 CSS 클래스", + "smw-paramdesc-table-transpose": "표 머리말은 수직으로, 결과는 수평으로 표시합니다", + "smw-paramdesc-rdfsyntax": "사용할 RDF 구문", + "smw-paramdesc-csv-sep": "컬럼 구분자를 지정합니다", + "smw-paramdesc-csv-valuesep": "값 구분자를 지정합니다", + "smw-paramdesc-dsv-separator": "사용할 구분자", + "smw-paramdesc-dsv-filename": "DSV 파일의 이름", + "smw-paramdesc-filename": "출력 파일의 이름", + "smw-smwdoc-description": "기본 값과 설명과 함께 지정한 결과 형식에 사용할 수 있는 모든 변수의 표를 보여줍니다.", + "smw-smwdoc-default-no-parameter-list": "이 결과 포맷은 포맷에 특화된 변수를 제공하고 있지 않습니다.", + "smw-smwdoc-par-format": "변수 설명문서를 표시할 결과 형식입니다.", + "smw-smwdoc-par-parameters": "보여줄 어떤 변수입니다. 형식에 추가한 변수에 대해서는 \"specific\", 모든 형식을 사용할 수 있는 변수에 대해서는 \"base\", 둘 다는 \"all\"입니다.", + "smw-paramdesc-sort": "쿼리를 정렬하는 속성", + "smw-paramdesc-order": "쿼리 정렬의 순서", + "smw-paramdesc-searchlabel": "검색을 계속하기에 대한 텍스트", + "smw-paramdesc-named_args": "틀에 전달한 인수의 이름을 지정", + "smw-paramdesc-export": "내보내기 옵션", + "smw-paramdesc-prettyprint": "추가적인 들여 쓰기와 줄 바꿈을 보여주는 예쁜 인쇄 출력", + "smw-paramdesc-json-type": "직렬화 유형", + "smw-paramdesc-source": "대체 쿼리 소스", + "smw-paramdesc-jsonsyntax": "사용할 JSON 구문", + "smw-printername-feed": "RSS 및 아톰 피드", + "smw-paramdesc-feedtype": "피드 유형", + "smw-paramdesc-feedtitle": "피드의 제목으로 사용할 텍스트", + "smw-paramdesc-feeddescription": "피드의 설명으로 사용할 텍스트", + "smw-paramdesc-feedpagecontent": "피드에 보여줄 문서 내용", + "smw-label-feed-description": "$1 $2 피드", + "smw-paramdesc-mimetype": "출력 파일의 미디어 타입(MIME 타입)", + "smw_iq_disabled": "시맨틱 쿼리는 이 위키에 비활성화되었습니다.", + "smw_iq_moreresults": "… 다른 결과", + "smw_parseerror": "지정한 값은 이해할 수 없습니다.", + "smw_notitle": "\"$1\"은(는) 이 위키에서 문서 이름으로 사용할 수 없습니다.", + "smw_noproperty": "\"$1\"은(는) 이 위키에서 속성 이름으로 사용할 수 없습니다.", + "smw_wrong_namespace": "\"$1\" 이름공간의 문서만 여기에 허용합니다.", + "smw_manytypes": "속성에 정의한 하나 이상의 유형입니다.", + "smw_emptystring": "빈 문자열은 허용하지 않습니다.", + "smw_notinenum": "\"$1\"은(는) \"$3\" 속성의 [[Property:Allows value|허용된 값]] 목록($2)에 없습니다.", + "smw-datavalue-constraint-error-allows-value-list": "\"$1\"은(는) \"$3\" 속성의 [[Property:Allows value|허용된 값]] 목록($2)에 없습니다.", + "smw-datavalue-constraint-error-allows-value-range": "\"$1\"은(는) \"$3\" 속성의 [[Property:Allows value|허용값]] 제한을 통해 지정된 \"$2\"의 범위에 속하지 않습니다.", + "smw-constraint-error-limit": "목록은 최대 $1개의 위반을 포함합니다.", + "smw_noboolean": "\"$1\"은(는) 불리언(참/거짓) 값으로 인식하지 않습니다.", + "smw_true_words": "true,t,yes,y", + "smw_false_words": "false,f,no,n", + "smw_nofloat": "\"$1\"은(는) 숫자가 아닙니다.", + "smw_infinite": "\"$1\" 크기와 같은 숫자는 지원하지 않습니다.", + "smw_unitnotallowed": "\"$1\"은(는) 이 속성에 대한 측정의 올바른 단위로 선언되어 있지 않습니다.", + "smw_nounitsdeclared": "이 속성에 대해 선언한 측정의 단위가 없습니다.", + "smw_novalues": "지정한 값이 없습니다.", + "smw_nodatetime": "\"$1\" 날짜는 이해할 수 없습니다.", + "smw_toomanyclosing": "쿼리에 \"$1\"의 사건이 너무 많은 것 같습니다.", + "smw_noclosingbrackets": "쿼리에 \"[[\"에 해당하는 \"]]\"를 닫지 않았습니다.", + "smw_misplacedsymbol": "\"$1\" 기호는 유용하지 않은 곳에 사용했습니다.", + "smw_unexpectedpart": "쿼리의 \"$1\" 부분은 이해할 수 없습니다.\n결과는 예상하지 않을 수 있습니다.", + "smw_emptysubquery": "일부 하위 쿼리는 올바른 조건이 없습니다.", + "smw_misplacedsubquery": "일부 하위 쿼리는 하위 쿼리를 허용하지 않은 곳에 사용했습니다.", + "smw_valuesubquery": "하위 쿼리는 \"$1\" 속성의 값에 지원하지 않습니다.", + "smw_badqueryatom": "쿼리의 일부 \"[[…]]\" 부분은 이해할 수 없습니다.", + "smw_propvalueproblem": "\"$1\" 속성의 값은 이해할 수 없습니다.", + "smw_noqueryfeature": "일부 쿼리 기능은 이 위키에서 지원하지 않아 쿼리의 부분을 없앴습니다. ($1)", + "smw_noconjunctions": "쿼리의 접속사는 이 위키에서 지원하지 않아 쿼리의 부분을 없앴습니다. ($1)", + "smw_nodisjunctions": "쿼리의 분리사는 이 위키에서 지원하지 않아 쿼리의 부분을 없앴습니다. ($1)", + "smw_querytoolarge": "쿼리의 크기나 깊이에 대한 위키의 제한으로 인해 다음의 {{PLURAL:$2|쿼리 조건은|쿼리 조건 $2개는}} 고려하지 못했습니다: $1.", + "smw_notemplategiven": "작동할 이 쿼리 형식에 \"틀\" 변수에 대한 값을 제공하세요.", + "smw_db_sparqlqueryproblem": "쿼리 결과는 SPARQL 데이터베이스에서 가져올 수 없습니다. 이 오류는 일시적이거나 데이터베이스 소프트웨어의 버그일 수 있습니다.", + "smw_db_sparqlqueryincomplete": "쿼리 응답이 너무 어려운 것으로 밝혀져 중단되었습니다. 일부 결과는 사라졌을 수 있습니다. 가능하면 간단한 쿼리를 대신 사용하세요.", + "smw_type_header": "\"$1\" 유형의 속성", + "smw_typearticlecount": "이 유형을 사용하여 {{PLURAL:$1|속성}} $1개를 보여줍니다.", + "smw_attribute_header": "\"$1\" 유형을 사용한 문서", + "smw_attributearticlecount": "이 속성을 사용하는 {{PLURAL:$1|문서}} $1개를 보여줍니다.", + "smw-propertylist-subproperty-header": "하위 속성", + "smw-propertylist-redirect-header": "동의어", + "smw-propertylist-count": "$1 관련 {{PLURAL:$1|엔티티}}를 표시합니다.", + "smw-propertylist-count-with-restricted-note": "$1 관련 {{PLURAL:$1|엔티티}}를 표시합니다. (더 많은 엔티티의 사용이 가능하나 표시는 \"$2\"에 국한됩니다)", + "smw-propertylist-count-more-available": "$1 관련 {{PLURAL:$1|엔티티}}를 표시합니다. (더 많은 엔티티를 볼 수 있습니다)", + "specialpages-group-smw_group": "시맨틱 미디어위키", + "specialpages-group-smw_group-maintenance": "유지보수", + "specialpages-group-smw_group-search": "찾아보기 및 검색", + "exportrdf": "RDF로 문서 내보내기", + "smw_exportrdf_docu": "이 문서는 RDF 형식의 문서에서 데이터를 얻을 수 있습니다.\n문서를 내보내려면 아래 텍스트 상자에 줄마다 제목 하나를 입력하세요.", + "smw_exportrdf_recursive": "모든 관련된 문서를 재귀적으로 내보냅니다.\n결과가 커질 수 있음을 참고하세요!", + "smw_exportrdf_backlinks": "또한 내보낸 문서를 참고하는 모든 문서를 내보냅니다.\n찾아볼 수 있는 RDF를 생성합니다.", + "smw_exportrdf_lastdate": "지정한 시간 이후에 바뀌지 않은 문서는 내보내지 않습니다.", + "smw_exportrdf_submit": "내보내기", + "uriresolver": "URI해결", + "properties": "속성 목록", + "smw-categories": "분류 목록", + "smw_properties_docu": "다음 속성은 위키에서 사용합니다.", + "smw_property_template": "$2 유형의 $1 ($3개 {{PLURAL:$3|사용}})", + "smw_propertylackspage": "모든 속성은 문서에서 설명해야 합니다.", + "smw_propertylackstype": "이 속성에 지정한 유형이 없습니다. (지금은 $1 유형으로 가정합니다)", + "smw_propertyhardlyused": "이 속성은 거의 위키 안에 사용하지 않습니다!", + "smw-property-name-invalid": "$1 속성은 사용할 수 없습니다. (잘못된 속성 이름)", + "smw-property-name-reserved": "\"$1\"은(는) 예약어로 등재되었으므로 속성으로 사용해서는 안 됩니다. 다음의 [https://www.semantic-mediawiki.org/wiki/Help:Property_naming 도움말 문서]에는 이 이름이 예약된 이유에 관한 정보가 포함되어 있을 수 있습니다.", + "smw-sp-property-searchform": "다음을 포함하는 속성 표시:", + "smw-sp-property-searchform-inputinfo": "입력은 대소문자를 구분하여 필터에 사용되며, 조건과 일치하는 속성만 보입니다.", + "smw-special-property-searchform": "다음을 포함하는 속성 표시:", + "smw-special-property-searchform-inputinfo": "입력은 대소문자를 구분하여 필터에 사용되며, 조건과 일치하는 속성만 보입니다.", + "smw-special-property-searchform-options": "옵션", + "smw-special-wantedproperties-filter-label": "필터:", + "smw-special-wantedproperties-filter-none": "없음", + "smw-special-wantedproperties-filter-unapproved": "미승인", + "smw-special-wantedproperties-filter-unapproved-desc": "전거 모드와 관련되어 사용되는 필터 옵션입니다.", + "concepts": "개념", + "smw-special-concept-docu": "[https://www.semantic-mediawiki.org/wiki/Help:Concepts 개념]은 \"동적 분류\", 즉 수동으로 만들어지지 않지만 주어진 쿼리의 설명에서 시맨틱 미디어위키가 계산한 문서의 모음집으로 볼 수 있습니다.", + "smw-special-concept-header": "개념 목록", + "smw-special-concept-count": "다음 {{PLURAL:$1|개념|개념 $1개}}{{PLURAL:$1|은|는}} 나열되어 있습니다.", + "smw-special-concept-empty": "개념을 찾을 수 없습니다.", + "unusedproperties": "사용하지 않는 속성 목록", + "smw-unusedproperties-docu": "이 문서는 선언은 되었으나 다른 문서에서 사용하지 않는 [https://www.semantic-mediawiki.org/wiki/Unused_properties 미사용 속성]을 나열합니다. 차별화된 뷰에 대해서는 [[Special:Properties|전체]] 또는 [[Special:WantedProperties|필요 속성]] 특수 문서를 참고하십시오.", + "smw-unusedproperty-template": "$2 유형의 $1", + "wantedproperties": "필요한 속성 목록", + "smw-wantedproperties-docu": "이 문서는 위키에는 쓰이지만 설명하는 문서가 없는 [https://www.semantic-mediawiki.org/wiki/Wanted_properties 필요 속성]을 나열합니다. 차별화된 뷰에 대해서는 [[Special:Properties|전체]] 또는 [[Special:UnusedProperties|미사용 속성]] 특수 문서를 참고하십시오.", + "smw-wantedproperty-template": "$1 ($2개 {{PLURAL:$2|사용}})", + "smw-special-wantedproperties-template": "$1 ($2개 {{PLURAL:$2|사용}})", + "smw_purge": "새로 고침", + "smw-purge-failed": "시맨틱 미디어위키가 페이지 새로 고침을 시도하였으나 실패했습니다", + "types": "유형 목록", + "smw_types_docu": "할당된 속성에 상속되는 저장 및 표시 기능에 따라 값을 기술하기 위해 각각의 [https://www.semantic-mediawiki.org/wiki/Help:Datatype 자료형]에 고유한 속성 집합을 표현한 [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes 사용 가능한 자료형] 목록입니다.", + "smw-special-types-no-such-type": "\"$1\"은(는) 알 수 없거나 지정된 자료형으로 지정되어 있지 않습니다.", + "smw-statistics": "시맨틱 통계", + "smw-statistics-cached": "시맨틱 통계 (캐시됨)", + "smw-statistics-entities-total": "엔티티 (전체)", + "smw-statistics-property-instance": "(총) 속성 {{PLURAL:$1|값}}", + "smw-statistics-property-total": "(총) [[Special:Properties|{{PLURAL:$1|속성}}]]", + "smw-statistics-property-total-legacy": "(총) {{PLURAL:$1|속성}}", + "smw-statistics-property-used": "{{PLURAL:$1|Property|Properties}} (적어도 하나의 값과 함께 사용됨)", + "smw-statistics-property-page": "(문서에 등록된) {{PLURAL:$1|속성}}", + "smw-statistics-property-type": "(데이터유형으로 할당된) {{PLURAL:$1|속성}}", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|쿼리|쿼리}}", + "smw-statistics-query-inline": "[[Property:Has query| {{PLURAL:$1| Query|Queries}}]] (내장형, 전체)", + "smw-statistics-query-format": "$1 포맷", + "smw-statistics-query-size": "쿼리 크기", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|개념}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|개념}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|하위개체|하위개체}}]]", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|데이터유형}}]]", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities 오래됨 {{PLURAL:$1|entity|entities}}]", + "smw_uri_doc": "URI 해결기는 [$1 W3C TAG finding on httpRange-14]를 구현합니다.\n요청에 따라 RDF 표현(기계용) 또는 위키 페이지(사람용)가 전달되도록 합니다.", + "ask": "시맨틱 검색", + "smw_ask_sortby": "열 순서로 정렬 (선택 사항)", + "smw_ask_ascorder": "오름차순", + "smw_ask_descorder": "내림차순", + "smw-ask-order-rand": "무작위 순서로", + "smw_ask_submit": "결과 찾기", + "smw_ask_editquery": "쿼리 편집", + "smw_add_sortcondition": "[정렬 조건 추가]", + "smw-ask-sort-add-action": "정렬 조건 추가", + "smw_ask_hidequery": "쿼리 숨기기 (간략히 보기)", + "smw_ask_help": "쿼리 도움말", + "smw_ask_queryhead": "조건", + "smw_ask_printhead": "출력 선택", + "smw_ask_printdesc": "(줄마다 속성 이름 하나를 추가하세요)", + "smw_ask_format_as": "서식:", + "smw_ask_defaultformat": "기본값", + "smw_ask_otheroptions": "다른 옵션", + "smw-ask-otheroptions-info": "이 문단은 출력 문을 바꾸는 옵션이 있습니다. 변수 설명은 변수 위로 가리켜 볼 수 있습니다.", + "smw-ask-otheroptions-collapsed-info": "사용 가능한 모든 옵션을 보려면 더하기 아이콘을 사용하세요", + "smw_ask_show_embed": "포함한 코드 보이기", + "smw_ask_hide_embed": "포함한 코드 숨기기", + "smw_ask_embed_instr": "이 쿼리를 위키 문서에 인라인으로 포함하려면 다음 코드를 사용하세요.", + "smw-ask-delete": "제거", + "smw-ask-sorting": "정렬", + "smw-ask-options": "옵션", + "smw-ask-options-sort": "정렬 옵션", + "smw-ask-format-options": "형식 및 옵션", + "smw-ask-parameters": "변수", + "smw-ask-search": "검색", + "smw-ask-debug": "디버그", + "smw-ask-debug-desc": "쿼리 디버그 정보를 생성합니다", + "smw-ask-no-cache": "쿼리 캐시 비활성화", + "smw-ask-no-cache-desc": "쿼리 캐시가 없는 결과", + "smw-ask-result": "결과", + "smw-ask-empty": "모든 항목 비우기", + "smw-ask-download-link-desc": "조회된 결과를 $1 형식으로 다운로드합니다", + "smw-ask-format": "형식", + "smw-ask-format-selection-help": "선택된 형식의 도움말: $1", + "smw-ask-condition-change-info": "조건이 변경되었으므로 검색 엔진은 새로운 요구사항을 충족하는 결과를 출력하기 위해 쿼리를 다시 실행해야 합니다.", + "smw-ask-input-assistance": "입력 보조", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance 입력 지원]은 출력, 정렬, 조건 필드를 위해 제공됩니다. 이 조건 필드는 다음의 접두사 중 하나를 사용해야 합니다:", + "smw-ask-condition-input-assistance-property": "속성 제안을 가져오려면 p: (예: [[p:Has ...)", + "smw-ask-condition-input-assistance-category": "분류 제안을 가져오려면 c:", + "smw-ask-condition-input-assistance-concept": "개념 제안을 가져오려면 con:", + "smw-ask-format-change-info": "포맷이 수정되었으므로 새로운 변수와 시각화 옵션을 일치시키려면 쿼리를 다시 실행해야 합니다.", + "smw-ask-format-export-info": "선택된 형식은 시각 표현이 없는 내보내기 형식이므로 결과는 다운로드로만 제공됩니다.", + "smw-ask-extra-query-log": "쿼리 로그", + "smw-ask-extra-other": "기타", + "searchbyproperty": "속성으로 검색", + "processingerrorlist": "오류 목록 처리중", + "constrainterrorlist": "제약조건 오류 목록", + "propertylabelsimilarity": "속성 레이블 유사성 보고서", + "smw-missingredirects-list": "주석이 없는 문서", + "smw-missingredirects-list-intro": "넘겨주기 주석이 없는 $1개 {{PLURAL:$1|문서}}를 표시합니다.", + "smw-missingredirects-noresult": "누락된 넘겨주기 주석이 없습니다.", + "smw_sbv_docu": "주어진 속성과 값을 가지고 모든 문서를 검색합니다.", + "smw_sbv_novalue": "속성에 대한 올바른 값을 입력하거나 \"$1\"에 대한 모든 속성 값을 보세요.", + "smw_sbv_displayresultfuzzy": "\"$2\" 값의 \"$1\" 속성을 가진 모든 문서의 목록입니다.\n결과가 얼마 안 되기 때문에 주변의 값을 표시합니다.", + "smw_sbv_property": "속성:", + "smw_sbv_value": "값:", + "smw_sbv_submit": "결과 찾기", + "browse": "위키 찾아보기", + "smw_browselink": "속성 찾아보기", + "smw_browse_article": "찾아보기를 시작하려면 문서의 이름을 입력하세요.", + "smw_browse_go": "보기", + "smw_browse_show_incoming": "들어오는 속성 표시", + "smw_browse_hide_incoming": "들어오는 속성 숨기기", + "smw_browse_no_outgoing": "이 문서에는 속성이 없습니다.", + "smw_browse_no_incoming": "이 문서에 링크한 속성이 없습니다.", + "smw-browse-from-backend": "정보는 현재 백엔드에서 검색되고 있습니다.", + "smw-browse-api-subject-serialization-invalid": "이 주제에는 유효하지 않은 직렬화 포맷이 있습니다.", + "smw-browse-js-disabled": "자바스크립트가 비활성화되어 있거나 사용할 수 없는 것으로 의심됩니다. 지원하는 브라우저를 사용할 것을 권고합니다. 다른 옵션은 [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi] 구성 변수 문서에서 논의됩니다.", + "smw-browse-show-group": "그룹 표시", + "smw-browse-hide-group": "그룹 숨기기", + "smw_inverse_label_default": "$1입니다", + "smw_inverse_label_property": "역 속성 레이블", + "pageproperty": "문서 속성 검색", + "pendingtasklist": "보류 중인 작업 목록", + "facetedsearch": "패싯 검색", + "smw_pp_docu": "문서와 속성을 입력하십시오. 할당된 모든 값을 가져오려면 속성만 입력하십시오.", + "smw_pp_from": "문서에서:", + "smw_pp_type": "속성:", + "smw_pp_submit": "결과 찾기", + "smw-prev": "이전 {{PLURAL:$1|$1개}}", + "smw-next": "다음 {{PLURAL:$1|$1개}}", + "smw_result_prev": "이전", + "smw_result_next": "다음", + "smw_result_results": "결과", + "smw_result_noresults": "결과가 없습니다.", + "smwadmin": "시맨틱 미디어위키 대시보드", + "smw-admin-statistics-job-title": "작업 통계", + "smw-admin-statistics-querycache-title": "쿼리 캐시", + "smw-admin-statistics-semanticdata-overview": "개요", + "smw-admin-setupsuccess": "저장소 엔진을 설정했습니다.", + "smw_smwadmin_return": "$1 문서로 돌아갑니다", + "smw_smwadmin_updatestarted": "시맨틱 데이터의 최신화를 위한 새 업데이트 과정이 시작되었습니다.\n저장된 모든 데이터는 필요에 따라 다시 구성되거나 복구됩니다.\n이 특수 문서에 대한 업데이트의 진행을 따를 수 있습니다.", + "smw_smwadmin_updatenotstarted": "이미 실행 중인 업데이트 프로세스가 있습니다.\n새로 만들지 않습니다.", + "smw_smwadmin_updatestopped": "기존의 모든 업데이트 과정이 중단되었습니다.", + "smw_smwadmin_updatenotstopped": "실행하고 있는 업데이트 과정을 중지하려면 정말 확실한지 나타내는 확인란을 활성화해야 합니다.", + "smw-admin-docu": "이 특수 문서는 시맨틱 미디어위키의 설치, 업그레이드, 정비, 사용 중에 도움을 주며 추가적인 관리 기능과 작업, 통계 또한 제공합니다. 관리 기능을 실행하기 전에 중요한 데이터는 백업해 주십시오.", + "smw-admin-environment": "소프트웨어 환경", + "smw-admin-db": "데이터베이스 설정", + "smw-admin-db-preparation": "테이블 초기화가 진행 중이며 크기 및 잠재적인 테이블 최적화가 대기 중이므로 결과가 표시되는데 시간이 걸릴 수 있습니다.", + "smw-admin-dbdocu": "시맨틱 미디어위키는 시멘틱 데이터를 저장하기 위해 자체 데이터베이스 구조가 필요합니다 (미디어위키와 독립적이므로 나머지 미디어위키 설치에 영향을 미치지 않음).\n이 설정 기능은 어떠한 피해 없이 여러 번 실행될 수 있지만, 설치나 업그레이드에 한 번만 필요합니다.", + "smw-admin-permissionswarn": "SQL 오류로 작업이 실패했다, 위키가 고용한 데이터베이스 사용자(LocalSettings.php 파일을 확인하세요)는 아마도 충분한 권한이 없을 것입니다.\n테이블을 만들고 삭제할 추가 권한을 이 사용자에게 부여하거나, 일시적으로 LocalSettings.php에 데이터베이스 루트의 로그인을 입력하거나, 관리자의 자격 증명을 사용할 수 있는 setupStore.php 유지 관리 스크립트를 사용하세요.", + "smw-admin-dbbutton": "표를 초기화하거나 업그레이드", + "smw-admin-announce": "내 위키 발표", + "smw-admin-deprecation-notice-title": "구식 알림", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1]은(는) 구식이므로 $2에서 제거되었습니다", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1]은(는) \n다음의 {{PLURAL:$2|옵션}}을 제거(또는 대체)할 것입니다:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1은(는) 사용되지 않으며 $2에 제거됩니다", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1]은(는) [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]으(로) 변경되었습니다", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|옵션}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1은(는) $2(으)로 대체되고 있습니다", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1]이(가) 제거되었습니다 ($2)", + "smw-admin-deprecation-notice-title-notice": "더 이상 사용되지 않는 설정", + "smw-admin-deprecation-notice-title-notice-explanation": "더 이상 사용하지 않는 설정는 향후 릴리스에서 제거되거나 변경될 예정인 설정을 이 위키에서 사용되는 것으로 감지되어 표시합니다.", + "smw-admin-deprecation-notice-title-replacement": "치환되거나 이름이 변경된 설정", + "smw-admin-deprecation-notice-title-replacement-explanation": "치환되거나 이름이 변경된 설정에는 이름이 바뀌거나 다른 방식으로 수정된 설정이 포함되어 있으므로 해당 이름이나 형식을 업데이트하는 것이 좋습니다.", + "smw-admin-deprecation-notice-title-removal": "제거된 설정", + "smw-admin-deprecation-notice-title-removal-explanation": "제거된 설정는 이전 릴리스에서 제거되었지만 이 위키에서 사용되는 것으로 감지된 설정을 식별합니다.", + "smw-admin-deprecation-notice-section-legend": "범례", + "smw-smwadmin-refresh-title": "데이터 복구 및 업데이트", + "smw_smwadmin_datarefresh": "데이터 재생성", + "smw_smwadmin_datarefreshdocu": "위키의 현재 내용에 따라 모든 시맨틱 미디어위키 데이터를 복구할 수 있습니다.\n안쪽 형식이 어떤 소프트웨어 업그레이드로 인해 바뀌었으면 깨진 데이터를 복구하거나 데이터를 새로 고치는 데 유용할 수 있습니다.\n업데이트는 문서 단위로 실행되고 즉시 완료되지 않습니다.\n다음은 업데이트가 진행하고 있으면 보여주고 (이 기능이 사이트 관리자가 비활성화하지 않는 한) 업데이트를 시작하거나 멈출 수 있습니다.", + "smw_smwadmin_datarefreshprogress": "업데이트가 이미 진행 중입니다.\n사용자가 위키에 접근할 때마다 작은 덩어리의 새로 고침 데이터 진행만 있기 때문에 업데이트 진행이 느린 것은 정상입니다.\n더 빠르게 이 업데이트를 마치려면 runJobs.php 미디어위키 유지 보수 스크립트를 호출할 수 있습니다. (일괄 하나에서 수행하는 업데이트의 수를 제한하려면 --maxjobs 1000 옵션을 사용하세요)\n현재 업데이트의 예상된 진행:", + "smw_smwadmin_datarefreshbutton": "데이터 다시 빌드 예약", + "smw_smwadmin_datarefreshstop": "이 업데이트 중지", + "smw_smwadmin_datarefreshstopconfirm": "예, {{GENDER:$1|확실합니다}}.", + "smw-admin-outdateddisposal-active": "만기된 항목의 제거 작업이 예약되었습니다.", + "smw-admin-outdateddisposal-button": "제거 예약", + "smw-admin-feature-disabled": "이 기능은 이 위키에서 비활성화되어 있으므로 설정 도움말 페이지를 참조하거나 시스템 관리자에게 문의하십시오.", + "smw-admin-propertystatistics-active": "속성 통계 다시 빌드 작업이 예약되었습니다.", + "smw-admin-fulltext-title": "전문 검색 재구성", + "smw-admin-fulltext-active": "전문 검색 다시 빌드 작업이 예약되었습니다.", + "smw-admin-support": "지원 얻기", + "smw-admin-supportdocu": "문제가 있을 때 도움이 될 만한 다양한 자료가 제공됩니다:", + "smw-admin-installfile": "설치에 문제가 있는 경우 설치 파일설치 페이지의 지침을 확인하세요.", + "smw-admin-smwhomepage": "시맨틱 미디어위키의 완전한 사용자 설명서는 semantic-mediawiki.org에 있습니다.", + "smw-admin-bugsreport": "버그는 이슈 트래커에 신고할 수 있으며, 버그 신고하기 페이지에서 효과적인 이슈 보고서 작성 방법에 대한 몇 가지 지침을 확인할 수 있습니다.", + "smw-admin-questions": "추가 질문이나 제안 사항이 있으면 시맨틱 미디어위키 사용자 메일링 리스트에서 토론에 참여하세요.", + "smw-admin-other-functions": "다른 기능", + "smw-admin-statistics-extra": "통계 함수", + "smw-admin-statistics": "통계", + "smw-admin-supplementary-section-title": "추가 기능", + "smw-admin-supplementary-section-subtitle": "지원되는 핵심 기능", + "smw-admin-supplementary-settings-title": "구성 및 설정", + "smw-admin-supplementary-settings-intro": "$1은 시맨틱 미디어위키의 동작을 정의하는 매개변수를 보여줍니다.", + "smw-admin-main-title": "시맨틱 미디어위키 » $1", + "smw-admin-supplementary-operational-statistics-title": "조작 통계", + "smw-admin-supplementary-operational-statistics-intro": "$1의 확장된 집합을 표시합니다", + "smw-admin-supplementary-idlookup-title": "엔티티 검색 및 처리", + "smw-admin-supplementary-idlookup-short-title": "엔티티 검색 및 제거", + "smw-admin-supplementary-idlookup-intro": "단순한 $1 기능을 지원합니다", + "smw-admin-supplementary-duplookup-title": "중복 엔티티 확인", + "smw-admin-supplementary-duplookup-docu": "이 문서는 [https://www.semantic-mediawiki.org/wiki/Help:Entity_table 개체 표]에서 중복된 것으로 분류된 개체들의 목록입니다. 중복 개체들은 (존재한다면) 데이터베이스 업데이트 중에 프로세스가 종료되거나 롤백 행동이 성공스럽지 못했을 때와 같이 매우 드문 경우에만 발생할 수 있습니다.", + "smw-admin-supplementary-operational-statistics-cache-title": "캐시 통계", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1은(는) 캐시 관련 통계를 표시합니다", + "smw-admin-supplementary-operational-table-statistics-title": "테이블 통계", + "smw-admin-supplementary-operational-table-statistics-short-title": "테이블 통계", + "smw-admin-supplementary-elastic-title": "일래스틱서치", + "smw-admin-supplementary-elastic-version-info": "버전", + "smw-admin-supplementary-elastic-section-subtitle": "일래스틱서치", + "smw-admin-supplementary-elastic-docu": "이 문서는 시맨틱 미디어위키와 [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore 일래스틱스토어]에 연결된 일래스틱서치 클러스터 관련 설정, 매핑, 상태, 색인 통계에 관한 정보를 포함합니다.", + "smw-admin-supplementary-elastic-functions": "지원되는 기능", + "smw-admin-supplementary-elastic-settings-title": "설정 (인덱스)", + "smw-admin-supplementary-elastic-mappings-title": "매핑", + "smw-admin-supplementary-elastic-mappings-summary": "요약", + "smw-admin-supplementary-elastic-mappings-fields": "필드 매핑", + "smw-admin-supplementary-elastic-nodes-title": "노드", + "smw-admin-supplementary-elastic-nodes-intro": "$1은(는) 노드 통계를 표시합니다", + "smw-admin-supplementary-elastic-indices-title": "색인", + "smw-admin-supplementary-elastic-statistics-title": "통계", + "smw-admin-supplementary-elastic-status-replication": "레플리케이션 상태", + "smw-admin-supplementary-elastic-status-refresh-interval": "새로 고침 주기: $1", + "smw-admin-supplementary-elastic-replication-function-title": "복제", + "smw-admin-supplementary-elastic-replication-files": "파일", + "smw-admin-supplementary-elastic-replication-pages": "페이지", + "smw-admin-supplementary-elastic-endpoints": "엔드포인트", + "smw-admin-supplementary-elastic-config": "구성", + "smw-list-count": "이 목록은 {{PLURAL:$1|항목}} $1개를 갖고 있습니다.", + "smw-property-label-similarity-title": "속성 레이블 유사성 보고서", + "smw-property-label-similarity-intro": "$1 문서는 기존 속성 레이블의 유사성을 계산합니다", + "smw-property-label-similarity-threshold": "한계치:", + "smw-property-label-similarity-type": "표시 유형 ID", + "smw-property-label-similarity-noresult": "선택된 옵션에서는 아무 결과도 발견되지 않았습니다.", + "smw_adminlinks_datastructure": "데이터 구조", + "smw_adminlinks_displayingdata": "데이터 표시", + "smw_adminlinks_inlinequerieshelp": "인라인 쿼리 도움말", + "smw-property-indicator-type-info": "{{PLURAL:$1|사용자|시스템}} 정의된 속성", + "smw-concept-indicator-cache-update": "캐시 카운트\n마지막 업데이트: $1", + "smw-createproperty-isproperty": "$1 유형의 속성입니다.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|이 속성에 대해 허용하는 값}}:", + "smw-paramdesc-category-delim": "구분자", + "smw-paramdesc-category-template": "항목의 서식을 사용할 틀", + "smw-paramdesc-category-userparam": "틀을 전달할 변수", + "smw-info-par-message": "표시할 메시지입니다.", + "smw-info-par-icon": "\"info\"나 \"warning\" 중 하나를 보여주는 아이콘입니다.", + "prefs-smw": "시맨틱 미디어위키", + "prefs-general-options": "일반 옵션", + "prefs-extended-search-options": "확장된 검색", + "prefs-ask-options": "시맨틱 검색", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ 시맨틱 미디어위키] 및 관련 확장 기능은 선별된 기능과 함수 그룹의 개별 환경 설정을 제공합니다. 설명과 특징을 포함한 개별 설정 목록은 다음 [https://www.semantic-mediawiki.org/wiki/Help:User_preferences 도움말 문서]에서 볼 수 있습니다.", + "smw-prefs-ask-options-tooltip-display": "정보 말풍선으로 변수 텍스트 표시", + "smw-prefs-general-options-time-correction": "선호하는 지역 [[Special:Preferences#mw-prefsection-rendering|시간 오프셋]]을 사용하여 특수 문서의 시간 조정을 사용합니다", + "smw-prefs-general-options-jobqueue-watchlist": "작업 대기열 주시문서 목록을 내 개인 표시줄에 표시합나다", + "smw-prefs-help-general-options-jobqueue-watchlist": "활성화하면 보류 중인 선택된 작업의 [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist 목록]을 쿼리 크기 추정치와 함께 표시합니다.", + "smw-prefs-general-options-disable-editpage-info": "편집 문서의 도입문을 사용하지 않음", + "smw-prefs-general-options-disable-search-info": "표준 검색 문서에서 문법 지원 정보를 비활성화합니다", + "smw-prefs-general-options-suggester-textinput": "시맨틱 엔티티를 위한 입력 지원을 사용합니다", + "smw-prefs-help-general-options-suggester-textinput": "활성화하면 입력 문맥에서 속성, 개념, 분류를 찾기 위해 [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance 입력 지원]을 사용할 수 있게 합니다.", + "smw-prefs-general-options-show-entity-issue-panel": "엔티티 이슈 패널 표시", + "smw-prefs-help-general-options-show-entity-issue-panel": "활성화하면 각 페이지의 무결성 검사를 수행하고 [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel 엔티티 이슈 패널]을 표시합니다.", + "smw-ui-tooltip-title-property": "속성", + "smw-ui-tooltip-title-quantity": "단위 변환", + "smw-ui-tooltip-title-info": "정보", + "smw-ui-tooltip-title-service": "서비스 링크", + "smw-ui-tooltip-title-warning": "경고", + "smw-ui-tooltip-title-error": "오류", + "smw-ui-tooltip-title-parameter": "변수", + "smw-ui-tooltip-title-event": "사건", + "smw-ui-tooltip-title-note": "참고", + "smw-ui-tooltip-title-legend": "범례", + "smw-ui-tooltip-title-reference": "각주", + "smw_unknowntype": "이 속성의 \"$1\" 형식이 잘못되었습니다", + "smw-concept-cache-text": "개념은 총 {{PLURAL:$1|문서}} $1개가 있으며, $2 $3에 마지막으로 업데이트했습니다.", + "smw_concept_header": "\"$1\" 개념의 문서", + "smw_conceptarticlecount": "아래에 {{PLURAL:$1|문서}} $1개를 보여줍니다.", + "smw-qp-empty-data": "일부 선택 기준이 충분하지 않아 요청된 데이터를 표시할 수 없습니다.", + "right-smw-admin": "관리 작업에 접근 (시맨틱 미디어위키)", + "right-smw-patternedit": "허용된 정규 표현식과 패턴을 정비할 편집 권한 (시맨틱 미디어위키)", + "restriction-level-smw-pageedit": "보호됨 (허용된 유저만)", + "action-smw-patternedit": "시맨틱 미디어위키에 쓰이는 정규 표현식 편집", + "group-smwadministrator": "관리자(시맨틱 미디어위키)", + "group-smwadministrator-member": "{{GENDER:$1|관리자 (시맨틱 미디어위키)}}", + "grouppage-smwadministrator": "{{ns:project}}:관리자 (시맨틱 미디어위키)", + "group-smwcurator": "큐레이터 (시맨틱 미디어위키)", + "group-smwcurator-member": "{{GENDER:$1|큐레이터 (시맨틱 미디어위키)}}", + "grouppage-smwcurator": "{{ns:project}}:큐레이터 (시맨틱 미디어위키)", + "group-smweditor": "편집자 (시맨틱 미디어위키)", + "action-smw-admin": "시맨틱 미디어위키 관리 작업에 접근", + "action-smw-ruleedit": "규칙 문서 편집 (시맨틱 미디어위키)", + "smw-property-predefined-default": "\"$1\" 항목은 $2 유형의 미리 정의된 속성입니다.", + "smw-property-predefined-ask": "\"$1\"은(는) 개개의 쿼리에 대한 ([https://www.semantic-mediawiki.org/wiki/Subobject 하위 객체]의 형태로) 메타 정보를 표현하는 미리 정의된 속성이며 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties 시맨틱 미디어위키]를 통해 제공됩니다.", + "smw-property-predefined-asksi": "\"$1\"은(는) 쿼리에서 사용되는 조건의 수를 모으는 미리 정의된 속성이며 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]를 통해 제공됩니다.", + "smw-sp-properties-docu": "이 페이지는 이 위키를 위해 사용할 수 있는 [https://www.semantic-mediawiki.org/wiki/Property 속성]과 그것의 사용 횟수를 나열합니다. 최신 횟수 통계에 대해 그것은 [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics 속성 통계] 유지 관리 스크립트가 정기적으로 실행되는 것을 권장합니다. 차별화된 보기에 대해서는 [[Special:UnusedProperties|사용하지 않는 속성 목록]]이나 [[Special:WantedProperties|필요한 속성 목록]] 특수 문서를 보세요.", + "smw-sp-properties-cache-info": "나열된 데이터는 [https://www.semantic-mediawiki.org/wiki/Caching 캐시]에서 검색되었고, $1에 마지막으로 업데이트했습니다.", + "smw-sp-properties-header-label": "속성 목록", + "smw-admin-settings-docu": "시맨틱 미디어위키 환경과 관련된 모든 기본값과 지역화된 설정의 목록을 보여줍니다. 개별 설정에 대한 자세한 내용은 [https://www.semantic-mediawiki.org/wiki/Help:Configuration 구성] 도움말 문서를 참조하세요.", + "smw-sp-admin-settings-button": "설정 목록 생성", + "smw-admin-idlookup-title": "조회", + "smw-admin-idlookup-docu": "시맨틱 미디어위키에 개별 개체(위키문서, 하위개체 등)를 나타내는 안쪽 개체 Id에 대한 자세한 정보를 보여줍니다.", + "smw-admin-iddispose-title": "제거", + "smw-admin-iddispose-done": "\"$1\" ID가 스토리지 백엔드에서 제거되었습니다.", + "smw-admin-iddispose-no-references": "\"$1\" ID는 찾을 수 없거나 임의의 참조를 포함합니다.", + "smw-admin-idlookup-input": "검색:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "개요", + "smw-admin-tab-notices": "구식 알림", + "smw-admin-tab-maintenance": "유지보수", + "smw-admin-tab-supplement": "추가 기능", + "smw-admin-tab-alerts": "알림", + "smw-admin-alerts-tab-deprecationnotices": "구식 알림", + "smw-admin-alerts-tab-maintenancealerts": "유지 관리 알림", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "표 최적화", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "오래된 엔티티", + "smw-admin-maintenancealerts-invalidentities-alert-title": "잘못된 엔티티", + "smw-admin-deprecation-notice-section": "시맨틱 미디어위키", + "smw-admin-configutation-tab-settings": "설정", + "smw-admin-configutation-tab-namespaces": "이름공간", + "smw-admin-configutation-tab-schematypes": "스키마 유형", + "smw-admin-maintenance-tab-tasks": "작업", + "smw-admin-maintenance-tab-scripts": "유지 관리 스크립트", + "smw-admin-maintenance-no-description": "설명이 없습니다.", + "smw-admin-maintenance-script-section-title": "사용 가능한 유지 관리 스크립트 목록", + "smw-admin-maintenance-script-section-update": "스크립트 업데이트", + "smw-admin-maintenance-script-section-rebuild": "스크립트 다시 빌드", + "smw-livepreview-loading": "불러오는 중...", + "smw-sp-searchbyproperty-resultlist-header": "결과 목록", + "smw-sp-searchbyproperty-nonvaluequery": "\"$1\" 속성이 할당된 값의 목록입니다.", + "smw-datavalue-number-nullnotallowed": "\"$1\"가 숫자를 허용하지 않는 \"NULL\"과 함께 반환되었습니다.", + "smw-search-syntax-support": "검색 입력은 시맨틱 미디어위키를 사용한 결과 일치를 도와주는 [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search 쿼리 문법]의 사용을 지원합니다.", + "smw-search-input": "입력과 검색", + "smw-search-syntax": "구문", + "smw-search-profile": "확장", + "smw-search-profile-tooltip": "시맨틱 위키와 연계된 검색 기능", + "smw-search-profile-sort-best": "최적의 일치", + "smw-search-profile-sort-recent": "가장 최근", + "smw-search-profile-sort-title": "제목", + "smw-search-profile-extended-help-intro": "[https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile 확장 프로파일]은 특수:검색 문서 내의 시맨틱 미디어위키 확장 기능에 특화된 검색 기능에 접근할 수 있는 권한을 제공하며 다음을 포함합니다:", + "smw-search-profile-extended-help-sort": "결과 표시를 위한 정렬 환경 설정을 지정합니다:", + "smw-search-profile-extended-help-sort-title": "* \"제목\"은 정렬 기준으로 문서 제목 문서 제목(또는 표시 제목)을 사용합니다", + "smw-search-profile-extended-help-sort-best": "* \"최적의 일치\"는 백엔드가 제공하는 점수에 기반한 [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy 관련성]에 따른 엔티티를 정렬합니다", + "smw-search-profile-extended-help-namespace": "폼을 선택하자마자 이름공간 선택 상자는 숨겨지지만 \"표시/숨김\" 버튼을 이용하여 보이게 할 수 있습니다.", + "smw-search-profile-extended-help-query": "$1가 쿼리로 사용되었습니다.", + "smw-search-profile-extended-help-query-link": "더 자세한 사항의 경우, $1를 사용하십시오.", + "smw-search-profile-extended-help-find-forms": "사용 가능한 폼", + "smw-search-profile-extended-section-sort": "정렬 기준", + "smw-search-profile-extended-section-form": "폼", + "smw-search-profile-extended-section-search-syntax": "검색 입력", + "smw-search-profile-extended-section-namespace": "이름공간", + "smw-search-profile-extended-section-query": "쿼리", + "smw-search-profile-link-caption-query": "쿼리 빌더", + "smw-search-show": "보기", + "smw-search-hide": "숨기기", + "log-name-smw": "시맨틱 미디어위키 로그", + "log-show-hide-smw": "$1 시맨틱 미디어위키 로그", + "logeventslist-smw-log": "시맨틱 미디어위키 기록", + "logentry-smw-maintenance": "유지보수 관련 이벤트가 시맨틱 미디어위키에 의해 발행되었습니다", + "smw-datavalue-import-unknown-namespace": "\"$1\" 가져오기 이름공간을 알 수 없습니다. [[MediaWiki:Smw import $1]]를 통해 자세한 OWL 가져오기 정보를 이용할 수 있는지 확인해 주십시오.", + "smw-datavalue-import-missing-namespace-uri": "[[MediaWiki:Smw import $1|$1 가져오기]]에서 \"$1\" 이름공간 URI를 찾을 수 없습니다.", + "smw-datavalue-import-missing-type": "[[MediaWiki:Smw import $2|$2 가져오기]]에서 \"$1\"에 대한 유형 정의를 찾을 수 없습니다.", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|$1 가져오기]]", + "smw-datavalue-import-invalid-value": "\"$1\"는 유효한 포맷이 아니며 \"이름공간\":\"식별자\"로의 구성을 예측합니다. (예: \"foaf:name\")", + "smw-datavalue-import-invalid-format": "\"$1\" 문자열이 4개의 부분으로 나뉠 것으로 예측되었으나 포맷을 인식하지 못했습니다.", + "smw-datavalue-property-create-restriction": "\"$1\" 속성은 존재하지 않으며 사용자는 승인되지 않은 속성이 있는 값을 만들거나 주석을 추가할 \"$2\" 권한이 없습니다. ([https://www.semantic-mediawiki.org/wiki/Help:Authority_mode 인가\n 방식] 참고)", + "smw-datavalue-property-invalid-character": "\"$1\" 속성은 \"$2\" 문자를 속성 레이블의 일부로서 포함하고 있으므로 유효하지 않은 것으로 분류됩니다.", + "smw-datavalue-restricted-use": "데이터 값 $1은(는) 이용이 제한되어 있습니다.", + "smw-datavalue-invalid-number": "\"$1\"는 숫자로 해석되지 않습니다.", + "smw-query-condition-circular": "\"$1\" 안에서 잠재적인 순환 조건이 발견되었습니다.", + "smw-query-condition-empty": "쿼리 설명에 조건이 비어있습니다.", + "smw-types-list": "자료형 목록", + "smw-types-default": "\"$1\"은 내장 자료형입니다.", + "smw-types-help": "더 많은 정보와 예제는 이 [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 도움말 문서]에서 볼 수 있습니다.", + "smw-type-ema": "\"$1\"은(는) 이메일을 표현하기 위한 특수 자료형입니다.", + "smw-type-tem": "\"$1\"은(는) 온도를 표현하기 위한 특수 수치 자료형입니다.", + "smw-type-qty": "\"$1\"은(는) 수치 표현과 온도 단위가 있는 수량자를 기술하기 위한 자료형입니다.", + "smw-type-extra-tem": "변환 스키마에는 켈빈, 섭씨, 화씨, 란씨등의 지원 단위를 포함합니다.", + "smw-type-tab-properties": "속성", + "smw-type-tab-types": "유형", + "smw-type-tab-type-ids": "유형 ID", + "smw-type-tab-errors": "오류", + "smw-type-primitive": "기본", + "smw-type-contextual": "문맥형", + "smw-type-compound": "복합형", + "smw-type-container": "컨테이너", + "smw-type-no-group": "미분류", + "smw-special-pageproperty-description": "이 문서는 속성과 주어진 문서의 모든 값을 찾기 위한 둘러보기 인터페이스를 제공합니다. 그 밖의 이용 가능한 검색 인터페이스에는 [[Special:SearchByProperty|속성 검색]], [[Special:Ask|문의 쿼리 빌더]]가 있습니다.", + "smw-datavalue-record-invalid-property-declaration": "레코드 정의에는 그 자체가 레코드 타입으로 선언된, 허용되지 않는 \"$1\" 프로퍼티를 포함하고 있습니다.", + "smw-datavalue-languagecode-invalid": "\"$1\"는 지원되는 언어 코드로 인식되지 않습니다.", + "smw-types-extra-mlt-lcode": "자료형에는 언어 코드가 {{PLURAL:$2|필요합니다|필요하지 않습니다}} (예: {{PLURAL:$2|언어 코드가 없는 값 애너테이션은 받아들이지 않습니다|언어 코드가 없는 값 애너테이션은 받아들입니다}})", + "smw-limitreport-intext-parsertime": "[SMW] 텍스트 내 주석 파서 시간", + "smw-limitreport-intext-postproctime": "[SMW] 후처리 시간", + "smw-limitreport-intext-parsertime-value": "$1초", + "smw-limitreport-intext-postproctime-value": "$1{{PLURAL:$1|초}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] 스토어 업데이트 시간 (문서를 새로 고칠 때)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1초", + "smw-datavalue-allows-pattern-mismatch": "\"$1\"은(는) \"$2\" 정규 표현식에 의해 유효하지 않은 것으로 분류되었습니다.", + "smw-datavalue-allows-pattern-reference-unknown": "\"$1\" 패턴 참조는 [[MediaWiki:Smw allows pattern]]의 엔트리와 일치되지 못했습니다.", + "smw-datavalue-allows-value-list-unknown": "\"$1\" 목록 참조는 [[MediaWiki:Smw allows list $1]] 문서와 일치되지 못했습니다.", + "smw-datavalue-allows-value-list-missing-marker": "\"$1\" 목록 내용에 * 목록 표시가 있는 항목이 없습니다.", + "smw-datavalue-feature-not-supported": "\"$1\" 기능은 이 위키에서 지원되지 않거나 비활성화되었습니다.", + "smw-datavalue-time-invalid-offset-zone-usage": "\"$1\"에는 지원하지 않는 오프셋과 구역 식별자가 포함되어 있습니다.", + "smw-datavalue-time-invalid-values": "\"$1\" 값에는 \"$2\" 형태의 해석할 수 없는 정보가 포함되어 있습니다.", + "smw-datavalue-time-invalid-date-components-common": "\"$1\"에는 일부 해석할 수 없는 정보가 포함되어 있습니다.", + "smw-datavalue-time-invalid-date-components-dash": "\"$1\"에는 데이터 해석에 유효하지 않은 외인성 대시나 기타 문자들이 포함되어 있습니다.", + "smw-datavalue-time-invalid-date-components-empty": "\"$1\"에는 일부 비어있는 구성 요소가 포함되어 있습니다.", + "smw-datavalue-time-invalid-date-components-three": "\"$1\"에는 데이터 해석에 필요한 세 개 이상의 구성 요소가 포함되어 있습니다.", + "smw-datavalue-time-invalid-ampm": "\"$1\"에는 12시간 변환에 유효하지 않은 시간 요소로서 \"$2\"이(가) 포함되어 있습니다.", + "smw-datavalue-time-invalid-jd": "보고된 \"$2\" 값을 가지고 \"$1\" 입력값을 유효한 JD(율리우스일) 숫자로 해석할 수 없습니다.", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\"은(는) 유효하지 않은 URL입니다.", + "smw-datavalue-keyword-maximum-length": "키워드가 $1의 최대 길이를 초과했습니다.", + "smw-datavalue-parse-error": "지정한 \"$1\" 값을 인식하지 못했습니다.", + "smw-datavalue-propertylist-invalid-property-key": "\"$1\" 속성 목록은 유효하지 않은 \"$2\" 속성 키를 포함합니다.", + "smw-datavalue-type-invalid-typeuri": "\"$1\" 유형은 유효한 URI 표현으로 변환될 수 없습니다.", + "smw-datavalue-wikipage-empty": "위키페이지 입력값이 비어있으므로(예: [[SomeProperty::]], [[]]) 이름이나 쿼리 조건의 일부로 사용할 수 없습니다.", + "smw-parser-invalid-json-format": "JSON 파서가 \"$1\"로 반환했습니다.", + "smw-property-preferred-label-language-combination-exists": "\"$2\" 언어가 이미 \"$3\" 레이블에 할당되어 있기 때문에 \"$1\"을(를) 선호하는 레이블로 사용할 수 없습니다.", + "smw-clipboard-copy-link": "클립보드에 링크 복사하기", + "smw-data-lookup": "데이터를 가져오는 중...", + "smw-data-lookup-with-wait": "이 요청은 처리 중이며 시간이 잠시 소요될 수 있습니다.", + "smw-no-data-available": "이용 가능한 데이터 없음.", + "smw-property-req-error-list": "속성에 다음의 오류 또는 경고가 포함되어 있습니다:", + "protect-level-smw-pageedit": "문서 편집 권한이 있는 사용자만 허용 (시맨틱 미디어위키)", + "smw-edit-protection-auto-update": "시맨틱 미디어위키는 \"ls edit protected\" 속성에 따라 보호 상태를 업데이트하였습니다.", + "smw-edit-protection-enabled": "편집 보호됨 (시맨틱 미디어위키)", + "smw-patternedit-protection": "이 문서는 보호되어 있으므로 적절한 smw-patternedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions 권한]이 있는 사용자만 편집할 수 있습니다.", + "smw-property-predefined-edip": "\"$1\" 속성은 편집이 보호되어 있는지 아닌지의 여부를 지시하기 위해 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties 시맨틱 미디어위키]가 제공하는 미리 정의된 속성입니다.", + "smw-query-reference-link-label": "쿼리 참조", + "smw-format-datatable-emptytable": "테이블에 사용할 수 있는 데이터가 없습니다", + "smw-format-datatable-info": "_TOTAL_개의 항목 중 _START_부터 _END_까지 표시 중", + "smw-format-datatable-infoempty": "0개의 항목 중 0부터 0까지 표시 중", + "smw-format-datatable-infofiltered": "(_MAX_개의 전체 항목에서 필터됨)", + "smw-format-datatable-lengthmenu": "_MENU_ 엔트리 보기", + "smw-format-datatable-loadingrecords": "불러오는 중...", + "smw-format-datatable-processing": "처리 중...", + "smw-format-datatable-search": "검색:", + "smw-format-datatable-zerorecords": "일치하는 레코드가 없습니다", + "smw-format-datatable-first": "처음", + "smw-format-datatable-last": "마지막", + "smw-format-datatable-next": "다음", + "smw-format-datatable-previous": "이전", + "smw-format-datatable-toolbar-export": "내보내기", + "smw-category-invalid-redirect-target": "\"$1\" 분류는 분류가 아닌 이름공간에 대한 잘못된 넘겨주기 대상을 포함하고 있습니다.", + "smw-postproc-queryref": "일부 쿼리 후처리가 필요한 상황에서 시맨틱 미디어위키는 현재 페이지를 새로 고칩니다.", + "apihelp-browsebyproperty-summary": "속성이나 속성 목록에 관한 정보를 반환하기 위한 API 모듈입니다.", + "apihelp-smwtask-summary": "시맨틱 미디어위키 관련 작업을 실행하기 위한 API 모듈입니다.", + "apihelp-smwbrowse-summary": "시맨틱 미디어위키의 각기 다른 엔티티 유형의 탐색 활동을 지원하기 위한 API 모듈입니다.", + "apihelp-ask-parameter-api-version": "출력 형식:\n;2:결과 목록을 위해 {}를 사용하는 하위 호환 포맷\n;3:결과 목록을 위해 {}를 사용하는 실험적인 포맷.", + "apihelp-smwtask-param-task": "작업 유형을 정의합니다", + "smw-api-invalid-parameters": "\"$1\" 변수가 유효하지 않습니다", + "smw-property-page-list-count": "이 속성을 사용하는 {{PLURAL:$1|문서}} $1개를 보여줍니다.", + "smw-property-page-list-search-count": "\"$2\" 값이 일치하고 이 속성을 사용하는 {{PLURAL:$1|문서}} $1개를 보여줍니다.", + "smw-property-reserved-category": "분류", + "smw-category": "분류", + "smw-datavalue-uri-invalid-scheme": "\"$1\"은(는) 유효한 URI 스킴으로 등재되지 않았습니다.", + "smw-browse-property-group-title": "속성 그룹", + "smw-browse-property-group-label": "속성 그룹 레이블", + "smw-browse-property-group-description": "속성 그룹 설명", + "smw-filter": "필터", + "smw-section-expand": "문단 펼치기", + "smw-section-collapse": "문단 접기", + "smw-ask-format-help-link": "[https://www.semantic-mediawiki.org/wiki/Help:$1_format $1] 형식", + "smw-help": "도움말", + "smw-personal-jobqueue-watchlist": "작업 대기열 주시문서 목록", + "smw-property-predefined-label-skey": "정렬키", + "smw-processing": "처리 중...", + "smw-loading": "불러오는 중...", + "smw-fetching": "가져오는 중...", + "smw-preparing": "준비 중...", + "smw-expand": "펼치기", + "smw-collapse": "접기", + "smw-copy": "복사", + "smw-copy-clipboard-title": "내용을 클립보드에 복사합니다", + "smw-jsonview-expand-title": "JSON 뷰를 확장합니다", + "smw-jsonview-collapse-title": "JSON 뷰를 접습니다", + "smw-jsonview-search-label": "검색:", + "smw-types-title": "유형: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "[https://www.semantic-mediawiki.org/wiki/Help:Schema 스키마 문서]의 콘텐츠 모델을 변경할 권한이 없습니다.", + "smw-schema-error-title": "유효성 검사 {{PLURAL:$1|오류}}", + "smw-schema-error-miscellaneous": "기타 오류 ($1)", + "smw-schema-error-validation-file-inaccessible": "유효성 확인 파일 \"$1\"에 접근할 수 없습니다.", + "smw-schema-error-json": "JSON 오류: \"$1\"", + "smw-schema-validation-schema-title": "JSON 스키마", + "smw-schema-summary-title": "요약", + "smw-schema-title": "스키마", + "smw-schema-type": "스키마 종류", + "smw-schema-tag": "{{PLURAL:$1|태그}}", + "smw-ask-title-keyword-type": "키워드 검색", + "smw-ask-message-keyword-type": "이 검색은 $1 조건과 일치합니다.", + "smw-remote-source-unavailable": "원격 \"$1\" 대상으로 연결할 수 없습니다.", + "smw-remote-source-disabled": "'''$1''' 원본은 원격 요청 지원을 비활성화하였습니다!", + "smw-parameter-missing": "\"$1\" 변수가 없습니다.", + "smw-property-tab-usage": "사용", + "smw-property-tab-redirects": "동의어", + "smw-property-tab-subproperties": "하위 속성", + "smw-property-tab-specification": "... 기타", + "smw-concept-tab-list": "목록", + "smw-concept-tab-errors": "오류", + "smw-ask-tab-result": "결과", + "smw-ask-tab-extra": "기타", + "smw-ask-tab-debug": "디버그", + "smw-ask-tab-code": "코드", + "smw-pendingtasks-tab-setup": "설정", + "smw-pendingtasks-setup-tasks": "작업", + "smw-es-replication-error-divergent-date-short": "다음의 날짜 정보가 비교를 위해 사용되었습니다:", + "smw-es-replication-error-divergent-revision-short": "다음의 관련 판 데이터는 비교를 위해 사용되었습니다:", + "smw-report": "보고서", + "smw-legend": "범례", + "smw-entity-examiner-associated-revision-mismatch": "판", + "smw-facetedsearch-intro-tab-search": "검색", + "smw-facetedsearch-input-filter-placeholder": "필터...", + "smw-facetedsearch-no-filters": "필터가 없습니다.", + "smw-facetedsearch-no-filter-range": "필터 범위가 없습니다.", + "smw-search-placeholder": "검색...", + "smw-listingcontinuesabbrev": "(계속)", + "smw-showingresults": "'''$2'''번 부터의 {{PLURAL:$1|결과 '''1'''개|결과 '''$1'''개}}입니다." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/krc.json b/mediawiki/extensions/SemanticMediaWiki/i18n/krc.json new file mode 100644 index 0000000..1c6a5be --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/krc.json @@ -0,0 +1,17 @@ +{ + "@metadata": { + "authors": [ + "Ernác", + "Iltever", + "Къарачайлы" + ] + }, + "smw-categories": "Категорияла", + "smw_purge": "Джангырт", + "browse": "Викиге кёз ат", + "smw-prefs-general-options-show-entity-issue-panel": "Магъананы проблемасыны панелин кёргюзт", + "smw-prefs-help-general-options-show-entity-issue-panel": "Джандырылгъан эсе, хар бетде бютеулюкню тинтиуюн башлайды эмда [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel магананы проблемасыны панелин ачады].", + "smw-livepreview-loading": "Джюклениу...", + "smw-listingcontinuesabbrev": "(баргъаны)", + "smw-showingresults": "Тюбюрек № $2 башлаб $1 {{PLURAL:$1|1=эсеб|эсебле}} {{PLURAL:$1|1=кёргюзюлгенди|кёргюзюлгендиле}}." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/kri.json b/mediawiki/extensions/SemanticMediaWiki/i18n/kri.json new file mode 100644 index 0000000..d97b2ab --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/kri.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "122112ê", + "Jose77", + "Protostar" + ] + }, + "smw-categories": "Katègòridèm", + "browse": "Brayz di wiki", + "smw_browse_go": "Go", + "smw-listingcontinuesabbrev": "kònt." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/krj.json b/mediawiki/extensions/SemanticMediaWiki/i18n/krj.json new file mode 100644 index 0000000..29c5374 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/krj.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Jose77", + "RonaldPanaligan" + ] + }, + "smw-categories": "Manga Kategorya", + "smw_browse_go": "Agto" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ksh.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ksh.json new file mode 100644 index 0000000..bffe50b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ksh.json @@ -0,0 +1,237 @@ +{ + "@metadata": { + "authors": [ + "Kghbln", + "Purodha", + "아라" + ] + }, + "smw-desc": "Määt Ding Wikki bäßer ze bruche - för Minsche un Maschihne. ([https://www.semantic-mediawiki.org/wiki/Help:User_manual Handbohch])", + "smw_viewasrdf": "RDF Kannaal", + "smw_finallistconjunct": ", un", + "smw_isspecprop": "Di Eijeschaff es en schpezjälle Eijeschaff en heh dämm Wikki.", + "smw_concept_description": "Beschrievong för et Kunzäp: „$1“", + "smw_no_concept_namespace": "Kunzäpter kam_mer bloß em {{ns:concept}}-Appachtemang faßlääje.", + "smw_multiple_concepts": "Op jeede {{ns:concept}}-Sigg kann bloß ei Kunzäp faßjelaat wääde.", + "smw_concept_cache_miss": "Dat Kunzap „$1“ kann för der Momang noch nit jebruch wääde.\nDem Wiki sing Kumfijurazjuhn fordert, dat dat offline ußjeräshent weed.\nWann dat nit noh en jeweße Zick nit fun sellfs jedonn es, un hee di\nAanforderung dorschjeiht, dann froch Dinge Wiki-Köbes donoh, noh dämm Kunzäp.", + "smw_noinvannot": "För Eijeschaffte met ömjedriehte Reschtung künne kei Wääte verjovve wääde.", + "version-semantic": "Projrammzohsäz vum „Semantesch MehdijaWikki“", + "smw_baduri": "URIs met dämm Opbou „$1“ sin nit zojelohße.", + "smw_csv_link": "CSV", + "smw_dsv_link": "DSV-Dattei", + "smw_json_link": "JSON", + "smw_rdf_link": "RDF", + "smw_printername_count": "Zälle, wat erus kütt", + "smw_printername_csv": "Expoot em CSV-Fommaat", + "smw_printername_dsv": "Äxpoot als en DSV-Dattei", + "smw_printername_debug": "En dä Frooch noh Fählere söhke (joot för de Expächte)", + "smw_printername_embedded": "Sigge-Enhallt enföhje", + "smw_printername_json": "Expoot em JSON-Fommaat", + "smw_printername_list": "Leß", + "smw_printername_ol": "Opzälle", + "smw_printername_ul": "Einzel met Einzelheite opföhre", + "smw_printername_table": "Tabäll", + "smw_printername_broadtable": "En breed Tabäll", + "smw_printername_template": "Schablohn", + "smw_printername_rdf": "Äxpoot als en RDF-Dattei", + "smw-paramdesc-limit": "De hühßte Aanzahl vun Äjeebnesse för zeröck ze jävve", + "smw-paramdesc-headers": "Donn der Name vun de Övveschrefte un Eijeschaffte aanzeije", + "smw-paramdesc-mainlabel": "Wi dä mainlabel Parrameeter för inlain Affroore beschrevve weed", + "smw-paramdesc-link": "Donn de Wääte als Lengks aanzeije", + "smw-paramdesc-intro": "Wat för ene Täx aanjezeijsch wääde sull, für dämm, wat jefonge woodt", + "smw-paramdesc-outro": "Wat för ene Täx aanjezeijsch wääde sull, noh dämm, wat jefonge woodt", + "smw-paramdesc-default": "Wat för ene Täx aanjezeijsch wääde sull, wann nix jefonge woodt", + "smw-paramdesc-sep": "Wat zwesche de Wääte schtonn sull", + "smw-paramdesc-template": "Dä Name vun ene Schablohn, för de Ußjabe met aanzzeije", + "smw-paramdesc-columns": "De Aanzahl Schpallde för aanzezije, wad eruß kütt — der Schtandatt wöhr $1", + "smw-paramdesc-userparam": "Ene Wäät, dä aan jehde Schablohn wigger_jejovve weed, wann övverhoub en Schablohn jebruch weed", + "smw-paramdesc-introtemplate": "Dä Name vun en Schabloon, di aanjezeijsch wääde sull, für dämm, wat jefonge woodt", + "smw-paramdesc-outrotemplate": "Dä Nahme vun en Schablohn, di aanjezeijsch wähde sull, noh dämm, wat jefonge wohdt", + "smw-paramdesc-embedformat": "De html-Befähle för de Övverschreffte ze makeere", + "smw-paramdesc-embedonly": "Kein Övverschreffte aanzeije", + "smw-paramdesc-rdfsyntax": "De Zoot Opbou (Syntax) vun dä RDF-Dattei", + "smw-paramdesc-csv-sep": "Dat Zeishe för Fälder ze tränne", + "smw-paramdesc-dsv-separator": "Dat Zeishe för Fälder ze tränne", + "smw-paramdesc-dsv-filename": "Dä Name för di DSV-Dattei", + "smw-paramdesc-searchlabel": "Dä Täx för em Lengk för wat eruß kütt", + "smw_iq_disabled": "Semantesche Frore sem em Wiki em Momang afjeschaldt.", + "smw_iq_moreresults": "… mih vun däm, wat jefonge woodt", + "smw_parseerror": "Dä aanjejovve Wäät kunnte mer nit vershtonn.", + "smw_decseparator": ",", + "smw_kiloseparator": " ", + "smw_notitle": "„$1“ kam_mer en hee däm Wiki nit als ene Siggename bruche.", + "smw_wrong_namespace": "Bloß Sigge uß däm Appachtemang „$1“ sin hee zohjelohße.", + "smw_manytypes": "Di Eijeschaff es en mih wi ein Zoot dren.", + "smw_emptystring": "De jonn kei Reihe uß Boochstabe un Zeishe, woh nit ens ei dofun dren shteiht. Alsu nit leddesch lohße.", + "smw_notinenum": "„$1“ es nit bei dä zohjeloße Wääte för di Eijeschaff, dat wöhre: $2", + "smw_noboolean": "„$1“ es keine vun dä Wääte för „wohr“ un „verkeeht“.", + "smw_true_words": "wohr,wor,woo,woh,wo,w,j,jo,joh,true,t,yes,y", + "smw_false_words": "verkiehrt,verkihrt,verkirt,verkeht,verkeet,verket,vokiehrt,vokihrt,vokirt,vokeht,vokeet,voket,ferkiehrt,ferkihrt,ferkirt,ferkeht,ferkeet,ferket,fokiehrt,fokihrt,fokirt,fokeht,fokeet,foket,fallsch,falsch,näh,nää,nä,false,f,no,n", + "smw_nofloat": "„$1“ es kei Zahl.", + "smw_infinite": "Zahle esu jruuß udder esu lang wi „$1“ dom_mer hee nit ongershtöze.", + "smw_unitnotallowed": "„$1“ es nit als en jölteje Mohßeinheit för heh di Eijeschaff enjedraare.", + "smw_novalues": "Et sinn_er kein Wääte aanjejovvwe.", + "smw_nodatetime": "Dat Dattum „$1“ künne mer nit vershtonn.", + "smw_toomanyclosing": "En dä Frooch es zoh öff „$1“ enthallde.", + "smw_noclosingbrackets": "En [[ en Dinge Frooch woh nit zohjemaat, un hät kei ]] wat drop paßße deiht.", + "smw_misplacedsymbol": "Dat Sümbohl „$1“ wohr aan ene Shtell, woh et nix nöz.", + "smw_unexpectedpart": "Dä Aandeil „$1“ en dä Frooch kunnte mer nit vershtonn. Wat eruß kütt, künnt jet angersch sin, wi jedaach.", + "smw_emptysubquery": "En Ongerfrooch hät kein reschtejje Bedengung.", + "smw_misplacedsubquery": "En Ongerfrooch douch aan ene Shtäll op, woh kei Ongerfroore sin dörve.", + "smw_valuesubquery": "En Ongerfrooch noh de Wääte fun dä Eijeschaff „$1“ künne mer nit.", + "smw_badqueryatom": "Ene Aandeil „[[…]]“ en dä Anfrooch es nit ze vershtonn.", + "smw_propvalueproblem": "Dä Eijeschaff „$1“ ier Wäät es nit ze vershtonn.", + "smw_noqueryfeature": "Ene Deijl vun dä Aanfrooch iere Eijeschaffte sin hee en dämm Wiki nit\nmüjjelesch, un dä Aandeil ($1) es dröm us dä Frooch eruß jenumme woode.", + "smw_noconjunctions": "Konjunxjohne (e „un“ en Aanfroore) sin hee en dämm Wiki nit müjjelesch, un dä Aandeil ($1) es dröm us dä Frooch eruß jenumme woode.", + "smw_nodisjunctions": "Dißjunxjohne (e „of“ un „odder“ en Aanfroore) sin hee en dämm Wiki nit müjjelesch, un dä Aandeil ($1) es dröm us dä Frooch eruß jenumme woode.", + "smw_querytoolarge": "De Bedengunge hee noh kunnte mer nit mieh beärbeide, weil dem Wiki sing Jrenze för der Ömfang udder de Aanzahl Verschachtelunge vun Datebangk_Froore övverschredde wohre: $1.", + "smw_notemplategiven": "Jiv ene Wäät för dä Parrammeeter „Schablohn“ aan, domet di Aat Frohch jonn kann.", + "smw_db_sparqlqueryproblem": "De Antwood op di Aanfrooch kunnt nit vun dä Daatebangk för SPARQL jehollt wääde.\nHeh dä Fähler künnt wider vörbei jonn, udder ene Fähler em Programm för de Daatebangk opzeije.", + "smw_type_header": "Eijeschaffte vun dä Aat „$1“", + "smw_typearticlecount": "Mer zeije {{PLURAL:$1|Ein Eijeschaff|$1 Eijeschaffte|kei Eijeschaff}} met dämm Datentüp aan:", + "smw_attribute_header": "Sigge met dä Eijeschaff „$1“", + "smw_attributearticlecount": "{{PLURAL:$1|Hee kütt ein Sigg|Hee kumme $1 Sigge|Et jitt kei Sigge}} met dä Eijeschaff dren{{PLURAL:$1|:|:|.}}", + "specialpages-group-smw_group": "Semantesch MehdijaWikki", + "exportrdf": "Sigge em Fommaat RDF expoteere", + "smw_exportrdf_docu": "Hee di Sigg määd et müjjelesch, Daate vun en Sigg em RDF-Fommaat ze krijje. Öm Sigge ze Expoteere, doon dänne ier Tittele, jeeder_ein en en Reih fö sesch, onge en dat Täx-Feld erin schriive.", + "smw_exportrdf_recursive": "Donn all de Sigge expotteere, di domet zosamme hange, un di domet och, un esu wigger. Opjepaß, dat künnt reschtesch vill wääde!", + "smw_exportrdf_backlinks": "Donn och all de Sigge expoteere, di op expoteete Sigge verwiese donn, un maach en RDF Dattei, woh me dren bläddere udder mem Brauser draan jonn kann.", + "smw_exportrdf_lastdate": "Donn kein Sigge äxpottehre, di noh däm aanjejovve Dattum un dä aanjejovve Uhrzigg nimmih verändert woodte.", + "smw_exportrdf_submit": "Lohß Jonn!", + "uriresolver": "Oplööser för URIs", + "properties": "Eijeschaffte", + "smw-categories": "Saachjroppe", + "smw_properties_docu": "Heh di Eijeschaffte wähde em Wikki jebruch:", + "smw_property_template": "$1 fun dä Zoot $2 ({{PLURAL:$3|ei|$3|kei}} mol)", + "smw_propertylackspage": "Alle Eijeschaffte sullte op en Sigg beschrevve sin!", + "smw_propertylackstype": "För de Eijeschaff es bes jetz kein oot Dahte aanjejovve, mer nämme för der Momang ens „$1“.", + "smw_propertyhardlyused": "Di Eijeschaff wehd em Wikki koum jebruch!", + "unusedproperties": "Eijeschaffte, di nit jebruch wähde", + "smw-unusedproperties-docu": "Heh di Eijeschaffte jidd_et un han Sigge, ävver de Eijeschaffte sällver wähde em Momang nörjenswoh jebruch.", + "smw-unusedproperty-template": "$1 vun de Aat $2", + "wantedproperties": "Nit aanjelaate Eijeschaffte", + "smw-wantedproperties-docu": "De Eijeschaffte heh noh wäde em Wikki jebruch, ävver se han noch kei Sigg, di se beschrievee un äklihjere deiht.", + "smw-wantedproperty-template": "$1 ({{PLURAL:$2|eimol|$2 mol|nit}} jebruch)", + "smw_purge": "Nöü Aanzeije!", + "types": "Date-Tüpe", + "smw_types_docu": "Hee kütt en [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes Leß] met all dä Dahte_Zoote, di för Eijeschaffte verjovve wähde künnte.", + "smw-statistics": "Schtatißtike övver de semanntesche Dahte", + "smw-statistics-property-instance": "{{PLURAL:$1|Wäät|Wääte |Wääte}} för Eijeschaffte (ensjesamp)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Eijeschaff|Eijeschaffte |Eijeschaffte}}]] (ensjesamp)", + "smw-statistics-property-page": "[[Special:Properties|{{PLURAL:$1|Eijeschaff|Eijeschaffte |Eijeschaffte}}]] (di obb en Sigg ennjedrahe sin)", + "smw-statistics-property-type": "[[Special:Properties|{{PLURAL:$1|Eijeschaff|Eijeschaffte |Eijeschaffte}}]] (di ene beschtemmpte Zoot vun Dahte han)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Affrohch|Affrohre|Kein Affrohch}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Affrohch|Affrohre| Affrohre}}]]", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Konzäpp|Konzäppte|Konzäppte }}]]", + "smw-statistics-subobject-count": "[[Special:Properties|{{PLURAL:$1|Ongerobjäk|Ongerobjäkte|Ongerobjäkte }}]]", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Zoot Dahte|Doote Dahte|Zoot Dahte}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Wäät|Wääte|Wäät}} vun ene Eijeschaff (met [[Property:Has improper value for|kappodde {{PLURAL:$1|Aanmärkong|Aanmärkonge| Aanmärkonge}}]])", + "smw_uri_doc": "Dä URI resolver hät dä Vörschlaach [$1 W3C TAG finding on httpRange-14] opjenumme\n(-: un sorresch esu doför, dat uß Minsche kei Websigge wääde :-)", + "ask": "Semantesch Söke", + "smw_ask_sortby": "Noh de Spallde zotteere (moß ävver nit)", + "smw_ask_ascorder": "Nommahl eröm zotteere", + "smw_ask_descorder": "Röckwääts zotteere", + "smw_ask_submit": "Lohß Jonn!", + "smw_ask_editquery": "Opdraach ändere", + "smw_add_sortcondition": "[Zoteere dobeidonn]", + "smw_ask_hidequery": "Opdrach nit aanzeije", + "smw_ask_help": "Hölp", + "smw_ask_queryhead": "Froore", + "smw_ask_printhead": "Zosäzlijje Ußdröcker för aanzezeije", + "smw_ask_printdesc": "(Donn jeede Eijeschaff op ein Reih för sesch enjävve)", + "smw_ask_format_as": "Fommatteere als:", + "smw_ask_defaultformat": "Schtandatt-Fommaat", + "smw_ask_otheroptions": "Ander Ußwahle", + "smw_ask_show_embed": "Donn dä Wiki_Kood zom ennfööje aanzeije", + "smw_ask_hide_embed": "Donn dä Wiki_Kood zom Ennfööje vershteishe", + "smw_ask_embed_instr": "Öm di Frohch en en Sigg em Wikki enzeboue, donn dä Wikki_Koode heh dronger en di Sigg enföhje.", + "smw-ask-query-search-info": "Op Aanfrohch $1 hät de Dahtebangk („$2“) en {{PLURAL:$3|ener Sekonde|$3 Sekonde|nix aan Zigg}} jeantwoot.", + "searchbyproperty": "Övver de Eijeschaffte söke", + "smw_sbv_docu": "Donn noh all dä Sigge söhke, di en beschtemmpte Eijeschaff han, un medd_ennem beschtemmpte Wäät för se.", + "smw_sbv_novalue": "Donn ene jöltijje Wäät för di Eijeschavv aanjävve, udder donn Der all de müjjelesche Wääte för „$1“ aanlohre.", + "smw_sbv_displayresultfuzzy": "Leß met alle Sigge met dä Eijeschaff „$1“, di doh dä Wäät „$2“ hät.
    \n(Weil nur winnisch dovun do sin, dom_mer de ähnlesche Wääte metzeije)", + "smw_sbv_property": "Eijeschaff:", + "smw_sbv_value": "Wäät:", + "smw_sbv_submit": "Lohß Jonn!", + "browse": "Em Wiki bläddere", + "smw_browselink": "Eijeschaffte aanzeije", + "smw_browse_article": "Beß esu joot, un jif di Övverschreff vun dä Sigg aan, wo De met däm Bläddere aanfange wells.", + "smw_browse_go": "Lohß Jonn!", + "smw_browse_more": " …", + "smw_browse_show_incoming": "donn de Eijeschaffte aanzeije, di ene Lengk noh hee han", + "smw_browse_hide_incoming": "donn de Eijeschaffte vershteishe, di ene Lengk noh hee han", + "smw_browse_no_outgoing": "Di Sigg heh hät kei Eijeschaffte.", + "smw_browse_no_incoming": "Mer han kein Eijeschaffte em Wiki, di ene Lengk noh heh han.", + "smw_inverse_label_default": "$1 vun", + "smw_inverse_label_property": "Dä Name för di Eijeschaff, wann dä ier Reschtung ömjedrieht weed", + "pageproperty": "Söke noh Eijeschaffte vun Sigge", + "smw_pp_docu": "Söhk noh all dä Wääte, di en beschtemmpte Eijeschaff en dä aanjejovve Sigg han. Donn sowohl en Sigg aanjävve als och en Eijeschaff.", + "smw_pp_from": "Vun Sigg", + "smw_pp_type": "Eijeschaff", + "smw_pp_submit": "Lohß Jonn!", + "smw_result_prev": "Vörijje", + "smw_result_next": "Wigger", + "smw_result_results": "Erus jekumme", + "smw_result_noresults": "Nix jefonge.", + "smwadmin": "Verwalldung fum semantesche MehdijaWikki", + "smw-admin-setupsuccess": "Dä Schpeischerplaz es opjesaz för et semantesch MehdijaWikki.", + "smw_smwadmin_return": "Jangk retuhr noh $1", + "smw_smwadmin_updatestarted": "Ene Projrammlouf för de semantesche Date neu opzeboue es em Jang. All de jeshpeisherte Date wäde neu zosamme jebout un woh nüdesch repareet. Mer kann bei däm Louf hee op dä Söndersigg metloore.", + "smw_smwadmin_updatenotstarted": "Et es ald e Projramm för dat op der neuste Shtand ze bränge aam Loufe.\nMer donn jetz nit noch ein aanshtüße!", + "smw_smwadmin_updatestopped": "Alle Projramme för et op der neuste Shtand Bränge, sin jetz aanjehallde woode.", + "smw_smwadmin_updatenotstopped": "Öm dat Projramm anzehallde, wat ald am Loufe es, moß De dat Höcksche en dat Käßje maache, öm ze zeije, dat De Der janz sesher bes.", + "smw-admin-docu": "Hee di {{int:specialpage}} hellef beim Enschtallerhre un beim op der neue Schtand bränge vum Semantesche MehdijaWikki. Opjepaß: Donn Ding Dahte seschere, ih dat De di Funkßjohne aanschmiiße deihß!", + "smw-admin-db": "Datebangk inshtalleere un op der neuste Shatnd bränge", + "smw-admin-dbdocu": "Semantesch MehdijaWikki bruch eije zosätzlejje Plaz en de Dahtebangk vum MehdijaWikki, öm sing semantesche Dahte ongerzebränge. De Fonkßjuhne heh dronger sorje doför, dat de Dahtebangk em Wikki öhndlesch för et Semantesch MediaWiki opjesaz es. Wat heh verändert weet, dat hät keine Ennfloß op dä Rääß vun dä Dahtebangk vum MehdijaWikki, un mer kann et och eijfach widder retuhr maache, wann mer well. Di Fonkßjuhn zom Opsäze kam_mer esu öff loufe lohße, wi mer well, dat schahdt nix, ävver et es bloß eijmohl nühdesch bemm Ennreeschte, udder bem Ömschteije obb en neujere Projrammväsjohn.", + "smw-admin-permissionswarn": "Wann de Aufjab met enem Fähler em\nSQL donävve jeiht, dann künnd et sin, dat dä Nahme för op de Dahtebangk zohzejriife un sesch draan aanzemällde en de LocalSettings.php för Ding Wikki nit jenohch Rääschte en dä Datebangk hät. Änntwehder jiß De dämm dat Rääsch, Tabälle aanzelähje udder fott ze maache, udder donn för der Momang Dinge eije Aanmälldong udder di vum Datebank-Köbes en dä LocalSettings.php enndraare, udder nemm dat Waadungsprojramm setupStore.php wat sesch op de Aanjabe en LocalSettings.php beträke kann, un Opjepaß: Donn dat dernoh wider retuhr maache!", + "smw-admin-dbbutton": "Tabelle aanlääje udder op der neuste Shatnd bränge", + "smw-admin-announce": "Donn Ding Wiki annongßeere un bikannt maache", + "smw_smwadmin_datarefresh": "Date repareere un op der neuste Shtand bränge", + "smw_smwadmin_datarefreshdocu": "Et es müjjelesch, all Date vun Semantesch MehdijaWikki uß dä nommahle Dahte em Wikki widder neu zesamme ze krijje. Dat kann joot sin, öm kapodde Date ze repareere, udder de Date op der aktoälle Schtand ze bränge, nohdämm sesh jet draan jeändert hät, dorjen Änderong aan de Projramme. De Aanpaßong weed Sigg för Sigg jedonn un weed dröm nit paaftisch fähdesch wehde. Heenoh kanns De sin, ov en Aanpaßong em Jang es, un Do kanns ein aanfange udder aanhallde, ußer wann ene Wiki_Köbes di Müjjeleschkeit ußjeschalldt hät.", + "smw_smwadmin_datarefreshprogress": "En XXXXXXX es ald ungerwähß. Es es nomahl för ene XXXXXXXXX dat dat langsam föran jeiht, weil dobei de Date nur en klein Häppsche jeändert wääde, un nur dann, wann eine dat wiki bruch. Öm flöcker fähdesch ze wäde, kanns de dat Waadungs-Projramm runJobs.php vun MediaWiki aanschmiiße. Nemm dä Parrameeter --maxjobs 1000 öm dä XXXXXXXXXX en jedem Rötsch faß_ze_lääje. Mer sen onjefähr esu wick:", + "smw_smwadmin_datarefreshbutton": "Aanfange met de Date op der neue Shtand ze brenge", + "smw_smwadmin_datarefreshstop": "Donn dat op der neue Schtand Brenge ophühre", + "smw_smwadmin_datarefreshstopconfirm": "Joh, esch ben mer sescher, esch well dat han.", + "smw-admin-support": "Hölp krijje", + "smw-admin-supportdocu": "Bei Probleme kriss De velleich Hölp övver en Aanzahl vun Müjjeleschkeite:", + "smw-admin-installfile": "Wann De Schwiireschkeite met Dinge Enshtallzjuhn häs, dann donn met de Reeschlinnije en dä Dattei INSTALL anfange, donoh ze söke, wat De donn kanns.", + "smw-admin-smwhomepage": "De kumplätte Dokku för et Semantic Mediawiki es op semantic-mediawiki.org ze fenge.", + "smw-admin-bugsreport": "Fähler kanns De övver GitHub melde.", + "smw-admin-questions": "Wann De noch Froore häß odder Vörschlääsch maache odder klaafe wells, jangk op et Semantic MediaWiki Metmaacher Forum un donn doh metschwaade.", + "smw_adminlinks_datastructure": "De Daateschtroktuur", + "smw_adminlinks_displayingdata": "Daate aanzeije", + "smw_adminlinks_inlinequerieshelp": "Hölp övver de em Wiki sing Sigge enjeboute Froore", + "smw-createproperty-isproperty": "Dat ess_en Eijeschaff vun dä Zoot $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Dä einzijje müjjelesche Wäät för di Eijeschaff es:|De müjjelesche Wääte för di Eijeschaff sin:|Mer han kein müjjelesche Wääte för di Eijeschaff.}}", + "smw-ui-tooltip-title-quantity": "De Moßeinheijd ömwandelle", + "smw_unknowntype": "De Zoot „$1“ för de Eijeschaff dom_mer nit ongershtöze.", + "smw_concept_header": "Sigge vun däm Kumzäp „$1“", + "smw_conceptarticlecount": "{{PLURAL:$1|Ein Sigg jehööt|$1 Sigge jehüüre|Et jehüüere kein Sigge}} zoh dämm Kumzäp{{PLURAL:$1|:|:|.}}", + "smw-property-predefined-default": "„$1“ es en Eijeschaff, di vum Wikkiprojramm ald faßjelahd es.", + "smw-property-predefined-asksi": "„$1“ es en Eijeschaff, di vum Wikkiprojramm ald faßjelahd es, woh de Nommer vun dä Bedengonge en ene Affrohch faßjehallde es.", + "smw-livepreview-loading": "Ben aam Lahde …", + "smw-editpage-property-annotation-disabled": "Heh di Eijeschaff löht sesch nit med ene Zoot vun de Dahte verbenge, weil di ald vum Wikki uß faßjelaat es. Alsu „[[Has type::Page]]“ jeiht heh nit. Op dä Sigg met [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Hölp övver besöndere Eijeschaffte] fengk mer mih Enfommazjuhne.", + "smw-datavalue-import-missing-type": "Mer han de Zoot Dahte vun dä Eijeschaff „$1“ nidd em [[MediaWiki:Smw import $2|Empoot vum $2]] jefonge.", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|Empoot vum $1]]", + "smw-property-predefined-errp": "„$1“ es en Eijeschaff, di vum Wikkiprojramm ald faßjelaad es un jebruch weed, öm kappode Wääte för Eijeschaffte faßzehallde, di wahscheinlesch vun Beschängkonge vun de Zoot udder Beschängkonge vun [[Property:Allows value|de zohjelohße Wääte]] kumme.", + "smw-property-predefined-pval": "[https://semantic-mediawiki.org/wiki/Help:Special_property_Allows_value\"$1\"] es en Eijeschaff, di vum Wikkiprojramm ald faßjelaad es un di en Leß met zohjelohße Wääte, fäßlähje kann, öm de Zohdeijlong vun Wääte för en Einjeschaff ze beschrängke.", + "smw-datavalue-restricted-use": "Dä Dahtewääd „$1“ wood för ene beschrängkte Jebruch makehrt.", + "smw-datavalue-invalid-number": "„$1“ km_mer nit als en Zahl verschtonn.", + "smw-query-condition-circular": "Müjelesch, dat en Bedengong en „$1“ em Kreis erm jeiht.", + "smw-types-list": "Leß vun de Dahte_Zoote", + "smw-types-default": "„$1“ es ene pä Projramm ald faßjelahte un ennjeboute Dahte_Zoot.", + "smw-types-help": "Mih Aanjahbe un Beijschpelle fengk mer op dä [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 Sigg met Hölp] derzoh.", + "smw-type-anu": "„$1“ ess_en beschtemmpte Zoot vun [[Special:Types/URL|\nURL ]] dä dermihts för ene Äxpocht noh owl:AnnotationProperty ze beschriehve jebruch weed.", + "smw-type-boo": "„$1“ ess_en eijfache Dahte_Zoot, di Joh/Nää, udder Wohr/Verkiehrt affbelde kann.", + "smw-type-cod": "„$1“ ess_en affjewandelte Dahte_Zoot vum [[Special:Types/Text|Täx]], öm täschnesche Täx_Krohm med esu vell Zeische henernander wi nühdesch daazeschtälle, zem Beijschpell Projrammleßte.", + "smw-type-geo": "„$1“ ess_en Dahte_Zoot, di Pläz op de Ääd beschriev un et Zohsazprojramm för [https://www.semantic-mediawiki.org/wiki/Semantic_Maps semantesch Lanndkaate] nühdesch hät.", + "smw-type-tel": "„$1“ ess_en Dahte_Zoot, beschtemmp derför, engenazjonahle Tellefohnnommere em Fommaht vum RFC 3966 daazeschtälle.", + "smw-type-txt": "„$1“ ess_en eijfache Dahte_Zoot, bechtemmp derför, esu vell Zeische hengerenander daazeschtälle, wi nühdesch.", + "smw-type-dat": "„$1“ ess_en Dahte_Zoot för Zigg_Pongkte en enem eijheijtlejje Fommaht daazeschtälle.", + "smw-limitreport-intext-parsertime": "[SMW] De Zigg di der Paaser för et Annotehre jebruch hät", + "smw-limitreport-intext-parsertime-value": "{{PLURAL:$1|eijn Sekond|$1 Sekonde|keijn Sekond}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] De Duur för et Ändere fum Zwescheschpeijscher beim Fottschmiiße", + "smw-limitreport-pagepurge-storeupdatetime-value": "{{PLURAL:$1|eijn Sekond|$1 Sekond|keijn Sekond}}", + "smw-listingcontinuesabbrev": "… (wigger)", + "smw-showingresults": "Onge {{PLURAL:$1|weed eine|wääde bes $1|weed keine}} vun de jefonge Endrähsch jezeisch, vun de Nommer $2 av." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ku-latn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ku-latn.json new file mode 100644 index 0000000..5f881a3 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ku-latn.json @@ -0,0 +1,48 @@ +{ + "@metadata": { + "authors": [ + "Bikarhêner", + "George Animal", + "Ghybu", + "Guherto" + ] + }, + "smw_finallistconjunct": ", û", + "smw_printername_count": "Encaman bijimêre", + "smw_printername_list": "Lîste", + "smw_printername_table": "Tablo", + "smw_printername_template": "Şablon", + "smw_printername_category": "Kategorî", + "validator-type-class-SMWParamSource": "nivîs", + "smw_true_words": "rast, r, erê, e", + "smw_false_words": "nerast, n, na, n", + "smw_nofloat": "\"$1\" ne hejmarek e.", + "smw-categories": "Kategorî", + "smw_purge": "Rojane bike", + "types": "Cure", + "smw-ask-delete": "Rake", + "smw-ask-parameters": "Parametre", + "smw-ask-search": "Lêgerîn", + "smw_sbv_submit": "Encaman bibîne", + "browse": "Li wîkiye binêre", + "smw_browselink": "Li taybetmendiyan binêre", + "smw_browse_go": "Here", + "smw_pp_type": "Taybetmendî:", + "smw_pp_submit": "Encaman bibîne", + "smw_result_next": "Pêşve", + "smw_result_results": "Encam", + "smw_result_noresults": "Encam tune ne.", + "smw_smwadmin_return": "Vegere $1", + "smw-ui-tooltip-title-info": "Agahî", + "smw-ui-tooltip-title-warning": "Hişyarî", + "smw-ui-tooltip-title-error": "Çewtî", + "smw-ui-tooltip-title-parameter": "Parametre", + "smw-ui-tooltip-title-event": "Bûyer", + "smw-livepreview-loading": "Tê…", + "smw-sp-searchbyproperty-resultlist-header": "Lîsteya encaman", + "smw-search-syntax": "Sentaks", + "smw-types-list": "Lîsteya cureyên daneyan", + "smw-format-datatable-next": "Pêşve", + "smw-listingcontinuesabbrev": "dewam", + "smw-showingresults": "{{PLURAL:$1|Encamek|'''$1''' encam}}, bi #'''$2''' dest pê dike." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/kw.json b/mediawiki/extensions/SemanticMediaWiki/i18n/kw.json new file mode 100644 index 0000000..9709d8d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/kw.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Nrowe" + ] + }, + "smw-categories": "Klassys", + "browse": "Peuri an wiki", + "smw-livepreview-loading": "Ow karga...", + "smw-listingcontinuesabbrev": "pes." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ky.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ky.json new file mode 100644 index 0000000..98911d6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ky.json @@ -0,0 +1,57 @@ +{ + "@metadata": { + "authors": [ + "AidaBishkek", + "Bosogo", + "Growingup" + ] + }, + "smw-error": "Ката", + "smw_finallistconjunct": ", жана", + "smw_printername_list": "Тизме", + "smw_printername_table": "Жадыбал", + "smw_printername_template": "Калып", + "smw_printername_category": "Категория", + "validator-type-class-SMWParamSource": "текст", + "smw-categories": "Категориялар", + "smw-special-property-searchform-options": "Параметрлер", + "smw-special-wantedproperties-filter-label": "Чыпка:", + "smw_purge": "Жаңыртуу", + "types": "Түрлөр", + "smw-ask-order-rand": "Туш келди", + "smw_ask_queryhead": "Суроо", + "smw_ask_defaultformat": "демейки", + "smw-ask-delete": "[Өчүрүү]", + "smw-ask-options": "Параметрлер", + "smw-ask-parameters": "Параметрлер", + "smw-ask-result": "Натыйжа", + "smw-ask-format": "Формат", + "smw_sbv_value": "Чоңдук:", + "browse": "Wikiни кароо", + "smw_result_prev": "Мурунку", + "smw_result_next": "Кийинки", + "smw_result_results": "Натыйжалар", + "smw-admin-support": "Колдоо алуу", + "smw-admin-supplementary-elastic-indices-title": "Индекстер", + "smw-admin-supplementary-elastic-statistics-title": "Статистика", + "smw-admin-supplementary-elastic-replication-files": "Файлдар", + "smw-admin-supplementary-elastic-replication-pages": "Барактар", + "smw-ui-tooltip-title-property": "Өзгөчөлүк", + "smw-ui-tooltip-title-quantity": "Сан", + "smw-ui-tooltip-title-info": "Маалымат", + "smw-ui-tooltip-title-warning": "Ката", + "smw-ui-tooltip-title-error": "Ката", + "smw-ui-tooltip-title-parameter": "Параметр", + "smw-ui-tooltip-title-event": "Иш-чара", + "smw-ui-tooltip-title-note": "Эскертме", + "smw-ui-tooltip-title-reference": "Булак", + "smw-admin-configutation-tab-namespaces": "Аталыш мейкиндиктери", + "smw-livepreview-loading": "Жүктөлүүдө...", + "smw-search-profile-extended-section-namespace": "Аталыш мейкиндиги", + "smw-format-datatable-loadingrecords": "Жүктөлүүдө...", + "smw-format-datatable-next": "Кийинки", + "smw-property-reserved-category": "Категория", + "smw-category": "Категория", + "smw-help": "Жардам", + "smw-listingcontinuesabbrev": "уланд." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/la.json b/mediawiki/extensions/SemanticMediaWiki/i18n/la.json new file mode 100644 index 0000000..10f9fd0 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/la.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Andrew Dalby" + ] + }, + "smw-categories": "Categoriae", + "browse": "Percurrere", + "smw-livepreview-loading": "Depromens…", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "Subter monstrans {{PLURAL:$1|'''1''' eventu|'''$1''' eventibus}} tenus incipiens ab #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/lad.json b/mediawiki/extensions/SemanticMediaWiki/i18n/lad.json new file mode 100644 index 0000000..2dfb043 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/lad.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Runningfridgesrule", + "WikiiiTranslator" + ] + }, + "smw-categories": "Kategorías", + "browse": "Eksplorar viki", + "smw-livepreview-loading": "Cargando...", + "smw-listingcontinuesabbrev": "cont." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/lb.json b/mediawiki/extensions/SemanticMediaWiki/i18n/lb.json new file mode 100644 index 0000000..25337f9 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/lb.json @@ -0,0 +1,405 @@ +{ + "@metadata": { + "authors": [ + "Les Meloures", + "McDutchie", + "Robby", + "Soued031", + "Volvox" + ] + }, + "smw-desc": "Är Wiki méi accessibel machen - fir Maschinnen ''a'' Menschen ([https://www.semantic-mediawiki.org/wiki/Help:User_manual online documentation])", + "smw-error": "Feeler", + "smw-upgrade-progress": "Fortschrëtt", + "smw-upgrade-error-title": "Feeler »Semantic MediaWiki", + "smw-upgrade-error-why-title": "Firwat gesinn ech dës Säit?", + "smw-upgrade-error-how-title": "Wéi kann ech dëse Feeler flécken?", + "smw-extensionload-error-why-title": "Firwat gesinn ech dës Säit?", + "smw-extensionload-error-how-title": "Wéi kann ech dëse Feeler flécken?", + "smw-upgrade-maintenance-why-title": "Firwat gesinn ech dës Säit?", + "smw-semantics-not-enabled": "D'Semantic MediaWiki Funktioun gouf op dëser Wiki net ageschalt.", + "smw_viewasrdf": "RDF-Feed", + "smw_finallistconjunct": ", an", + "smw-factbox-head": "... méi iwwer \"$1\"", + "smw-factbox-facts": "Fakten", + "smw-factbox-attachments-is-local": "Ass lokal", + "smw_isspecprop": "Dës Eegenschaft ass eng Spezial-Eegenschaft an dëser Wiki.", + "smw-concept-cache-header": "Benotze vum Tëschespäicher", + "smw-concept-no-cache": "Keen Tëschespäicher disponibel.", + "smw_concept_description": "Beschreiwung vum Konzept \"$1\"", + "smw_multiple_concepts": "Op jiddwer Konzeptsäit ka just eng Definitioun vun engem Konzept stoen.", + "version-semantic": "Softwareerweiderungen (Semantic MediaWiki)", + "smw_baduri": "URIë vun der Form \"$1\" sinn net erlaabt.", + "smw_printername_count": "Resultater zielen", + "smw_printername_csv": "Export als CSV", + "smw_printername_dsv": "DSV-Export", + "smw_printername_debug": "Debug-Ufro (fir Experten)", + "smw_printername_embedded": "Säiteninhalter abannen", + "smw_printername_json": "Export als JSON", + "smw_printername_list": "Lëscht", + "smw_printername_plainlist": "Lëscht (einfach)", + "smw_printername_ol": "Nummeréiert Lëscht", + "smw_printername_ul": "Lëscht mat Punkten", + "smw_printername_table": "Tabell", + "smw_printername_broadtable": "Breed Tabell", + "smw_printername_template": "Schabloun", + "smw_printername_rdf": "RDF-Export", + "smw_printername_category": "Kategorie", + "validator-type-class-SMWParamSource": "Text", + "smw-paramdesc-limit": "D'maximal Zuel vu Resultater, déi gewise ginn", + "smw-paramdesc-mainlabel": "D'Etikett déi der Haaptsäit den Numm gëtt", + "smw-paramdesc-link": "D'Werter als Linke weisen", + "smw-paramdesc-intro": "Den Text, dee virun de Resultater vun der Ufro gewise gëtt, wann et der gëtt", + "smw-paramdesc-outro": "Den Text deen no de Resultater vun der Ufro gewise gëtt, wann et der gëtt", + "smw-paramdesc-default": "Den Text den ugewise gëtt wann et keng Resultater beim Siche gëtt", + "smw-paramdesc-sep": "D'Trennzeeche tëscht Resultater", + "smw-paramdesc-template": "Den Numm vun enger Schabloun mat där d'Drockversioune gewise ginn", + "smw-paramdesc-columns": "D?Zuel vu Kolonnen an deenen d'Resultater vun der Sich gewise ginn", + "smw-paramdesc-userparam": "E Wäert deen an all Opruff vun enger Schabloun dragesat gëtt, wann eng Schabloun benotzt gëtt", + "smw-paramdesc-introtemplate": "Den Numm vun enger Schabloun, déi virun de Resultater vun der Ufro gewise gëtt, wann et der gëtt", + "smw-paramdesc-outrotemplate": "Den Numm vun enger Schabloun, déi no de Resultater vun der Ufro gewise gëtt, wann et der gëtt", + "smw-paramdesc-embedformat": "Den HTML-Tag dee benotzt gëtt fir d'Iwwerschrëften ze definéieren", + "smw-paramdesc-embedonly": "Keng Iwwerschrëfte weisen", + "smw-paramdesc-table-class": "Eng zousätzlech CSS-Klass fir Tabellen", + "smw-paramdesc-table-transpose": "D'Iwwerschrëfte vun Tabelle vertikal an d'Resultater horizontal weisen", + "smw-paramdesc-rdfsyntax": "RDF-Syntax déi benotzt gi muss", + "smw-paramdesc-csv-sep": "Spezifizéiert d'Trennsymbol fir Kolonnen", + "smw-paramdesc-dsv-separator": "D'Trennsymbol dat benotzt gi muss", + "smw-paramdesc-dsv-filename": "Den Numm fir den DSV-Fichier", + "smw-paramdesc-searchlabel": "Den Text fir mam Siche virunzefueren", + "smw-paramdesc-export": "Export-Optiounen", + "smw-paramdesc-jsonsyntax": "JSON Syntax muss benotzt ginn", + "smw-printername-feed": "Feed (RSS/Atom)", + "smw-paramdesc-feedtype": "Feed-Typ", + "smw-label-feed-description": "$2-Feed: $1", + "smw_iq_moreresults": "… weider Resultater", + "smw_parseerror": "De Wäert, deen Dir aginn hutt, gouf net verstanen.", + "smw_notitle": "\"$1\" kann net als Numm vun enger Säit op dëser Wiki benotzt ginn.", + "smw_wrong_namespace": "Nëmme Säiten aus dem Nummraum \"$1\" sinn hei erlaabt.", + "smw_emptystring": "Eidel Zeeche ginn net akzeptéiert.", + "smw_notinenum": "\"$1\" ass net an der Lëscht ($2) vun den [[Property:Allows value|erlaabte Wäerter]] fir d'Eegeschaft \"$3\".", + "smw_true_words": "wouer,w,jo,j", + "smw_false_words": "falsch,f,nee,n", + "smw_nofloat": "\"$1\" ass keng Zuel.", + "smw_infinite": "Zuele sou grouss wéi \"$1\" ginn net ënnerstëtzt.", + "smw_novalues": "Keng Wäerter spezifizéiert.", + "smw_nodatetime": "Den Datum \"$1\" gouf net verstan.", + "smw_noclosingbrackets": "Eng oder méi \"[[\" an Ärer Ufro war net zou duerch eng entspriechent \"]]\".", + "smw_misplacedsymbol": "D'Symbol „$1“ gouf op ener Plaz benotzt, wou et net nëtzlech ass.", + "smw_badqueryatom": "Een Deel \"[[...]]\" vun der Ufro gouf net verstanen.", + "smw_propvalueproblem": "De Wäert vun der Eegenschaft \"$1\" gouf net verstane.", + "smw_type_header": "Eegenschafte vum Typ \"$1\"", + "smw_attribute_header": "Säiten, déi d'Eegenschaft „$1“ benotzen", + "smw_attributearticlecount": "Et {{PLURAL:$1|gëtt eng Säit|gi(nn) $1 Säite}} gewisen, déi dës Eegenschaft {{PLURAL:$1|benotzt|benotzen}}:", + "smw-propertylist-subproperty-header": "Ënnereegenschaften", + "smw-propertylist-redirect-header": "Synonymmen", + "specialpages-group-smw_group-maintenance": "Maintenance", + "exportrdf": "Säiten als RDF exportéieren", + "smw_exportrdf_backlinks": "Och all Säiten déi op déi exportéiert Säite referéieren exportéieren.\nEt gët en RDF ugeluecht dee liicht duerchsicht ka ginn.", + "smw_exportrdf_lastdate": "Keng Säiten exportéieren déi zënter dem Zäitpunkt deen uginn ass net geännert goufen.", + "smw_exportrdf_submit": "Exportéieren", + "properties": "Eegenschaften", + "smw-categories": "Kategorien", + "smw_properties_docu": "Dës Eegenschafte ginn op dëser Wiki benotzt.", + "smw_property_template": "$1 vum Typ $2 ({{PLURAL:$3|eemol benotzt|$3 benotzt}})", + "smw_propertylackspage": "All Eegenschafte sollen op enger Säit beschriwwe sinn!", + "smw_propertyhardlyused": "Dës Eegenschaft gëtt an dëser Wiki kaum benotzt!", + "smw-special-property-searchform-options": "Optiounen", + "smw-special-wantedproperties-filter-label": "Filter:", + "smw-special-wantedproperties-filter-none": "Keng", + "smw-special-wantedproperties-filter-unapproved": "Net confirméiert", + "concepts": "Konzepter", + "smw-special-concept-header": "Lëscht vun de Konzepter", + "smw-special-concept-empty": "Et gouf kee Konzept fonnt.", + "unusedproperties": "Onbenotzt Eegeschaften", + "smw-unusedproperties-docu": "OP dëser Säit stinn déi [https://www.semantic-mediawiki.org/wiki/Unused_properties net benotzt Eegenschaften] déi deklaréiert sinn och wa keng aner Säite se benotzen. Fir eng aner Vue kuckt d'Spezialsäite mat [[Special:Properties|allen]] oder de [[Special:WantedProperties|gewënschten Eegenschaften]].", + "smw-unusedproperty-template": "$1 vum Typ $2", + "wantedproperties": "Gewënschten Eegeschaften", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|mol benotzt|mol benotzt}})", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|mol benotzt}})", + "smw_purge": "Aktualiséieren", + "smw-purge-failed": "Semantic MediWiki huet probéiert fir d'Säit eidel ze maachen awer dat huet net funktionéiert", + "types": "Typpen", + "smw-special-types-no-such-type": "Den Datentyp deen ugi gouf gëtt et net", + "smw-statistics": "Semantesch Statistiken", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Eegenschaft|Eegenschaften}} (gesamt)", + "smw-statistics-property-used": "{{PLURAL:$1|Eegenschaft|Eegenschaften}} (mat mindestens engem Wäert benotzt)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Ufro|Ufroen}}", + "smw-statistics-query-format": "$1 Format", + "smw-statistics-query-size": "Gréisst vun der Ufro", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Konzept|Konzepter}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Konzept|Konzepter}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Ënnerobjet|Ënnerobjeten}}", + "ask": "Semantesch sichen", + "smw_ask_sortby": "No der Kolonn sortéieren (fakultativ)", + "smw_ask_ascorder": "Vu kleng op grouss (croissant)", + "smw_ask_descorder": "vu grouss op kleng (décroissant)", + "smw-ask-order-rand": "Zoufall", + "smw_ask_submit": "Resultater sichen", + "smw_ask_editquery": "Ufro änneren", + "smw_add_sortcondition": "[Konditioun fir d'Zortéieren derbäisetzen]", + "smw_ask_hidequery": "Ufro verstoppen (kompakt Vue)", + "smw_ask_help": "Hëllef ufroen", + "smw_ask_queryhead": "Konditioun", + "smw_ask_printhead": "Eraussiche fir ze drécken", + "smw_ask_printdesc": "(eng Eegenschaft pro Linn derbäisetzen)", + "smw_ask_format_as": "Formatéieren als:", + "smw_ask_defaultformat": "Standard", + "smw_ask_otheroptions": "Aner Optiounen", + "smw-ask-otheroptions-collapsed-info": "Benotzt wgl. de 'Plus-Icon' fir all disponibel Optiounen ze gesinn", + "smw_ask_show_embed": "Agebonnene Code weisen", + "smw_ask_hide_embed": "Agebonnene Code verstoppen", + "smw-ask-delete": "Ewechhuelen", + "smw-ask-sorting": "Sortéierung", + "smw-ask-options": "Optiounen", + "smw-ask-options-sort": "Sortéieroptiounen", + "smw-ask-format-options": "Format an Optiounen", + "smw-ask-parameters": "Parameteren", + "smw-ask-search": "Sichen", + "smw-ask-debug": "Feeler analyséieren", + "smw-ask-no-cache": "Keen Tëschespäicher", + "smw-ask-no-cache-desc": "Resultater ouni Tëschespäicher vun den Ufroen", + "smw-ask-result": "Resultat", + "smw-ask-empty": "Komplett eidelmaachen", + "smw-ask-format": "Format", + "smw-ask-format-selection-help": "Hëllef fir den erausgesichte Format: $1", + "smw-ask-condition-input-assistance-property": "p: Fir 'D'Sichen no enger Eegenschaft z'aktivéieren (z. Bsp. [[p:Huet ...)", + "smw-ask-condition-input-assistance-category": "c: fir Propose fir Kategorien z'aktivéieren", + "smw-ask-condition-input-assistance-concept": "con: fir d'Konzeptsichen z'aktivéieren", + "searchbyproperty": "No Eegenschafte sichen", + "processingerrorlist": "Lëscht vun Veraarbechtungsfehler", + "smw_sbv_docu": "Sichen no alle Säiten déi eng bestëmmt Eegenschaft mat engem bestëmmte Wäert hunn.", + "smw_sbv_property": "Eegenschaft:", + "smw_sbv_value": "Wäert:", + "smw_sbv_submit": "Resultater sichen", + "browse": "Duerch d'Wiki goen", + "smw_browselink": "Proprietéite weisen", + "smw_browse_go": "Lass", + "smw_browse_show_incoming": "Eegenschafte weisen, déi heihi linken", + "smw_browse_hide_incoming": "Eegeschaften verstoppen déi hei hi linken", + "smw_browse_no_outgoing": "Dës Säit huet keng Eegeschaften.", + "smw_browse_no_incoming": "Et linke keng Eegeschaften op dës Säit.", + "smw-browse-from-backend": "Informatioune ginn elo vum Backend ofgeruff.", + "smw-browse-show-group": "Gruppe weisen", + "smw-browse-hide-group": "Gruppe verstoppen", + "smw_inverse_label_default": "$1 vu(n)", + "pageproperty": "An den Eegenschafte vun der Säit sichen", + "smw_pp_from": "Vun der Säit:", + "smw_pp_type": "Eegenschaft:", + "smw_pp_submit": "Resultater sichen", + "smw-prev": "vireg {{PLURAL:$1|$1}}", + "smw-next": "nächst {{PLURAL:$1|$1}}", + "smw_result_prev": "Vireg", + "smw_result_next": "Nächst", + "smw_result_results": "Resultater", + "smw_result_noresults": "Pardon, et gouf näischt fonnt.", + "smwadmin": "Dashboard (Semantic MediaWiki)", + "smw-admin-statistics-job-title": "Job-Statistiken", + "smw-admin-statistics-querycache-title": "Tëschespäicher vun den Ufroen", + "smw-admin-statistics-semanticdata-overview": "Iwwersiicht", + "smw_smwadmin_return": "Zréck op $1", + "smw_smwadmin_updatenotstarted": "Et ass schonn een Aktualiséiereungs-Prozess amgaang.\nEt ka keen neien ugefaang ginn.", + "smw_smwadmin_updatestopped": "All Aktualisatiouns-Prozesser goufe gestoppt.", + "smw-admin-docu": "Dës Spezialsäit hëlleft Iech wärend der Installatioun, der Aktualiséierung, der Maintenance an dem Gebrauch vu Semantic MediaWiki an erméiglecht Iech weider administrativ Funktiounen an Aufgaben, geneesou wéi Statistiken.\nDenkt drun fir wichteg Donnéeën ze späicheren ier Dir administrativ Funktiounen ausféiert.", + "smw-admin-db": "Datebank-installatioun an -aktualiséierung", + "smw-admin-dbbutton": "Tabellen initialiséieren oder aktualiséieren", + "smw-admin-announce": "Är Wiki ukënnegen", + "smw-admin-announce-text": "Wann Är Wiki ëffentlech ass kënnt Dir se op der Wiki-Tracking-Wiki WikiApiary registréieren.", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 ass vereelzt a gëtt a(n) $2 ewechgeholl", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 gouf schonn duerch $2 ersat", + "smw-admin-deprecation-notice-title-notice": "Vereelzt Astellungen", + "smw-admin-deprecation-notice-title-replacement": "Ersat oder ëmbenannt Astellungen", + "smw-admin-deprecation-notice-title-removal": "Astellungen déi ewechgeholl goufen", + "smw-admin-deprecation-notice-section-legend": "Erklärung", + "smw_smwadmin_datarefresh": "Donnéeë goufe restauréiert", + "smw_smwadmin_datarefreshprogress": "Eng Aktualiséierung ass schonn am Gaang.\nEt ass normal datt d'Aktualiséierung nëmme lues virugeet well Donnéeë nëmmen a klenge Päck aktualiséiert ginn an zwar ëmmer da wann ee Benotzer op dës Wiki zougräift.\nFir dës Aktualiséierung méi séier fäerdeg ze maache, kann de MediaWiki-Skript runJobs.php (benotzt d'Optioun --maxjobs 1000 fir d'Zuel vun den Aktualiséierungen déi beienee gemaach ginn ze limitéieren).\nGeschate Fortschrëtt vun der aktueller Aktualiséierung:", + "smw_smwadmin_datarefreshbutton": "Aktualiséiere vun den Date plangen", + "smw_smwadmin_datarefreshstop": "Dësn Update stoppen", + "smw_smwadmin_datarefreshstopconfirm": "Jo, ech si {{GENDER:$1|sécher}}.", + "smw-admin-support": "Ënnerstëtzung kréien", + "smw-admin-supportdocu": "Verschidde Quelle kënnen Iech bei Problemer hëllefen:", + "smw-admin-installfile": "Wann Dir Problemer bei der Installatioun hutt, da fänkt un andeem Dir d'Direktiven am INSTALL Fichier an d'a href=\"https://www.semantic-mediawiki.org/wiki/Help:Installation\">Installatiouns-Säit nokuckt.", + "smw-admin-smwhomepage": "Déi komplett Benotzerdokumentatioun vu Semantic MediaWiki fannt Dir op semantic-mediawiki.org.", + "smw-admin-bugsreport": "Feeler kënnen op dem 'Issue tracker', op Feeler mellen fannt Dir Informatioune wéi dir dat effikass maache kënnt.", + "smw-admin-questions": "Wann Dir nach Froen oder Propositiounen relativ zu Semantic MediaWiki hutt, da bedeelegt Iech un der Diskussioun op der Semantic MediaWiki Benotzer-Mailinglëscht oder am Chatroom.", + "smw-admin-other-functions": "Aner Funnktiounen", + "smw-admin-statistics-extra": "Zousätzlech Statistiken", + "smw-admin-statistics": "Statistiken", + "smw-admin-supplementary-section-title": "Zousätzlech Funktiounen", + "smw-admin-supplementary-section-subtitle": "Ënnerstëtzt Basis-Funktiounen", + "smw-admin-supplementary-section-intro": "Verschidde Funktiounen déi an dësem Abschnitt opgezielt gi sinn eventuell limitéiert an dofir an dëser Wiki net disponibel.", + "smw-admin-supplementary-settings-title": "Astellungen a Konfiguratioun", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Operationell Statistiken", + "smw-admin-supplementary-operational-statistics-intro": "$1 weist eng erweidert Sammlung vu Statistiken", + "smw-admin-supplementary-operational-statistics-cache-title": "Cache-Statistiken", + "smw-admin-supplementary-operational-table-statistics-title": "Tabelle-Statistiken", + "smw-admin-supplementary-operational-table-statistics-short-title": "Tabelle-Statistiken", + "smw-admin-supplementary-elastic-version-info": "Versioun", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-functions": "Ënnerstëtzt Funktiounen", + "smw-admin-supplementary-elastic-settings-title": "Astellungen (indexen)", + "smw-admin-supplementary-elastic-mappings-summary": "Resumé", + "smw-admin-supplementary-elastic-nodes-title": "Kniet", + "smw-admin-supplementary-elastic-indices-title": "Hiweiser", + "smw-admin-supplementary-elastic-statistics-title": "Statistiken", + "smw-admin-supplementary-elastic-status-refresh-interval": "Aktualisatiounsintervall: $1", + "smw-admin-supplementary-elastic-replication-function-title": "Replikatioun", + "smw-admin-supplementary-elastic-replication-files": "Fichieren", + "smw-admin-supplementary-elastic-replication-pages": "Säiten", + "smw-admin-supplementary-elastic-config": "Konfiguratiounen", + "smw_adminlinks_datastructure": "Datestruktur", + "smw_adminlinks_displayingdata": "Donnéeë weisen", + "smw_adminlinks_inlinequerieshelp": "Hëllef fir intern Ufroen", + "smw-property-indicator-type-info": "{{PLURAL:$1|Benotzer|System}} definéiert Eegenschaft", + "smw-createproperty-isproperty": "Et ass eng Eegenschaft vum Typ $1.", + "smw-paramdesc-category-template": "Eng Schabloun fir d'Objeten ze formatéieren", + "smw-paramdesc-category-userparam": "E Parameter deen der Schabloun iwwergi gëtt", + "smw-info-par-message": "Message fir ze weisen.", + "smw-info-par-icon": "Symbol fir entweder \"Info\" oder \"Warnung\" ze weisen.", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Allgemeng Optiounen", + "prefs-extended-search-options": "Erweidert Sich", + "prefs-ask-options": "Semantesch sichen", + "smw-prefs-general-options-disable-editpage-info": "Den Aféierungstext op der Ännerungssäit ausschalten", + "smw-ui-tooltip-title-property": "Eegenschaft", + "smw-ui-tooltip-title-quantity": "Ëmwandlung vun der Eenheet", + "smw-ui-tooltip-title-info": "Informatioun", + "smw-ui-tooltip-title-service": "Service-Linken", + "smw-ui-tooltip-title-warning": "Warnung", + "smw-ui-tooltip-title-error": "Feeler", + "smw-ui-tooltip-title-parameter": "Parameter", + "smw-ui-tooltip-title-event": "Evenement", + "smw-ui-tooltip-title-note": "Notiz", + "smw-ui-tooltip-title-legend": "Erklärung", + "smw-ui-tooltip-title-reference": "Referenz", + "smw-concept-cache-text": "D'Konzept huet am Ganzen {{PLURAL:$1|eng Säit|$1 Säiten}} a gouf fir d'lescht den $2 ëm $3 aktualiséiert.", + "smw_concept_header": "Säite vum Konzept \"$1\"", + "smw_conceptarticlecount": "Déi $1 {{PLURAL:$1|Säit|Säite}} ginn hei drënner gewisen.", + "restriction-level-smw-pageedit": "gespaart (nëmme berechtegt Benotzer)", + "group-smwadministrator": "Administrateuren (Semantic MediaWiki)", + "grouppage-smwadministrator": "{{ns:project}}:Administrateuren (Semantic MediaWiki)", + "grouppage-smweditor": "{{ns:project}}:Auteuren (Semantic MediaWiki)", + "smw-property-predefined-default": "„$1“ ass eng virdefinéiert Eegenschaft vum Typ $2.", + "smw-sp-properties-header-label": "Lëscht vun Eegenschaften", + "smw-sp-admin-settings-button": "Lëscht vun den Astellunge generéieren", + "smw-admin-idlookup-title": "Nosichen", + "smw-admin-idlookup-input": "Sichen:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Iwwersiicht", + "smw-admin-tab-maintenance": "Maintenance", + "smw-admin-tab-alerts": "Warnungen", + "smw-admin-alerts-tab-maintenancealerts": "Maintenance-Warnungen", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Ongülteg Entitéiten", + "smw-admin-deprecation-notice-section": "Semantic MediaWiki", + "smw-admin-configutation-tab-settings": "Astellungen", + "smw-admin-configutation-tab-namespaces": "Nummraim", + "smw-admin-maintenance-tab-tasks": "Aufgaben", + "smw-admin-maintenance-no-description": "Keng Beschreiwung.", + "smw-livepreview-loading": "Lueden...", + "smw-sp-searchbyproperty-resultlist-header": "Lëscht vun de Resultater", + "smw-editpage-annotation-disabled": "Dës Säit ass net fir semantesch Notifikatiounen am Text konfiguréiert duerch d'Limitatiounen an dësem Nummraum. Detailer wéi dat fir den Nummraum ageschalt ka gi fannt Dir op der Hëllefssäit fir d'[https://www.semantic-mediawiki.org/wiki/Help:Configuration Astellungen].", + "smw-search-syntax": "Syntax", + "smw-search-profile": "Erweidert", + "smw-search-profile-sort-title": "Titel", + "smw-search-profile-extended-help-query": "Link op:$1", + "smw-search-profile-extended-help-query-link": "(fir méi Detailer $1).", + "smw-search-profile-extended-section-sort": "Sortéieren no", + "smw-search-profile-extended-section-namespace": "Nummraum", + "smw-search-profile-extended-section-query": "Requête", + "smw-search-show": "Weisen", + "smw-search-hide": "Verstoppen", + "log-name-smw": "Semantic-MediaWiki-Logbuch", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|$1-Import]]", + "smw-datavalue-invalid-number": "\"$1\" kann net als Zuel interpretéiert ginn.", + "smw-types-list": "Lëscht vun Datentypen", + "smw-types-default": "\"$1\" ass en agebauten Datentyp.", + "smw-types-help": "Méi Informatiounen a Beispiller fannt Dir op dëser [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 Hëllef-Säit].", + "smw-type-tab-properties": "Eegenschaften", + "smw-type-tab-types": "Typpen", + "smw-type-tab-type-ids": "Typ-IDen", + "smw-type-tab-errors": "Feeler", + "smw-type-primitive": "Einfach", + "smw-type-contextual": "Kontextuel", + "smw-type-compound": "Zesummegesat", + "smw-type-no-group": "Net klassifizéiert", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|Sekonn|Sekonnen}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|Sekonn|Sekonnen}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|Sekonn|Sekonnen}}", + "smw-datavalue-time-invalid-date-components-common": "\"$1\" huet eng Informatioun déi net kann interpretéiert ginn.", + "smw-datavalue-time-invalid-date-components-empty": "\"$1\" huet e puer eidel Komponenten", + "smw-datavalue-time-invalid-date-components-three": "\"$1\" huet méi wéi dräi Komponenten, déi fir d'Interpretatioun vun engem Datum obligatoresch sinn.", + "smw-datavalue-time-invalid-ampm": "\"$1\" huet \"$2\" als Stonnenelement, dat ass fir eng 12-Stonne-Konventioun awer net valabel.", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\" ass keng valabel URL", + "smw-parser-invalid-json-format": "Den JSON-Parser huet mat engem \"$1\" geäntwert.", + "smw-clipboard-copy-link": "Link an den Tëschespäicher kopéieren", + "smw-data-lookup": "Donnéeën ofruffen...", + "smw-data-lookup-with-wait": "D'Ufro gëtt verschafft an et kann een Ament daueren.", + "smw-no-data-available": "Keng Donnéeën disponibel.", + "smw-edit-protection-enabled": "Gespaart fir z'änneren (Semantic MediaWiki)", + "smw-format-datatable-emptytable": "An der Tabell si keng Donnéeën disponibel", + "smw-format-datatable-lengthmenu": "Weis _MENU_ Elementer", + "smw-format-datatable-loadingrecords": "Lueden...", + "smw-format-datatable-processing": "Verschaffen...", + "smw-format-datatable-search": "Sichen:", + "smw-format-datatable-zerorecords": "Et gouf keen esou en Enregistrement fonnt", + "smw-format-datatable-first": "Éischt", + "smw-format-datatable-last": "Lescht", + "smw-format-datatable-next": "Nächst", + "smw-format-datatable-previous": "Vireg", + "smw-format-datatable-toolbar-export": "Exportéieren", + "smw-format-list-other-fields-open": "(", + "smw-api-invalid-parameters": "Ongülteg Parameteren, „$1“", + "smw-property-reserved-category": "Kategorie", + "smw-category": "Kategorie", + "smw-filter": "Filter", + "smw-section-expand": "Den Abschnitt opklappen", + "smw-section-collapse": "Den Abschnitt zesummeklappen", + "smw-ask-format-help-link": "[https://www.semantic-mediawiki.org/wiki/Help:$1_format $1] Format", + "smw-help": "Hëllef", + "smw-property-predefined-label-skey": "Sortéierschlëssel", + "smw-processing": "Verschaffen...", + "smw-loading": "Lueden...", + "smw-preparing": "Virbereeden...", + "smw-expand": "Opklappen", + "smw-collapse": "Zesummeklappen", + "smw-copy": "Kopéieren", + "smw-jsonview-search-label": "Sichen:", + "smw-types-title": "Typ: $1", + "smw-schema-error-title": "Validatioun {{PLURAL:$1|Feeler}}", + "smw-schema-error-miscellaneous": "Onbestëmmte Feeler ($1)", + "smw-schema-error-json": "JSON-Feeler: \"$1\"", + "smw-schema-validation-schema-title": "JSON Schema", + "smw-schema-summary-title": "Resumé", + "smw-schema-title": "Schema", + "smw-schema-type": "Typ vu Schema", + "smw-schema-type-description": "Typbeschreiwung", + "smw-schema-description": "Scheemabeschreiwung", + "smw-schema-tag": "{{PLURAL:$1|Markéierung|Markéierungen}}", + "smw-ask-title-keyword-type": "Schlësselwuert sichen", + "smw-parameter-missing": "De Parameter \"$1\" feelt.", + "smw-property-tab-usage": "Benotzung", + "smw-property-tab-redirects": "Synonymmen", + "smw-property-tab-subproperties": "Ënnereegenschaften", + "smw-property-tab-specification": "... méi", + "smw-concept-tab-list": "Lëscht", + "smw-concept-tab-errors": "Feeler", + "smw-ask-tab-result": "Resultat", + "smw-ask-tab-code": "Code", + "smw-pendingtasks-tab-setup": "Astellung", + "smw-pendingtasks-setup-tasks": "Aufgaben", + "smw-report": "Rapport", + "smw-legend": "Erklärung", + "smw-entity-examiner-deferred-elastic-replication": "Elastesch", + "smw-entity-examiner-deferred-constraint-error": "Limitatioun", + "smw-entity-examiner-associated-revision-mismatch": "Versioun", + "smw-entity-examiner-deferred-fake": "Fälschung", + "smw-indicator-revision-mismatch": "Revisioun", + "smw-facetedsearch-intro-tab-search": "Sichen", + "smw-facetedsearch-input-filter-placeholder": "Filteren...", + "smw-facetedsearch-no-filters": "Keng Filteren.", + "smw-facetedsearch-clear-filters": "{{PLURAL:$1|Filter|Filteren}} zrécksetzen", + "smw-search-placeholder": "Sichen...", + "smw-listingcontinuesabbrev": "(Fortsetzung)", + "smw-showingresults": "Hei gesitt der {{PLURAL:$1| '''1''' Resultat|'''$1''' Resultater}}, ugefaange mat #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/lez.json b/mediawiki/extensions/SemanticMediaWiki/i18n/lez.json new file mode 100644 index 0000000..6cb98e4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/lez.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Migraghvi", + "Soul Train" + ] + }, + "smw-categories": "Категорияр", + "browse": "Чинрин обзор", + "smw-livepreview-loading": "Ппарзава...", + "smw-listingcontinuesabbrev": "(кьатӀ)" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/li.json b/mediawiki/extensions/SemanticMediaWiki/i18n/li.json new file mode 100644 index 0000000..6f8e01d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/li.json @@ -0,0 +1,50 @@ +{ + "@metadata": { + "authors": [ + "Ooswesthoesbes" + ] + }, + "smw-desc": "Maak diene wiki toegenkeliker – veur mesjiender ''en'' luuj ([https://www.semantic-mediawiki.org/wiki/Help:User_manual online documentatie])", + "smw-semantics-not-enabled": "Semantic MediaWiki-functionaliteit is neet aangezat veur deze wiki.", + "smw_viewasrdf": "RDF-feed", + "smw_finallistconjunct": " en", + "smw-factbox-head": "... mier euver \"$1\"", + "smw-factbox-facts": "Feite", + "smw-factbox-facts-help": "Tuint oetspraoke en feite die zint aangemaak door 'ne gebroeker.", + "smw-factbox-facts-derived": "Aafgelèdde feite", + "smw-factbox-facts-derived-help": "Tuint feite die aafkómme van regele of mit de hölp van anger technieke van raeje", + "smw_isspecprop": "Dit is 'ne specialen eigesjap in deze wiki", + "smw-concept-cache-header": "Cachegebroek", + "smw-concept-cache-count": "De [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count concepcache] bevat {{PLURAL:$1|'''ein''' element|'''$1''' elemente}} ($2).", + "smw-concept-no-cache": "Geine cache besjikbaar.", + "smw_concept_description": "Besjrieving van concep \"$1\"", + "smw_no_concept_namespace": "Concepte kónne allein waere gedefinieerd op pagina's in de naamruumde Concep.", + "smw_multiple_concepts": "Eder conceppagina kan mer ein concepdiffenisie bevatte.", + "smw_concept_cache_miss": "'t Concep \"$1\" kan op 't moment neet waere gebroek ómdet de wiki-instèllinge vereisje det 't offline weurt beraekend.\nEs 't perbleem euver ènnigen tied zich nag veurduit, vraog den de sitebehieërder dit concep besjikbaar te make.", + "smw_noinvannot": "Waerd kónne neet waere toegekènd aan ómgedrejde eigesjappe.", + "version-semantic": "Semantische oetbreijinge", + "smw_baduri": "URI's van 't formaot \"$1\" zint neet toegestange.", + "smw_printername_count": "Tèl rizzeltaote", + "smw_printername_csv": "Veur oet nao CSV", + "smw_printername_dsv": "Veur oet nao DSV", + "smw_printername_debug": "Verhelp wachrie (veur experts)", + "smw_printername_embedded": "Sloet pagina-inhawd in", + "smw_printername_json": "Veur oet nao JSON", + "smw_printername_list": "Lies", + "smw_printername_plainlist": "Sumpel lies", + "smw_printername_ol": "Opsomming", + "smw_printername_ul": "Specificering", + "smw_printername_table": "Tabel", + "smw_printername_broadtable": "Brei tabel", + "smw_printername_template": "Sjabloon", + "smw_printername_templatefile": "Sjabloonbestandj", + "smw_printername_rdf": "Veur oet nao RDF", + "smw_printername_category": "Categorie", + "validator-type-class-SMWParamSource": "teks", + "smw-categories": "Categorieë", + "smw_purge": "Vernuuj", + "browse": "Blajer door de wiki", + "smw-livepreview-loading": "Laje…", + "smw-listingcontinuesabbrev": "wiejer", + "smw-showingresults": "Hieonger staon de $1 {{PLURAL:$1|resultaat|resultaat}}, vanaaf #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/lij.json b/mediawiki/extensions/SemanticMediaWiki/i18n/lij.json new file mode 100644 index 0000000..686e01e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/lij.json @@ -0,0 +1,14 @@ +{ + "@metadata": { + "authors": [ + "Giromin Cangiaxo", + "N. Longo", + "ZeneizeForesto" + ] + }, + "smw-categories": "Categorîe", + "browse": "Esplóra o scîto", + "smw-livepreview-loading": "Camallando…", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "Chì appreuvo se mostra a-o mascimo {{PLURAL:$1|'''1''' risultou|'''$1''' risultæ}} a partî da-o nummero '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/lki.json b/mediawiki/extensions/SemanticMediaWiki/i18n/lki.json new file mode 100644 index 0000000..fa7938f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/lki.json @@ -0,0 +1,18 @@ +{ + "@metadata": { + "authors": [ + "Arash71", + "Hosseinblue", + "Lakzon" + ] + }, + "smw_printername_category": "ڕِزگ", + "smw-paramdesc-feeddescription": "متن به عنوان توصیف مرورگر مورد استفاده قرار می‌گیرد", + "smw-categories": "رده‌ ل", + "smw-special-concept-docu": "[https://www.semantic-mediawiki.org/wiki/Help:Concepts concept] می‌تواند به عنوان \"دسته پویا\" مشاهده شوند، یعنی به عنوان مجموعه‌ای از صفحاتی که به طور دستی ایجاد نمی‌شوند، اما آنهایی که توسط مدیاویکی معنایی از یک توصیف داده شده پرس‌وجو، محاسبه می‌شوند.", + "smw-ask-format-selection-help": "برای شرح مفصل، لطفاً صفحه راهنما $1 را مشاهده کنید.", + "browse": "مرور ویکی", + "smw-ui-tooltip-title-note": "ویرنۆیسة-یادداشت", + "smw-listingcontinuesabbrev": "(ادامه)", + "smw-showingresults": "نمایش حداکثر {{PLURAL:$1|'''۱''' نتیجه|'''$1''' نتیجه}} در پایین، آغاز از شماره '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/local/maintenance.i18n.json b/mediawiki/extensions/SemanticMediaWiki/i18n/local/maintenance.i18n.json new file mode 100644 index 0000000..6898b61 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/local/maintenance.i18n.json @@ -0,0 +1,32 @@ +{ + "smw-maintenance-requires-enabled-semantic-mediawiki": { + "en": "You need to have Semantic MediaWiki enabled in order to run the maintenance script!" + }, + "smw-maintenance-done": { + "en": "done." + }, + "smw-maintenance-populatehashfield-description": { + "en": "Populate the 'smw_hash' field for all entities that have a missing entry." + }, + "smw-maintenance-populatehashfield-table-update": { + "en": "Table update" + }, + "smw-maintenance-populatehashfield-checking-hash-field": { + "en": "Checking the 'smw_hash' field integrity" + }, + "smw-maintenance-runlocalmessagecopy-about": { + "en": "The script allows to copy messages from a local `$1` file to/from the i18n translation system." + }, + "smw-maintenance-runlocalmessagecopy-usage-notice": { + "en": "This script is not expected to be used by any user or administrator and is only provided for convenience to the Semantic MediaWiki project." + }, + "smw-maintenance-updating-hash-field": { + "en": "updating `$1` status" + }, + "smw-maintenance-populated-all-rows": { + "en": "all rows populated" + }, + "smw-maintenance-missing-rows": { + "en": "missing $1 rows" + } +} \ No newline at end of file diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/local/setupcheck.i18n.json b/mediawiki/extensions/SemanticMediaWiki/i18n/local/setupcheck.i18n.json new file mode 100644 index 0000000..5bf136a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/local/setupcheck.i18n.json @@ -0,0 +1,123 @@ +{ + "$messages" : "Contains messages and keys used within this JSON to avoid duplicate text representations", + "smw-setupcheck-dependency-error": { + "en": "Dependency error" + }, + "smw-setupcheck-registry-error": { + "en": "Registry error" + }, + "smw-setupcheck-error": { + "en": "Error" + }, + "smw-setupcheck-maintenance": { + "en": "Maintenance" + }, + "smw-setupcheck-release": { + "en": "Version" + }, + "smw-setupcheck-code": { + "en": "Code" + }, + "smw-setupcheck-progress":{ + "en": "Progress" + }, + "smw-setupcheck-db-requirement":{ + "en": "Requirement" + }, + "smw-setupcheck-db-title":{ + "en": "Database type" + }, + "smw-setupcheck-db-current-title":{ + "en": "Current version" + }, + "smw-setupcheck-db-minimum-title":{ + "en": "Minimum version" + }, + "smw-setupcheck-stack-trace":{ + "en": "Stack trace" + }, + "smw-setupcheck-how-to-fix-error": { + "en": "How can I fix this error?" + }, + "smw-setupcheck-why-this-page": { + "en": "Why do I see this page?" + }, + "smw-setupcheck-temporarily-disable": { + "en": "To temporarily disable this error output and return to a working MediaWiki (without Semantic MediaWiki), remove the enableSemantics from your LocalSettings.php." + }, + "smw-setupcheck-requires-db-minimum-version": { + "en": "During the installation, the setup check found that the minimum requirement for the database environment defined by Semantic MediaWiki didn't match with the version available and is the reason why the installation of Semantic MediaWiki was aborted." + }, + "smw-setupcheck-dependency-requires-semanticmediawiki":{ + "en": "The reported extension requires Semantic MediaWiki to be enabled which is currently not the case thus adding enableSemantics to LocalSettings.php should resolve the dependency error." + }, + "smw-setupcheck-dependency-multiple-requires-semanticmediawiki":{ + "en": "The reported extensions require Semantic MediaWiki to be enabled which is currently not the case thus adding enableSemantics to LocalSettings.php should resolve the dependency error." + }, + "smw-setupcheck-dependency-error-multiple": { + "en": "It was reported that multiple extensions have failed their dependencies including:" + }, + "smw-setupcheck-enablesemantics-assistance": { + "en": "Information about enableSemantics is available on the corresponding help page, you may also ask the project support for assistance." + }, + "smw-setupcheck-remove-wfloadextension": { + "en": "Removing wfLoadExtension( 'SemanticMediaWiki' ) from LocalSettings.php is sufficient to avoid any conflicts with enableSemantics and ensures that required variables and parameters are setup correctly." + }, + "smw-setupcheck-administrator-assistance":{ + "en": "An administrator (or any person with administrator rights) has to run either MediaWiki's update.php or Semantic MediaWiki's setupStore.php maintenance script." + }, + "smw-setupcheck-administrator-contact-for-information":{ + "en": "Please contact your local administrator to get more information about the progress." + }, + "smw-setupcheck-install-assistance":{ + "en": "You may also consult the following pages for further assistance:" + }, + "smw-setupcheck-requires-software-update": { + "en": "The issue can only be resolved by updating the software (or environment) to match the requirement." + }, + "smw-setupcheck-invalid-upgrade-key": { + "en": "Semantic MediaWiki was installed and enabled but is missing an appropriate upgrade key." + }, + "smw-setupcheck-reason-for-invalid-upgrade-key": { + "en": "Semantic MediaWiki's internal database structure has changed and requires some adjustments to be fully functional. There can be several reasons including:
    • Changes to the list of fixed properties and may require additional table(s)
    • Changes to the overall table structure or indices requirements
    • Changes to the selected storage or query engine
    • Changes to the required entity collation
    " + }, + "smw-setupcheck-registry-enablesemantics-conflict": { + "en": "LocalSettings.php contains both enableSemantics and wfLoadExtension( 'SemanticMediaWiki' ) forcing the ExtensionRegistry to abort the registration process." + }, + "smw-setupcheck-registry-invalid-wfloadextension-use" : { + "en": "wfLoadExtension( 'SemanticMediaWiki' ) was used to enable Semantic MediaWiki which conflicts with enableSemantics." + }, + "smw-setupcheck-stack-trace-abort-condition": { + "en": "The following stack trace may indicate which program (or extension) caused an abort condition." + }, + "smw-setupcheck-registry-invalid-access":{ + "en": "Some program (or extension) tried to access function(s) of Semantic MediaWiki without being correctly enabled." + }, + "smw-setupcheck-registry-requires-enablesemantics": { + "en": "To use Semantic MediaWiki or functions of it, it is necessary to add enableSemantics to your LocalSettings.php which will ensure required variables and parameters are setup before programs can continue to work and make use of it." + }, + "smw-setupcheck-config-profile": { + "en": "Please check the spelling and location of available default profiles used as part of the enableSemantics declaration in your LocalSettings.php." + }, + "smw-setupcheck-in-maintenance-mode": { + "en": "The system is currently undergoing an upgrade of the Semantic MediaWiki extension together with its data repository and we would like to ask you for your patience and allow the maintenance to continue before the wiki can be made accessible again." + }, + "smw-setupcheck-reason-for-in-maintenance": { + "en": "The extension tries to minimize the impact and downtime by deferring most of its maintenance tasks to occur after the update.php run but some database related changes are required to finish first to avoid data inconsistencies, it may include:
    • Changing table structures such as adding new or modify existing fields
    • Changing or adding table indices
    • Running optimization (table optimization etc.) or import tasks
    " + }, + "smw-setupcheck-estimation-of-completion": { + "en": "An estimation as to when the upgrade is going to be finished is difficult to predict as it depends on the size of the data repository and the available hardware and can take a moment for larger wikis to complete." + }, + "smw-setupcheck-progress-key-create-tables":{ + "en": "Creating (or updating) tables and indices ..." + }, + "smw-setupcheck-progress-key-post-creation": { + "en": "Running post creation tasks ..." + }, + "smw-setupcheck-progress-key-table-optimization": { + "en": "Running table optimizations ..." + }, + "smw-setupcheck-progress-key-supplement-jobs": { + "en": "Adding supplement jobs ..." + } +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/lrc.json b/mediawiki/extensions/SemanticMediaWiki/i18n/lrc.json new file mode 100644 index 0000000..1cbdb66 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/lrc.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "Beyronvan", + "Lorestani", + "Mogoeilor" + ] + }, + "smw-categories": "دٱسٱيا", + "browse": "دوئارتٱ نری سی ڤیکی", + "smw-listingcontinuesabbrev": "دۏمبالٱ", + "smw-showingresults": "نمایش بؽشترونٱ {{PLURAL:$1|'''۱''' نتیجٱ|'''$1''' نتیجٱ}} د هار، شرۊ د شمارٱ'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/lt.json b/mediawiki/extensions/SemanticMediaWiki/i18n/lt.json new file mode 100644 index 0000000..b60f61a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/lt.json @@ -0,0 +1,208 @@ +{ + "@metadata": { + "authors": [ + "Eitvys200", + "Hugo.arg", + "Manvydasz", + "McDutchie", + "Naktis", + "Nemo bis", + "Nokeoo", + "Vpovilaitis", + "Zygimantus" + ] + }, + "smw-desc": "Padaryti Jūsų wiki labiau prieinamą - mašinoms ''ir'' žmonėms ([https://www.semantic-mediawiki.org/wiki/Help:User_manual online documentation])", + "smw-error": "Klaida", + "smw-upgrade-release": "Išleistas", + "smw-upgrade-progress": "Progresas", + "smw-upgrade-progress-table-optimization": "Vykdomos lentelės optimizacijos ...", + "smw-upgrade-error-why-title": "Kodėl matau šį puslapį?", + "smw-upgrade-error-how-title": "Kaip ištaisyti šią klaidą?", + "smw-extensionload-error-why-title": "Kodėl matau šį puslapį?", + "smw-extensionload-error-how-title": "Kaip ištaisyti šią klaidą?", + "smw-upgrade-maintenance-why-title": "Kodėl matau šį puslapį?", + "smw_viewasrdf": "RDF srautas", + "smw_finallistconjunct": ", ir", + "smw-factbox-head": "... daugiau apie \"$1\"", + "smw-factbox-facts": "Faktai", + "smw_isspecprop": "Ši savybė yra speciali šioje wiki.", + "smw_concept_description": "Sąvokos \"$1\" aprašymas", + "smw_no_concept_namespace": "Sąvokos gali būti apibrėžtos tik Concept: vardų srities puslapiuose.", + "smw_multiple_concepts": "Kiekviename sąvokos aprašymo puslapyje gali turėti tik vieną sąvokos apibrėžimą.", + "smw_concept_cache_miss": "Sąvoka \"$1\" negali būti naudojamas šiuo metu, nes wiki konfigūracija reikalauja ją apskaičiuoti off-line.\nJei problema neišnyksta po tam tikro laiko, kreipkitės į svetainės administratorių, kad šią sąvoką padarytų prieinamą.", + "smw_noinvannot": "Reikšmės negali būti priskiriamos atvirkštinei savybei.", + "version-semantic": "Semantiniai praplėtimai", + "smw_baduri": "URI formoje \"$1\" yra draudžiami.", + "smw_printername_count": "Paskaičiuoti rezultatus", + "smw_printername_csv": "CSV eksportavimas", + "smw_printername_dsv": "DSV eksportavimas", + "smw_printername_debug": "Derinti užklausą (ekspertams)", + "smw_printername_embedded": "Įstatyti puslapio turinį", + "smw_printername_json": "JSON eksportas", + "smw_printername_list": "Sąrašas", + "smw_printername_ol": "Išvardinimas", + "smw_printername_ul": "Sudarymas iš elementų", + "smw_printername_table": "Lentelė", + "smw_printername_broadtable": "Plati lentelė", + "smw_printername_template": "Šablonas", + "smw_printername_templatefile": "Šablono failas", + "smw_printername_rdf": "RDF eksportavimas", + "smw_printername_category": "Kategorija", + "validator-type-class-SMWParamSource": "tekstas", + "smw-paramdesc-limit": "Maksimalus grąžinamas rezultatų skaičius", + "smw-paramdesc-headers": "Rodyti antraštes/savybių pavadinimus", + "smw-paramdesc-mainlabel": "Etiketėje pateikti pagrindinio puslapio pavadinimą", + "smw-paramdesc-link": "Rodyti reikšmes kaip nuorodas", + "smw-paramdesc-intro": "Tekstas būtų rodomas prieš užklausos rezultatus, jei yra kokių nors rezultatų", + "smw-paramdesc-outro": "Tekstas būtų rodomas po užklausos rezultatų, jei yra kokių nors rezultatų", + "smw-paramdesc-default": "Tekstas būtų rodomas, jei nėra užklausos rezultatų", + "smw-paramdesc-sep": "Skirtukas tarp rezultatų", + "smw-paramdesc-template": "Šablono, su kuriuo būtų galima parodyti išvedimą, pavadinimas", + "smw-paramdesc-columns": "Stulpelių skaičius, kuriuose bus rodomas rezultatas", + "smw-paramdesc-userparam": "Reikšmė patenka į kiekvieną šabloną iškvietimą, jei šablonas yra naudojamas", + "smw-paramdesc-introtemplate": "Šablono pavadinimas, kuris būtų rodomas prieš užklausos rezultatus, jei yra kokių nors rezultatų", + "smw-paramdesc-outrotemplate": "Šablono pavadinimas, kuris būtų rodomas po užklausos rezultatų, jei yra kokių nors rezultatų", + "smw-paramdesc-embedformat": "HTML žymė naudojama apibrėžti antraštes", + "smw-paramdesc-embedonly": "Nerodyti antraščių", + "smw-paramdesc-dsv-filename": "DSV failo pavadinimas", + "smw-paramdesc-filename": "Išvesties failo pavadinimas", + "smw-paramdesc-searchlabel": "Tekstas tęsti paieškai", + "smw-paramdesc-export": "Eksportavimo nustatymas", + "smw-printername-feed": "RSS ir Atom srautas", + "smw-paramdesc-feedtype": "Srauto tipas", + "smw-label-feed-description": "$1 $2 srautas", + "smw_iq_disabled": "Semantinės užklausos yra išjungtos šioje wiki.", + "smw_iq_moreresults": "... tolesni rezultatai", + "smw_parseerror": "Nurodyta reikšmė yra nesuprantama.", + "smw_notitle": "\"$1\" negali būti naudojamas kaip puslapio pavadinimas šiame wiki.", + "smw_wrong_namespace": "Čia leidžiami tik puslapiai, priklausantys vardų sričiai \"$1\".", + "smw_manytypes": "Savybei apibrėžtas daugiau negu vienas tipas.", + "smw_emptystring": "Tuščios eilutės yra nepriimtinos.", + "smw_notinenum": "\"$1\" nėra šios savybės galimų reikšmių sąraše ($2).", + "smw_noboolean": "\"$1\" nėra pripažįstama kaip loginė (true / false) vertė.", + "smw_true_words": "tiesa,t,taip,yes,y", + "smw_false_words": "klaida,k,ne,n,false,f,no", + "smw_nofloat": "\"$1\" nėra skaičius.", + "smw_infinite": "Tokie dideli skaičiai, kaip \"$1\" yra nepalaikomi.", + "smw_novalues": "Nenurodyta reikšmė.", + "smw_nodatetime": "Data \"$1\" buvo neatpažinta.", + "smw_toomanyclosing": "Atrodo, kad yra per daug elementų \"$1\" užklausoje.", + "smw_noclosingbrackets": "Kažkuris panaudojimas \"[[\" jūsų užklausoje nebuvo uždaryta atitikimo \"]]\".", + "smw_misplacedsymbol": "Simbolis \"$1\" buvo panaudotas toje vietoje, kurioje jis nėra naudojamas.", + "smw_unexpectedpart": "Užklausos dalis \"$1\" nebuvo suprasta.\nRezultatas gali būti ne tas, kurio tikėtasi.", + "smw_emptysubquery": "Kai kurios užklausos dalys turi blogas sąlygas.", + "smw_propvalueproblem": "Savybės reikšmę „$1“ buvo nesuprasta.", + "smw_attribute_header": "Puslapiai naudojantys savybę „$1“", + "smw-propertylist-redirect-header": "Sinonimai", + "exportrdf": "Eksportuoti puslapius į RDF", + "smw_exportrdf_submit": "Eksportuoti", + "properties": "Savybės", + "smw-categories": "Kategorijos", + "concepts": "Koncepcijos", + "smw-special-concept-header": "Koncepcijų sąrašas", + "unusedproperties": "Nenaudojamos savybės", + "smw-unusedproperty-template": "$1, $2 tipo", + "smw_purge": "Atnaujinti", + "types": "Tipai", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Savybė|Savybės}} (viso)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Užklausa|Užklausos}}", + "smw-statistics-query-size": "Užklausos dydis", + "smw-statistics-delete-count": "{{PLURAL:$1|Pasenęs objektas|Pasenę objektai}} (pažymėti trynimui)", + "smw_ask_sortby": "Rūšiuoti pagal stulpelį (neprivaloma)", + "smw_ask_ascorder": "Didėjimo tvarka", + "smw_ask_descorder": "Mažėjimo tvarka", + "smw_ask_submit": "Rasti rezultatus", + "smw_ask_editquery": "Redaguoti užklausą", + "smw_add_sortcondition": "[Pridėti rūšiavimo sąlygą]", + "smw_ask_hidequery": "Slėpti užklausą", + "smw_ask_help": "Užklausų pagalba", + "smw_ask_queryhead": "Sąlyga", + "smw_ask_printhead": "Spausdinimo pasirinkimas", + "smw_ask_printdesc": "(pridėkite vieną savybės pavadinimą eilutėje)", + "smw_ask_format_as": "Formatuoti kaip:", + "smw_ask_defaultformat": "numatomas", + "smw_ask_otheroptions": "Kiti nustatymai", + "smw_ask_show_embed": "Rodyti įterpimo kodą", + "smw_ask_hide_embed": "Slėpti įterpimo kodą", + "smw-ask-delete": "Pašalinti", + "smw-ask-sorting": "Rūšiavimas", + "smw-ask-search": "Paieška", + "searchbyproperty": "Ieškoti pagal savybę", + "processingerrorlist": "Klaidų sąrašas apdorojamas", + "smw_sbv_property": "Savybė:", + "smw_sbv_value": "Reikšmė:", + "smw_sbv_submit": "Rasti rezultatus", + "browse": "Naršyti viki", + "smw_browselink": "Naršyti savybes", + "smw_browse_go": "Eiti", + "smw_browse_show_incoming": "rodyti savybes, kurios čia nukreipia", + "smw_browse_hide_incoming": "slėpti savybes, kurios čia nukreipia", + "smw_browse_no_outgoing": "Šis puslapis neturi savybių.", + "smw_browse_no_incoming": "Nėra savybių, kurios nukreipia į šį puslapį.", + "smw_inverse_label_default": "$1 iš", + "smw_pp_from": "Iš puslapio:", + "smw_pp_type": "Savybė:", + "smw_pp_submit": "Rasti rezultatus", + "smw-prev": "ankstesnis {{PLURAL:$1|$1}}", + "smw-next": "kitas {{PLURAL:$1|$1}}", + "smw_result_prev": "Ankstesnis", + "smw_result_next": "Paskesnis", + "smw_result_results": "Rezultatai", + "smw_result_noresults": "Nėra rezultatų.", + "smw-admin-permission-missing": "Prieiga prie šio puslapio buvo užblokuota dėl teisių nebuvimo, prašome peržiūrėti [https://www.semantic-mediawiki.org/wiki/Help:Permissions teisių] pagalbinį puslapį, kur rasite informaciją apie reikiamus nustatymus.", + "smw_smwadmin_return": "Grįžti į $1", + "smw_smwadmin_updatestopped": "Visi egzistuojantys atnaujinimo procesai buvo sustabdyti.", + "smw-admin-announce": "Paskelbti savo viki", + "smw-admin-deprecation-notice-title-notice": "Būsimi pakeitimai", + "smw-admin-deprecation-notice-title-replacement": "Pakeisti ar pervadinti nustatymai", + "smw-admin-deprecation-notice-title-replacement-explanation": "Nustatymai buvo pervadinta ar kitaip pakeisti, prašome atnaujinti jų pavadinimą ar formatą.", + "smw-admin-deprecation-notice-title-removal": "Pašalinti nustatymai", + "smw_smwadmin_datarefreshbutton": "Pradėti atnaujinti duomenis", + "smw_smwadmin_datarefreshstop": "Sustabdyti šį atnaujinimą", + "smw_smwadmin_datarefreshstopconfirm": "Taip, esu {{GENDER:$1|tikras|tikra}}.", + "smw-admin-support": "Gaunama parama", + "smw-admin-supplementary-duplookup-title": "Pasikartojantys įrašai", + "smw-list-count": "Šiame sąraše yra $1 {{PLURAL:$1|įrašas|įrašai}}.", + "smw_adminlinks_datastructure": "Duomenų struktūra", + "smw_adminlinks_displayingdata": "Duomenų rodinys", + "smw-property-indicator-type-info": "{{PLURAL: $1|Naudotojas|Sistema}}", + "smw-createproperty-isproperty": "Tai yra $1 tipo savybė.", + "smw-createproperty-allowedvals": "Šios savybės leidžiamos reikšmės yra:", + "smw-paramdesc-category-template": "Šablonas, kuris bus naudojamas formatuoti objektus", + "smw-info-par-message": "Žinutė rodymui.", + "smw-info-par-icon": "Piktograma rodymui, arba „info“ arba „warning“.", + "smw-ui-tooltip-title-property": "Savybė", + "smw-ui-tooltip-title-quantity": "Vienetų konvertavimas", + "smw-ui-tooltip-title-info": "Informacija", + "smw-ui-tooltip-title-service": "Paslaugų nuorodos", + "smw-ui-tooltip-title-warning": "Įspėjimas", + "smw-ui-tooltip-title-parameter": "Parametras", + "smw-ui-tooltip-title-event": "Įvykis", + "smw-ui-tooltip-title-note": "Pastaba", + "smw-ui-tooltip-title-legend": "Legenda", + "smw-ui-tooltip-title-reference": "Šaltinis", + "smw_unknowntype": "Savybei nustatytas nepalaikomas tipas", + "smw-sp-properties-header-label": "Savybių sąrašas", + "smw-sp-admin-settings-button": "Generuoti nustatymų sąrašą", + "smw-admin-objectid": "ID:", + "smw-livepreview-loading": "Įkeliama…", + "smw-sp-searchbyproperty-resultlist-header": "Rezultatų sąrašas", + "smw-types-list": "Duomenų tipų sąrašas", + "smw-datavalue-languagecode-invalid": "„$1“ nebuvo atpažintas kaip palaikomas kalbos kodas.", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|sekundė|sekundės}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|sekundė|sekundės|sekundžių}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|sekundė|sekundės}}", + "smw-datavalue-constraint-violation-single-value": "„[[Property:$1|$1]]“ ypatybė turi single_value apribojimą ir vertė „$2“ pažeidžia šį reikalavimą.", + "smw-datavalue-external-formatter-invalid-uri": "„$1“ yra negalimas URL.", + "smw-datavalue-parse-error": "Nurodyta reikšmė „$1“ nebuvo suprasta.", + "smw-clipboard-copy-link": "Kopijuoti nuorodą į iškarpinę", + "smw-data-lookup-with-wait": "Prašymas apdorojamas ir tai gali užtrukti.", + "smw-section-expand": "Išskleisti dalį", + "smw-section-collapse": "Suskleisti dalį", + "smw-help": "Pagalba", + "smw-es-replication-error-no-connection": "Replikacijos stebėjimas negali atlikti jokių patikrinimų, nes negali sukurti ryšio su Elasticsearch klusteriu.", + "smw-es-replication-error-suggestions-no-connection": "Siūloma kreiptis į „wiki“ administratorių ir pranešti apie „be ryšio“ problemą.", + "smw-listingcontinuesabbrev": "tęsti", + "smw-showingresults": "Žemiau rodoma iki '''$1''' {{PLURAL:$1|rezultato|rezultatų|rezultatų}} pradedant #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/luz.json b/mediawiki/extensions/SemanticMediaWiki/i18n/luz.json new file mode 100644 index 0000000..d82f7eb --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/luz.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "علی ساکی لرستانی" + ] + }, + "smw-categories": "دسه یل", + "browse": "مۉروٙر ڤیکی", + "smw-listingcontinuesabbrev": "دۉنبالە" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/lv.json b/mediawiki/extensions/SemanticMediaWiki/i18n/lv.json new file mode 100644 index 0000000..94951cf --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/lv.json @@ -0,0 +1,61 @@ +{ + "@metadata": { + "authors": [ + "Edgars2007", + "Papuass", + "Peridot Nation" + ] + }, + "smw-upgrade-error-title": "Kļūda", + "smw-upgrade-error-why-title": "Kāpēc es redzu šo lapu?", + "smw_printername_ol": "Numurēts saraksts", + "smw_printername_ul": "Nenumurēts saraksts", + "smw-categories": "Kategorijas", + "smw_purge": "Atjaunināt", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Apakšobjekti|Apakšobjekts|Apakšobjekti}}", + "smw-ask-delete": "Noņemt", + "smw-ask-parameters": "Parametri", + "smw-ask-extra-other": "Cits", + "smw_sbv_value": "Vērtība:", + "browse": "Pārlūkot viki", + "smw_result_prev": "Iepriekšējie", + "smw_result_next": "Nākamie", + "smw_result_results": "Rezultāti", + "smw-admin-deprecation-notice-title-notice": "Gaidāmās izmaiņas", + "smw_smwadmin_datarefreshstopconfirm": "Jā, es esmu {{GENDER:$1|pārliecināts|pārliecināta}}.", + "smw-admin-supplementary-operational-table-statistics-short-title": "Tabulas statistika", + "smw-admin-supplementary-elastic-settings-title": "Iestatījumi", + "smw-admin-supplementary-elastic-statistics-title": "Statistika", + "smw_adminlinks_datastructure": "Datu struktūra", + "smw-paramdesc-category-delim": "Atdalītājs", + "smw-ui-tooltip-title-info": "Informācija", + "smw-ui-tooltip-title-service": "Pakalpojumu saites", + "smw-ui-tooltip-title-warning": "Brīdinājums", + "smw-ui-tooltip-title-parameter": "Parametrs", + "smw-ui-tooltip-title-event": "Notikums", + "smw-ui-tooltip-title-note": "Piezīme", + "smw-ui-tooltip-title-legend": "Apzīmējumi", + "smw-admin-idlookup-input": "Meklēšana:", + "smw-admin-objectid": "ID:", + "smw-admin-configutation-tab-settings": "Iestatījumi", + "smw-livepreview-loading": "Ielādē…", + "smw-search-profile-sort-title": "Nosaukums", + "smw-search-profile-extended-section-query": "Vaicājums", + "smw-datavalue-parse-error": "Norādītā vērtība \"$1\" netika saprasta.", + "smw-format-datatable-loadingrecords": "Ielādē...", + "smw-format-datatable-toolbar-export": "Eksportēt", + "smw-processing": "Apstrādā...", + "smw-loading": "Ielādē...", + "smw-preparing": "Sagatavo...", + "smw-expand": "Izvērst", + "smw-collapse": "Sakļaut", + "smw-copy": "Kopēt", + "smw-jsonview-collapse-title": "Sakļauj JSON skatījumu", + "smw-schema-error-title": "Validācijas kļūda", + "smw-schema-error-json": "JSON kļūme:\"$1\"", + "smw-schema-summary-title": "Kopsavilkums", + "smw-schema-tag": "{{PLURAL:$1|Iezīmes|Iezīme|Iezīmes}}", + "smw-indicator-revision-mismatch": "Versija", + "smw-listingcontinuesabbrev": " (turpinājums)", + "smw-showingresults": "Šobrīd ir {{PLURAL:$1|redzamas|redzama|redzamas}} '''$1''' {{PLURAL:$1|lapas|lapa|lapas}}, sākot ar #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/lzh.json b/mediawiki/extensions/SemanticMediaWiki/i18n/lzh.json new file mode 100644 index 0000000..e1d05be --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/lzh.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "列维劳德" + ] + }, + "smw-categories": "類", + "browse": "覽共筆", + "smw-livepreview-loading": "遺藏…", + "smw-listingcontinuesabbrev": "續", + "smw-showingresults": "見'''$1'''尋,自'''$2'''始:" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/mai.json b/mediawiki/extensions/SemanticMediaWiki/i18n/mai.json new file mode 100644 index 0000000..49852b6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/mai.json @@ -0,0 +1,118 @@ +{ + "@metadata": { + "authors": [ + "Haribanshi", + "Tulsi Bhagat", + "बिप्लब आनन्द" + ] + }, + "smw_viewasrdf": "RDF फ़ीड", + "smw_finallistconjunct": ", और", + "smw-factbox-facts": "तथ्य", + "smw-concept-cache-header": "कैश प्रयोग", + "smw_printername_count": "परिणाम गिनु", + "smw_printername_csv": "CSV निर्यात", + "smw_printername_dsv": "DSV निर्यात", + "smw_printername_debug": "डीबग क्वेरी (एक्सपर्ट्स हेतु)", + "smw_printername_json": "JSON निर्यात", + "smw_printername_list": "सूची", + "smw_printername_ol": "गिनकै क्रिया", + "smw_printername_ul": "आइटमीकरण", + "smw_printername_table": "सारणी", + "smw_printername_broadtable": "विस्तृत सारणी", + "smw_printername_template": "आकृति", + "smw_printername_rdf": "RDF निर्यात", + "smw_printername_category": "श्रेणी", + "validator-type-class-SMWParamSource": "पाठ", + "smw-paramdesc-export": "निर्यात विकल्प", + "smw-paramdesc-feedtype": "फीड क प्रकार", + "smw-label-feed-description": "$1 $2 फीड", + "smw_iq_moreresults": "… आगु क रिज़ल्ट", + "smw_true_words": "सही,t,हां,y", + "smw_false_words": "गलत,f,नइ,n", + "smw-propertylist-subproperty-header": "उपगुण", + "smw-propertylist-redirect-header": "पर्यायवाची", + "smw_exportrdf_submit": "निर्यात", + "uriresolver": "यूआरएलरिसोल्वर", + "properties": "गुणधर्म", + "smw-categories": "श्रेणीसभ", + "smw-special-property-searchform-options": "विकल्प", + "smw-special-wantedproperties-filter-label": "फिल्टर:", + "smw-special-wantedproperties-filter-none": "कोनो नै", + "smw-special-wantedproperties-filter-unapproved": "अनुमोदन रद्द", + "concepts": "अवधारणा", + "smw-unusedproperty-template": "$2 प्रकारक $1", + "wantedproperties": "पन्ना जानकारी", + "smw_purge": "रिफ्रेश करी", + "types": "प्रकार", + "smw-statistics-query-size": "क्वेरी आकार", + "ask": "सेमैंटिक खोज", + "smw_ask_ascorder": "बढ़ल क्रम", + "smw_ask_descorder": "घटल क्रम", + "smw-ask-order-rand": "बेतरतीब", + "smw_ask_submit": "परिणाम खोजु", + "smw_ask_editquery": "क्वेरी संपादित करु", + "smw_add_sortcondition": "[सॉर्टिंग शर्त जोड़ु]", + "smw_ask_help": "क्वेरी सहायता", + "smw_ask_queryhead": "शर्त", + "smw_ask_defaultformat": "पूर्वनिर्धारित", + "smw_ask_otheroptions": "अन्य विकल्प", + "smw-ask-delete": "हटाबी", + "smw-ask-sorting": "सोर्टिंग", + "smw-ask-options": "विकल्प", + "smw-ask-options-sort": "अन्य विकल्प", + "smw-ask-format-options": "प्रारूप और विकल्प", + "smw-ask-parameters": "पैमाने", + "smw-ask-search": "ताकू", + "smw-ask-debug": "दोषमार्जन", + "smw-ask-result": "परिणाम", + "smw-ask-format": "स्वरूप:", + "smw_sbv_property": "गुण:", + "smw_sbv_value": "मूल्य:", + "smw_sbv_submit": "परिणाम खोजु", + "browse": "ब्राउज विकि", + "smw_browselink": "गुण देखी", + "smw_browse_go": "चलू", + "smw_inverse_label_default": "$1 क", + "smw_pp_from": "पृष्ठ से:", + "smw_pp_type": "गुण:", + "smw_pp_submit": "परिणाम खोजु", + "smw_result_prev": "पिछला", + "smw_result_next": "आगाँ", + "smw_result_results": "परिणाम", + "smw_result_noresults": "कोनो परिणाम नैँ", + "smw-admin-statistics-job-title": "समूह सूच्यांश", + "smw_smwadmin_return": "$1 पर आबी।", + "smw-admin-supplementary-elastic-settings-title": "सेटिङ्गस", + "smw-admin-supplementary-elastic-mappings-summary": "संक्षेप", + "smw-admin-supplementary-elastic-nodes-title": "मोडसभ", + "smw-ui-tooltip-title-property": "गुण:", + "smw-ui-tooltip-title-quantity": "इकाई परिवर्तन", + "smw-ui-tooltip-title-info": "जानकारी", + "smw-ui-tooltip-title-service": "सेवा कड़ी", + "smw-ui-tooltip-title-warning": "चेतावनी:", + "smw-ui-tooltip-title-error": "त्रुटि", + "smw-ui-tooltip-title-parameter": "पैमाने", + "smw-ui-tooltip-title-event": "आयोजन", + "smw-ui-tooltip-title-note": "मोड", + "smw-ui-tooltip-title-legend": "कुंजी", + "smw-ui-tooltip-title-reference": "संदर्भ", + "smw-admin-idlookup-title": "ताकू:", + "smw-admin-iddispose-title": "हटावी", + "smw-admin-idlookup-input": "ताकू :", + "smw-admin-tab-registry": "दर्ता", + "smw-livepreview-loading": "लोड भऽ रहल अछि...", + "smw-search-input": "पेस अाैर खाेजु", + "smw-search-profile-sort-title": "शीर्षक", + "smw-search-profile-extended-section-sort": "क्रमबद्ध करू:", + "smw-search-profile-extended-section-form": "फर्मसभ", + "smw-search-profile-extended-section-search-syntax": "ताकी", + "smw-search-profile-extended-section-namespace": "नामस्थान", + "smw-search-profile-extended-section-query": "पृच्छा", + "smw-search-profile-link-caption-query": "देखी", + "smw-search-show": "देखाबी", + "smw-search-hide": "नुकाबी", + "log-name-smw": "सिमेंटिक मीडियाविकि", + "smw-listingcontinuesabbrev": "शेष आगाँ।", + "smw-showingresults": "नीचाँ एतऽ धरि {{PLURAL:$1|'''1''' परिणाम|'''$1''' परिणाम सभ}} #'''$2''' सँ प्रारम्भ भऽ कऽ।" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/mdf.json b/mediawiki/extensions/SemanticMediaWiki/i18n/mdf.json new file mode 100644 index 0000000..53b9cd9 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/mdf.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "Numulunj pilgae", + "Валгриш" + ] + }, + "smw-categories": "Категориет", + "browse": "Лопатнень ванондома", + "smw-livepreview-loading": "Аноклакшни…", + "smw-listingcontinuesabbrev": "полатксоц", + "smw-showingresults": "Ала няфтеви {{PLURAL:$1|мувсь '''1'''|мувсть '''$1'''}} '''$2'''-ста ушедомс." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/mg.json b/mediawiki/extensions/SemanticMediaWiki/i18n/mg.json new file mode 100644 index 0000000..90ab4e1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/mg.json @@ -0,0 +1,53 @@ +{ + "@metadata": { + "authors": [ + "Jagwar" + ] + }, + "smw_viewasrdf": "Fahana RDF", + "smw_finallistconjunct": ", sy", + "smw-concept-cache-header": "Fampiasan'ny takona", + "smw-concept-no-cache": "Tsy misy voatakona azo ampaisaina.", + "smw_printername_count": "Fanisana valiny", + "smw_printername_csv": "Famoahana CSV", + "smw_printername_dsv": "Famoahana DSV", + "smw_printername_debug": "Hataka fanalam-baogy (ho an'ny manam-pahaizana)", + "smw_printername_json": "Avoaka ho JSON", + "smw_printername_list": "Lisitra", + "smw_printername_ol": "Lisitra voatanisa", + "smw_printername_ul": "Lisitra teboka", + "smw_printername_table": "Tabilao", + "smw_printername_broadtable": "Tabilao nitarina", + "smw_printername_template": "Endrika", + "smw_printername_rdf": "Avoaka ho RDF", + "smw_printername_category": "Sokajy", + "validator-type-class-SMWParamSource": "soratra", + "smw_exportrdf_submit": "Avoaka", + "properties": "Tondro", + "smw-categories": "Sokajy", + "types": "Karazana", + "smw-statistics-query-size": "Haben'ny hataka", + "smw_ask_queryhead": "Fepetra", + "smw_ask_defaultformat": "raha tsy misy", + "smw_ask_otheroptions": "safidy hafa", + "smw-ask-delete": "Hanala", + "smw-ask-sorting": "Fandaminana", + "smw-ask-search": "Fikarohana", + "smw_sbv_value": "Sanda:", + "browse": "Hitety ny wiki", + "smw_browselink": "Hitady tondro", + "smw_browse_go": "Alefa", + "smw_inverse_label_default": "$1 amin'i", + "smw_pp_from": "Avy amin'ny pejy:", + "smw_pp_type": "Tondro ananana:", + "smw_pp_submit": "Haneho valiny", + "smw_result_prev": "Mialoha", + "smw_result_next": "Manaraka", + "smw_result_results": "Valiny", + "smw_result_noresults": "Tsy nahitana valiny", + "smw-admin-statistics-job-title": "Statistika momba ny asa", + "smw_smwadmin_return": "Hiverina any amin'ny $1", + "smw-livepreview-loading": "Am-pakàna…", + "smw-listingcontinuesabbrev": " manaraka.", + "smw-showingresults": "Omeo ny valiny{{PLURAL:$1||}} miisa hatramin'ny $1 manomboka ny #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/min.json b/mediawiki/extensions/SemanticMediaWiki/i18n/min.json new file mode 100644 index 0000000..c6fd9b0 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/min.json @@ -0,0 +1,18 @@ +{ + "@metadata": { + "authors": [ + "David Wadie Fisher-Freberg", + "Iwan Novirion", + "Muhraz", + "Naval Scene", + "VoteITP" + ] + }, + "smw-categories": "Kategori", + "smw_propertylackspage": "Sado properti musti dideskripsikan jo suatu laman!", + "smw_purge": "Pabaharui", + "browse": "Jalajahi wiki", + "smw_browse_go": "Tuju", + "smw-listingcontinuesabbrev": "samb.", + "smw-showingresults": "Di bawah ko dikaluaan sampai {{PLURAL:$1|'''$1''' hasil}}, dimulai dari #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/mk.json b/mediawiki/extensions/SemanticMediaWiki/i18n/mk.json new file mode 100644 index 0000000..105245d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/mk.json @@ -0,0 +1,547 @@ +{ + "@metadata": { + "authors": [ + "Bjankuloski06", + "Nemo bis", + "Rancher", + "Vlad5250", + "아라" + ] + }, + "smw-desc": "Го прави вашето вики подостапно - за машини ''и'' луѓе ([https://www.semantic-mediawiki.org/wiki/Help:User_manual?uselang=mk документација])", + "smw-error": "Грешка", + "smw-upgrade-release": "Издание", + "smw-upgrade-progress": "Напредок", + "smw-upgrade-error-title": "Грешка » Семантички МедијаВики", + "smw-semantics-not-enabled": "Семантички МедијаВики не е овозможен на ова вики.", + "smw_viewasrdf": "RDF-тековник", + "smw_finallistconjunct": " и", + "smw-factbox-head": "... повеќе за „$1“", + "smw-factbox-facts": "Факти", + "smw-factbox-facts-help": "Ги прикажува исказите и фактите што се создадени од некој корисник", + "smw-factbox-attachments": "Прилози", + "smw-factbox-attachments-value-unknown": "Н/П", + "smw-factbox-attachments-help": "Ги прикажува достапните прилози", + "smw-factbox-facts-derived": "Изведени факти", + "smw_isspecprop": "Ова својство е специјално својство во ова вики.", + "smw-concept-cache-header": "Употреба на меѓусклад", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count Меѓускладот на концепти] содржи {{PLURAL:$1|'''единица''' entity|'''$1''' единици}} ($2).", + "smw-concept-no-cache": "Нема достапен меѓусклад.", + "smw_concept_description": "Опис на концептот „$1“", + "smw_no_concept_namespace": "Концептите можат да се определуваат само на страници во именскиот простор „Концепт:“ („Concept:“).", + "smw_multiple_concepts": "Секоја концептна страница може да има само по една одредба на концепт.", + "smw_concept_cache_miss": "Концептот „$1“ во моментов не може да се користи, бидејќи местењата на викито бараат тој да се пресмета вонсемрежно.\nАко проблемот не исчезне по извесно време, побарајте од вашиот администратор да го овозможи тој концепт.", + "smw_noinvannot": "На обратните својства не можат да им се назначуваат вредности.", + "version-semantic": "Семантички додатоци", + "smw_baduri": "URI-ја од обликот „$1“ не се дозволени.", + "smw_printername_count": "Исход од пребројувањето", + "smw_printername_csv": "CSV извоз", + "smw_printername_dsv": "DSV-извоз", + "smw_printername_debug": "Поправање грешки во барања (за експерти)", + "smw_printername_embedded": "Вметни содржина од страница", + "smw_printername_json": "JSON извоз", + "smw_printername_list": "Список", + "smw_printername_plainlist": "Прост список", + "smw_printername_ol": "Список со редни броеви", + "smw_printername_ul": "Список со потточки", + "smw_printername_table": "Табела", + "smw_printername_broadtable": "Широка табела", + "smw_printername_template": "Предлошка", + "smw_printername_templatefile": "Предложна податотека", + "smw_printername_rdf": "RDF-извоз", + "smw_printername_category": "Категорија", + "validator-type-class-SMWParamSource": "текст", + "smw-paramdesc-limit": "Највеќе ставки во исходот за прикажување", + "smw-paramdesc-offset": "Отстапувањето на првата исходна ставка.", + "smw-paramdesc-headers": "Прикажувај наслови/имиња на својства", + "smw-paramdesc-mainlabel": "Ознаката која се дава на името на главната страница", + "smw-paramdesc-link": "Прикажи ги вредностите како врски", + "smw-paramdesc-intro": "Текстот за прикажување пред исходот од барањето, ако го има", + "smw-paramdesc-outro": "Текстот за прикажување по исходот од барањето, ако го има", + "smw-paramdesc-default": "Текстот за прикажување ако нема исход од барањето", + "smw-paramdesc-sep": "Одделувач на исходни ставки", + "smw-paramdesc-propsep": "Одделувачот помеѓу својства во исходна ставка", + "smw-paramdesc-valuesep": "Одделувачот помеѓу вредностите за својство во исходна ставка", + "smw-paramdesc-showsep": "Прикажувај го одделувачот најгоре во CSV-податотеката (\"sep=\")", + "smw-paramdesc-distribution": "Наместо да се прикажат сите вредности, изброј колку пати се јавуваат и прикажи ги нив.", + "smw-paramdesc-distributionsort": "Подреди ја распределбата на вредностите по број на јавувања.", + "smw-paramdesc-distributionlimit": "Ограничи ја распределбата на вредности според бројот на само некои вредности.", + "smw-paramdesc-template": "Името на предлошката со чија помош ќе се прикажуваат податоците", + "smw-paramdesc-columns": "Бројот на столбови за приказ на исходни ставки", + "smw-paramdesc-userparam": "Вредност која се дава при секое повикување на предлошка, ако се користи", + "smw-paramdesc-class": "Дополнителна CSS-класа за задавање во списокот", + "smw-paramdesc-introtemplate": "Име на предлошката за приказ пред исходот од пребарувањето, ако го има", + "smw-paramdesc-outrotemplate": "Име на предлошката за приказ по исходот од пребарувањето, ако го има", + "smw-paramdesc-embedformat": "HTML-ознаката која се користи за определување на наслови", + "smw-paramdesc-embedonly": "Не прикажувај наслови", + "smw-paramdesc-table-class": "Дополнителна CSS-класа за табелата", + "smw-paramdesc-table-transpose": "Прикажувај ги заглавијата на табелите вертикално, а ставките хоризонтално", + "smw-paramdesc-rdfsyntax": "RDF-синтаксата што ќе се користи", + "smw-paramdesc-csv-sep": "Укажува столбен разделник", + "smw-paramdesc-csv-valuesep": "Укажува вредносен разделник", + "smw-paramdesc-dsv-separator": "Кој разделник да се користи", + "smw-paramdesc-dsv-filename": "Име на DSV-податотеката", + "smw-paramdesc-filename": "Име на изводната податотека", + "smw-smwdoc-description": "Прикажува табела на сите параметри што можат да се искористат за назначениот формат на исход заедно со основните вредности и описи.", + "smw-smwdoc-par-format": "Форматот на ставките за кои се прикажува параметарска документација.", + "smw-smwdoc-par-parameters": "Кои параметри да се прикажуваат. „specific“ за оние што ги додава форматот, „base“ за оние достапни во сите формати, а „all“ за обете.", + "smw-paramdesc-sort": "По кое својство да се подреди барањето", + "smw-paramdesc-order": "Редослед на подредување на барањето", + "smw-paramdesc-searchlabel": "Текст за продолжување на пребарувањето", + "smw-paramdesc-named_args": "Именувајте ги аргументите што ѝ се предаваат на предлошката.", + "smw-paramdesc-export": "Можност за извоз", + "smw-paramdesc-prettyprint": "Дали исписот да се форматира со дополнителни вовлекувања и нови редови", + "smw-paramdesc-json-type": "Тип на серијализација", + "smw-paramdesc-source": "Алтернативен извор за барање", + "smw-paramdesc-jsonsyntax": "JSON-синтакса што ќе се користи", + "smw-printername-feed": "RSS- и Атом-тековник", + "smw-paramdesc-feedtype": "Вид тековник", + "smw-paramdesc-feedtitle": "Текст како наслов на тековникот", + "smw-paramdesc-feeddescription": "Текст како опис на тековникот", + "smw-paramdesc-feedpagecontent": "Содржина на страницата што се прикажува со тековникот", + "smw-label-feed-description": "$2-тековник на $1", + "smw-paramdesc-mimetype": "Медиумски тип (MIME-тип) за изводната податотека", + "smw_iq_disabled": "На ова вики се оневозможени семантички барања.", + "smw_iq_moreresults": "... понатамошни ставки", + "smw_parseerror": "Дадената вредност не беше разбрана.", + "smw_decseparator": ",", + "smw_kiloseparator": ".", + "smw_notitle": "„$1“ не може да се користи како име на страница во ова вики.", + "smw_noproperty": "„$1“ не може да се користи како име на својство во ова вики.", + "smw_wrong_namespace": "Тука се дозволени само страници во именскиот простор „$1“.", + "smw_manytypes": "За својството е определен повеќе од еден тип.", + "smw_emptystring": "Не се прифаќаат празни низи.", + "smw_notinenum": "„$1“ не е на списокот ($2) на [[Property:Allows value|допуштени вредности]] за својството „$3“.", + "smw-datavalue-constraint-error-allows-value-list": "„$1“ не е на списокот ($2) на [[Property:Allows value|допуштени вредности]] за својството „$3“.", + "smw_noboolean": "„$1“ не претставува Булова вредност (точно/неточно).", + "smw_true_words": "вистина,да,в,д,true,t,yes,y", + "smw_false_words": "лага,л,невистина,н,не,false,f,no,n", + "smw_nofloat": "„$1“ не претставува број.", + "smw_infinite": "Броевите со толкава должина како „$1“ не се поддржани.", + "smw_unitnotallowed": "„$1“ не се смета за важечка мерна единица за ова својство.", + "smw_nounitsdeclared": "Нема наведено мерни единици за ова својство.", + "smw_novalues": "Нема назначено вредности.", + "smw_nodatetime": "Датумот „$1“ не е разбран.", + "smw_toomanyclosing": "Во барањето има премногу јавувања на „$1“.", + "smw_noclosingbrackets": "Во вашето барање беа искористени загради „[[“ на кои им недостатуваат соодветни затворачки загради „]]“.", + "smw_misplacedsymbol": "Знакот „$1“ е додаден на место кајшто не е корисен", + "smw_unexpectedpart": "Делот „$1“ од барањето не беше разбран.\nИсходот може да се разликува од очекуваното.", + "smw_emptysubquery": "Едно од подбарањата нема важечки услов.", + "smw_misplacedsubquery": "Користено е подбарање на некое место кадешто не се дозволени подбарања.", + "smw_valuesubquery": "Подбарањата не се поддржани за вредностите на својството „$1“.", + "smw_badqueryatom": "Извесен дел „[[…]]“ од барањето не беше разбран.", + "smw_propvalueproblem": "Вредноста на својството „$1“ не е разбрана.", + "smw_noqueryfeature": "Некои функции од барањето не се поддржани на ова вики, и затоа е испуштен дел од барањето ($1).", + "smw_noconjunctions": "Сврзници во барања не се поддржани во ова вики, и затоа е испуштен дел од барањето ($1).", + "smw_nodisjunctions": "Во ова вики не се поддржани дисјункции во барањата, и затоа еден дел од барањето е отфрлен ($1).", + "smw_querytoolarge": "Следниве услови на барањето $1 не можеа да бидат земени предвид заради ограничувањата на големината или длабочината на барањата во ова вики.", + "smw_notemplategiven": "Наведете вредност за параметарот „template“ за да може да работи овој формат на барање.", + "smw_db_sparqlqueryproblem": "Не можев да добијам исход за барањето од базата SPARQL. Грешката може да е привремена или да се должи на бубачка во програмот на базата.", + "smw_db_sparqlqueryincomplete": "Одговарањето на барањето испадна претешко и беше прекинато. Може да се изоставени некои исходни ставки. Ако можете, обидете се со поедноставно барање.", + "smw_type_header": "Својства од типот „$1“", + "smw_typearticlecount": "{{PLURAL:$1|Прикажано е $1 својство кое го користи|Прикажани се $1 својства кои го користат}} овој тип.", + "smw_attribute_header": "Страници кои го користат својството „$1“", + "smw_attributearticlecount": "{{PLURAL:$1|Прикажана е $1 страница која го користи ова својство|Прикажани се $1 страници кои го користат}} ова својство.", + "smw-propertylist-subproperty-header": "Потсвојства", + "smw-propertylist-redirect-header": "Истозначници", + "smw-propertylist-error-header": "Страници со несвојствени доделувања", + "smw-propertylist-count": "{{PLURAL:$1|Прикажана е $1 единица|Прикажани се $1 единици}}.", + "smw-propertylist-count-with-restricted-note": "{{PLURAL:$1|Прикажана е $1 поврзана единица|Прикажани се $1 поврзани единици}}. (достапни се повеќе, но ограничувањето е „$2“).", + "smw-propertylist-count-more-available": "{{PLURAL:$1|Прикажана е $1 поврзана единица|Прикажани се $1 поврзани единици}}. (достапни се повеќе).", + "specialpages-group-smw_group": "Семантички МедијаВики", + "specialpages-group-smw_group-maintenance": "Одржување", + "specialpages-group-smw_group-properties-concepts-types": "Својства, концепти и типови", + "specialpages-group-smw_group-search": "Прелистување и пребарување", + "exportrdf": "Извези страници во RDF", + "smw_exportrdf_docu": "Оваа страница ви овозможува да преземете податоци од страница во RDF формат.\nЗа да ги извезете страниците, внесете ги насловите во кутијата подолу (по еден наслов во секој ред).", + "smw_exportrdf_recursive": "Рекурзивно извези ги сите поврзани страници.\nИмајте на ум дека исходот може да биде мошне голем!", + "smw_exportrdf_backlinks": "Извези ги и страниците кои укажуваат на извезените страници.\nСоздава RDF со поддршка за прелистување.", + "smw_exportrdf_lastdate": "Не извезувај страници кои се немаат променето од назначениот датум наваму.", + "smw_exportrdf_submit": "Извези", + "uriresolver": "URI претворач", + "properties": "Својства", + "smw-categories": "Категории", + "smw_properties_docu": "Во викито се користат следниве својства.", + "smw_property_template": "$1 од типот $2 ($3 {{PLURAL:$3|употреба|употреби}})", + "smw_propertylackspage": "Сите својства треба да се опишани во страница!", + "smw_propertylackstype": "Нема назначено тип за ова својство (засега по основно ќе се користи типот $1)", + "smw_propertyhardlyused": "Ова својство речиси не се користи на викито!", + "smw-property-name-invalid": "Својството $1 не може да се користи (има неважечко име).", + "smw-sp-property-searchform": "Прикажи својства што содржат:", + "smw-sp-property-searchform-inputinfo": "Филтрирањето разликува големи и мали букви, па затоа ќе ви се прикажат само својства што одговараат точно на внесеното.", + "smw-special-property-searchform": "Прикажи својства што содржат:", + "smw-special-property-searchform-inputinfo": "Филтрирањето разликува големи и мали букви, па затоа ќе ви се прикажат само својства што одговараат точно на внесеното.", + "smw-special-property-searchform-options": "Можности", + "smw-special-wantedproperties-filter-label": "Филтер:", + "smw-special-wantedproperties-filter-none": "никаков", + "smw-special-wantedproperties-filter-unapproved": "Неодобрени", + "concepts": "Концепти", + "smw-special-concept-docu": "[https://www.semantic-mediawiki.org/wiki/Help:Concepts?uselang=mk Концептот] може да се гледа како „динамична категорија“, т.е. збир страници што не се создадени рачно, туку пресметани од Семантички МедијаВики како опис на дадено барање.", + "smw-special-concept-header": "Список на концепти", + "smw-special-concept-count": "Во списокот {{PLURAL:$1|е наведен следниов концепт|се наведени следниве $1 концепти}}.", + "smw-special-concept-empty": "Не пронајдов ниеден концепт.", + "unusedproperties": "Неискористени својства", + "smw-unusedproperties-docu": "На страницава се наведени [https://www.semantic-mediawiki.org/wiki/Unused_properties неискористени својства] кои се изјавени, иако ниедна друга страница не ги користи. За диференциран изглед погледајте ги службените страници за [[Special:Properties|сите]] или [[Special:WantedProperties|потребни својства]].", + "smw-unusedproperty-template": "$1 од типот $2", + "wantedproperties": "Потребни својства", + "smw-wantedproperties-docu": "На страницава се наведени [https://www.semantic-mediawiki.org/wiki/Wanted_properties потребни својства] се користат во викито, но сè уште немаат своја описна страница. За диференциран изглед, погледајте ги службените страници за [[Special:Properties|сите]] или [[Special:UnusedProperties|неискористени својства]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|употреба|употреби}})", + "smw-special-wantedproperties-docu": "На страницава се наведени [https://www.semantic-mediawiki.org/wiki/Wanted_properties потребни својства] кои се користат во викито, но сè уште немаат своја описна страница. За диференциран изглед, погледајте ги службените страници за [[Special:Properties|сите]] или [[Special:UnusedProperties|неискористени својства]].", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|употреба|употреби}})", + "smw_purge": "Превчитај", + "smw-purge-failed": "Превчитувањето не успеа", + "types": "Типови", + "smw_types_docu": "Список на [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes расположливи податочни типови] со секој [https://www.semantic-mediawiki.org/wiki/Help:Datatype тип] кој претставува единствен збир атрибути за опишување на вредноста во однос на особености за складирање и приказ кои се наследени од доделено својство.", + "smw-special-types-no-such-type": "„$1“ е непознат или не е назначен како важечки податочен тип.", + "smw-statistics": "Семантички статистики", + "smw-statistics-property-instance": "{{PLURAL:$1|Вредност на својство|Вредности на својства}} (вкупно)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Својство|Својства}}]] (вкупно)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Својство|Својства}} (вкупно)", + "smw-statistics-property-page": "{{PLURAL:$1|Својство|Својства}} (заведени со страница)", + "smw-statistics-property-type": "{{PLURAL:$1|Својство|Својства}} (назначени на податочен тип)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Барање|Барања}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Барање|Барања}}]] (вградено, вкупно)", + "smw-statistics-query-format": "Формат $1", + "smw-statistics-query-size": "Големина на барањето", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Концепт|Концепти}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Коцепт|Коцепти}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Подобјект|Подобјекти}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Подобјект|Подобјекти}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Податочен тип|Податочни типови}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Вредност на својството|Вредности на својството}} ([[Special:ProcessingErrorList|{{PLURAL:$1|несоодветна прибелешка|несоодветни прибелешки}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Вредност за својство|Вредности за својства}} ({{PLURAL:$1|несоодветен запис|несоодветни записи}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Застарена единица|Застарени единици}}]", + "smw_uri_doc": "URI-претварачот применува [$1 W3C пронаоѓање на ознаки на httpRange-14].\nТој има за задача да внимава луѓето да не се претворат во мрежни места.", + "ask": "Семантичко пребарување", + "smw_ask_sortby": "Подреди по столб (незадолжително)", + "smw_ask_ascorder": "Нагорен", + "smw_ask_descorder": "Надолен", + "smw-ask-order-rand": "Случајна", + "smw_ask_submit": "Пронајди", + "smw_ask_editquery": "Уреди барање", + "smw_add_sortcondition": "(Додај услов за подредување)", + "smw-ask-sort-add-action": "Додај услов за подредување", + "smw_ask_hidequery": "Скриј барање (компактен изглед)", + "smw_ask_help": "Помош со поставување барања", + "smw_ask_queryhead": "Услов", + "smw_ask_printhead": "Дополнителни податоци за приказ", + "smw_ask_printdesc": "(додавајте едно име на својство по ред)", + "smw_ask_format_as": "Форматирај како:", + "smw_ask_defaultformat": "по основно", + "smw_ask_otheroptions": "Други нагодувања", + "smw-ask-otheroptions-info": "Овој оддел содржи можности за менување на исписот. Описите на параметрите ќе ги видите ако отидете со глувчето врз нив.", + "smw-ask-otheroptions-collapsed-info": "Стиснете на иконата „+“ (плус) за да ги погледате сите расположливи можности", + "smw_ask_show_embed": "Прикажи вграден код", + "smw_ask_hide_embed": "Скриј вметнат код", + "smw_ask_embed_instr": "За да го вметнете ова барање во викистраницата меѓу редови, употребете го кодот подолу.", + "smw-ask-delete": "Отстрани", + "smw-ask-sorting": "Подредување", + "smw-ask-options": "Поставки", + "smw-ask-options-sort": "Подредувања", + "smw-ask-format-options": "Формат и можности", + "smw-ask-parameters": "Параметри", + "smw-ask-search": "Пребарај", + "smw-ask-debug": "Исправки", + "smw-ask-no-cache": "Оневозможи меѓусклад", + "smw-ask-result": "Исход", + "smw-ask-empty": "Исчисти ги сите ставки", + "smw-ask-format": "Формат", + "smw-ask-format-selection-help": "Помош за избраниот формат: $1", + "smw-ask-extra-other": "Друго", + "searchbyproperty": "Пребарај по својство", + "processingerrorlist": "Список на грешки при обработка", + "constrainterrorlist": "Список на грешки во ограничувањата", + "propertylabelsimilarity": "Извештај за сличности во натписите на својствата", + "missingredirectannotations": "Отсутни прибелешки за пренасочување", + "smw-processingerrorlist-intro": "Следниов список дава преглед на [https://www.semantic-mediawiki.org/wiki/Processing_errors грешки при обработката] кои се имаат јавено во врска со [https://www.semantic-mediawiki.org/ Семантички МедијаВики]. Се предлага редовно надгледување на списоков и да се исправат неважечките прибелешки на вредностите.", + "smw-constrainterrorlist-intro": "Следниов список дава преглед на [https://www.semantic-mediawiki.org/wiki/Constraint_errors грешки во ограничувањата] кои се имаат јавено во врска со [https://www.semantic-mediawiki.org/ Семантички МедијаВики]. Се предлага редовно надгледување на списоков и да се исправат неважечките прибелешки на вредностите.", + "smw-missingredirects-intro": "Во овој оддел се наведени страници на кои им отсуствуваат прибелешки за [https://www.semantic-mediawiki.org/wiki/Redirects пренасочување] во Семантички МедијаВики (споредувајќи со информациите складирани во МедијаВИки). За да ги востановите, или рачно [https://www.semantic-mediawiki.org/wiki/Help:Purge пречистете] ја страницата, или пуштете ја скриптата за одржување rebuildData.php (со можноста --redirects).", + "smw-missingredirects-list-intro": "Прикажувам $1 {{PLURAL:$1|страница|страници}} со отсутни прибелешки за пренасочување.", + "smw-missingredirects-noresult": "Не пронајдов отсутни прибелешки за пренасочување.", + "smw_sbv_docu": "Пребарување на сите страници кои имаат дадено својство и вредност.", + "smw_sbv_novalue": "Внесете важечка вредност за својството, или пак погледнете ги сите вредности на својството „$1“.", + "smw_sbv_displayresultfuzzy": "Список на сите страници кои имаат својство „$1“ со вредност „$2“.\nБидејќи има само неколку исходни ставки, прикажани се и приближни вредности.", + "smw_sbv_property": "Својство:", + "smw_sbv_value": "Вредност:", + "smw_sbv_submit": "Пронајди", + "browse": "Прелистај вики", + "smw_browselink": "Прелистај својства", + "smw_browse_article": "Внесете го името на страницата од која би почнале да прелистувате.", + "smw_browse_go": "Дај", + "smw_browse_show_incoming": "Прикажи дојдовни својства", + "smw_browse_hide_incoming": "Скриј дојдовни својства", + "smw_browse_no_outgoing": "Оваа страница нема својства.", + "smw_browse_no_incoming": "До оваа страница не водат никакви својства.", + "smw-browse-show-group": "Прикажи групи", + "smw-browse-hide-group": "Скриј групи", + "smw_inverse_label_default": "$1 од", + "smw_inverse_label_property": "Обратен наслов на својството", + "pageproperty": "Пребарување својства на страница", + "smw_pp_docu": "Внесете и страница и својство, или само својство за да ги добиете сите доделени вредности.", + "smw_pp_from": "Од страница:", + "smw_pp_type": "Својство:", + "smw_pp_submit": "Најди ставки", + "smw-prev": "{{PLURAL:$1|претходна $1|претходни $1}}", + "smw-next": "{{PLURAL:$1|следна $1|следни $1}}", + "smw_result_prev": "Претходно", + "smw_result_next": "Следно", + "smw_result_results": "Исход", + "smw_result_noresults": "Нема исход.", + "smwadmin": "Управувачница на Семантички МедијаВики", + "smw-admin-statistics-job-title": "Статистики за задачи", + "smw-admin-statistics-section-explain": "ОДделот дава дополнителни статистики за администраторите.", + "smw-admin-setupsuccess": "Складишниот погон е поставен.", + "smw_smwadmin_return": "Назад на $1", + "smw_smwadmin_updatestarted": "Започнат е нов процес за обнова на семантичките податоци.\nСите складирани податоци ќе бидат преработени или поправени, каде што е потребно.\nНа оваа службена страница можете да го следите процесот на поднова.", + "smw_smwadmin_updatenotstarted": "Веќе е во тек едно подновување.\nНема да се создаде друго.", + "smw_smwadmin_updatestopped": "Сите постоечки процеси на поднова се сопрени.", + "smw_smwadmin_updatenotstopped": "За да го запрете текот на подновата, мора да го активирате кутивчето за избор кое укажува на тоа дека сте навистина сигурни дека сакате да направите така.", + "smw-admin-docu": "Оваа службена страница ви помага во текот на воспоставката, подновата, одржувањето и употребата на Семантички МедијаВики и исто така обезбедува дополнителни административни функции и задачи, како и статистика.\nНе заборавајте да направите резервни примероци од значајни податоци пред да вршите административни постапки.", + "smw-admin-db": "Поставување на базата на податоци", + "smw-admin-dbdocu": "Семантички МедијаВики бара додавање на извесни додатоци кон базата на податоци на МедијаВики за да складира семантички податоци.\nФункцијата подолу ви гарантира дека вашата база на податоци е правилно поставена.\nПромените извршени во овој чекор немаат влијание врз остатокот од базата на МедијаВики, и лесно можат да се вратат по старо ако се јави потреба.\nОваа функција на поставката може да се врши повеќе пати без тоа да причини каква било штета, но потребна е само еднаш при воспоставка или подновување.", + "smw-admin-permissionswarn": "Ако постапката не успее со грешки при исполнувањето на SQL-наредбите, тогаш корисникот на базата на податоци што го употребува вашето вики (проверете ја вашата податотека „LocalSettings.php“) нема доволно дозволи.\nДоделете му доволно дозволи на корисникот за да може да создава и брише табели, привремено внесете го најавниот корен (root) на вашата база на податоци во „LocalSettings.php“, или пак употребете ја скриптата за одржување setupStore.php која може да ги користи акредитивите за администратор.", + "smw-admin-dbbutton": "Започни или поднови табели", + "smw-admin-announce": "Објавете го вашето вики", + "smw-admin-announce-text": "Ако вашето вики е јавно, можете да го пријавите на WikiApiary — викито за следење на викија.", + "smw-admin-deprecation-notice-title": "Напомени за застарување", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] е отстранет во $2", + "smw-admin-deprecation-notice-title-notice": "Претстојни промени", + "smw-admin-deprecation-notice-title-replacement": "Заменети или преименувани поставки", + "smw-admin-deprecation-notice-title-replacement-explanation": "Следново содржи поставки кои се преименувани или поинаку изменети. Се препорачува неодложна поднова на нивното име или формат.", + "smw-admin-deprecation-notice-title-removal": "Отстранети поставки", + "smw_smwadmin_datarefresh": "Поправка и поднова на податоци", + "smw_smwadmin_datarefreshdocu": "Постои можност за враќање на сите податоци на Семантички МедијаВики врз основа на тековните содржини на викито.\nОва е корисно за поправка на оштетени податоци или за обнова на податоците ако внатрешниот формат се има променето како последица на некаква надградба на програмската опрема.\nПодновувањето се врши страница по страница, и ќе треба да помине некое време за да профункционира.\nПодолу е прикажано дали има поднова во тек, и тоа ви овозможува да започнувате или запирате подновувања (освен ако таа можност не е исклучена од администраторот на мрежното место).", + "smw_smwadmin_datarefreshprogress": "Веќе е во тек една поднова.\nНормално е подновата да биде бавна, бидејќи податоците се обновуваат во мали делчиња секојпат кога корисникот ќе отиде на викито.\nЗа да ја убрзате подновата, можете да ја повикате скриптата за одржување на MediaWiki runJobs.php (користете ја можноста --maxjobs 1000 за да го ограничите бројот на поднови во една партија).\nПроценет напредок на тековната поднова:", + "smw_smwadmin_datarefreshbutton": "Започни со подновување на податоци", + "smw_smwadmin_datarefreshstop": "Започни го ова подновување", + "smw_smwadmin_datarefreshstopconfirm": "Да, {{GENDER:$1|сигурен|сигурна}} сум.", + "smw-admin-support": "Добивање поддршка", + "smw-admin-supportdocu": "Обезбедени се различни ресурси за да ви помогнат во случај на проблеми:", + "smw-admin-installfile": "Ако наидете на проблеми при воспоставката, најпрвин прочитајте ги напатствијата во податотеката INSTALL и страницата за воспоставка.", + "smw-admin-smwhomepage": "Целосната корисничка документација за Семантички МедијаВики ќе ја најдете на semantic-mediawiki.org.", + "smw-admin-bugsreport": "Бубачките (грешките) можат да се пријават на GitHub.", + "smw-admin-questions": "Ако имате некои други прашања или предлози, приклучете ѝ се на дискусијата на форумот за корисници на Семантички МедијаВики.", + "smw-admin-other-functions": "Други функции", + "smw-admin-statistics-extra": "Статистички функции", + "smw-admin-statistics": "Статистики", + "smw-admin-supplementary-settings-intro": "$1 ги испишува нагодувањата користени во Семантички МедијаВики", + "smw-admin-main-title": "Семантички МедијаВики » $1", + "smw-admin-supplementary-operational-statistics-title": "Оперативни статистики", + "smw-admin-supplementary-operational-statistics-short-title": "оперативни статистики", + "smw-admin-supplementary-operational-statistics-intro": "Прикажува проширен збир на $1", + "smw-admin-supplementary-operational-table-statistics-title": "Статистики за табели", + "smw-admin-supplementary-operational-table-statistics-short-title": "статистики за табели", + "smw-admin-supplementary-elastic-settings-title": "Нагодувања (показатели)", + "smw-admin-supplementary-elastic-mappings-title": "Пресликувања", + "smw-admin-supplementary-elastic-mappings-summary": "Опис", + "smw-admin-supplementary-elastic-nodes-title": "Јазли", + "smw-admin-supplementary-elastic-statistics-title": "Статистики", + "smw-admin-supplementary-elastic-replication-header-title": "Статус на репликацијата", + "smw-admin-supplementary-elastic-replication-function-title": "Репликација", + "smw-admin-supplementary-elastic-replication-intro": "$1 прикажува информации за неуспешни репликации", + "smw-admin-supplementary-elastic-replication-files": "Податотеки", + "smw-admin-supplementary-elastic-replication-pages": "Страници", + "smw-admin-supplementary-elastic-endpoints": "Завршници", + "smw-property-label-similarity-title": "Извештај за сличности во натписите на својствата", + "smw-property-label-similarity-threshold": "Праг:", + "smw-property-label-similarity-noresult": "Не најдов ништо за избраните можности.", + "smw-property-label-similarity-docu": "Оваа страница врши споредба на [https://www.semantic-mediawiki.org/wiki/Property_similarity оддалеченоста на сличностите] (што е различно од семантички или лексички сличности) помеѓу натписите на својствата и ги пријавува ако го надминат прагот. Со извештајот се пронаоѓаат погрешно напишаниет или еквивалентните својства кои го претставуваат истиот концепт (погл. службената страница [[Special:Properties|својства]] за појаснување на концептот и употребата на пријавени својства). Прагот може да се прилагоди за да се прошири или стесни оддалеченоста на приближното совпаѓање. За изземање на својствата од анализата се користи [[Property:$1|$1]].", + "smw_adminlinks_datastructure": "Структура на податоците", + "smw_adminlinks_displayingdata": "Приказ на податоци", + "smw_adminlinks_inlinequerieshelp": "Помош со вметнати барања", + "smw-property-indicator-type-info": "{{PLURAL:$1|Кориснички|Системски}} дефинирано својство", + "smw-createproperty-isproperty": "Ова е својство од видот $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Дозволената вредност за ова својство е|Дозволените вредности за ова својство се}}:", + "smw-paramdesc-category-delim": "Разделувачот", + "smw-paramdesc-category-template": "Предлошка со која ќе се форматираат елементите", + "smw-paramdesc-category-userparam": "Параметар што ќе ѝ се даде на предлошката", + "smw-info-par-message": "Порака за приказ.", + "smw-info-par-icon": "Икона за приказ на „инфо“ или „предупредување“.", + "prefs-smw": "Семантички МедијаВики", + "prefs-general-options": "Општи можности", + "prefs-ask-options": "Семантичко пребарување", + "smw-prefs-intro-text": "Долунаведените можности се достапни преку [https://www.semantic-mediawiki.org/ Семантички МедијаВики] (или поврзаните додтоци) со цел да овозможи поединечни прилагодувања на извесни функции. Поподробен опис ќе најдете на [https://www.semantic-mediawiki.org/wiki/Help:User_preferences помошната страница].", + "smw-prefs-ask-options-tooltip-display": "Прикажи го текстот на параметарот како информативен отскочен текст", + "smw-prefs-ask-options-compact-view-basic": "Вклучи основен збиен поглед", + "smw-prefs-general-options-time-correction": "Овозможи временска исправка за службени страници користејќи го поставеното месно [[Special:Preferences#mw-prefsection-rendering|часовно отстапување]]", + "smw-prefs-general-options-jobqueue-watchlist": "Прикажувај ја набљудуваната редица задачи во мојата лична лента", + "smw-prefs-help-general-options-jobqueue-watchlist": "Ако е вклучено, прикажува [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist список на] избрани задачи кои се на чекање, заедно со должините на нивните редици.", + "smw-prefs-general-options-disable-editpage-info": "Исклучи го воведниот текст на уредувачката страница", + "smw-prefs-general-options-disable-search-info": "Исклучи ги информациите за поддршка на синтаксата на стандардната пребарувачка страница", + "smw-prefs-general-options-suggester-textinput": "Вклучи помошник за внесување кај семантичките единици", + "smw-prefs-help-general-options-suggester-textinput": "Ако е вклучено, овозможува употреба на [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance помош при внесување] за пронаоѓање на својства, концепти и категории добиени од вносниот контекст.", + "smw-ui-tooltip-title-property": "Својство", + "smw-ui-tooltip-title-quantity": "Претворање на единици", + "smw-ui-tooltip-title-info": "Информации", + "smw-ui-tooltip-title-service": "Услужни врски", + "smw-ui-tooltip-title-warning": "Предупредување", + "smw-ui-tooltip-title-error": "Грешка", + "smw-ui-tooltip-title-parameter": "Параметар", + "smw-ui-tooltip-title-event": "Настан", + "smw-ui-tooltip-title-note": "Белешка", + "smw-ui-tooltip-title-legend": "Легенда", + "smw-ui-tooltip-title-reference": "Навод", + "smw_unknowntype": "„$1” типот од ова својство е неважечки", + "smw-concept-cache-text": "Концептот има вкупно {{PLURAL:$1|една страница|$1 страници}}, а подновен е на $3 во $2 ч.", + "smw_concept_header": "Страници на концептот „$1“", + "smw_conceptarticlecount": "{{PLURAL:$1|Прикажана е $1 страница која му припаѓа|Прикажани се $1 страници кои му припаѓаат}} на тој концепт.", + "smw-qp-empty-data": "Не можам да ги прикажам побараните податоци поради извесни недоволни критеруми за делот.", + "right-smw-admin": "Пристап до административни задачи (Семантички МедијаВики)", + "action-smw-patternedit": "уредување на регуларни изрази кои ги користи Семантички МедијаВики", + "group-smwadministrator": "Администратори (Семантички МедијаВики)", + "group-smwadministrator-member": "{{GENDER:$1|администратор (Семантички МедијаВики)}}", + "grouppage-smwadministrator": "{{ns:project}}:Администратори (Семантички МедијаВики)", + "group-smwcurator": "Згрижувачи (Семантички МедијаВики)", + "group-smwcurator-member": "{{GENDER:$1|згрижувач (Семантички МедијаВики)}}", + "grouppage-smwcurator": "{{ns:project}}:Згрижувачи (Семантички МедијаВики)", + "action-smw-admin": "пристап до административните задачи на Семантички МедијаВики", + "smw-property-predefined-default": "„$1“ е предодредено својство.", + "smw-property-predefined-common": "Ова својство е однапред програмски зададено (наречено и [https://www.semantic-mediawiki.org/wiki/Help:Special_properties посебно својство]) и со него има дополнителни административни привилегии, но може да се користи како секое друго [https://www.semantic-mediawiki.org/wiki/Property кориснички-зададено својство].", + "smw-property-predefined-ask": "„$1“ е предодредено својство кое претставува метаинформации (во облик на [https://www.semantic-mediawiki.org/wiki/Subobject subobject]) за поединечни барања и се добива од [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантички МедијаВики].", + "smw-property-predefined-asksi": "„$1“ е предодредено својство што го собира бројот на услови кои се користат во барање и се добива од [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантички МедијаВики].", + "smw-property-predefined-askde": "„$1“ е предодредено својство што укажува на длабочината на барање и е преземено од [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантички МедијаВики].", + "smw-sp-properties-docu": "На оваа страница се наведени [https://www.semantic-mediawiki.org/wiki/Property својствата] и нивниот број на употреби достапен на ова вики. За најнови статистики за бројот на употреби се препорачува редовно пуштање на скриптата за [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics статистики за својства]. Разделен преглед можете да добиете на службените страници [[Special:UnusedProperties|неискористени својства]] и [[Special:WantedProperties|потребни својства]].", + "smw-sp-properties-cache-info": "Наведените податоци се преземени од [https://www.semantic-mediawiki.org/wiki/Caching?uselang=mk меѓускладот], a последен пат изменети на $1.", + "smw-sp-properties-header-label": "Список на својства", + "smw-admin-settings-docu": "Прикажува список на сите стандардни и местоприлагодени и преведени поставки што се однесуваат на дадената околина во Семантички МедијВики. Повеќе за поединечните поставки ќе најдете на страницата за [https://www.semantic-mediawiki.org/wiki/Help:Configuration помош со поставки].", + "smw-sp-admin-settings-button": "Создај список на поставки", + "smw-admin-idlookup-title": "Побарај", + "smw-admin-idlookup-docu": "Овој оддел покажува технички поединости за поединечна единица (викистраница, потпредмет, својство итн.) во Семантички МедијаВики. Вносот може да биде бројчена назнака или низна вредност што одговара на соодветното поле за бребарување, но сепак било која назнака се однесува на Семантички МедијаВики, но не на назнаката на страницата или преработката на МедијаВики.", + "smw-admin-iddispose-title": "Отстранување", + "smw-admin-idlookup-input": "Пребарај:", + "smw-admin-objectid": "Назнака:", + "smw-admin-tab-notices": "Напомени за застарување", + "smw-admin-tab-maintenance": "Одржување", + "smw-admin-deprecation-notice-section": "Семантички МедијаВики", + "smw-admin-configutation-tab-settings": "Нагодувања", + "smw-admin-configutation-tab-namespaces": "Именски простори", + "smw-admin-maintenance-tab-tasks": "Задачи", + "smw-admin-maintenance-tab-scripts": "Скрипти за одржување", + "smw-admin-maintenance-no-description": "Нема опис.", + "smw-admin-maintenance-script-section-title": "Список на расположливите скрипти за одржување", + "smw-livepreview-loading": "Вчитувам...", + "smw-sp-searchbyproperty-description": "Страницава дава прост [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces прелистувачки посредник] за пронаоѓање на единици опишани со својство и именувана вредност. На располагање ви се и други пребарувачки посредници: [[Special:PageProperty|пребарување на својства на страници]] и [[Special:Ask|срочувачот на барања]].", + "smw-sp-searchbyproperty-resultlist-header": "Список на ставки од исходот", + "smw-sp-searchbyproperty-nonvaluequery": "Список на вредности со својство „$1“.", + "smw-sp-searchbyproperty-valuequery": "Список на вредности со својство „$1“ со вредноста „$2“.", + "smw-datavalue-number-textnotallowed": "„$1“ не може да се додели на изјавен бројчен тип со вредност $2.", + "smw-editpage-annotation-enabled": "Оваа страница поддржува семантички прибелешки во текст (на пр.„[[Is specified as::World Heritage Site]]“) за изградба на структурирани пребарливи содржини од Семантички МедијаВики. Поопфатен опис за употребата на прибелешки или расчленувачката функција #ask, погледајте ги помошните страници [https://www.semantic-mediawiki.org/wiki/Help:Getting_started Како да почнете], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation Прибелешки во текст] или [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries Барање во редови].", + "smw-editpage-annotation-disabled": "На оваа страница не се овозможени семантички прибелешки во текст поради ограничувањата на именскиот простор. Ако сакате да дознаете како да ги овозможите за овој именски простор, прочитајте ја помошната страница [https://www.semantic-mediawiki.org/wiki/Help:Configuration Поставување].", + "smw-editpage-property-annotation-enabled": "Ова својство може да се дополнува користејќи семантички прибелешки за укажување на податочниот тип (на пр.„[[Has type::Page]]“) или други поддржни изјави (како на пр.\"[[Subproperty of::dc:date]]\"). За да дознаете како да ја збогатите страницата, погледајте ја помошната страница [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration Изјава на својство] или [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes списокот на расположливи податочни типови].", + "smw-editpage-property-annotation-disabled": "Ова својство не може да се дополни со прибелешка за податочен тип (на пр.„[[Has type::Page]]“) бидејќи истиот му е веќе е предзададен (повеќе информации на помошната страница [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Посебни својства]).", + "smw-editpage-concept-annotation-enabled": "Овој концепт може да се надополни користејќи ја расчленувачката функција #concept. За да дознаете како да користите #concept, погледајте ја помошната страница [https://www.semantic-mediawiki.org/wiki/Help:Concepts Концепти].", + "smw-search-syntax": "Синтакса", + "smw-search-profile": "Напредно", + "smw-search-profile-sort-title": "Наслов", + "smw-search-profile-extended-help-find-forms": "обрасци на располагање", + "smw-search-profile-extended-section-sort": "Подреди по", + "smw-search-profile-extended-section-form": "Обрасци", + "smw-search-profile-extended-section-namespace": "Именски простор", + "smw-search-profile-extended-section-query": "Барање", + "smw-search-show": "Прикажи", + "smw-search-hide": "Скриј", + "log-name-smw": "Дневник на Семантички МедијаВики", + "log-show-hide-smw": "$1 дневник на Семантички МедијаВики", + "logeventslist-smw-log": "Дневник на Семантички МедијаВики", + "log-description-smw": "Активности за [https://www.semantic-mediawiki.org/wiki/Help:Logging овозможени типови на настани] пријавени од Семантички МедијаВики и неговите составни делови.", + "smw-datavalue-import-unknown-namespace": "Увозниот именски простор „$1“ е непознат. Осигурајте се дека податоците за увоз во OWL се достапни преку [[MediaWiki:Smw import $1]]", + "smw-datavalue-import-missing-namespace-uri": "Не можам да најдам URI „$1“ на именскиот простор во [[MediaWiki:Smw import $1|увозот на $1]].", + "smw-datavalue-import-missing-type": "Не пронајдов типска определба за „$1“ во [[MediaWiki:Smw import $2|увозот на $2]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|Увоз на $1]]", + "smw-datavalue-import-invalid-value": "„$1“ не претставува важечки формат и се очекува да содржи „именски простор“:„назнака“ (на пр. „foaf:name“).", + "smw-property-predefined-impo": "„$1“ е предодредено својство кое опишува поврзаност со [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary увезен лексикон] и е преземено од [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантички МедијаВики].", + "smw-property-predefined-type": "„$1“ е предодредено својство што го опишува [[Special:Types|податочниот тип]] на едно својство и е преземено од [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантички Медијавики].", + "smw-property-predefined-sobj": "„$1“ е предодредено својство што претставува [https://www.semantic-mediawiki.org/wiki/Help:Container пополнувачки] конструкт и е преземено од [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантички Медијавики].", + "smw-property-predefined-errp": "„$1“ е предодредено својство за следење на грешките во внесувањето кај прибелешките со неправилни вредности и е преземено од [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантички Медијавики].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value „$1“] е предодредено својство што може да определи список на допуштени вредности за ограничување на вредносните доделувања за дадено својство и е преземено од [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантички Медијавики].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list „$1“] е предодредено својство што може да определи навод кон список на допуштени вредности за ограничување на вредносните доделувања за дадено својство и е преземено од [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантички Медијавики].", + "smw-datavalue-property-restricted-annotation-use": "Својството „$1“ има ограничена област на примена и не може да се користи како својство на прибелешка од страна на некој корисник.", + "smw-datavalue-property-restricted-declarative-use": "Својството „$1“ е декларативно и може да се користи само на страница на својство или категорија.", + "smw-datavalue-restricted-use": "Податочната вредност „$1“ е означена за ограничена употреба.", + "smw-datavalue-invalid-number": "Не можам да го протолкувам „$1“ како број.", + "smw-query-condition-circular": "Во „$1“ е утврден можен кружен услов.", + "smw-query-condition-empty": "Описот на барањето има празен услов.", + "smw-types-list": "Список на податочни типови", + "smw-types-default": "„$1“ е вграден податочен тип.", + "smw-types-help": "Повеќе информации и примери ќе најдете на оваа [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 помошна страница].", + "smw-type-anu": "„$1“ е варијанта на податочниот тип [[Special:Types/URL|URL]] и претежно се користи за извозната изјава ''owl:AnnotationProperty''.", + "smw-type-boo": "„$1“ е основен податочен тип што опишува вредност точно/неточно.", + "smw-type-cod": "„$1“ е варијанта на податочниот тип [[Special:Types/Text|текст]] што се корити во технички текстови со произволна големина, како страници со програмски кодови.", + "smw-type-geo": "„$1“ е податочен тип што опишува географска местоположба и бара [https://www.semantic-mediawiki.org/wiki/Semantic_Maps Семантички карти].", + "smw-type-tel": "„$1“ е посебен податочен тип што го опишува меѓународните телефонски броеви според RFC 3966.", + "smw-type-txt": "„$1“ е основен податочен тип што опишува низи со произволна големина.", + "smw-type-dat": "„$1“ е основен податочен тип што претставува моменти во времето во еднообразен формат.", + "smw-type-ema": "„$1“ е посебен податочен тип што претставува е-пошта.", + "smw-type-tem": "„$1“ е посебен податочен тип што претставува температура.", + "smw-type-tab-properties": "Својства", + "smw-type-tab-types": "Типови", + "smw-type-tab-errors": "Грешки", + "smw-type-primitive": "Основно", + "smw-type-no-group": "Некласифицирани", + "smw-property-predefined-errc": "„$1“ е предодредено својство кое се презема од [https://www.semantic-mediawiki.org/wiki/Special_properties Семантички Медијавики] и претставува грешки што се јавуваат во врска со несоодветни вредносни прибелешки или неправилна обработка на вносот.", + "smw-property-predefined-errt": "„$1“ е предодредено својство што содржи текстуален опис на грешка и е преземено од [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантички МедијаВики].", + "smw-subobject-parser-invalid-naming-scheme": "Кориснички-зададен подобјект користи неважечка шема за именување. Записот со точки ($1) во првите пет знаци е резервиран за додатоците. Можете да зададете [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier именувана назнака].", + "smw-datavalue-record-invalid-property-declaration": "Определбата на записот го содржи својството „$1“, кое самото е зададено како тип на запис и не се допушта.", + "smw-datavalue-languagecode-invalid": "„$1“ не е препознаен како важечки јазичен код.", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|секунда|секунди}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|секунда|секунди}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|секунда|секунди}}", + "smw-datavalue-external-formatter-invalid-uri": "„$1“ е неважечка URL-адреса.", + "smw-datavalue-parse-error": "Дадената вредност „$1“ не беше разбрана.", + "smw-clipboard-copy-link": "Копирај врска во меѓускладот", + "smw-no-data-available": "Нема податоци на располагање.", + "smw-format-datatable-emptytable": "Нема расположливи податоци во табелата", + "smw-format-datatable-info": "Се прикажуваат _START_ до _END_ од вкупно _TOTAL_ записи", + "smw-format-datatable-infoempty": "Се прикажуваат 0 до 0 од вкупно 0 записи", + "smw-format-datatable-infofiltered": "(исфилтрирано од вкупно _MAX_ записи)", + "smw-format-datatable-lengthmenu": "Прикажи ставки на _MENU_", + "smw-format-datatable-loadingrecords": "Вчитувам...", + "smw-format-datatable-processing": "Обработувам...", + "smw-format-datatable-search": "Пребарај:", + "smw-format-datatable-zerorecords": "Не се пронајдени соодветни записи", + "smw-format-datatable-first": "Прва", + "smw-format-datatable-last": "Последна", + "smw-format-datatable-next": "Следна", + "smw-format-datatable-previous": "Претходна", + "smw-format-datatable-sortascending": ": вклучете за да ги подредите столбовите нагорно", + "smw-format-datatable-sortdescending": ": вклучете за да ги подредите столбовите надолно", + "smw-format-datatable-toolbar-export": "Извези", + "smw-api-invalid-parameters": "Неважечки параметри, „$1“", + "smw-property-page-list-count": "{{PLURAL:$1|Прикажана е $1 страница која го користи ова својство|Прикажани се $1 страници кои го користат}} ова својство.", + "smw-property-reserved-category": "Категорија", + "smw-category": "Категорија", + "smw-filter": "Филтер", + "smw-section-expand": "Расклопи го одделот", + "smw-section-collapse": "Склопи го одделот", + "smw-ask-format-help-link": "Формат [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Помош", + "smw-property-predefined-label-skey": "Клуч за подредување", + "smw-processing": "Обработувам ...", + "smw-expand": "Расклопи", + "smw-collapse": "Собери", + "smw-copy": "Копирај", + "smw-types-title": "Тип: $1", + "smw-schema-error-title": "{{PLURAL:$1|Грешка|Грешки}} при проверката", + "smw-schema-error-json": "Грешка на JSON: \"$1\"", + "smw-schema-summary-title": "Краток опис", + "smw-schema-title": "Шема", + "smw-schema-usage": "Употреба", + "smw-schema-type": "Тип на шема", + "smw-schema-type-description": "Опис на типот", + "smw-schema-description": "Опис на шемата", + "smw-schema-tag": "{{PLURAL:$1|Ознака|Ознаки}}", + "smw-property-tab-usage": "Употреба", + "smw-property-tab-redirects": "Синоними", + "smw-property-tab-subproperties": "Потсвојства", + "smw-property-tab-errors": "Несвојствени доделувања", + "smw-property-tab-specification": "... повеќе", + "smw-concept-tab-list": "Список", + "smw-concept-tab-errors": "Грешки", + "smw-ask-tab-result": "Исход", + "smw-ask-tab-debug": "Исправки", + "smw-ask-tab-code": "Код", + "smw-report": "Извештај", + "smw-legend": "Легенда", + "smw-listingcontinuesabbrev": "продолжува", + "smw-showingresults": "Подолу {{PLURAL:$1|е прикажана 1 ставка|се прикажани $1 ставки}} почнувајќи од бр. $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ml.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ml.json new file mode 100644 index 0000000..1aaae52 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ml.json @@ -0,0 +1,42 @@ +{ + "@metadata": { + "authors": [ + "Jameela P.", + "Praveenp", + "Shijualex" + ] + }, + "smw_finallistconjunct": "ഉം", + "smw_printername_list": "പട്ടിക", + "smw_printername_table": "പട്ടിക", + "smw_iq_moreresults": "… കൂടുതൽ ഫലങ്ങൾ", + "smw_parseerror": "താങ്കൾ ചേർത്ത മൂല്യം മനസ്സിലാക്കാൻ സാധിച്ചില്ല.", + "smw_true_words": "ശരി,ശരി,അതെ,അതെ", + "smw_false_words": "തെറ്റ്,തെറ്റ്,അല്ല,അല്ല", + "smw_nofloat": "“$1” ഒരു സംഖ്യയല്ല.", + "smw_infinite": "“$1” എന്ന സംഖ്യയുടെയത്ര വലിപ്പമുള്ള സംഖ്യകൾ പിന്തുണയ്ക്കുന്നില്ല.", + "smw_misplacedsymbol": "“$1” എന്ന ചിഹ്നം അതു ഉപയോഗിക്കാൻ പാടില്ലാത്ത ഒരു സ്ഥലത്ത് ഉപയോഗിച്ചിരിക്കുന്നു.", + "smw-propertylist-redirect-header": "പര്യായം", + "exportrdf": "RDFലേക്ക് താളുകൾ എക്സ്‌പോർട്ട് ചെയ്യുക", + "smw-categories": "വർഗ്ഗങ്ങൾ", + "smw-wantedproperty-template": "$1 ({{PLURAL:$2|ഒരുപയോഗം|$2 ഉപയോഗങ്ങൾ}})", + "types": "തരങ്ങൾ", + "smw_ask_ascorder": "ആരോഹണം", + "smw_ask_descorder": "അവരോഹണം", + "smw_ask_submit": "ഫലങ്ങൾ കാണുക", + "smw_sbv_value": "മൂല്യം:", + "smw_sbv_submit": "ഫലങ്ങൾ കാണുക", + "browse": "വിക്കിയിൽ പരതുക", + "smw_browse_go": "പോകൂ", + "smw_pp_from": "ഈ താളിൽ നിന്ന്", + "smw_pp_submit": "ഫലങ്ങൾ കാണുക", + "smw_result_prev": "മുമ്പത്തെ", + "smw_result_next": "അടുത്തത്", + "smw_result_results": "ഫലങ്ങൾ", + "smw_result_noresults": "ക്ഷമിക്കുക, ഫലങ്ങൾ ഒന്നുമില്ല", + "smw-livepreview-loading": "ശേഖരിക്കുന്നു...", + "smw-data-lookup": "വിവരം ലഭ്യമാക്കുന്നു ...", + "smw-no-data-available": "വിവരങ്ങളൊന്നും ലഭ്യമല്ല.", + "smw-listingcontinuesabbrev": "തുടർച്ച.", + "smw-showingresults": "'''$2''' മുതലുള്ള {{PLURAL:$1|'''ഒരു''' ഫലം|'''$1''' ഫലങ്ങൾ}} താഴെ പ്രദർശിപ്പിക്കുന്നു." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/mn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/mn.json new file mode 100644 index 0000000..e689c49 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/mn.json @@ -0,0 +1,21 @@ +{ + "@metadata": { + "authors": [ + "Chinneeb", + "Enkhsaihan2005", + "Munkhzaya.E", + "Wisdom" + ] + }, + "smw-paramdesc-table-transpose": "table -ын толгойг босоогоор, үр дүнг хэвтээгээр", + "smw-categories": "Ангиллууд", + "browse": "Викиг үзэх", + "smw_browse_go": "Явах", + "smw_smwadmin_datarefreshstopconfirm": "Тийм, би {{GENDER:$1|итгэлтэй байна}}.", + "smw-ui-tooltip-title-quantity": "Нэгжийн шилжүүлэг", + "smw-livepreview-loading": "Уншиж байна...", + "smw-limitreport-intext-parsertime-value": "$1 секунд", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 секунд", + "smw-listingcontinuesabbrev": "-н үргэлжлэл", + "smw-showingresults": "Доор #'''$2'''-с эхлэсэн '''$1''' илэрцийг үзүүлж байна." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/mr.json b/mediawiki/extensions/SemanticMediaWiki/i18n/mr.json new file mode 100644 index 0000000..ac80564 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/mr.json @@ -0,0 +1,134 @@ +{ + "@metadata": { + "authors": [ + "Htt", + "Kaustubh", + "Sureshkhole", + "Susheelkasab", + "V.narsikar", + "아라" + ] + }, + "smw_viewasrdf": "RDF फीड", + "smw_finallistconjunct": ", व", + "smw_isspecprop": "हा गुणधर्म या विकिवरील विशेष गुणधर्म आहे.", + "smw_baduri": "माफ करा, “$1” अर्जाचे URI वापरण्यास परवानगी नाही.", + "smw_printername_list": "यादी", + "smw_printername_table": "तक्ता", + "smw_printername_broadtable": "विस्तृत तक्ता", + "smw_printername_template": "साचा", + "smw_printername_templatefile": "साचा धारिका", + "smw_printername_category": "वर्ग", + "validator-type-class-SMWParamSource": "मजकूर", + "smw_iq_disabled": "माफ करा. या विकिवर सिमँटिक पॄच्छा करण्यास बंदी आहे.", + "smw_iq_moreresults": "… पुढचे निकाल", + "smw_parseerror": "दिलेली किंमत समजलेली नाही.", + "smw_notitle": "या विकिवर “$1” हे पानाच्या शीर्षकात वापरता येत नाही.", + "smw_manytypes": "गुणधर्माला एकापेक्षा जास्त प्रकार दिलेले आहेत.", + "smw_emptystring": "रिकाम्या किंमती वापरता येत नाहीत.", + "smw_notinenum": "या गुणधर्माच्या योग्य किंमतींच्या ($2) यादीत “$1” नाही आहे.", + "smw_noboolean": "“$1” ही योग्य बुलियन (बरोबर/चूक) किंमत नाही.", + "smw_true_words": "बरोबर,t,हो,y", + "smw_false_words": "चूक,f,नाही,n", + "smw_nofloat": "“$1” ही संख्या नाही.", + "smw_infinite": "“$1” एवढ्या मोठ्या संख्या साहाय्यीकृत नाहीत.", + "smw_nodatetime": "“$1” हा दिनांक समजला नाही.", + "smw_toomanyclosing": "या पृच्छेमध्ये “$1” खूप ठिकाणी आलेले आहे.", + "smw_noclosingbrackets": "तुमच्या पृच्छेत कुठेतरी वापरलेले “[[” हे योग्य अशा जुळणार्‍या “]]” ने बंद केलेले नाही.", + "smw_misplacedsymbol": "“$1” चिन्ह जिथे उपयोगी नाही अशा ठिकाणी वापरलेले आहे.", + "smw_unexpectedpart": "पृच्छेचा “$1” हा भाग समजलेला नाही.\nनिकाल योग्य असतीलच याची खात्री नाही.", + "smw_emptysubquery": "कुठल्यातरी उपपृच्छेमध्ये योग्य कंडिशन दिलेली नाही.", + "smw_misplacedsubquery": "एक उपपृच्छा अशा ठिकाणी दिलेली आहे जिथे उपपृच्छा वापरायला परवानगी नाही.", + "smw_valuesubquery": "“$1” गुणधर्माच्या किंमतींसाठी उपपृच्छा वापरता येत नाहीत.", + "smw_badqueryatom": "पृच्छेचा काही भाग “[[…]]” समजलेला नाही.", + "smw_propvalueproblem": "“$1” गुणधर्माची किंमत समजलेली नाही.", + "smw_nodisjunctions": "पृच्छे मध्ये तुकडे या विकिवर चालत नाहीत, त्यामुळे पृच्छेचा तुकडा टाकून दिला ($1).", + "smw_querytoolarge": "पृच्छेचा आकार अथवा खोलीवर असणार्‍या या विकिच्या मर्यादांमुळे खालील पृच्छा अटी $1 लक्षात घेता आलेल्या नाहीत.", + "smw_type_header": "“$1” प्रकारचे गुणधर्म", + "smw_typearticlecount": "हा प्रकार {{PLURAL:$1|वापरणारा|वापरणारे}} $1 गुणधर्म दाखवित आहे.", + "smw_attribute_header": "“$1” गुणधर्म वापरणारी पृष्ठे", + "smw_attributearticlecount": "हा गुणधर्म वापरणारी $1 {{PLURAL:$1|पान|पाने}} दाखवित आहे.", + "specialpages-group-smw_group": "सिमँटिक मिडियाविकि", + "exportrdf": "RDF कडे पाने निर्यात करा", + "smw_exportrdf_docu": "हे पान तुम्हाला एखाद्या पानावरील मजकूर RDF मध्ये घेण्यास मदत करते.\nपाने निर्यात करण्याकरीता, खाली एका ओळीत एक याप्रमाणे पानांची शीर्षके लिहा.", + "smw_exportrdf_recursive": "सर्व जुळलेली पाने आपोआप निर्यात करा.\nकृपया नोंद घ्या की निकाल खूप मोठा असू शकतो!", + "smw_exportrdf_backlinks": "निर्यात केलेल्या पानांचे संदर्भ देणारी पाने सुद्धा निर्यात करा.\nब्राउजेबल RDF तयार होईल.", + "smw_exportrdf_lastdate": "दिलेल्या वेळेनंतर ज्या पानांमध्ये बदल झालेले नाहीत अशी पाने निर्यात करू नका.", + "smw_exportrdf_submit": "निर्यात करा", + "uriresolver": "URI रिझॉल्व्हर", + "properties": "गुणधर्म", + "smw-categories": "वर्ग", + "smw_properties_docu": "या विकिवर खालील गुणधर्म वापरलेले आहेत.", + "smw_property_template": "$2 प्रकारची $1 ($3{{PLURAL:$3|वापर}})", + "smw_propertylackspage": "एका पानावर सर्व गुणधर्मांची माहिती असणे आवश्यक आहे!", + "smw_propertylackstype": "या गुणधर्माचा प्रकार दिलेला नाही (आत्तापुरता $1 हा प्रकार गृहीत धरत आहे).", + "smw_propertyhardlyused": "या विकिवर हा गुणधर्म क्वचितच वापरला जातो!", + "smw-special-property-searchform-options": "विकल्प", + "smw-special-wantedproperties-filter-label": "गाळणी:", + "smw-special-wantedproperties-filter-none": "काहीही नाही", + "smw-special-wantedproperties-filter-unapproved": "नामंजूर", + "unusedproperties": "न वापरलेले गुणधर्म", + "smw-unusedproperties-docu": "खालील गुणधर्म कुठल्याही पानावर वापरण्यात आलेले नाहीत.", + "smw-unusedproperty-template": "$2 प्रकारचे $1", + "wantedproperties": "पाहिजे असलेले गुणधर्म", + "smw-wantedproperties-docu": "या विकिवर वापरण्यात आलेल्या खालील गुणधर्मांसाठी माहिती पृष्ठे अस्तित्वात नाहीत.", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|वापर}})", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|वापर}})", + "smw_purge": "ताजेतवाने करा", + "types": "प्रकार", + "smw_types_docu": "खाली गुणधर्माशी जोडता येणार्‍या सर्व डाटा प्रकारांची यादी आहे.\nप्रत्येक डाटा प्रकाराचे एक पाने आहे जिथे जास्तीची माहिती देता येईल.", + "smw_uri_doc": "URI रिझॉल्वर मध्ये एक [$1 W3C टॅग आहे जो httpRange-14 शोधण्यास मदत करतो].\nहा मनुष्यप्राणी संकेतस्थळामध्ये बदलणार नाही याची काळजी घेतो.", + "ask": "सिमॅंटिक शोध", + "smw_ask_sortby": "रकान्या प्रमाणे लावा (वैकल्पिक)", + "smw_ask_ascorder": "चढत्या श्रेणीने", + "smw_ask_descorder": "उतरत्या श्रेणीने", + "smw_ask_submit": "निकाल शोधा", + "smw_ask_editquery": "पृच्छा संपादा", + "smw_add_sortcondition": "[निवडण्याची अट जोडा]", + "smw_ask_hidequery": "पृच्छा लपवा", + "smw_ask_help": "पृच्छा करण्यासाठी मदत", + "smw_ask_queryhead": "अट", + "smw_ask_printhead": "छपाई निवड", + "smw_ask_defaultformat": "अविचल", + "smw_ask_otheroptions": "अधिक पर्याय", + "smw_ask_show_embed": "यात टाकलेला संकेत दाखवा", + "smw-ask-delete": "[वगळा]", + "smw-ask-result": "निकाल", + "smw-ask-empty": "रिकामे", + "smw-ask-format": "प्रारुप", + "searchbyproperty": "गुणधर्माप्रमाणे शोधा", + "smw_sbv_docu": "दिलेला गुणधर्म व किंमत असणारी सर्व पाने शोधा.", + "smw_sbv_novalue": "कृपया या गुणधर्माची एक योग्य किंमत द्या, किंवा “$1” साठीच्या सर्व किंमती पहा.", + "smw_sbv_property": "गुणधर्म:", + "smw_sbv_value": "किंमत:", + "smw_sbv_submit": "निकाल शोधा", + "browse": "विकि न्याहाळा", + "smw_browse_article": "विकि ज्या पानापासून न्याहाळायचा त्या पानाचे नाव लिहा", + "smw_browse_go": "चला", + "smw-browse-js-disabled": "अशी शंका आहे कि जावास्क्रिप्ट ही अक्षम करण्यात आलेली आहे किंवा अनुपलब्ध आहे व आम्ही अशी शिफारस करतो कि आपण असा न्याहाळक वापरा जो जावास्क्रिप्टला सहाय्यीभूत असेल. इतर पर्यायांची [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi] या पानावर चर्चा आहे.", + "pageproperty": "पान गुणधर्म शोध", + "smw_pp_docu": "दिलेल्या पानावरील एखाद्या गुणधर्माच्या सर्व किंमतींचा शोध घ्या.\nकृपया पान व गुणधर्म दोन्ही द्या.", + "smw_pp_from": "पानावरून", + "smw_pp_type": "गुणधर्म", + "smw_pp_submit": "निकाल शोधा", + "smw_result_prev": "मागील", + "smw_result_next": "पुढील", + "smw_result_results": "निकाल", + "smw_result_noresults": "माफ करा, निकाल नाहीत.", + "smw-createproperty-isproperty": "तो $1 प्रकारचा गुणधर्म आहे.", + "smw-createproperty-allowedvals": "या गुणधर्माच्या योग्य किंमती पुढीलप्रमाणे आहेत:", + "prefs-smw": "सिमॅंटिक मिडियाविकि", + "smw-prefs-intro-text": "निवडक क्रियांवर वैयक्तिक अनुकुलन सक्षम करण्यास [https://www.semantic-mediawiki.org/ सिमँटिक मिडियाविकि] (किंवा संबंधित विस्तारकाद्वारे) खालील पर्याय पुरविण्यात आले आहेत. अधिक माहितीसाठी [https://www.semantic-mediawiki.org/wiki/Help:User_preferences सहाय्य विभागाकडे] नजर टाका.", + "smw-ui-tooltip-title-quantity": "एकक परिवर्तन", + "smw-ui-tooltip-title-reference": "संदर्भ", + "smw_unknowntype": "गुणधर्माचा प्रकार “$1” वापरता येत नाही.", + "smw-livepreview-loading": "चढवत आहे…", + "smw-datavalue-keyword-maximum-length": "कीवर्डने जास्तीतजास्त $1 ची ठरवलेली मर्यादा ओलांडली", + "smw-property-predefined-keyw": "$1 ही एक पूर्वनिर्धारित गुणधर्म आणि [[Special:Types/Keyword|type]] आहे जो [https://www.semantic-mediawiki.org/wiki/Help:Special_properties सेमंटीक मेडियाविकी] ने पुरविला असून तो माहितीचे सामान्यीकीकरण करतो आणि त्यावर अक्षरांच्या संख्येची मर्यादा आहे.", + "smw-type-keyw": "$1 हा एक मजकुराचा प्रकार आहे ज्यावर मर्यादित अक्षरांची क्षमता ठरविक असून ते माहितीच्या व्यवस्थापाचे सामान्यीकीकरण करते.", + "smw-datavalue-parse-error": "दिलेली किंमत \"$1\" समजल्या गेली नाही.", + "smw-ask-title-keyword-type": "मुख्यशब्दचा शोध", + "smw-ask-message-keyword-type": "ह्या शोधातून $1 ही अट जुळली आहे", + "smw-listingcontinuesabbrev": "पुढे चला", + "smw-showingresults": "#'''$2'''पासून {{PLURAL:$1|'''1'''पर्यंतचा निकाल|'''$1'''पर्यंतचे निकाल}} खाली दाखवले आहे." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ms.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ms.json new file mode 100644 index 0000000..db1dec1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ms.json @@ -0,0 +1,108 @@ +{ + "@metadata": { + "authors": [ + "Anakmalaysia", + "Aviator", + "Hakimi97", + "Pizza1016", + "Tofeiku" + ] + }, + "smw-desc": "Meningkatkan kebolehcapaian wiki anda – baik untuk mesin mahupun manusia ([https://www.semantic-mediawiki.org/wiki/Help:User_manual dokumentasi])", + "smw-error": "Ralat", + "smw-upgrade-error-why-title": "Mengapa saya lihat laman ini?", + "smw_viewasrdf": "Suapan RDF", + "smw_finallistconjunct": ", dan", + "smw-factbox-facts": "Fakta", + "smw_isspecprop": "Sifat ini merupakan sifat khas di wiki ini.", + "smw_concept_description": "Keterangan konsep \"$1\"", + "smw_no_concept_namespace": "Konsep hanya boleh ditakrifkan di laman-laman dalam ruang nama Concept:.", + "smw_multiple_concepts": "Setiap laman konsep hanya boleh ada satu takrifan konsep.", + "smw_concept_cache_miss": "Konsep \"$1\" tidak boleh digunakan buat masa ini kerana konfigurasi wiki memerlukannya untuk dikomput di luar talian.\nJika masalah ini masih berlarutan selepas beberapa ketika, mintalah penyelia tapak anda untuk menyediakan konsep ini.", + "smw_noinvannot": "Nilai tidak dapat diberikan kepada sifat songsang.", + "version-semantic": "Sambungan semantik", + "smw_baduri": "URI yang berbentuk \"$1\" tidak dibenarkan.", + "smw_printername_count": "Hasil pengiraan", + "smw_printername_csv": "Eksport CSV", + "smw_printername_dsv": "Eksport DSV", + "smw_printername_debug": "Pertanyaan nyahpepijat (debug) (untuk pakar)", + "smw_printername_embedded": "Benamkan kandungan laman", + "smw_printername_json": "Eksport JSON", + "smw_printername_list": "Senarai", + "smw_printername_ol": "Penyenaraian dengan urutan", + "smw_printername_ul": "Penyenaraian tanpa urutan", + "smw_printername_table": "Jadual", + "smw_printername_broadtable": "Jadual lebar", + "smw_printername_template": "Templat", + "smw_printername_templatefile": "Fail templat", + "smw_printername_rdf": "Eksport RDF", + "smw_printername_category": "Kategori", + "validator-type-class-SMWParamSource": "teks", + "smw-paramdesc-limit": "Bilangan hasil maksimum untuk diberikan", + "smw-paramdesc-offset": "Ofset hasil pertama", + "smw-paramdesc-headers": "Paparkan nama pengatas/sifat", + "smw-paramdesc-mainlabel": "Label untuk nama laman utama", + "smw-paramdesc-link": "Tunjukkan nilai sebagai pautan", + "smw_parseerror": "Nilai yang diberikan tidak difahami.", + "smw_nofloat": "\"$1\" bukan nombor.", + "smw-propertylist-redirect-header": "Sinonim", + "smw_exportrdf_submit": "Eksport", + "smw-categories": "Kategori", + "smw-special-property-searchform-options": "Pilihan", + "smw-special-wantedproperties-filter-label": "Penapis:", + "smw-special-wantedproperties-filter-none": "Tiada", + "concepts": "Konsep", + "smw-special-concept-header": "Senarai konsep", + "smw-special-concept-empty": "Tiada konsep dijumpai.", + "smw_purge": "Muat semula", + "types": "Jenis", + "smw-statistics": "Statistik semantik", + "smw-statistics-entities-total": "Entiti (jumlah)", + "smw-statistics-query-format": "$1 format", + "smw-ask-order-rand": "Rawak", + "smw_ask_defaultformat": "asali", + "smw_ask_otheroptions": "Pilihan lain", + "smw-ask-search": "Cari", + "smw-ask-result": "Hasil", + "smw-ask-format": "Format", + "smw_sbv_value": "Nilai:", + "smw_sbv_submit": "Cari hasil", + "browse": "Semak seimbas wiki", + "smw_browselink": "Semak seimbas sifat-sifat", + "smw_browse_go": "Pergi", + "smw_inverse_label_default": "$1 daripada", + "smw_inverse_label_property": "Label sifat songsang", + "smw_result_prev": "Sebelumnya", + "smw_result_next": "Berikutnya", + "smw_result_results": "Hasil", + "smw_result_noresults": "Tiada hasil.", + "smwadmin": "Fungsi penyelia untuk Semantic MediaWiki", + "smw_smwadmin_datarefreshstopconfirm": "Ya, saya {{GENDER:$1|pasti}}.", + "smw-admin-support": "Mendapat sokongan", + "smw-admin-other-functions": "Fungsi lain", + "smw-admin-statistics-extra": "Fungsi statistik", + "smw-admin-statistics": "Statistik", + "smw-admin-supplementary-operational-table-statistics-title": "Statistik jadual", + "smw-admin-supplementary-operational-table-statistics-short-title": "statistik jadual", + "smw-admin-supplementary-elastic-version-info": "Versi", + "smw-admin-supplementary-elastic-mappings-summary": "Ringkasan", + "smw-admin-supplementary-elastic-indices-title": "Indeks", + "smw-admin-supplementary-elastic-statistics-title": "Statistik", + "smw_adminlinks_datastructure": "Struktur data", + "smw-ui-tooltip-title-info": "Maklumat", + "smw-ui-tooltip-title-error": "Ralat", + "smw-ui-tooltip-title-parameter": "Parameter", + "smw-ui-tooltip-title-reference": "Rujukan", + "smw-concept-cache-text": "Konsep ini mempunyai sejumlah $1 laman, dan kali terakhir dikemaskinikan pada $3, $2.", + "smw-admin-configutation-tab-namespaces": "Ruang nama", + "smw-livepreview-loading": "Memuatkan...", + "smw-search-syntax": "Sintaks", + "smw-search-profile-extended-section-namespace": "Ruang nama", + "smw-type-tab-types": "Jenis", + "smw-datavalue-external-formatter-invalid-uri": " \"$1\" ialah URL yang tidak sah.", + "smw-format-datatable-first": "Pertama", + "smw-property-reserved-category": "Kategori", + "smw-category": "Kategori", + "smw-listingcontinuesabbrev": "samb.", + "smw-showingresults": "Yang berikut ialah '''$1''' hasil bermula daripada yang {{PLURAL:$2|pertama|ke-'''$2'''}}." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/mt.json b/mediawiki/extensions/SemanticMediaWiki/i18n/mt.json new file mode 100644 index 0000000..1580f59 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/mt.json @@ -0,0 +1,24 @@ +{ + "@metadata": { + "authors": [ + "Chrisportelli", + "Giangian15", + "Leli Forte", + "Roderick Mallia", + "ToniSant", + "පසිඳු කාවින්ද" + ] + }, + "smw_exportrdf_submit": "Esporta", + "smw-categories": "Kategoriji", + "smw_purge": "Aġġorna", + "browse": "Esplora l-wiki", + "smw_browse_go": "Mur", + "smw_result_prev": "Ta' qabel", + "smw-admin-statistics": "Statistika", + "smw-livepreview-loading": "Tniżżil fil-progress…", + "smw-sp-searchbyproperty-resultlist-header": "Lista ta' riżultati", + "logeventslist-smw-log": "Semantic MediaWiki", + "smw-listingcontinuesabbrev": "kompli", + "smw-showingresults": "Hawn taħt ġie inkluż massimu ta' {{PLURAL:$1|riżultat '''1''' li jibda|'''$1''' riżultat li jibdew}} bin-numru '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/mwl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/mwl.json new file mode 100644 index 0000000..646515d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/mwl.json @@ -0,0 +1,15 @@ +{ + "@metadata": { + "authors": [ + "Athena in Wonderland", + "Cecílio" + ] + }, + "smw_exportrdf_submit": "Sportar", + "smw-categories": "Catadories", + "smw-ask-search": "Percurar", + "browse": "Nabegar pula wiki", + "prefs-general-options": "Oupçones girales", + "smw-livepreview-loading": "A cargar...", + "smw-listingcontinuesabbrev": "cunt." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/my.json b/mediawiki/extensions/SemanticMediaWiki/i18n/my.json new file mode 100644 index 0000000..7c1c560 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/my.json @@ -0,0 +1,127 @@ +{ + "@metadata": { + "authors": [ + "Dr Lotus Black", + "Ninjastrikers", + "Teitei" + ] + }, + "smw-error": "အမှား", + "smw-upgrade-progress": "တိုးတက်မှုအခြေနေ", + "smw_printername_list": "စာရင်း", + "smw_printername_template": "တမ်းပလိတ်", + "smw_printername_category": "ကဏ္ဍ", + "validator-type-class-SMWParamSource": "စာသား", + "smw_notitle": "\"$1\" ကို ဤဝီကီတွင် စာမျက်နှာအမည်တစ်ခုအဖြစ် အသုံးမပြုနိုင်ပါ။", + "smw_nofloat": "\"$1\" သည် နံပါတ်တစ်ခု မဟုတ်ပါ။", + "smw_infinite": "\"$1\" ကဲ့သို့ ကြီးသောနံပါတ်များကို မထောက်ပံ့ထားပါ။", + "smw_nodatetime": "ရက်စွဲ \"$1\" ကို နားမလည်ပါ။", + "specialpages-group-smw_group-maintenance": "ထိန်းသိမ်းပြုပြင်", + "smw-categories": "ကဏ္ဍများ", + "smw-special-property-searchform-options": "ရွေးပိုင်ခွင့်", + "smw-special-wantedproperties-filter-label": "စိစစ်မှု:", + "smw-special-wantedproperties-filter-none": "ဘာမှမရှိ", + "smw_purge": "ပြန်လည်ဆန်းသစ်ရန်", + "types": "အမျိုးအစားများ", + "smw_ask_ascorder": "ငယ်စဉ်ကြီးလိုက်", + "smw_ask_descorder": "ကြီးစဉ်ငယ်လိုက်", + "smw-ask-order-rand": "ကျပန်း", + "smw_ask_submit": "ရလဒ်များ ရှာဖွေရန်", + "smw_ask_defaultformat": "နဂိုအတိုင်း", + "smw-ask-delete": "ဖယ်ရှားရန်", + "smw-ask-options": "ရွေးပိုင်ခွင့်", + "smw-ask-parameters": "ပါရာမီတာများ", + "smw-ask-search": "ရှာဖွေရန်", + "smw-ask-result": "ရလဒ်", + "smw-ask-empty": "အားလုံးရှင်းလင်းရန်", + "smw-ask-extra-other": "အခြား", + "smw_sbv_submit": "ရလဒ်များ ရှာဖွေရန်", + "browse": "ဝီကီကို လှန်လောလေ့လာ", + "smw_browse_go": "သွားပါ", + "smw-browse-show-group": "အုပ်စုများ ပြရန်", + "smw-browse-hide-group": "အုပ်စုများ ဝှက်ရန်", + "smw_pp_from": "စာမျက်နှာမှ:", + "smw_pp_submit": "ရလဒ်များ ရှာဖွေရန်", + "smw-prev": "နောက်သို့ {{PLURAL:$1|$1}}", + "smw-next": "ရှေ့သို့ {{PLURAL:$1|$1}}", + "smw_result_prev": "ယခင်", + "smw_result_next": "ရှေ့သို့", + "smw_result_results": "ရလဒ်များ", + "smw_result_noresults": "မည်သည့်ရလဒ်မှ မရှိပါ", + "smw-admin-statistics-semanticdata-overview": "ခြုံငုံသုံးသပ်ချက်", + "smw_smwadmin_return": "$1 သို့ ပြန်သွားရန်", + "smw-admin-announce": "သင်၏ဝီကီအား ကြေငြာချက်ထုတ်ရန်", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|ရွေးချယ်စရာ|ရွေးချယ်စရာများ}}:", + "smw-admin-deprecation-notice-section-legend": "အညွှန်း", + "smw_smwadmin_datarefreshstop": "ဤမွမ်းမံမှုကို ရပ်တန့်ပါ", + "smw-admin-statistics": "စာရင်းအင်း", + "smw-admin-supplementary-elastic-settings-title": "အပြင်အဆင်များ (ညွှန်ပြသည့်အရာများ)", + "smw-admin-supplementary-elastic-mappings-summary": "အကျဉ်းချုပ်", + "smw-admin-supplementary-elastic-statistics-title": "စာရင်းအင်း", + "smw-admin-supplementary-elastic-replication-files": "ဖိုင်များ", + "smw-admin-supplementary-elastic-replication-pages": "စာမျက်နှာများ", + "smw_adminlinks_datastructure": "ဒေတာဖွဲ့စည်းပုံ", + "smw_adminlinks_displayingdata": "ဒေတာ ဖော်ပြချက်", + "prefs-general-options": "အထွေထွေ ရွေးချယ်စရာများ", + "prefs-extended-search-options": "ထပ်တိုး ရှာဖွေခြင်း", + "smw-ui-tooltip-title-info": "သတင်းအချက်အလက်", + "smw-ui-tooltip-title-warning": "သတိပေးချက်", + "smw-ui-tooltip-title-error": "အမှား", + "smw-ui-tooltip-title-parameter": "ပါရာမီတာ", + "smw-ui-tooltip-title-event": "ဖြစ်ရပ်", + "smw-ui-tooltip-title-note": "မှတ်စု", + "smw-ui-tooltip-title-legend": "အညွှန်း", + "smw-ui-tooltip-title-reference": "ကိုးကား", + "smw-admin-idlookup-input": "ရှာဖွေရန်:", + "smw-admin-objectid": "အိုင်ဒီ:", + "smw-admin-tab-general": "ခြုံငုံသုံးသပ်ချက်", + "smw-admin-tab-alerts": "အသိပေးချက်များ", + "smw-admin-alerts-tab-maintenancealerts": "ထိန်းသိမ်းမှု အသိပေးချက်များ", + "smw-admin-configutation-tab-settings": "အပြင်အဆင်များ", + "smw-admin-configutation-tab-namespaces": "အမည်ညွှန်းများ", + "smw-admin-maintenance-tab-tasks": "တာဝန်များ", + "smw-admin-maintenance-no-description": "ဖော်ပြချက် မရှိပါ။", + "smw-livepreview-loading": "ဝန်ဆွဲတင်နေသည်...", + "smw-sp-searchbyproperty-resultlist-header": "ရလဒ်များ စာရင်း", + "smw-search-profile-sort-title": "ခေါင်းစဉ်", + "smw-search-profile-extended-help-query-link": "အသေးစိတ်များအတွက် $1 ကိုအသုံးပြုပါ။", + "smw-search-profile-extended-section-namespace": "အမည်ညွှန်း", + "smw-search-show": "ပြသရန်", + "smw-search-hide": "ဝှက်ရန်", + "smw-type-tab-types": "အမျိုးအစားများ", + "smw-type-tab-errors": "အမှားများ", + "smw-type-primitive": "အခြေခံ", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|စက္ကန့်|စက္ကန့်}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|စက္ကန့်|စက္ကန့်}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|စက္ကန့်|စက္ကန့်}}", + "smw-format-datatable-loadingrecords": "ဝန်ဆွဲတင်နေသည်...", + "smw-format-datatable-processing": "လုပ်ဆောင်နေသည်...", + "smw-format-datatable-search": "ရှာဖွေရန်:", + "smw-format-datatable-zerorecords": "ကိုက်ညီသော မှတ်တမ်းများ မတွေ့ပါ", + "smw-format-datatable-first": "ပထမဆုံး", + "smw-format-datatable-last": "နောက်ဆုံး", + "smw-format-datatable-next": "ရှေ့သို့", + "smw-format-datatable-previous": "ယခင်", + "smw-format-datatable-toolbar-export": "တင်ပို့ရန်", + "smw-property-reserved-category": "ကဏ္ဍ", + "smw-category": "ကဏ္ဍ", + "smw-filter": "စိစစ်မှု", + "smw-help": "အ​ကူ​အ​ညီ​", + "smw-processing": "လုပ်ဆောင်နေသည်...", + "smw-loading": "ဝန်ဆွဲတင်နေသည်...", + "smw-preparing": "ပြင်ဆင်နေသည်...", + "smw-expand": "ချဲ့ရန်", + "smw-collapse": "ချုံ့ရန်", + "smw-copy": "မိတ္တူကူး", + "smw-jsonview-search-label": "ရှာဖွေရန်:", + "smw-types-title": "အမျိုးအစား: $1", + "smw-property-tab-usage": "အသုံးချခြင်း", + "smw-concept-tab-list": "စာရင်း", + "smw-concept-tab-errors": "အမှားများ", + "smw-pendingtasks-setup-tasks": "တာဝန်များ", + "smw-es-replication-error-divergent-date-short": "အောက်ပါ ရက်စွဲအချက်အလက်များကို နှိုင်းယှဉ်ခြင်းအတွက် အသုံးပြုပါသည်:", + "smw-report": "အစီရင်ခံရန်", + "smw-legend": "အညွှန်း", + "smw-listingcontinuesabbrev": "ပံ့ပိုး", + "smw-showingresults": "№$2 နှင့်စသော ရလဒ် {{PLURAL:$1|1 ခု|$1 ခု}}ထိကို အောက်တွင် ပြထားသည်။" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/myv.json b/mediawiki/extensions/SemanticMediaWiki/i18n/myv.json new file mode 100644 index 0000000..2ffbd25 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/myv.json @@ -0,0 +1,34 @@ +{ + "@metadata": { + "authors": [ + "Botuzhaleny-sodamo", + "Rueter", + "Сантяй" + ] + }, + "smw_printername_table": "Таблица", + "smw_printername_broadtable": "Келей таблица", + "smw_printername_template": "Лопапарцун", + "smw_printername_templatefile": "Лопапарцунокс файла", + "smw_printername_rdf": "RDF-экспорт", + "smw_printername_category": "Явовкс", + "validator-type-class-SMWParamSource": "текст", + "smw_nofloat": "«$1» аволь числа.", + "smw-categories": "Категорият", + "smw-special-property-searchform-options": "Мезде кочкамс", + "smw-special-wantedproperties-filter-label": "Сувтемесь:", + "smw-special-wantedproperties-filter-none": "Арась мезе невтемс", + "smw-special-wantedproperties-filter-unapproved": "Апак кемекста", + "smw-ask-order-rand": "Кодамо-понгсь", + "smw-ask-delete": "Нардамс", + "smw_sbv_property": "Уликсчись:", + "browse": "Лопатнень ваннома", + "smw_browse_go": "Адя", + "smw_pp_type": "Уликсчись:", + "smw-ui-tooltip-title-info": "Информация", + "smw-ui-tooltip-title-error": "Ильведевкс", + "smw-ui-tooltip-title-parameter": "Параметра", + "smw-ui-tooltip-title-legend": "Легенда", + "smw-livepreview-loading": "Йоракшны…", + "smw-listingcontinuesabbrev": "поладксозо моли" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/mzn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/mzn.json new file mode 100644 index 0000000..865e220 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/mzn.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "محک" + ] + }, + "smw-categories": "رج‌ئون", + "browse": "ویکی ره بگردستن", + "smw-listingcontinuesabbrev": "(دمباله)" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/nah.json b/mediawiki/extensions/SemanticMediaWiki/i18n/nah.json new file mode 100644 index 0000000..59ec42d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/nah.json @@ -0,0 +1,22 @@ +{ + "@metadata": { + "authors": [ + "Akapochtli", + "Fluence", + "Languaeditor" + ] + }, + "smw_finallistconjunct": " īhuān", + "smw_nofloat": "\"$1\" ahmo tlapōhualli.", + "smw-categories": "Nehnewkayomeh", + "smw_purge": "Xikyankwili", + "smw-ask-search": "Xiktemo", + "smw_browse_go": "Yaliztica", + "smw_result_prev": "Achtopa", + "smw_result_next": "Niman", + "smw_smwadmin_return": "Titocuepāz īhuīc $1", + "smw-admin-idlookup-input": "Xiktemo", + "smw-livepreview-loading": "Tēmohua...", + "smw-format-datatable-search": "Xiktemo:", + "smw-listingcontinuesabbrev": "niman" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/nap.json b/mediawiki/extensions/SemanticMediaWiki/i18n/nap.json new file mode 100644 index 0000000..0b638ac --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/nap.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "C.R." + ] + }, + "smw-paramdesc-table-transpose": "Fà vedé 'e cap' 'e tabella n verticale e li risultate n orizzontale", + "smw-categories": "Categurìe", + "browse": "Ascìa wiki", + "smw_smwadmin_datarefreshstopconfirm": "Si, so' {{GENDER:$1|sicuro|sicura}}.", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "Ccà abbascio {{PLURAL:$1|s'apprisentano 'o massimo '''1''' risultato|veneno apprisentate massimo '''$1''' risultate}} aropp' 'o nummero '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/nb.json b/mediawiki/extensions/SemanticMediaWiki/i18n/nb.json new file mode 100644 index 0000000..21ff36d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/nb.json @@ -0,0 +1,1103 @@ +{ + "@metadata": { + "authors": [ + "Audun", + "EdoAug", + "Emilbk", + "Event", + "Harald Khan", + "Imre Eilertsen", + "Jeblad", + "Jon Harald Søby", + "Kghbln", + "Kingu", + "Laaknor", + "Macofe", + "McDutchie", + "Nemo bis", + "Nghtwlkr", + "Njardarlogar", + "SuperPotato", + "아라" + ] + }, + "smw-desc": "Gjør wikien din mer tilgjengelig – for maskiner ''og'' mennesker ([https://www.semantic-mediawiki.org/wiki/Help:User_manual online documentation])", + "smw-error": "Feil", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] ble installert og slått på, men mangler en [https://www.semantic-mediawiki.org/wiki/Help:Upgrade oppgraderingsnøkkel].", + "smw-upgrade-release": "Utgave", + "smw-upgrade-progress": "Framgang", + "smw-upgrade-progress-explain": "Et estimat for når oppgraderingen blir fullført er vanskelig å komme med fordi det avhenger av størrelsen til datalageret og den tilgjengelige maskinkraften, og kan ta lengre tid å fullføre for større wikier.\n\nKontakt den lokale administratoren din for mer informasjon om framgangen.", + "smw-upgrade-progress-create-tables": "Oppretter (eller oppdaterer) tabeller og indekser …", + "smw-upgrade-progress-post-creation": "Kjører oppgaver etter opprettelse …", + "smw-upgrade-progress-table-optimization": "Kjører tabelloptimaliseringer …", + "smw-upgrade-progress-supplement-jobs": "Legger til supplementære jobber …", + "smw-upgrade-error-title": "Feil » Semantic MediaWiki", + "smw-upgrade-error-why-title": "Hvorfor ser jeg denne siden?", + "smw-upgrade-error-why-explain": "Semantic MediaWikis interne databasestruktur har blitt endret og krever noen justeringer for å fungere optimalt. Det kan være flere årsaker, inkludert:\n* Ekstra fiksede egenskaper (som krever ekstra tabelloppsett) ble lagt til\n* En oppgradering innholder noen endringer i tabeller eller indekser som gjør det nødvendig å gripe inn før data kan aksesseres\n* Endringer i lagrings- eller spørringsmotoren", + "smw-upgrade-error-how-title": "Hvordan fikser jeg denne feilen?", + "smw-upgrade-error-how-explain-admin": "En administrator (eller noen med administratorrettigheter) må kjøre enten MediaWikis [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] eller Semantic MediaWikis [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php].", + "smw-upgrade-error-how-explain-links": "Du kan også sjekke følgende sider for mer hjelp:\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation Installasjonsinstruksjoner]\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting Hjelpesiden for problemløsing]", + "smw-extensionload-error-why-title": "Hvorfor ser jeg denne siden?", + "smw-extensionload-error-why-explain": "Utvidelsen ble ikke lastet med enableSemantics og ble i stedet slått på på andre måter, som ved å bruke wfLoadExtension( 'SemanticMediaWiki' ) direkte.", + "smw-extensionload-error-how-title": "Hvordan fikser jeg denne feilen?", + "smw-extensionload-error-how-explain": "For å slå på utvidelsen og unngå problemer med navneromserklæringer og ventende konfigurasjoner må man bruke enableSemantics som vil sørge for at påkrevde variabler er satt før utvidelsen lastes via ExtensionRegistry.\n\nTa en titt på hjelpesiden [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] for mer hjelp.", + "smw-upgrade-maintenance-title": "Vedlikehold » Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "Hvorfor ser jeg denne siden?", + "smw-upgrade-maintenance-note": "Det foregår en [https://www.semantic-mediawiki.org/wiki/Help:Upgrade oppdatering] av utvidelsen [https://www.semantic-mediawiki.org/ Semantic MediaWiki] sammen med dens datalager, og vi ber deg om tålmodighet mens vedlikeholdet pågår før wikien kan gjøres tilgjengelig igjen.", + "smw-upgrade-maintenance-explain": "Utvidelsen prøver å minimere påvirkningen og nedetiden ved å utsette de fleste vedlikeholdsoppgavene til etter update.php, men noen databaserelaterte endringer må fullføres først for å unngå inkonsistens i dataene. Det kan inkludere:\n* Endring av tabellstrukturer som å legge til eller endre eksisterende felter\n* Endring eller tillegg i tabellindekser\n* Kjøring av tabelloptimalisering (når det er slått på)", + "smw-semantics-not-enabled": "Semantic MediaWiki-funksjonalitet har ikke blitt slått på på denne wikien.", + "smw_viewasrdf": "RDF-kilde", + "smw_finallistconjunct": " og", + "smw-factbox-head": "… mer om «$1»", + "smw-factbox-facts": "Fakta", + "smw-factbox-facts-help": "Viser påstander og fakta som har blitt opprettet av en bruker", + "smw-factbox-attachments": "Vedlegg", + "smw-factbox-attachments-value-unknown": "I/T", + "smw-factbox-attachments-is-local": "Er lokal", + "smw-factbox-attachments-help": "Viser tilgjengelige vedlegg", + "smw-factbox-facts-derived": "Avledede fakta", + "smw-factbox-facts-derived-help": "Viser fakta som har blitt avledet fra regler eller ved hjelp av andre deduksjonsmetoder", + "smw_isspecprop": "Denne egenskapen er en spesialegenskap på denne wikien.", + "smw-concept-cache-header": "Bruk av mellomlager", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count Konseptmellomlageret] inneholder {{PLURAL:$1|'''en''' enhet|'''$1''' enheter}} ($2).", + "smw-concept-no-cache": "Mellomlager ikke tilgjengelig.", + "smw_concept_description": "Beskrivelse av konseptet «$1»", + "smw_no_concept_namespace": "Konsepter kan kun defineres på sider i Konsept:-navnerommet.", + "smw_multiple_concepts": "Hver konseptside kan kun ha én konseptdefinisjon.", + "smw_concept_cache_miss": "Konseptet \"$1\" kan ikke brukes for øyeblikket da wikiens konfigurasjon krever at den blir satt opp frakoplet.\nHvis problemet ikke forsvinner etter en periode, spør sidens administratorer om å gjøre konseptet tilgjengelig.", + "smw_noinvannot": "Inverse egenskaper kan ikke tildeles verdier.", + "version-semantic": "Semantiske utvidelser", + "smw_baduri": "Beklager, URI-er på formen «$1» er ikke tillatt.", + "smw_printername_count": "Antall resultater", + "smw_printername_csv": "CSV-eksport", + "smw_printername_dsv": "DSV-eksport", + "smw_printername_debug": "Feilsøkspørring (for eksperter)", + "smw_printername_embedded": "Innkapselert sideinnhold", + "smw_printername_json": "JSON-eksport", + "smw_printername_list": "Liste", + "smw_printername_plainlist": "Enkel liste", + "smw_printername_ol": "Nummerert liste", + "smw_printername_ul": "Punktliste", + "smw_printername_table": "Tabell", + "smw_printername_broadtable": "Bred tabell", + "smw_printername_template": "Mal", + "smw_printername_templatefile": "Malfil", + "smw_printername_rdf": "RDF-eksport", + "smw_printername_category": "Kategori", + "validator-type-class-SMWParamSource": "tekst", + "smw-paramdesc-limit": "Maksimalt antall resultater som skal returneres", + "smw-paramdesc-offset": "Forskyvningen av det første resultatet", + "smw-paramdesc-headers": "Viser overskriftene/egenskapsnavnene", + "smw-paramdesc-mainlabel": "Hovedsidenavnets etikett", + "smw-paramdesc-link": "Vis verdier som lenker", + "smw-paramdesc-intro": "Tekst som skal vises før spørringsresultat, dersom det er noen", + "smw-paramdesc-outro": "Tekst som skal vises etter spørringsresultat, dersom det er noen", + "smw-paramdesc-default": "Tekst som skal vises dersom det ikke er noen resultat for spørringen", + "smw-paramdesc-sep": "Skilletegn mellom resultater", + "smw-paramdesc-propsep": "Skilletegnet mellom egenskaper i en resultatoppføring", + "smw-paramdesc-valuesep": "Skilletegnet mellom verdier for egenskapen til et resultat", + "smw-paramdesc-showsep": "Vis skilletegn i starten av CSV-filen (\"sep=\")", + "smw-paramdesc-distribution": "Istedenfor å vise hver av verdiene vises antall verdier", + "smw-paramdesc-distributionsort": "Sorter verdifordelingen mot forekomstantallet", + "smw-paramdesc-distributionlimit": "Begrens verdifordelingen til antallet av visse verdier.", + "smw-paramdesc-aggregation": "Angi hva aggregeringen skal relateres til", + "smw-paramdesc-template": "Navnet på malen som skal vise frem utskriftene", + "smw-paramdesc-columns": "Antall kolonner for å vise resultater", + "smw-paramdesc-userparam": "En verdi sendt til hvert malkall, hvis en mal brukes", + "smw-paramdesc-class": "En ekstra CSS-klasse som skal settes for lista", + "smw-paramdesc-introtemplate": "Navnet på en mal som skal vises før spørringsresultatene, hvis det er noen", + "smw-paramdesc-outrotemplate": "Navnet på en mal som skal vises etter spørringsresultatene, hvis det er noen", + "smw-paramdesc-embedformat": "HTML-elementet brukt for å definere overskrifter", + "smw-paramdesc-embedonly": "Ikke vis overskrifter", + "smw-paramdesc-table-class": "En CSS-klasse til som kan brukes for tabellen", + "smw-paramdesc-table-transpose": "Vis tabelloverskrifter vertikalt og resultater horisontalt", + "smw-paramdesc-prefix": "Kontroller visning av navnerom i utskrifter", + "smw-paramdesc-rdfsyntax": "RDF-syntaksen som blir brukt", + "smw-paramdesc-csv-sep": "Angir kolonneskilletegn", + "smw-paramdesc-csv-valuesep": "Angir et verdiskilletegn", + "smw-paramdesc-csv-merge": "Slå sammen rader og kolonner med identisk subjektidentifikator (første kolonne)", + "smw-paramdesc-csv-bom": "Legg til en BOM (tegn for å varsle endianhet) på toppen av resultatfila", + "smw-paramdesc-dsv-separator": "Skilletegnet som blir brukt", + "smw-paramdesc-dsv-filename": "Navnet på DSV-filen", + "smw-paramdesc-filename": "Navnet på utdatafilen", + "smw-smwdoc-description": "Viser en tabell over alle parametre som kan brukes for det angitte resultatformatet sammen med standardverdier og beskrivelser.", + "smw-smwdoc-default-no-parameter-list": "Dette resultatformatet gir ikke formatspesifikke parametre.", + "smw-smwdoc-par-format": "Resultatformatet for å vise parameterdokumentasjon.", + "smw-smwdoc-par-parameters": "Hvilke parametre som skal vises. \"specific\" for dem som er lagt til av formatet, \"base\" for dem som er tilgjengelig i alle formater og \"all\" for begge.", + "smw-paramdesc-sort": "Egenskap som spørringen skal sorteres etter", + "smw-paramdesc-order": "Sorteringsrekkefølge for spørringen", + "smw-paramdesc-searchlabel": "Tekst for å fortsette søket", + "smw-paramdesc-named_args": "Navngi parameterne for malen", + "smw-paramdesc-template-arguments": "Sett opp hvordan navngitte argumenter overføres til malen", + "smw-paramdesc-import-annotation": "Noen flere annoterte data skal kopieres under parsing av et subjekt", + "smw-paramdesc-export": "Eksportvalg", + "smw-paramdesc-prettyprint": "En ryddig-utskrift som bruker ekstra innrykk og linjeskift", + "smw-paramdesc-json-unescape": "Utdata skal inneholde rene \"\\\"-tegn og multibyte Unicode-tegn", + "smw-paramdesc-json-type": "Serialiseringstype", + "smw-paramdesc-source": "Alternativ spørringskilde", + "smw-paramdesc-jsonsyntax": "JSON-syntaks som brukes", + "smw-printername-feed": "RSS- og Atom-strøm", + "smw-paramdesc-feedtype": "Strømtype", + "smw-paramdesc-feedtitle": "Teksten som brukes som tittel på matingen", + "smw-paramdesc-feeddescription": "‎Teksten som brukes som beskrivelse på matingen", + "smw-paramdesc-feedpagecontent": "Sideinnholdet som vises av matingen", + "smw-label-feed-description": "$1 $2 mating", + "smw-paramdesc-mimetype": "Medietypen (MIME-typen) til resultatfila", + "smw_iq_disabled": "Semantiske spørringer er slått av på denne wikien.", + "smw_iq_moreresults": "… flere resultater", + "smw_parseerror": "Oppgitt verdi ble ikke forstått.", + "smw_decseparator": ",", + "smw_kiloseparator": " ", + "smw_notitle": "«$1» kan ikke brukes som sidenavn på denne wikien.", + "smw_noproperty": "\"$1\" kan ikke brukes som en egenskap i denne wikien.", + "smw_wrong_namespace": "Kun sider i navnerommet «$1» er tillatte her.", + "smw_manytypes": "Mer enn én type definert for egenskapen.", + "smw_emptystring": "Tomme tekststrenger godtas ikke.", + "smw_notinenum": "«$1» er ikke i listen ($2) over [[Property:Allows value|tillatte verdier]] for egenskapen «$3».", + "smw-datavalue-constraint-error-allows-value-list": "«$1» er ikke i lista ($2) over [[Property:Allows value|tillatte verdier]] for egenskapen «$3».", + "smw-datavalue-constraint-error-allows-value-range": "«$1» er ikke i intervallet til «$2» satt av begrensingen for [[Property:Allows value|tillatte verdier]] for egenskapen «$3».", + "smw-constraint-error": "Begrensningsproblem", + "smw-constraint-error-suggestions": "Sjekk de opplistede begrensningsbruddene og egenskapene sammen med deres annoterte verdier for å sjekke at alle begrensningskrav imøtekommes.", + "smw-constraint-error-limit": "Listen vil inneholde maksimalt $1 {{PLURAL:$1|begrensning|begrensninger}}.", + "smw_noboolean": "«$1» gjenkjennes ikke som en Boolean-verdi (true/false).", + "smw_true_words": "true,t,yes,y,ja,j,sant,s", + "smw_false_words": "false,f,no,n,nei,usant,u", + "smw_nofloat": "«$1» er ikke et tall.", + "smw_infinite": "Tall så store som «$1» støttes ikke.", + "smw_unitnotallowed": "\"$1\" er ikke definert som en lovlig måleenhet for denne egenskapen.", + "smw_nounitsdeclared": "Ingen måleenhet ble definert for denne egenskapen.", + "smw_novalues": "Ingen verdier angitt.", + "smw_nodatetime": "Datoen «$1» ble ikke forstått.", + "smw_toomanyclosing": "«$1» opptrer for mange ganger i spørringen.", + "smw_noclosingbrackets": "Bruken av «[[» i spørringen din ble ikke stengt av «]]».", + "smw_misplacedsymbol": "Symbolet «$1» ble brukt på et sted hvor det ikke er nyttig.", + "smw_unexpectedpart": "«$1»-delen av spørringen var uforståelig.\nResultatene kan være uventede.", + "smw_emptysubquery": "En underspørring har ingen gyldige betingelser.", + "smw_misplacedsubquery": "En underspørring ble brukt på et sted hvor underspørringer ikke tillates.", + "smw_valuesubquery": "Underspørringer støttes ikke for verdier av egenskapen «$1».", + "smw_badqueryatom": "En del («[[…]]») av spørringen ble ikke forstått.", + "smw_propvalueproblem": "Verdien av egenskapen «$1» ble ikke forstått.", + "smw_noqueryfeature": "Noen spørringsfunksjoner ble ikke støttet i denne wikien, og deler av spørringen ble hoppet over ($1).", + "smw_noconjunctions": "Konjunksjoner i spørringer støttes ikke i denne wikien, og deler av spørringen ble hoppet over ($1).", + "smw_nodisjunctions": "Disjunksjoner i spørringer støttes ikke på denne wikien, og deler av spøringen ble utelatt ($1).", + "smw_querytoolarge": "Følgende {{PLURAL:$2|spørringsbetingelse|$2 spørringsbetingelser}} kunne ikke vurderes på grunn av wikiens restriksjoner på spørringsstørrelse eller dybde: $1.\n\nSpørringsbetingelsene $1 kunne ikke tas hensyn til på grunn av wikiens begrensninger i spørringsstørrelse eller dybde.", + "smw_notemplategiven": "Oppgi en verdi for parameteret «mal» for at dette spørringsformatet skal fungere.", + "smw_db_sparqlqueryproblem": "Spørringen ga ikke noe resultat fra SPARQL-databasen. Denne feilen kan være midlertidig eller indikere en feil i database-programvaren.", + "smw_db_sparqlqueryincomplete": "Det viste seg å være for vanskelig å gi et svar på spørringen og denne ble derfor avbrutt. Noen resultater kan mangle. Hvis mulig, bruk en enklere spørring.", + "smw_type_header": "Egenskaper av typen «$1»", + "smw_typearticlecount": "Viser {{PLURAL:$1|én egenskap|$1 egenskaper}} som bruker denne typen.", + "smw_attribute_header": "Sider som bruker egenskapen «$1»", + "smw_attributearticlecount": "Viser {{PLURAL:$1|én side|$1 sider}} som bruker denne egenskapen.", + "smw-propertylist-subproperty-header": "Underegenskaper", + "smw-propertylist-redirect-header": "Synonymer", + "smw-propertylist-error-header": "Sider med ugyldige tilordninger", + "smw-propertylist-count": "Viser $1 {{PLURAL:$1|relatert element|relaterte elementer}}.", + "smw-propertylist-count-with-restricted-note": "Viser $1 {{PLURAL:$1|relatert element|relaterte elementer}} (flere er tilgjengelige, men visningen er begrenset til \"$2\").", + "smw-propertylist-count-more-available": "Viser $1 {{PLURAL:$1|relatert element|relaterte elementer}} (flere er tilgjengelige).", + "specialpages-group-smw_group-maintenance": "Vedlikehold", + "specialpages-group-smw_group-properties-concepts-types": "Egenskaper, konsepter og typer", + "specialpages-group-smw_group-search": "Bla gjennom og søk", + "exportrdf": "Eksporter sider til RDF", + "smw_exportrdf_docu": "Denne siden lar deg skaffe data fra en side i RDF-format.\nSkriv inn titler i tekstboksten nedenfor for å eksportere sider, én tittel per linje.", + "smw_exportrdf_recursive": "Eksporter alle relaterte sider rekursivt.\nMerk at resultatet kan være stort.", + "smw_exportrdf_backlinks": "Eksporter også alle sider som refererer til de eksporterte sidene.\nLager en RDF som kan gås gjennom.", + "smw_exportrdf_lastdate": "Ikke eksporter sider som ikke ble endret siden gitte tidspunkt.", + "smw_exportrdf_submit": "Eksporter", + "uriresolver": "URI-løser", + "properties": "Egenskaper", + "smw-categories": "Kategorier", + "smw_properties_docu": "Følgende egenskaper brukes på wikien.", + "smw_property_template": "$1 av type $2 ($3 {{PLURAL:$3|bruker}})", + "smw_propertylackspage": "Alle egenskaper burde beskrives av en side.", + "smw_propertylackstype": "Ingen type spesifisert for denne egenskapen (bruker foreløpig typen $1).", + "smw_propertyhardlyused": "Denne egenskapen brukes nesten ikke på wikien.", + "smw-property-name-invalid": "Egenskap $1 ikke ikke brukes (ugyldig egenskapsnavn).", + "smw-property-name-reserved": "«$1» ble listet opp som et reservert navn og bør ikke brukes som en egenskap. Følgende [https://www.semantic-mediawiki.org/wiki/Help:Property_naming hjelpeside] kan inneholde informasjon om hvorfor dette navnet ble reservert.", + "smw-sp-property-searchform": "Vis egenskaper som inneholder:", + "smw-sp-property-searchform-inputinfo": "Det skilles mellom store og små bokstaver i inndata, og når disse brukes for filtrering, vil bare egenskaper vises som passer med betingelsen.", + "smw-special-property-searchform": "Vis egenskaper som inneholder:", + "smw-special-property-searchform-inputinfo": "Det skilles mellom store og små bokstaver i inndata, og når disse brukes for filtrering, vil bare egenskaper vises som oppfyller betingelsen.", + "smw-special-property-searchform-options": "Valg", + "smw-special-wantedproperties-filter-label": "Filter:", + "smw-special-wantedproperties-filter-none": "Ingen", + "smw-special-wantedproperties-filter-unapproved": "Ikke godkjent", + "smw-special-wantedproperties-filter-unapproved-desc": "Filtervalg brukt i forbindelse med autoritetsmodus.", + "concepts": "Begreper", + "smw-special-concept-docu": "Et [https://www.semantic-mediawiki.org/wiki/Help:Concepts konsept] kan betraktes som en \"dynamisk kategori\", dvs. som en samling sider som ikke opprettes manuelt, men som settes sammen av Semantic MediaWiki fra en beskrivelse av en gitt spørring.", + "smw-special-concept-header": "Liste av konsepter", + "smw-special-concept-count": "Følgende {{PLURAL:$1|konsept|$1 konsepter}} {{PLURAL:$1|}} vises.", + "smw-special-concept-empty": "Ingen konsepter ble funnet.", + "unusedproperties": "Ubrukte egenskaper", + "smw-unusedproperties-docu": "Denne siden lister opp [https://www.semantic-mediawiki.org/wiki/Unused_properties ubenyttede egenskaper] som er opprettet uten at andre sider bruker dem. For en annen visning, se spesialsidene [[Special:Properties|alle]] eller [[Special:WantedProperties|ønskede egenskaper]].", + "smw-unusedproperty-template": "$1 av type $2", + "wantedproperties": "Ønskede egenskaper", + "smw-wantedproperties-docu": "Denne siden lister opp [https://www.semantic-mediawiki.org/wiki/Wanted_properties ønskede egenskaper] som brukes i wikien, men har ennå ingen side som beskriver dem. For en annan visning, se spesialsidene [[Special:Properties|alle]] eller [[Special:UnusedProperties|ubrukte egenskaper]].", + "smw-wantedproperty-template": "$1 (brukt {{PLURAL:$2|én gang|$2 ganger}})", + "smw-special-wantedproperties-docu": "Denne siden lister opp [https://www.semantic-mediawiki.org/wiki/Wanted_properties ønskede egenskaper] som brukes i wikien, men som ikke har noen side som beskriver dem. For en annan visning, se spesialsidene [[Special:Properties|alle]] eller [[Special:UnusedProperties|ubrukte egenskaper]].", + "smw-special-wantedproperties-template": "$1 (er brukt {{PLURAL:$2|én gang|$2 ganger}})", + "smw_purge": "Gjenoppfrisk", + "smw-purge-update-dependencies": "Semantic MediaWiki gjenoppfrisker den gjeldende siden på grunn av utdaterte avhengigheter den fant som krever en oppdateringer.", + "smw-purge-failed": "Semantic MediaWiki prøvde å gjenoppfriske siden, men lyktes ikke", + "types": "Typer", + "smw_types_docu": "Liste over [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes tilgjengelige datatyper] der hver [https://www.semantic-mediawiki.org/wiki/Help:Datatype type] representerer et unikt sett av attributter for å beskrive en verdi med tanke på lagring og visningskarakteristikker som arves av en gitt egenskap.", + "smw-special-types-no-such-type": "«$1» er ukjent eller har ikke blitt angitt som en gyldig datatype.", + "smw-statistics": "Semantisk statistikk", + "smw-statistics-cached": "Semantisk statistikk (mellomlagret)", + "smw-statistics-entities-total": "Oppføringer (totalt)", + "smw-statistics-entities-total-info": "Et estimert antall rader for entiteter. Det inkluderer egenskaper, konsepter og annen registrert objektrepresentasjon som krever in ID-tildeling.", + "smw-statistics-property-instance": "Egenskap {{PLURAL:$1|verdi|verdier}} (totalt)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Egenskap|Egenskaper}}]] (totalt)", + "smw-statistics-property-total-info": "Totalt antall registrerte egenskaper.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Egenskap|Egenskaper}} (totalt)", + "smw-statistics-property-used": "{{PLURAL:$1|Egenskap|Egenskaper}} (bruk med minst én verdi)", + "smw-statistics-property-page": "{{PLURAL:$1|Egenskap|Egenskaper}} (som har en egen side)", + "smw-statistics-property-page-info": "Antall egenskaper som har en dedikert side og beskrivelse.", + "smw-statistics-property-type": "{{PLURAL:$1|Egenskap|Egenskaper}} (som er tildelt en datatype)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Spørring|Spørringer}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Spørring|Spørringer}}]] (innbygd, totalt)", + "smw-statistics-query-format": "$1-format", + "smw-statistics-query-size": "Størrelse på spørringen", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Konsept|Konsepter}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Konsept|Konsepter}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Underobjekt|Underobjekter}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Underobjekt|Underobjekter}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Datatype|Datatyper}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Egenskapsverdi|Egenskapsverdier}} ([[Special:ProcessingErrorList|upassende {{PLURAL:$1|annotering|annoteringer}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Egenskapsverdi|Egenskapsverdier}} (upassende {{PLURAL:$1|annotering|annoteringer}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Utdatert enhet|Utdaterte enheter}}]", + "smw-statistics-delete-count-info": "Entiteter som har blitt merket for fjerning bør ryddes vekk regelmessig med de gitte vedlikeholdsskriptene.", + "smw_uri_doc": "URI-løseren implementerer [$1 finning av W3C TAG-er på «httpRange-14»].\nDen sørger for at en RDF-representasjon (for maskiner) eller ei wikiside (for mennesker) leveres avhengig av forespørselen.", + "ask": "Semantisk søk", + "smw-ask-help": "Denne seksjonen inneholder noen lenker for å forklare hvordan syntaksen #ask brukes.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Å velge sider] beskriver hvordan man velger sider og bygger vilkår\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Search_operators Søkeoperatorer] lister opp tilgjengelige søkeoperatorer inkludert de for intervall- og jokertegnspørringer\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Å vise informasjon] gir et overblikk over bruken av printout-påstander og formateringsvalg", + "smw_ask_sortby": "Sorter etter kolonne (valgfritt)", + "smw_ask_ascorder": "Stigende", + "smw_ask_descorder": "Synkende", + "smw-ask-order-rand": "Tilfeldig", + "smw_ask_submit": "Finn resultater", + "smw_ask_editquery": "Rediger spørring", + "smw_add_sortcondition": "[Legg til sorteringsbetingelse]", + "smw-ask-sort-add-action": "Legg til sorteringsbetingelse", + "smw_ask_hidequery": "Skjul spørring (kompakt visning)", + "smw_ask_help": "Spørringshjelp", + "smw_ask_queryhead": "Betingelse", + "smw_ask_printhead": "Utvalg for utskrift", + "smw_ask_printdesc": "(legg til et egenskapsnavn per linje)", + "smw_ask_format_as": "Formater som:", + "smw_ask_defaultformat": "standard", + "smw_ask_otheroptions": "Andre valgmuligheter", + "smw-ask-otheroptions-info": "Dette avsnittet innholder valg som påvirker utdata. Parameterbeskrivelser vises når musepekeren føres over dem.", + "smw-ask-otheroptions-collapsed-info": "Vennligst bruk pluss-ikonet for å vise alle valgmuligheter", + "smw_ask_show_embed": "Vis innkapslet kode", + "smw_ask_hide_embed": "Skjul innkapslet kode", + "smw_ask_embed_instr": "For å bygge inn denne spørringen i en wikiside, bruk koden nedenfor.", + "smw-ask-delete": "Fjern", + "smw-ask-sorting": "Sortering", + "smw-ask-options": "Valgmuligheter", + "smw-ask-options-sort": "Sorteringsmuligheter", + "smw-ask-format-options": "Format og alternativer", + "smw-ask-parameters": "Parametre", + "smw-ask-search": "Søk", + "smw-ask-debug": "Feilsøking", + "smw-ask-debug-desc": "Genererer feilsøkingsinformasjon for spørring", + "smw-ask-no-cache": "Slå av spørringsmellomlager", + "smw-ask-no-cache-desc": "Resultater uten spørringsmellomlager", + "smw-ask-result": "Resultat", + "smw-ask-empty": "Fjern alle oppføringer", + "smw-ask-download-link-desc": "Last ned spørringsresultatene i formatet $1", + "smw-ask-format": "Format", + "smw-ask-format-selection-help": "Hjelp med det valgte formatet: $1", + "smw-ask-condition-change-info": "Vilkårene ble endret og søkemotoren må kjøre spørringen på nytt for å produsere resultatene som matcher de nye vilkårene.", + "smw-ask-input-assistance": "Inndatahjelp", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Inndatahjelp] gis for feltene printout, sort og condition. Condition-feltet kreves for å bruke én av følgende prefiks:", + "smw-ask-condition-input-assistance-property": "p: for å hente egenskapsforslag (f.eks. [[p:Has …)", + "smw-ask-condition-input-assistance-category": "c: for å hente kategoriforslag", + "smw-ask-condition-input-assistance-concept": "con: for å hente konseptforslag", + "smw-ask-format-change-info": "Formatet ble endret og spørringen må kjøres på nytt for å matche nye parametre og visualisere alternativer.", + "smw-ask-format-export-info": "Det valgte formatet er et eksportformat uten visuell representasjon. Vær obs på at resultatene kommer som nedlastinger.", + "smw-ask-query-search-info": "Spørringen $1 ble besvart av {{PLURAL:$3|1=$2 (fra mellomlager)|$2 (fra mellomlager)|$2}} på $4 {{PLURAL:$4|sekund|sekunder}}.", + "smw-ask-extra-query-log": "Spørringslogg", + "smw-ask-extra-other": "Annet", + "searchbyproperty": "Søk etter egenskap", + "processingerrorlist": "Liste over prosesseringsfeil", + "constrainterrorlist": "Begrensningsfeilliste", + "propertylabelsimilarity": "Likhetsrapport for egenskapsetikett", + "missingredirectannotations": "Mangler omdirigeringsannotasjoner", + "smw-processingerrorlist-intro": "Følgende liste gir en oversikt over [https://www.semantic-mediawiki.org/wiki/Processing_errors prosesseringsfeil] som oppsto i forbindelse med [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. Det er anbefalt å sjekke lista regelmessig og rette ugyldige verdiannoteringer.", + "smw-constrainterrorlist-intro": "Følgende liste gir en oversikt over [https://www.semantic-mediawiki.org/wiki/Constraint_errors begrensningsfeil] som oppsto i tilknytning til [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. Det anbefales å overvåke denne listen på jevnlig basis og rette ugyldige verdiannoteringer.", + "smw-missingredirects-intro": "Følgende seksjon lister opp sider som mangler [https://www.semantic-mediawiki.org/wiki/Redirects omdirigering]-annotasjoner i Semantic MediaWiki (ved å sammenligne med informasjon lagret i MediaWiki) og gjenopprette disse annotasjonene manuelt, [https://www.semantic-mediawiki.org/wiki/Help:Purge gjenoppfriske] siden eller kjøre rebuildData.php (med alternativet --redirects).", + "smw-missingredirects-list": "Sider som mangler annoteringer", + "smw-missingredirects-list-intro": "Viser {{PLURAL:$1|éi side|$1 sider}} som mangler omdirigeringsannotasjoner.", + "smw-missingredirects-noresult": "Ingen manglende omdirigeringsannotasjoner funnet.", + "smw_sbv_docu": "Søk etter alle sider som har en gitt egenskap og verdi.", + "smw_sbv_novalue": "Skriv inn en gyldig verdi for egenskapen, eller vis alle egenskapsverdier for «$1».", + "smw_sbv_displayresultfuzzy": "En liste over alle sider som har egenskapen «$1» med verdien «$2».\nSiden det bare ble noen få resultater, vises også nære verdier.", + "smw_sbv_property": "Egenskap:", + "smw_sbv_value": "Verdi:", + "smw_sbv_submit": "Finn resultater", + "browse": "Se gjennom wikien", + "smw_browselink": "Bla gjennom egenskaper", + "smw_browse_article": "Skriv inn navnet på siden du vil starte å bla fra.", + "smw_browse_go": "Gå", + "smw_browse_show_incoming": "Vis innkommende egenskaper", + "smw_browse_hide_incoming": "Skjul innkommende egenskaper", + "smw_browse_no_outgoing": "Denne siden har ingen egenskaper.", + "smw_browse_no_incoming": "Ingen egenskaper lenker til denne siden.", + "smw-browse-from-backend": "Informasjon hentes nå fra tjenermaskinen.", + "smw-browse-intro": "Denne siden viser detaljer om et element eller objektype, så vær vennlig å angi navnet på et objekt som skal sjekkes.", + "smw-browse-invalid-subject": "Elementvalideringen ga en \"$1\"-feil.", + "smw-browse-api-subject-serialization-invalid": "Elementet har et ugyldig serialiseringsformat.", + "smw-browse-js-disabled": "Det er mistanke om at JavaScript er deaktivert eller utilgjengelig av annen årsak, og vi anbefaler derfor å bruke en nettleser hvor dette støttes. Andre valgmuligheter diskuteres på innstillingssiden for [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Vis grupper", + "smw-browse-hide-group": "Skjul grupper", + "smw-noscript": "Denne siden eller handlingen trenger JavaScript for å virke. Aktiver JavaScript i nettleseren din eller bruk en nettleser der dette virker. Ta en titt på hjelpesiden [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript] for mer hjelp.", + "smw_inverse_label_default": "$1 av", + "smw_inverse_label_property": "Invers egenskapsmerkelapp", + "pageproperty": "Sideegenskapssøk", + "pendingtasklist": "Liste over ventende oppgaver", + "smw_pp_docu": "Enten en side og en egenskap, eller bare en egenskap for å hente alle tildelte verdier.", + "smw_pp_from": "Fra side:", + "smw_pp_type": "Egenskap:", + "smw_pp_submit": "Finn resultater", + "smw-prev": "de {{PLURAL:$1|$1}} forrige", + "smw-next": "de {{PLURAL:$1|$1}} neste", + "smw_result_prev": "Forrige", + "smw_result_next": "Neste", + "smw_result_results": "Resultater", + "smw_result_noresults": "Beklager, ingen resultater funnet", + "smwadmin": "Kontrollpanel for Semantic MediaWiki", + "smw-admin-statistics-job-title": "Jobbstatistikk", + "smw-admin-statistics-job-docu": "Jobb-statistikken viser informasjon om planlagte Semantic MediaWiki-jobber som enda ikke har blitt kjørt. Antall jobber kan være unøyaktig angitt eller inneholde mislykkede forsøk, se [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue manual] for mer informasjon.", + "smw-admin-statistics-querycache-title": "Spørringsmellomlager", + "smw-admin-statistics-querycache-disabled": "[https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] har ikke blitt aktivisert på denne wikien, så derfor er ingen statistikk tilgjengelig.", + "smw-admin-statistics-querycache-legend": "Mellomlager-statistikken skal inneholde foreløpige kumulative og avledede data som inneholder: \n* «misses» som er det samlede antall forsøk på å hente data fra mellomlagret med uoppnåelige svar, som fremtvinger direkte-henting fra kodelageret (database, triple-store etc.)\n* «deletes» som er det totale antall mellomlager-evakueringer (enten gjennom gjenoppfrisking eller spørringsavhengighet) \n* «hits» som er det totale antall mellomlager-hentinger fra enten fra enten innbygde (spørringer kalt fra en wikiside) eller ikke-innbygde (dersom aktivisert, etterspurt av sider som Special:Ask eller API)\n* «medianRetrievalResponseTime» er en orienteringsverdi for median responstid (i sekunder) for mellomlagrede og ikke-mellomlagrede hentingsforespørsler over tidsrommet til samlingsprosessen\n* «noCache» angir antall ikke-prøvde forespørsler (limit=0-spørringer, «no-cache»-alternativ etc.) for å hente resultater fra mellomlagret", + "smw-admin-statistics-section-explain": "Seksjonen gir ekstra statistikk for administratorer.", + "smw-admin-statistics-semanticdata-overview": "Oversikt", + "smw-admin-permission-missing": "Tilgangen til denne siden har blitt blokkert på grunn av manglende tillatelser, se [https://www.semantic-mediawiki.org/wiki/Help:Permissions tillatelser]-hjelpesiden for detaljer om nødvendige innstillinger.", + "smw-admin-setupsuccess": "Lagringsmotoren har blitt initialisert.", + "smw_smwadmin_return": "Gå tilbake til $1", + "smw_smwadmin_updatestarted": "En ny oppdateringsprosess for oppfriskning av de semantiske dataene ble startet.\nAlle lagrede data vil bli bygd på nytt eller reparert der det trengs.\nDu kan følge med på fremgangen til oppdateringen på denne spesialsiden.", + "smw_smwadmin_updatenotstarted": "Det kjører allerede en oppdateringsprosess.\nStarter derfor ikke enda en.", + "smw_smwadmin_updatestopped": "Alle eksisterende oppdateringsprosesser har blitt stoppet.", + "smw_smwadmin_updatenotstopped": "For å stoppe den kjørende oppdateringsprosessen må du markere avkrysningsboksen for å vise at du er helt sikker.", + "smw-admin-docu": "Denne spesialsiden hjelper deg under innstallasjon, oppgradering og vedlikehold av Semantic MediaWiki og tilbyr flere administrative funksjoner og oppgaver i tillegg til statistikk. Husk å ta sikkerhetskopier av viktige data før du starter disse administrasjonsfunksjonene.", + "smw-admin-environment": "Programvaremiljø", + "smw-admin-db": "Databaseoppsett", + "smw-admin-db-preparation": "Tabellinitialiseringen er underveis og det kan ta noe tid før resultater vises avhengig av størrelse og tabelloptimalisering.", + "smw-admin-dbdocu": "Semantic MediaWiki krever sin egen databasestruktur (og er uavhengig av MediaWiki og påvirker derfor ikke resten av MediaWiki-installasjonen) forå lagre semantiske data.\nDenne initialiseringsfunksjonen kan kjøres flere ganger uten å gjøre noen skade, men den trenger kun å kjøres en gang i forbindelse med installering eller oppgradering.", + "smw-admin-permissionswarn": "Dersom operasjonen mislykkes med SQL-feil, har databasebrukeren som wikien din anvender sannsynligvis manglende rettigheter (sjekk LocalSettings.php).\nEnten må denne brukeren gis tilstrekkelige rettigheter til å opprette og slette tabeller, eller en må midlertidig skrive inn innloggingsinformasjonen til database-roten i LocalSettings.php, eller en må bruke vedlikeholdsskriptet setupStore.php som har rettighetene til LocalSettings.php.", + "smw-admin-dbbutton": "Initialiser eller oppgrader tabeller", + "smw-admin-announce": "Kunngjør din wiki", + "smw-admin-announce-text": "Dersom wikien er offentlig, kan du registrere den på WikiApiary, wikien som holder oversikt over wikier.", + "smw-admin-deprecation-notice-title": "Meldinger om funksjonalitet som vil bli fjernet", + "smw-admin-deprecation-notice-docu": "Det følgende avsnittet inneholder innstillinger som har blitt satt som utgående eller utgått, men har blitt oppdaget å være aktive på denne wikien. Det må påregnes at i en fremtidig versjon vil støtte for disse innstillingsmulighetene være fjernet.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] er utgående og blir fjernet i $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] vil fjerne (eller erstatte) følgende {{PLURAL:$2|alternativ|alternativer}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 er foreldet og blir fjernet i $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] ble erstattet av [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] ble erstattet av $2", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|alternativ|alternativer}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 erstattes av $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] ble fjernet i $2", + "smw-admin-deprecation-notice-title-notice": "Foreldede innstillinger", + "smw-admin-deprecation-notice-title-notice-explanation": "Foreldede innstillinger viser innstillinger som har blitt oppdaget brukt på denne wikien og som kommer til å fjernes eller endres i en framtidig utgave.", + "smw-admin-deprecation-notice-title-replacement": "Erstattede eller omdøpte innstillinger", + "smw-admin-deprecation-notice-title-replacement-explanation": "Erstattede eller omdøpte innstillinger inneholder innstillinger som er blitt omdøpt eller endret på annen måte, og det anbefales snarest å oppdatere navn og format.", + "smw-admin-deprecation-notice-title-removal": "Fjernede innstillinger", + "smw-admin-deprecation-notice-title-removal-explanation": "Fjernede innstillinger identisiferer innstillinger som ble fjernet i en tidligere utgave, men bruk av dem på denne wikien pågår fortsatt.", + "smw-admin-deprecation-notice-section-legend": "Tegnforklaring", + "smw-smwadmin-refresh-title": "Datareparering og -oppdatering", + "smw_smwadmin_datarefresh": "Datagjenoppbygging", + "smw_smwadmin_datarefreshdocu": "Det er mulig å gjenopprette alle Semantic MediaWiki-data basert på det nåværende innholdet på wikien.\nDette kan være nyttig for å reparere ødelagte data eller for å oppfriske data hvis det interne formatet har blitt endret på grunn av programvareoppdateringer.\nOppdateringen blir utført side for side og vil ikke bli fullført umiddelbart.\nDet følgende viser om en oppdatering er i gang og lar deg starte eller stoppe oppdateringer (ved mindre denne muligheten er gjort utilgjengelig av sidens administratorer).", + "smw_smwadmin_datarefreshprogress": "En oppdatering er allerede i gang.\nDet er normalt at oppdateringen går tregt fremover siden den bare oppdaterer data i små biter hver gang en bruker besøker wikien.\nFor å fullføre denne oppdateringen raskere kan du starte MediaWiki-vedlikeholdsskriptet runJobs.php (bruk valget --maxjobs 1000 for å avgrense antallet oppdateringer som gjøres sammenhengende).\nAnslått fremdrift for gjeldende oppdatering:", + "smw_smwadmin_datarefreshbutton": "Planlegg gjenoppbygging av data", + "smw_smwadmin_datarefreshstop": "Stopp denne oppdateringen", + "smw_smwadmin_datarefreshstopconfirm": "Ja, jeg er {{GENDER:$1|sikker}}.", + "smw-admin-job-scheduler-note": "Oppgaver (som er slått på) i denne seksjonen utføres via jobbkøen for å unngå vranglåssituasjoner under kjøringen. [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue Jobbkøen] er ansvarlig for prosesseringen og det er kritisk at vedlikeholdsskriptet runJobs.php har riktig kapasitet (se også konfigurasjonsparameteren $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "Forkasting av utdaterte elementer", + "smw-admin-outdateddisposal-intro": "Noen aktiviteter (som en endring av en egenskap sin type, fjerning av wiki-sider, eller verdikorreksjoner) resulterer i [https://www.semantic-mediawiki.org/wiki/Outdated_entities utdaterte elementer], og det anbefales å fjerne disse med jevne mellomrom for å frigjøre databaseplass.", + "smw-admin-outdateddisposal-active": "En ryddejobb av utdaterte entiteter er planlagt.", + "smw-admin-outdateddisposal-button": "Gjør klar rydding", + "smw-admin-feature-disabled": "Denne funksjonen har blitt slått av på denne wikien. Se den tilknyttede hjelpesiden for detaljer.", + "smw-admin-propertystatistics-title": "Ombygging av egenskapsstatistikk", + "smw-admin-propertystatistics-intro": "Ombygger hele statistikken for bruken av egenskaper og derigjennom oppdaterer og korrigerer [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count bruksantallet] av egenskaper.", + "smw-admin-propertystatistics-active": "En ombyggingsjobb for egenskapsstatistikk har blitt planlagt.", + "smw-admin-propertystatistics-button": "Sett opp ombygging av statistikken", + "smw-admin-fulltext-title": "Ombygging av fulltekstsøk", + "smw-admin-fulltext-intro": "Gjenoppbygger søkeindeksen fra egenskapstabeller med en aktivisert [https://www.semantic-mediawiki.org/wiki/Full-text fulltekstsøkbasert] datatype.", + "smw-admin-fulltext-active": "En fulltekstsøkbasert gjenoppbyggingsjobb har blitt planlagt.", + "smw-admin-fulltext-button": "Sett opp en fulltekstbasert gjenoppbygging", + "smw-admin-support": "Få støtte", + "smw-admin-supportdocu": "Diverse ressurser er tilgjengelige for å hjelpe deg om du skulle få problemer:", + "smw-admin-installfile": "Hvis du får problemer med installeringen, studer retningslinjene i INSTALL-filen og installeringssiden.", + "smw-admin-smwhomepage": "Den komplette brukerdokumentasjonen til Semantic MediaWiki finnes på semantic-mediawiki.org.", + "smw-admin-bugsreport": "Feil kan rapporteres til saksflytverktøyet. Feilrapportsiden gir retningslinjer om hvordan en skriver en effektiv feilrapport.", + "smw-admin-questions": "Hvis du har ytterligere spørsmål eller forslag, bli med i diskusjonen på Semantic MediaWikis brukerforum.", + "smw-admin-other-functions": "Andre funksjoner", + "smw-admin-statistics-extra": "Statistikkfunksjoner", + "smw-admin-statistics": "Statistikk", + "smw-admin-supplementary-section-title": "Ekstra funksjoner", + "smw-admin-supplementary-section-subtitle": "Støttede kjernefunksjoner", + "smw-admin-supplementary-section-intro": "Dette avsnittet har tilleggsfunksjoner utover det som behøves for vedlikehold, og det er mulig at noen funksjoner som angis i [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions dokumentasjonen] er begrenset eller utilgjengelig og derfor ikke kan brukes på denne wikien.", + "smw-admin-supplementary-settings-title": "Konfigurasjon og innstillinger", + "smw-admin-supplementary-settings-intro": "$1 viser parametere som definerer oppførselen til Semantic MediaWiki", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Driftsstatistikk", + "smw-admin-supplementary-operational-statistics-short-title": "operasjonsstatistikk", + "smw-admin-supplementary-operational-statistics-intro": "Viser et utvidet sett av $1", + "smw-admin-supplementary-idlookup-title": "Elementoppslag og forkasting", + "smw-admin-supplementary-idlookup-short-title": "entitetsoppslag og forkasting", + "smw-admin-supplementary-idlookup-intro": "Støtter en enkel $1-funksjon", + "smw-admin-supplementary-duplookup-title": "Dupliser elementoppslag", + "smw-admin-supplementary-duplookup-intro": "$1 for å finne entiteter som er kategorisert som duplikater for den valgte tabellmatrisen", + "smw-admin-supplementary-duplookup-docu": "Denne siden angir elementer fra de valgte tabellene som har blitt kategorisert som [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities duplikater]. Duplikatelementer bør, om noensinne, bare opptre i sjeldne tilfeller, ev. forårsaket av en avsluttet prosess under en databaseoppdatering eller en mislykket tilbakerulling fra sikkerhetskopi.", + "smw-admin-supplementary-operational-statistics-cache-title": "Mellomlagerstatistikk", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 viser et utvalgt sett av mellomlagerstatistikk", + "smw-admin-supplementary-operational-table-statistics-title": "Tabellstatistikk", + "smw-admin-supplementary-operational-table-statistics-short-title": "tabellstatistikk", + "smw-admin-supplementary-operational-table-statistics-intro": "Genererer $1 for et valgt sett av tabeller", + "smw-admin-supplementary-operational-table-statistics-explain": "Denne seksjonen inneholder den vasgte tabellstatistikken for å hjelpe administratorer og andre datakuratorer med å gjøre informerte valg om statusen til bakstykket og lagringsmotoren.", + "smw-admin-supplementary-operational-table-statistics-legend": "Tegnforklaringen beskriver noen av nøklene som brukes for tabellstatistikken og inkluderer:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count totalt antall rader i en tabell", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id den siste ID-en som er i bruk for tiden\n* duplicate_count antall duplikater funnet i id_table (se også [[Special:SemanticMediaWiki/duplicate-lookup|Oppslag på duplikatentiteter]]) \n* rows.rev_count antall rader som har en revision_id tildelt som indikerer en direkte wikisidelenke \n* rows.smw_namespace_group_by_count antall aggregerte rader for navnerom brukt i tabellen\n* rows.smw_proptable_hash.query_match_countantall spørringsunderobjekter med en tilsvarende tabellreferanse\n* rows.smw_proptable_hash.query_null_count antall spørringsunderobjekter uten en tabellreferanse (ulenket, flytende referanse)", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent prosentandel begreper som er unike (en lav prosent indikerer at repetetive begreper er i tabellinnholdet og indeksen)\n* rows.terms_occurrence.single_occurrence_total_count antall begreper som kun dukker opp én gang\n* rows.terms_occurrence.multi_occurrence_total_count antall begreper som dukker opp mer enn én gang", + "smw-admin-supplementary-elastic-version-info": "Versjon", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 viser detaljer om innstillings- og indeksstatistikken", + "smw-admin-supplementary-elastic-docu": "Denne siden inneholder informasjon om innstillings-, mapping-, helse- og indeksstatistikk relatert til en ElasticSearch-klynge som er koblet til Semantic MediaWiki og dens [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Støttede funksjoner", + "smw-admin-supplementary-elastic-settings-title": "Innstillinger (indekser)", + "smw-admin-supplementary-elastic-settings-intro": "$1 brukes av ElasticSearch for å behandle Semantic MediaWiki-indekser", + "smw-admin-supplementary-elastic-mappings-title": "Mappinger", + "smw-admin-supplementary-elastic-mappings-intro": "$1 for å liste opp indekser og feltmappinger", + "smw-admin-supplementary-elastic-mappings-docu": "Denne siden inneholder feltmappingdetaljer brukt av den gjeldende indeksen. Det anbefales å overvåke mappingene i samband med index.mapping.total_fields.limit (angir maksimalt antall felter i en indeks som er tillatt).", + "smw-admin-supplementary-elastic-mappings-docu-extra": "property_fields refererer til antall indekserte kjernefelter mens nested_fields refererer til et akkumulertantall ekstra felter tildelt et kjernefelt for å støtte spesifikke strukturerte søkemønstre.", + "smw-admin-supplementary-elastic-mappings-summary": "Sammendrag", + "smw-admin-supplementary-elastic-mappings-fields": "Feltmappinger", + "smw-admin-supplementary-elastic-nodes-title": "Noder", + "smw-admin-supplementary-elastic-nodes-intro": "$1 viser nodestatistikk", + "smw-admin-supplementary-elastic-indices-title": "Indekser", + "smw-admin-supplementary-elastic-indices-intro": "$1 gir en oversikt over tilgjengelige indekser og deres statistikk", + "smw-admin-supplementary-elastic-statistics-title": "Statistikk", + "smw-admin-supplementary-elastic-statistics-intro": "$1 viser indeksnivåstatistikk", + "smw-admin-supplementary-elastic-statistics-docu": "Denne sider gir en innsikt i indeksstatistikk for forskjellige operasjoner som skjer på indeksnivå, de returnerte statistikkene aggregeres med primære og totale aggregeringer. [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html Hjelpesiden] inneholder detaljerte beskrivelser over tilgjengelige indeksstatistikker.", + "smw-admin-supplementary-elastic-status-replication": "Replikasjonsstatus", + "smw-admin-supplementary-elastic-status-last-active-replication": "Siste aktive replikasjon: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Oppdateringsintervall: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Etterslep på gjenopprettelsesjobber: $1 (estimat)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Etterslep på ingest (fil): $1 (estimat)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Replikasjon låst: $1 (gjenoppbygging pågår)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Replikasjonsovervåkning (aktiv): $1", + "smw-admin-supplementary-elastic-replication-header-title": "Replikasjonsstatus", + "smw-admin-supplementary-elastic-replication-function-title": "Replikasjon", + "smw-admin-supplementary-elastic-replication-intro": "$1 viser informasjon om mislykkede replikasjoner", + "smw-admin-supplementary-elastic-replication-docu": "Denne siden gir informasjon om [https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring replikasjonsstatusen] til entiteter som har blitt rapportert å ha problemer med ElasticSearch-klyngen. Det anbefales å gå gjennom oppføringer og gjenoppfriske innholdet for å bekrefte at det var et midlertidig problem.", + "smw-admin-supplementary-elastic-replication-files-docu": "Det burde merkes at for fillisten må [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion file ingest]-jobben kjøres først og må fullføre prosesseringen.", + "smw-admin-supplementary-elastic-replication-files": "Filer", + "smw-admin-supplementary-elastic-replication-pages": "Sider", + "smw-admin-supplementary-elastic-endpoints": "Endepunkter", + "smw-admin-supplementary-elastic-config": "Konfigurasjoner", + "smw-admin-supplementary-elastic-no-connection": "Wikien er for tiden '''ikke i stand''' til å etablere en tilkobling til ElasticSearch-klyngen, kontakt wikiens administrator for å undersøke problemet siden det vanskeliggjør systemets muligheter til indeksering og spørring.", + "smw-list-count": "Listen inneholder $1 {{PLURAL:$1|oppføring|oppføringer}}.", + "smw-property-label-uniqueness": "Etiketten «$1» hadde treff på minst en egenskaprepresentasjon til. Vær vennlig å studere [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness hjelpesiden] om hvordan du kan løse denne saken.", + "smw-property-label-similarity-title": "Likhetsrapport for egenskapsetikett", + "smw-property-label-similarity-intro": "$1 regner ut likheter innenfor eksisterende egenskapsetiketter", + "smw-property-label-similarity-threshold": "Terskelverdi:", + "smw-property-label-similarity-type": "Vis type-ID", + "smw-property-label-similarity-noresult": "Ingen resultater ble funnet for de valgte mulighetene.", + "smw-property-label-similarity-docu": "Denne siden sammenlikner og rapporterer [https://www.semantic-mediawiki.org/wiki/Property_similarity syntaks-samsvar] (i motsetning til semantikk-samsvar) mellom to egenskapsetiketter som kan bidra til å filtrere bort feilskrevne eller ekvivalente egenskaper som representerer det samme begrepet (se spesialsiden [[Special:Properties|Properties]] for å oppklare begrep og bruk av rapporterte egenskaper). Terskelverdien kan justeres i den hensikt å utvide eller innskrenke samsvarsavstanden. [[Property:$1|$1]] brukes for å unnta egenskaper fra analysen.", + "smw-admin-operational-statistics": "Denne siden inneholder driftsstatistikk samlet fra Semantic MediaWiki eller relaterte funksjoner. En utvidet liste av wikispesifikk statistikk kan finnes [[Special:Statistics|her]].", + "smw_adminlinks_datastructure": "Datastruktur", + "smw_adminlinks_displayingdata": "Datavisning", + "smw_adminlinks_inlinequerieshelp": "Hjelp for innebygde spørringer", + "smw-page-indicator-usage-count": "Estimert [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count bruksantall]: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "{{PLURAL:$1|Bruker|System}}-opprettet egenskap", + "smw-property-indicator-last-count-update": "Estimert bruksantall\nSist oppdatert: $1", + "smw-concept-indicator-cache-update": "Mellomlageropptelling\nSist oppdatert: $1", + "smw-createproperty-isproperty": "Det er en egenskap av type $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Den tillatte verdien|De tillatte verdiene}} for denne egenskapen er:", + "smw-paramdesc-category-delim": "Skilletegnet", + "smw-paramdesc-category-template": "En mal til bruk for å formatere elementene", + "smw-paramdesc-category-userparam": "En parameter som gis til malen", + "smw-info-par-message": "Melding å vise frem.", + "smw-info-par-icon": "Ikon for å vise frem enten \"info\" eller \"advarsel\".", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Generelle valg", + "prefs-extended-search-options": "Utvidet søk", + "prefs-ask-options": "Semantisk søk", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] (og relaterte utvidelser) for å muliggjøre individuelle tilpasninger for en gruppe utvalgte funksjoner. En liste over individuelle innstillinger med deres beskrivelse og karakteristikker er tilgjengelig på følgende [https://www.semantic-mediawiki.org/wiki/Help:User_preferences hjelpeside].", + "smw-prefs-ask-options-tooltip-display": "Vis parameterteksten som hinttekst for [[Special:Ask|spørringsbyggeren]].", + "smw-prefs-ask-options-compact-view-basic": "Slå på grunnleggende kompakt visning", + "smw-prefs-help-ask-options-compact-view-basic": "Hvis denne er slått på vises et redisert sett av lenker i den kompakte visningen til Special:Ask.", + "smw-prefs-general-options-time-correction": "Aktiver tidskorreksjonen for spesialsider ved å bruke den lokale [[Special:Preferences#mw-prefsection-rendering|klokkeslettforskyvnings]]-preferansen.", + "smw-prefs-general-options-jobqueue-watchlist": "Vis jobbkøovervåkningslisten i min personlige meny", + "smw-prefs-help-general-options-jobqueue-watchlist": "Hvis denne er slått på vises en [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist liste] over ventende utvalgte jobber sammen med deres estimerte køstørrelser.", + "smw-prefs-general-options-disable-editpage-info": "Slå av introduksjonsteksten på redigeringssiden", + "smw-prefs-general-options-disable-search-info": "Slå av syntaksstøtteinformasjonen på standardsøkesiden", + "smw-prefs-general-options-suggester-textinput": "Slå på inndataassistanse for semantiske entiteter", + "smw-prefs-help-general-options-suggester-textinput": "Hvis denne er slått på kan man bruke [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance inndataassistanse] for å finne egenskaper, konsepter og kategorier fra en inndatakontekst.", + "smw-prefs-general-options-show-entity-issue-panel": "Vis entitetsproblempanelet", + "smw-prefs-help-general-options-show-entity-issue-panel": "Hvis denne er slått på kjøres integritetssjekker på hver side og viser [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel entitetsproblempanelet].", + "smw-ui-tooltip-title-property": "Egenskap", + "smw-ui-tooltip-title-quantity": "Størrelseskonvertering", + "smw-ui-tooltip-title-info": "Informasjon", + "smw-ui-tooltip-title-service": "Tjenestelenker", + "smw-ui-tooltip-title-warning": "Advarsel", + "smw-ui-tooltip-title-error": "Feil", + "smw-ui-tooltip-title-parameter": "Parameter", + "smw-ui-tooltip-title-event": "Hendelse", + "smw-ui-tooltip-title-note": "Merknad", + "smw-ui-tooltip-title-legend": "Tegnforklaring", + "smw-ui-tooltip-title-reference": "Referanse", + "smw_unknowntype": "Typen «$1» for denne egenskapen er ugyldig", + "smw-concept-cache-text": "Konseptet består av totalt $1 {{PLURAL:$1|side|sider}}, og ble sist oppdatert $3, $2.", + "smw_concept_header": "Sider av konseptet «$1»", + "smw_conceptarticlecount": "Viser nedenfor {{PLURAL:$1|én side|$1 sider}}.", + "smw-qp-empty-data": "Forespurte data kan ikke vises på grunn av utilstrekkelige søkekriterier.", + "right-smw-admin": "Tilgang til administrasjonsoppgaver (Semantic MediaWiki)", + "right-smw-patternedit": "Redigeringstilgang for å vedlikeholde tillatte regulære uttrykk og mønstre (Semantic MediaWiki)", + "right-smw-pageedit": "Rediger tilgang til beskyttede annoteringssider (Semantic MediaWiki)", + "right-smw-schemaedit": "Redigere [https://www.semantic-mediawiki.org/wiki/Help:Schema skjemasider] (Semantic MediaWiki)", + "right-smw-viewjobqueuewatchlist": "Få tilgang til jobbkøens [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist overvåkningslistefunksjoner] (Semantic MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "Få tilgang til informasjon om en entitetsassosiert revisjonsfeilmatching (Semantic MediaWiki)", + "right-smw-vieweditpageinfo": "Vise [https://www.semantic-mediawiki.org/wiki/Help:Edit_help redigeringshjelp] (Semantic MediaWiki)", + "restriction-level-smw-pageedit": "beskyttet (kun berettigede brukere)", + "action-smw-patternedit": "rediger regular expressions brukt av Semantic MediaWiki", + "action-smw-pageedit": "rediger sider annotert med Er sperret mot redigering (Semantic MediaWiki)", + "group-smwadministrator": "Administratorer (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|administrator (Semantic MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:Administratorer (Semantic MediaWiki)", + "group-smwcurator": "Kuratorer (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|kurator (Semantic MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:Kuratorer (Semantic MediaWiki)", + "group-smweditor": "Redaktører (Semantic MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|redaktør (Semantic MediaWiki)}}", + "grouppage-smweditor": "{{ns:project}}:Redaktører (Semantic MediaWiki)", + "action-smw-admin": "gå til administrasjonsoppgaver for Semantic MediaWiki", + "action-smw-ruleedit": "redigere regelsider (Semantic MediaWiki)", + "smw-property-namespace-disabled": "Egenskapen [https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks navnerom] er slått av, så det er ikke mulig å erklære typekarakteristikk eller egenskapsspesifikke karakteristikker for denne egenskapen.", + "smw-property-predefined-default": "«$1» er en forhåndsdefinert egenskap av typen $2.", + "smw-property-predefined-common": "Denne egenskapen er forhåndsinstallert (også kjent som [https://www.semantic-mediawiki.org/wiki/Help:Special_properties spesialegenskap]) og kommer med ekstra administrative privilegier, men kan ellers brukes på samme måte som vanlige [https://www.semantic-mediawiki.org/wiki/Property brukerdefinerte egenskaper].", + "smw-property-predefined-ask": "«$1» er en forhåndsdefinert egenskap som representerer metainformasjon (i form av [https://www.semantic-mediawiki.org/wiki/Subobject underobjekt]) om individuelle spørringer og fremskaffes av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksi": "«$1» er en forhåndsdefinert egenskap som samler antall betingelser brukt i en spørring og fremskaffes av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askde": "«$1» er en forhåndsdefinert egenskap som informerer om dybden i en spørring og fremskaffes av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askde": "Det er en numerisk verdi beregnet på grunnlag av nøsting via en underspørring, egenskapskjeder og tilgjengelige beskrivelseselementer med utførelsen av en spørring som er begrenset av [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth]-konfigurasjonsparameteren.", + "smw-property-predefined-askpa": "«$1» er en forhåndsdefinert egenskap som beskriver parametre som påvirker resultatet fra en spørring fremskaffet av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askpa": "Den er en del av en samling egenskaper som angir en [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler spørreprofil].", + "smw-sp-properties-docu": "Denne siden viser [https://www.semantic-mediawiki.org/wiki/Property egenskapene] og hvordan de er brukt på denne wikien. For en oppdatert statistikk anbefales det at [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics statistikken] sitt vedlikeholdsskript kjøres regelmessig. For en variert visning, se [[Special:UnusedProperties|ubrukte]] eller [[Special:WantedProperties|ønskede egenskaper]] på spesialsidene.", + "smw-sp-properties-cache-info": "Dataene i listen er blitt hentet fra [https://www.semantic-mediawiki.org/wiki/Caching et mellomlager], og ble sist oppdatert $1.", + "smw-sp-properties-header-label": "Liste av egenskaper", + "smw-admin-settings-docu": "Viser en liste av alle standard og lokaliserte innstillinger som er relevante for omgivelsene til Semantic MediaWiki. For detaljer om individuelle innstillinger, vennligst slå opp på [https://www.semantic-mediawiki.org/wiki/Help:Configuration konfigurerings]-hjelpesiden.", + "smw-sp-admin-settings-button": "Generer innstillingslisten", + "smw-admin-idlookup-title": "Oppslag", + "smw-admin-idlookup-docu": "Dette ansnittet viser tekniske detaljer om individuelle elementer (wikiside, underobjekt, egenskap, etc.) i Semantic MediaWiki. Brukeren oppgir en numerisk ID eller en stringverdi som sammenliknes med det valgte feltet. Merk at slike ID-referanser ikke må forveksles med MediaWiki-sider eller redigerings-ID-er.", + "smw-admin-iddispose-title": "Forkasting", + "smw-admin-iddispose-docu": "Det bør merkes at forkastingsoperasjonen er ubegrenset og vil fjerne entiteten fra lagringsmotoren sammen med alle dens referanser i ventende tabeller, hvis det bekreftes. Utfør denne oppgaven med '''forsiktighet''' og kun etter at du har gått gjennom [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal dokumentasjonen].", + "smw-admin-iddispose-done": "ID-en «$1» ble fjernet fra lagringsbakstykket.", + "smw-admin-iddispose-references": "ID-en «$1» har {{PLURAL:$2|ingen aktive referanser|minst én aktiv referanse}}:", + "smw-admin-iddispose-references-multiple": "Liste over treff med minst én aktiv referanseoppføring.", + "smw-admin-iddispose-no-references": "Søket kunne ikke matche «$1» mot en tabelloppføring.", + "smw-admin-idlookup-input": "Søk:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Oversikt", + "smw-admin-tab-notices": "Foreldingsnotiser", + "smw-admin-tab-maintenance": "Vedlikehold", + "smw-admin-tab-supplement": "Supplementære funksjoner", + "smw-admin-tab-registry": "Register", + "smw-admin-tab-alerts": "Varsler", + "smw-admin-alerts-tab-deprecationnotices": "Foreldelsesnotiser", + "smw-admin-alerts-tab-maintenancealerts": "Vedlikeholdsvarsler", + "smw-admin-alerts-section-intro": "Denne seksjonen viser varsler og notiser som gjelder innstillinger, handlinger og andre aktiviteter som er klassifisert som å trenge oppmerksomhet fra en administrator eller en bruker med de rette rettighetene.", + "smw-admin-maintenancealerts-section-intro": "Følgende varsler og notiser bør løses for å forbedre systemet og vedlikeholdet.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Tabelloptimalisering", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "Systemet har funnet at den siste [https://www.semantic-mediawiki.org/wiki/Table_optimization tabelloptimaliseringen] ble kjørt for $2 {{PLURAL:$2|dag|dager}} siden (oppføring fra $1), som overstiger vedlikeholdsterskelen på $3 {{PLURAL:$3|dag|dager}}. Som nevnt i dokumentasjonen vil spørringsplanleggeren kunne gjøre bedre avgjørelser om spørringer hvis dette kjøres regelmessig.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Utdaterte entiteter", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "Systemet har talt $1 [https://www.semantic-mediawiki.org/wiki/Outdated_entities {{PLURAL:$1|utdatert entitet|utdaterte entiteter}}] og nådd et kritisk nivå for vedlikehold ved å overstige terskelen på $2. Det anbefales å kjøre vedlikeholdsskriptet [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php].", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Ugyldige entiteter", + "smw-admin-maintenancealerts-invalidentities-alert": "Systemet matchet $1 [https://www.semantic-mediawiki.org/wiki/Invalid_entities {{PLURAL:$1|entitet|entiteter}}] til et [https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace ikke-vedlikeholdt navnerom], og det anbefales å kjøre vedlikeholdsskriptet [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] eller [https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php].", + "smw-admin-deprecation-notice-section": "Semantic MediaWiki", + "smw-admin-configutation-tab-settings": "Innstillinger", + "smw-admin-configutation-tab-namespaces": "Navnerom", + "smw-admin-configutation-tab-schematypes": "Skjematyper", + "smw-admin-maintenance-tab-tasks": "Oppgaver", + "smw-admin-maintenance-tab-scripts": "Vedlikeholdsskript", + "smw-admin-maintenance-no-description": "Ingen beskrivelse.", + "smw-admin-maintenance-script-section-title": "Liste over tilgjengelige vedlikeholdsskript", + "smw-admin-maintenance-script-section-intro": "Følgende vedlikeholdsskript krever en administrator og tilgang til kommandolinjen for å kunne utføre de opplistede skriptene.", + "smw-admin-maintenance-script-description-dumprdf": "RDF-eksport av eksisterende tripler.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "Dette skriptet brukes for å behandle konseptmellomlagre for Semantic MediaWiki der det kan opprette, fjerne og oppdatere valgte mellomlagre.", + "smw-admin-maintenance-script-description-rebuilddata": "Gjenskaper alle semantiske data i databasen ved å gå gjennom alle sidene som kan ha semantiske data.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "Gjenbygger ElasticSearch-indeksen (kun for installasjoner som bruker ElasticStore) ved å gå gjennom alle entiteter som har semantiske data.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Finn manglende entiteter i ElasticSearch (kun for installasjoner som bruker ElasticStore) og planlegg de relevante oppdateringsjobbene.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "Gjenbygger SQLStores fulltekstsøkindeks (for installasjoner hvor innstillingen er slått på).", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Gjenbygger bruksstatistikken for alle egenskapsentiteter.", + "smw-admin-maintenance-script-description-removeduplicateentities": "Fjerner duplikatentiteter funnet i valgte tabeller som ikke har noen aktive referanser.", + "smw-admin-maintenance-script-description-setupstore": "Setter opp lagrings- og spørringsbakstykket som definert i LocalSettings.php.", + "smw-admin-maintenance-script-description-updateentitycollation": "Oppdaterer feltet smw_sort i SQLStore (i samsvar med innstillingen [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation]).", + "smw-admin-maintenance-script-description-populatehashfield": "Befolker feltet smw_hash for rader som mangler verdien.", + "smw-admin-maintenance-script-description-purgeentitycache": "Gjenoppfrisk mellomlageroppføringer for kjente entiteter og deres assosierte data.", + "smw-admin-maintenance-script-description-updatequerydependencies": "Oppdater spørringer og spørringsavhengigheter (se innstillingen [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore]).", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "Bli kvitt utdaterte entiteter og spørringslenker.", + "smw-admin-maintenance-script-description-runimport": "Befolk og importer auto-oppdaget innhold fra [https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs].", + "smw-admin-maintenance-script-section-update": "Oppdateringsskript", + "smw-admin-maintenance-script-section-rebuild": "Gjenoppbyggingsskript", + "smw-livepreview-loading": "Laster …", + "smw-sp-searchbyproperty-description": "Denne siden gir et enkelt [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces gjennomblaingsgrensesnitt] for å finne entiteter beskrevet av en egenskap og en navngitt verdi. Andre tilgjengelige søkegrensesnitt inkluderer [[Special:PageProperty|sideegenskapssøket]] og [[Special:Ask|ask-spørringsbyggeren]].", + "smw-sp-searchbyproperty-resultlist-header": "Liste over resultater", + "smw-sp-searchbyproperty-nonvaluequery": "En liste over verdier som har egenskapen «$1» tildelt.", + "smw-sp-searchbyproperty-valuequery": "En liste over sider som har egenskapen «$1» med verdien «$2» annotert.", + "smw-datavalue-number-textnotallowed": "«$1» kan ikke tildeles en erklært nummertype med verdi $2.", + "smw-datavalue-number-nullnotallowed": "«$1» returnerte med «NULL» som ikke er tillatt som tall.", + "smw-editpage-annotation-enabled": "Denne siden støtter semantiske annoteringer i teksten (f.eks. «[[Is specified as::World Heritage Site]]») for å bygge strukturerte og spørbart innhold gitt av Semantic MediaWiki. For en utdypende beskrivelse av hvordan man bruker annoteringer eller parserfunksjonen #ask, ta en titt på hjelpesidene [https://www.semantic-mediawiki.org/wiki/Help:Getting_started kom i ang], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation annoteringer i tekst] eller [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries inline-spørringer].", + "smw-editpage-annotation-disabled": "Denne siden er ikke slått på for semantiske annoteringer i teksten på grunn av navneromsbegrensninger. Detaljer om hvordan navnerommet kan slås på kan du finne på hjelpesiden for [https://www.semantic-mediawiki.org/wiki/Help:Configuration konfigurasjon].", + "smw-editpage-property-annotation-enabled": "Denne egenskapen kan utvides med semantiske annoteringer for å angi en datatype (f.eks. «[[Has type::Page]]») eller andre støttende erklæringer (f.eks. «[[Subproperty of::dc:date]]»«[[Has type::Page]]») som den allerede er forhåndsdefinert (se hjelpesiden [https://www.semantic-mediawiki.org/wiki/Help:Special_properties spesielle egenskaper] for mer informasjon).", + "smw-editpage-concept-annotation-enabled": "Dette konspeten kan utvides med parserfunksjonen #concept. For en beskrivelse av hvordan man bruker #concept, se hjelpesiden [https://www.semantic-mediawiki.org/wiki/Help:Concepts konsept].", + "smw-search-syntax-support": "Søkeinndataene støtter bruken av semantisk [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search spørringssyntaks] for å hjelpe til å matche resultater med Semantic MediaWiki.", + "smw-search-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Inndataassistenten] er også slått på for å forenkle forhåndsutvalget av tilgjengelige egenskaper og kategorier.", + "smw-search-help-intro": "Inndata med [[ ... ]] signaliserer til inndataprosessoren at den skal bruke Semantic MediaWikis søkebakstykke. Merk at å kombinere [[ ... ]] med ustrukturert tekstsøk som [[ ... ]] OR Lorem ipsum ikke støttes.", + "smw-search-help-structured": "Strukturerte søk:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] (som [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context filtrert kontekst])\n\n*[[Has text::~*lorem*]] (med en [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context spørringskontekst])", + "smw-search-help-proximity": "Nærhetssøk (en egenskap er ukjent, '''kun''' tilgjengelig for de bakstykkene som tilbyr fulltekst-søkeintegrasjon):\n\n*[[in:lorem ipsum]] (søk i alle dokumenter etter \"lorem\" og \"ipsum\" som har blitt indeksert)\n\n* [[phrase:lorem ipsum]] (match \"lorem ipsum\" som frase)", + "smw-search-help-ask": "Følgende lenker forklarer hvordan man bruker syntaksen #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Å velge sider] beskriver hvordan man velger sider og bygger vilkår\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Søkeoperatorer] lister opp tilgjengelige søkeoperatorer inkludert de for intervall og jokerspørringer", + "smw-search-input": "Inndata og søk", + "smw-search-help-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Inndataassistanse] tilbys for inndatafeltet og krever bruk av én av følgende prefikser:\n\n*p: for å slå på egenskapsforslag (f.eks. [[p:Has ...)\n\n*c: for å slå på kategoriforslag\n\n*con: for å slå på konseptforslag", + "smw-search-syntax": "Syntaks", + "smw-search-profile": "Utvidet", + "smw-search-profile-tooltip": "Søkefunksjoner tilknyttet Semantic MediaWiki", + "smw-search-profile-sort-best": "Beste treff", + "smw-search-profile-sort-recent": "Nyligste", + "smw-search-profile-sort-title": "Tittel", + "smw-search-profile-extended-help-intro": "Special:Search med [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile utvidet profil] gir tilgang til søkefunksjoner som er spesifikke for Semantic MediaWiki og støttes av spørringsbakstykket.", + "smw-search-profile-extended-help-sort": "Angir en sorteringspreferanse resultatet skal vises med:", + "smw-search-profile-extended-help-sort-title": "* «Title» bruker sidetittelen (eller visningstittelen) som sorteringskriterium", + "smw-search-profile-extended-help-sort-recent": "* «Most recent» viser de sist endrede entitetene først (underobjektentiteter vises ikke siden slike entiteter ikke annoteres med en [[Property:Modification date|endringsdato]])", + "smw-search-profile-extended-help-sort-best": "* «Best match» serterer entiteter etter [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy relevans] basert på poeng som gis av bakstykket", + "smw-search-profile-extended-help-form": "Skjemaer gis (hvis de vedlikeholdes) for å matche spesifikke bruksområder ved å vise forskjellige egenskaps- og verdifelter for å innskrenke inndataprosessen og gjøre det enklere for brukere å fortsette med en søkeforespørsel. (se $1)", + "smw-search-profile-extended-help-namespace": "Navneromsboksen skjules så snart et skjema velges, men kan gjøres synlig igjen med hjelp av «vis/skjul»-knappen.", + "smw-search-profile-extended-help-search-syntax": "Søkeinndatafeltet støtter bruken av #ask-syntaks for å definere en Semantic MediaWiki-spesifikk søkekontekst. Nyttige uttrykk inkluderer:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: for å finne alt som inneholder «...» og er spesielt nyttig når søkekonteksten eller egenskapene som er involvert er ukjente (f.eks. er in:(lorem && ipsum) likeverdig med [[~~*lorem*]] && [[~~*ipsum*]]).", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: for å finne alt som inneholder «…» i nøyaktig samme rekkefølge", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: for å matche alle entiteter med egenskapen «…» (f.eks. er has:(Foo && Bar) likeverdig med [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: for å matche entiteter som ikke inkluderer «…»", + "smw-search-profile-extended-help-search-syntax-prefix": "* Ekstra egendefinerte prefikser er tilgjengelige og definert som det: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* Noen uttrykk er reserverte, som: $1", + "smw-search-profile-extended-help-search-syntax-note": "''Noen av de opplistede operasjonene er kun nyttige i tilknytning til en aktivert fulltekstindeks eller ElasticStore.''", + "smw-search-profile-extended-help-query": "Brukte $1 som spørring.", + "smw-search-profile-extended-help-query-link": "For flere detaljer, bruk $1.", + "smw-search-profile-extended-help-find-forms": "tilgjengelige skjemaer", + "smw-search-profile-extended-section-sort": "Sorter etter", + "smw-search-profile-extended-section-form": "Skjemaer", + "smw-search-profile-extended-section-search-syntax": "Søkeinndata", + "smw-search-profile-extended-section-namespace": "Navnerom", + "smw-search-profile-extended-section-query": "Spørring", + "smw-search-profile-link-caption-query": "spørringsbyggeren", + "smw-search-show": "Vis", + "smw-search-hide": "Skjul", + "log-name-smw": "Semantic MediaWiki-logg", + "log-show-hide-smw": "$1 Semantic MediaWiki-logg", + "logeventslist-smw-log": "Semantic MediaWiki-logg", + "log-description-smw": "Aktiviteter for [https://www.semantic-mediawiki.org/wiki/Help:Logging påslåtte hendelsestyper] som har blitt rapportert av Semantic MediaWiki og dens komponenter.", + "logentry-smw-maintenance": "Vedlikeholdsrelaterte hendelser utsendt av semantic MediaWiki", + "smw-datavalue-import-unknown-namespace": "Importnavnerommet «$1» er ukjent. Sjekk at OWL-importdetaljer er tilgjengelige via [[MediaWiki:Smw import $1]]", + "smw-datavalue-import-missing-namespace-uri": "Kunne ikke finne navneroms-URI-en «$1» i [[MediaWiki:Smw import $1|$1-import]].", + "smw-datavalue-import-missing-type": "Ingen typedefinisjon ble funnet for «$1» i [[MediaWiki:Smw import $2|$2-import]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|$1-importering]]", + "smw-datavalue-import-invalid-value": "«$1» er ikke et gyldig format og forventes å bestå av «navnerom»:«identifikator» (f.eks. «foaf:name»).", + "smw-datavalue-import-invalid-format": "Forventet at strengen «$1» skulle være delt i fire deler, men formatet ble ikke forstått.", + "smw-property-predefined-impo": "«$1» er en forhåndsdefinert egenskap som beskriver en relasjon til et [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary importert ordforråd] og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-type": "«$1» er en forhåndsdefinert egenskap som beskriver [[Special:Types|datatypen]] til en egenskap og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-sobj": "«$1» er en forhåndsdefinert egenskap som representerer en [https://www.semantic-mediawiki.org/wiki/Help:Container konteinerkonstruksjon] og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-sobj": "Konteineren gjør det mulig å akkumulere egenskap–verdi-tildelinger på samme måte som en vanlig wikiside, men innen et annet entitetsrom mens det lenkes til det innbyggende subjektet.", + "smw-property-predefined-errp": "«$1» er en forhåndsdefinert egenskap som sporer inndatafeil for uvanlige verdiannoteringer og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-errp": "I de fleste tilfeller forårsakes det av typeulikhet eller en [[Property:Allows value|verdibegrensning]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value «$1»] er en forhåndsdefinert egenskap som kan definere en liste over tillatte verdier for å begrense verditildelinger for en egenskap og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list «$1»] er en forhåndsdefinert egenskap som kan angi en referanse til en liste som inneholder tillatte verdier for å begrense verditildelinger for en egenskap og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-datavalue-property-restricted-annotation-use": "Egenskapen «$1» har et begrenset bruksområde og kan ikke brukes som annoteringsegenskap av en bruker.", + "smw-datavalue-property-restricted-declarative-use": "Egenskapen «$1» er en erklærende egenskap og kan kun brukes som egenskaps- eller kategoriside.", + "smw-datavalue-property-create-restriction": "Egenskapen «$1» finnes ikke og brukeren har ikke tillatelsen «$2» (se [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode autoritetsmodus]) til å opprette eller annotere verdier med en ikke-godkjent egenskap.", + "smw-datavalue-property-invalid-character": "«$1» inneholder et listet tegn «$2» som del av egenskapsetiketten og har derfor blitt klassifisert som ugyldig.", + "smw-datavalue-property-invalid-chain": "Å bruke «$1» som egenskapskjede er ikke tillatt under annoteringsprosessen.", + "smw-datavalue-restricted-use": "Dataverdien «$1» har blitt merket for begrenset bruk.", + "smw-datavalue-invalid-number": "«$1» kan ikke tolkes som tall.", + "smw-query-condition-circular": "En mulig sirkelrefernse har blitt oppdaget i «$1».", + "smw-query-condition-empty": "Spørringsbeskrivelsen har et tomt vilkår.", + "smw-types-list": "Liste over datatyper", + "smw-types-default": "«$1» er ikke en innebygd datatype.", + "smw-types-help": "Videre informasjon og eksempler kan finnes på denne [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 hjelpesiden].", + "smw-type-anu": "«$1» er en variant av datatypen [[Special:Types/URL|URL]] og brukes mest for eksporterklæringen «owl:AnnotationProperty».", + "smw-type-boo": "«$1» er en grunnleggende datatype for å beskrive en verdi som er sann/usann.", + "smw-type-cod": "«$1» er en variant av datatypen [[Special:Types/Text|Text]] som brukes for tekniske tekster av vilkårlig lengde, som kildekodelister.", + "smw-type-geo": "«$1» er en datatype som beskriver geografiske beliggenhet og krever utvidelsen [https://www.semantic-mediawiki.org/wiki/Extension:Maps «Maps»] for å tilby utvidet funksjonalitet.", + "smw-type-tel": "«$1» er en spesiell datatype for å beskrive internasjonale telefonnummer i samsvar med RFC 3966.", + "smw-type-txt": "«$1» er en grunnleggende datatype for å beskrive strenger av vilkårlig lengde.", + "smw-type-dat": "«$1» er en grunnleggende datatype for å representere tidspunkter i et enhetlig format.", + "smw-type-ema": "«$1» er en spesiell datatype for å representere e-post.", + "smw-type-tem": "«$1» er en spesiell numerisk datatype for å representere en temperatur.", + "smw-type-qty": "«$1» er en datatype for å beskrive kvantiteter med en numerisk representasjon og en måleenhet.", + "smw-type-rec": "«$1» er en konteinerdatatype som angir en liste over typede egenskaper i en bestemt rekkefølge.", + "smw-type-extra-tem": "Konverteringsskjemaet inkluderer støttede enheter som kelvin, celsius, fahrenheit og rankine.", + "smw-type-tab-properties": "Egenskaper", + "smw-type-tab-types": "Typer", + "smw-type-tab-type-ids": "Type-ID-er", + "smw-type-tab-errors": "Feil", + "smw-type-primitive": "Grunnleggende", + "smw-type-contextual": "Kontekstuell", + "smw-type-compound": "Sammensatt", + "smw-type-container": "Konteiner", + "smw-type-no-group": "Uklassifisert", + "smw-special-pageproperty-description": "Denne siden gir et gjennomblaingsgrensesnitt for å finne alle verdier med en egenskap og en gitt side. Andre tilgjengelige søkegrensesnitt inkluder [[Special:SearchByProperty|egenskapssøk]] og [[Special:Ask|ask-spørringsbyggeren]].", + "smw-property-predefined-errc": "«$1» er en forhåndsdefinert egenskap gitt av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] og representerer feil som dukket opp i tilknytning til dårlig verdiannotering eller inndataprosessering.", + "smw-property-predefined-long-errc": "Feli samles i en [https://www.semantic-mediawiki.org/wiki/Help:Container konteiner] som kan inkludere en referanse til egenskapen som forårsaket uoverensstemmelsen.", + "smw-property-predefined-errt": "«$1» er en forhåndsdefinert egenskap som inneholder tekstbeskrivelsen til en feil og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-subobject-parser-invalid-naming-scheme": "Et brukerdefinert underobjekt inneholdt en ugyldig navneformel. Punktnotasjonen ($1) som er brukt i de første fem tegnene er reservert for utvidelser. Du kan sette en [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier navngitt identifikator].", + "smw-datavalue-record-invalid-property-declaration": "Opptegnelsesdefinisjonen inneholder egenskapen «$1» som selv er erklært som en opptegnelsestype, og det er ikke tillatt.", + "smw-property-predefined-mdat": "«$1» er en forhåndsdefinert egenskap som samsvarer med datoen et subjekt sist ble endret, og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cdat": "«$1» er en forhåndsdefinert egenskap som samsvarer med datoen til subjektets første versjon, og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-newp": "«$1» er en forhåndsdefinert egenskap som indikerer hvorvidt et subjekt er nytt eller ikke, og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-ledt": "«$1» er en forhåndsdefinert egenskap som inneholder sidenavnet til brukeren som opprettet den siste revisjonen og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-mime": "«$1» er en forhåndsdefinert egenskap som beskriver MIME-typen til en opplastet fil og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-media": "«$1» er en forhåndsdefinert egenskap som beskriver medietypen til en opplastet fil og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askfo": "«$1» er en forhåndsdefinert egenskap som inneholder navnet til resultatformatet brukt i en spørring og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askst": "«$1» er en forhåndsdefinert egenskap som beskriver forholdene til spørringen som en streng og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askdu": "«$1» er en forhåndsdefinert egenskap som inneholder en tidsverdi (i sekunder) som var påkrevd for å fullføre spørringskjøringen og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksc": "«$1» er en forhåndsdefinert egenskap gitt av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] som identifiserer alternative spørringskilder.", + "smw-property-predefined-askco": "«$1» er en forhåndsdefinert egenskap gitt av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] som beskriver statusen til en spørring eller dens bestanddeler.", + "smw-property-predefined-long-askco": "Antallet brukere tildelt representerer en intern kodet status som forklares på [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler hjelpesiden].", + "smw-property-predefined-prec": "«$1» er en forhåndsdefinert egenskap som beskriver en [https://www.semantic-mediawiki.org/wiki/Help:Display_precision visningspresisjon] (i desimaltall) for numeriske datatyper.", + "smw-property-predefined-attch-link": "«$1» er en forhåndsdefinert egenskap som samler innbygde fil- og bildelenker funnet på en side og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-inst": "«$1» er en intern forhåndsdefinert egenskap som lagrer kategoriinformasjon uavhengig av MediaWiki og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-unit": "«$1» er en deklarativ forhåndsdefinert egenskap for å definere visningsenheter for numerisktypede egenskaper og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-unit": "En kommaatskilt liste gjør det mulig å beskrive enheter eller formater som skal brukes i visningen.", + "smw-property-predefined-conv": "«$1» er en deklarativ forhåndsdefinert egenskap for å definere konversjonsfaktoren for en fysisk enhet og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-serv": "«$1» er en deklarativ forhåndsdefinert egenskap for å legge tel tjenestelenker til en egenskap og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-redi": "«$1» er en intern forhåndsdefinert egenskap for å spore omdirigeringer og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-subp": "«$1» er en deklarativ forhåndsdefinert egenskap for å definere at en egenskap er en [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of underegenskap av] en annen og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-subc": "«$1» er en forhåndsdefinert egenskap for å definere at en kategori er en [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of underkategori av] en annen og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-conc": "«$1» er en intern forhåndsdefinert egenskap for å definere et tilknyttet konsept og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-err-type": "«$1» er en forhåndsdefinert egenskap for å identifisere en gruppe av eller klasse av [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors prosesseringsfeil] og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-skey": "«$1» er en intern forhåndsdefinert egenskap for å holde en sorteringsreferanse og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pplb": "«$1» er en deklarativ forhåndsdefinert egenskap for å angi en [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label foretrukket egenskapsetikett] og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-chgpro": "«$1» er en forhåndsdefinert egenskap for å holde [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation endringspropageringsinformasjon] og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-link": "og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-format-schema": "og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-profile-schema": "og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans": "og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-source": "og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-group": "og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cont-len": "«$1» er en forhåndsdefinert egenskap for å lagre lengdeinformasjon, og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-len": "Den brukes i tilknytning til [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (og [https://www.semantic-mediawiki.org/Attachment_processor vedleggsprosessoren]) for å samle og lagre lengdeinformasjon hentet fra en inntatt fil (hvis angitt).", + "smw-property-predefined-cont-lang": "«$1» er en forhåndsdefinert egenskap for å lagre språkinformasjon og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-lang": "Den brukes i tilknytning til [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (og [https://www.semantic-mediawiki.org/Attachment_processor vedleggsprosessoren]) for å samle og lagre språkinformasjon hentet fra en inntatt fil (hvis angitt).", + "smw-property-predefined-cont-title": "«$1» er en forhåndsdefinert egenskap for å lagre tittelinformasjon og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-title": "Den brukes i tilknytning til [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (og [https://www.semantic-mediawiki.org/Attachment_processor vedleggsprosessoren]) for å samle og lagre tittelinformasjon hentet fra en inntatt fil (hvis angitt).", + "smw-property-predefined-cont-author": "«$1» er en forhåndsdefinert egenskap for å lagre forfatterinformasjon og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-author": "Den brukes i tilknytning til [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (og [https://www.semantic-mediawiki.org/Attachment_processor vedleggsprosessoren]) for å samle og lagre forfatterinformasjon hentet fra en inntatt fil (hvis angitt).", + "smw-property-predefined-cont-date": "«$1» er en forhåndsdefinert egenskap for å lagre datoinformasjon og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-date": "Den brukes i tilknytning til [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (og [https://www.semantic-mediawiki.org/Attachment_processor vedleggsprosessoren]) for å samle og lagre datoinformasjon hentet fra en inntatt fil (hvis angitt).", + "smw-property-predefined-cont-type": "«$1» er en forhåndsdefinert egenskap for å lagre filtypeinformasjon og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-type": "Den brukes i tilknytning til [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (og [https://www.semantic-mediawiki.org/Attachment_processor vedleggsprosessoren]) for å samle og lagre typeinformasjon hentet fra en inntatt fil (hvis angitt).", + "smw-property-predefined-cont-keyw": "«$1» er en forhåndsdefinert egenskap for å representere nøkkelord og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-keyw": "Den brukes i tilknytning til [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (og [https://www.semantic-mediawiki.org/Attachment_processor vedleggsprosessoren]) for å samle og lagre nøkkelord hentet fra en inntatt fil (hvis angitt).", + "smw-property-predefined-file-attch": "«$1» er en forhåndsdefinert egenskap for å representere en konteiner som lagrer vedleggsinformasjon og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-file-attch": "Den brukes i tilknytning til [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (og [https://www.semantic-mediawiki.org/Attachment_processor vedleggsprosessoren]) for å samle all innholdsspesifikk informasjon hentet fra en inntatt fil (hvis angitt).", + "smw-types-extra-geo-not-available": "[https://www.semantic-mediawiki.org/wiki/Extension:Maps Utvidelsen «Maps»] ble ikke oppdaget, og «$1» har derfor begrensede muligheter.", + "smw-datavalue-monolingual-dataitem-missing": "Et forventet element for å bygge en enspråklig sammensatt verdi mangler.", + "smw-datavalue-languagecode-missing": "For annoteringen «$1» kunne ikke parseren bestemme en språkkode (f.eks. «foo@en»).", + "smw-datavalue-languagecode-invalid": "«$1» ble ikke gjenkjent som en støttet språkkode.", + "smw-property-predefined-lcode": "«$1» er en forhåndsdefinert egenskap som representerer en BCP47-formatert språkkode og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-type-mlt-rec": "«$1» er en [https://www.semantic-mediawiki.org/wiki/Help:Container konteinerdatatype] som assosierer en tekstverdi med en spesifikk [[Property:Language code|språkkode]].", + "smw-types-extra-mlt-lcode": "Datatypen {{PLURAL:$2|krever|krever ikke}} en språkkode (f.eks. {{PLURAL:$2|en verdiannotering uten en språkkode godtas ikke|en verdiannotering uten språkkode godkjennes}}).", + "smw-property-predefined-text": "«$1» er en forhåndsdefinert egenskap som representerer tekst av vilkårlig lengde og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pdesc": "«$1» er en forhåndsdefinert egenskap som gjør det mulig å beskrive en egenskap i en språkkontekst og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-list": "«$1» er en forhåndsdefinert egenskap for å definere en liste over egenskaper brukt med en egenskap av typen [[Special:Types/Record|opptegnelse]] og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] Parsertid for tekstannotering", + "smw-limitreport-intext-postproctime": "[SMW] etterprosesseringstid", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|sekund|sekunder}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|sekund|sekunder}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Tid for lagringsoppdatering (ved sidegjenoppfrisking)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|sekund|sekunder}}", + "smw_allows_pattern": "Denne siden forventes å inneholde en liste over referanser (etterfulgt av [https://en.wikipedia.org/wiki/Regular_expression regulære uttrykk]) forå gjøres tilgjengelig med egenskapen [[Property:Allows pattern|Allows pattern]]. For å redigere denne siden kreves rettigheten smw-patternedit.", + "smw-datavalue-allows-pattern-mismatch": "«$1» ble klassifisert som ugyldig av det regulære uttrykket «$2».", + "smw-datavalue-allows-pattern-reference-unknown": "Mønsterreferansen «$1» kunne ikke matches med en oppføring i [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "Listereferansen «$1» kunne ikke matches mot en side i [[MediaWiki:Smw allows list $1]].", + "smw-datavalue-allows-value-list-missing-marker": "Listeinnholdet «$1» mangler elementer med en listemarkør *.", + "smw-datavalue-feature-not-supported": "Funksjonen «$1» støttes ikke eller er slått av på denne wikien.", + "smw-property-predefined-pvap": "«$1» er en forhåndsdefinert egenskap som kan angi et [[MediaWiki:Smw allows pattern|mønsterreferanse]] ved å bruke [https://en.wikipedia.org/wiki/Regular_expression regulært uttrykk] og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-dtitle": "«$1» er en forhåndsdefinert egenskap som kan tildele en distinktiv visningstittel til en entitet og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvuc": "«$1» er en forhåndsdefinert egenskap gitt av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] for å begrense verditildelinger for hver instans til å være unik (eller maksimalt én).", + "smw-property-predefined-long-pvuc": "Unikhet etableres når to verdier ikke er likeverdige i den bokstavelige representasjonen, og ethvert brudd på den begrensningen blir kategorisert som en feil.", + "smw-datavalue-constraint-uniqueness-violation": "Egenskapen «$1» tillater kun unike verditildelinger og «$2» var allerede annotert i subjektet «$3».", + "smw-datavalue-constraint-uniqueness-violation-isknown": "Egenskapen «$1» tillater kun unike verdiannoteringer, ''$2'' inneholder allerede en tildelt verdi. «$3» bryter med unikhetsbegrensningen.", + "smw-datavalue-constraint-violation-non-negative-integer": "Egenskapen «$1» har en begrensning for «ikke-negativt heltall» og verdien ''$2'' bryter med den begrensningen.", + "smw-datavalue-constraint-violation-must-exists": "Egenskapen «$1» har en begrensning must_exists og verdien ''$2'' bryter med den begrensningen.", + "smw-datavalue-constraint-violation-single-value": "Egenskapen «[[Property:$1|$1]]» har en begrensning single_value og verdien «$2» bryter med den begrensnigen.", + "smw-constraint-violation-uniqueness": "En unique_value_constraint-begrensning er tildelt egenskapen «[[Property:$1|$1]]» som kun tillater unike verdier, og verdien ''$2'' finnes allerede for subjektet «$3».", + "smw-constraint-violation-uniqueness-isknown": "En unique_value_constraint-begrensning er tildelt egenskapen «[[Property:$1|$1]]», og derfor tillates kun unike verdiannoteringer. ''$2'' finnes allede som en annotert verdi med «$3», som bryter med unikhetsbegrensningen for det gjeldende subjektet.", + "smw-constraint-violation-non-negative-integer": "En non_negative_integer-begrensning er tildelt egenskapen «[[Property:$1|$1]]» og verdien ''$2'' bryter med denne begrensningen.", + "smw-constraint-violation-must-exists": "En must_exists-begrensning er tildelt egenskapen «[[Property:$1|$1]]», og verdien ''$2'' bryter med denne begrensningen.", + "smw-constraint-violation-single-value": "En single_value-begrensning er tildelt egenskapen «[[Property:$1|$1]]», og verdien ''$2'' bryter med denne begrensningen.", + "smw-constraint-violation-class-shape-constraint-missing-property": "En shape_constraint er tildelt kategorien «[[:$1|$1]]» med en property-nøkkel, men den påkrevde egenskapen «$2» mangler.", + "smw-constraint-violation-class-shape-constraint-wrong-type": "En shape_constraint er tildelt kategorien «[[:$1|$1]]» med en property_type-nøkkel; egenskapen «$2» matcher ikke typen «$3».", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "En shape_constraint er tildelt kategorien «[[:$1|$1]]» med en max_cardinality-nøkkel; egenskapen «$2> matcher ikke kardinaliteten til «$3».", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "En shape_constraint er tildelt kategorien «[[:$1|$1]]» med en min_textlength-nøkkel; egenskapen «$2» matcher ikke lengdekravet til «$3».", + "smw-constraint-violation-class-mandatory-properties-constraint": "En mandatory_properties-begrensning er tildelt kategorien «[[:$1|$1]]» og krever følgende obligatoriske egenskaper: $2", + "smw-constraint-violation-allowed-namespace-no-match": "En allowed_namespaces-begrensning er tildelt egenskapen «[[Property:$1|$1]]», og «$2» bryter med navneromskravet; kun de følgende «$3» navnerommene er tillatt.", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "Begrensningen allowed_namespaces krever en sidetype.", + "smw-constraint-schema-category-invalid-type": "Det annoterte skjemaet «$1» er ugyldig for en kategori, det krever typen «$2».", + "smw-constraint-schema-property-invalid-type": "Det annoterte skjemaet «$1» er ugyldig for en egenskap, det krever typen «$2».", + "smw-constraint-error-allows-value-list": "«$1» er ikke i lista ($2) over [[Property:Allows value|tillatte verdier]] for egenskapen «$3».", + "smw-constraint-error-allows-value-range": "«$1» er ikke i intervallet «$2» angitt av [[Property:Allows value|tillatte verdier]] for egenskapen «$3».", + "smw-property-predefined-boo": "«$1» er en [[Special:Types/Boolean|type]] og forhåndsdefinert egenskap gitt av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] for å representere boolske verdier.", + "smw-property-predefined-num": "«$1» er en [[Special:Types/Number|type]] og forhåndsdefinert egenskap gitt av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] for å representere numeriske verdier.", + "smw-property-predefined-dat": "«$1» er en [[Special:Types/Date|type]] og forhåndsdefinert egenskap gitt av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] for å representere datoverdier.", + "smw-property-predefined-uri": "«$1» er en [[Special:Types/URL|type]] og forhåndsdefinert egenskap gitt av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] for å representere URI-/URL-verdier.", + "smw-property-predefined-qty": "«$1» er en [[Special:Types/Quantity|type]] og forhåndsdefinert egenskap gitt av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] for å representere kvantitetsverdier.", + "smw-datavalue-time-invalid-offset-zone-usage": "«$1» inneholder en forskyvnings- og soneidentifikator som ikke støttes.", + "smw-datavalue-time-invalid-values": "Verdien «$1» inneholder informasjon som ikke kan tolkes med formen «$2».", + "smw-datavalue-time-invalid-date-components-common": "«$1» inneholder informasjon som ikke kan tolkes.", + "smw-datavalue-time-invalid-date-components-dash": "«$1» inneholder en type tankestrek eller andre tegn som er ugyldige for datotolking.", + "smw-datavalue-time-invalid-date-components-empty": "«$1» inneholder tomme komponenter.", + "smw-datavalue-time-invalid-date-components-three": "«$1» inneholder mer enn tre komponenter som kreves for datotolking.", + "smw-datavalue-time-invalid-date-components-sequence": "«$1» inneholder en sekvens som ikke kunne tolkes mot en tilgjengelig matchingsmatrise over datokomponenter.", + "smw-datavalue-time-invalid-ampm": "«$1» inneholder «$2» som timeelement som er ugyldig for 12-timerskonvensjonen.", + "smw-datavalue-time-invalid-jd": "Kunne ikke tolke inndataverdien «$1» som gyldig JD-tall (juliansk dag) med «$2» rapportert.", + "smw-datavalue-time-invalid-prehistoric": "Kunne ikke tolke forhistorisk inndataverdi «$1». For eksempel, har man angitt flere år, eller kalendermodellen returnerer uventede resultater i en forhistorisk kontekst.", + "smw-datavalue-time-invalid": "Kunne ikke tolke inndataverdien «$1» som gyldig dato- eller tidskomponent med «$2» rapportert.", + "smw-datavalue-external-formatter-uri-missing-placeholder": "Formaterings-URI-en mangler plassholderen «$1».", + "smw-datavalue-external-formatter-invalid-uri": "«$1» er en ugyldig URL.", + "smw-datavalue-external-identifier-formatter-missing": "Egenskapen mangler en tildeling for [[Property:External formatter uri|«External formatter URI»]].", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "Den eksterne identifikatoren «$1» forventer flerfeltserstatning, men den nåværende verdien «$2» mangler minst én verdiparameter for å imøtekomme kravet.", + "smw-datavalue-keyword-maximum-length": "Nøkkelordet oversteg maksimallengden på {{PLURAL:$1|ett|$1}} tegn.", + "smw-property-predefined-eid": "«$1» er en [[Special:Types/External edintefier|type]] og forhåndsdefinert egenskap gitt av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] for å representere eksterne identifikatorer.", + "smw-property-predefined-peid": "«$1» er en forhåndsdefinert egenskap som spesifiserer en ekstern identifikator og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pefu": "«$1» er en forhåndsdefinert egenskap gitt av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] for å angi en ekstern ressurs med en plassholder.", + "smw-property-predefined-long-pefu": "URI-en forventes å inneholde en plassholder som justeres med en [[Special:Types/External identifier|ekstern identifikator]] for å danne en gyldig ressursreferanse.", + "smw-type-eid": "«$1» er en variant av datatypen [[Special:Types/Text|tekst]] for å beskrive eksterne ressurser (URI-basert) og krever at tildelte egenskaper erklærer en [[Property:External formatter uri|External formatter URI]].", + "smw-property-predefined-keyw": "«$1» er en forhåndsdefinert egenskap og [[Special:Types/Keyword|type]] gitt av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] som normaliserer teksten og har begrenset tegnlengde.", + "smw-type-keyw": "«$1» er en variant av datatypen [[Special:Types/Text|tekst]] som har begrensed tegnlengde med en normalisert innholdsrepresentasjon.", + "smw-datavalue-stripmarker-parse-error": "Den gitte verdien «$1» ineholder [https://en.wikipedia.org/wiki/Help:Strip_markers «strip markers»] og kan derfor ikke tolkes tilstrekkelig.", + "smw-datavalue-parse-error": "Den gitte verdien «$1» ble ikke forstått.", + "smw-datavalue-propertylist-invalid-property-key": "Egenskapslisten «$1» inneholdt en ugyldig egenskapsnøkkel «$2».", + "smw-datavalue-type-invalid-typeuri": "Typen «$1» kunne ikke gjøres om til en gyldig URI-representasjon.", + "smw-datavalue-wikipage-missing-fragment-context": "Wikisideinndataverdien «$1» kan ikke brukes uten en kontekstside.", + "smw-datavalue-wikipage-invalid-title": "Sidetypens inndataverdi «$1» inneholdt ugyldige tegn eller er ufullstendig og kan derfor forårsake uventede resultater i en spørrings- eller annoteringsprosess.", + "smw-datavalue-wikipage-property-invalid-title": "Egenskapen «$1» (som sidetype) med inndataverdien «$2» inneholder ugyldige tegn eller er ukompatibel og kan derfor forårsake uventede resultater i en spørrings- eller annoteringsprosess.", + "smw-datavalue-wikipage-empty": "Wikisidens inndataverdi er tom (f.eks. [[SomeProperty::]], [[]]) og kan derfor ikke brukes som navn på eller del av et spørringsvilkår.", + "smw-type-ref-rec": "«$1» er en [https://www.semantic-mediawiki.org/wiki/Container konteinertype] som gjør det mulig å tegne opp ekstra informasjon om en verditildeling.", + "smw-datavalue-reference-invalid-fields-definition": "Typen [[Special:Types/Reference|referanse]] forventer en liste over egenskaper som erklæres med egenskapen [https://www.semantic-mediawiki.org/wiki/Help:Special_properties_Has_fields Has fields].", + "smw-parser-invalid-json-format": "JSON-parseren returnerte med «$1».", + "smw-property-preferred-label-language-combination-exists": "«$1» kan ikke brukes som foretrukket etikett fordi språket «$2» allerede har etiketten «$3» tildelt.", + "smw-clipboard-copy-link": "Kopier lenke til utklippstavlen", + "smw-property-userdefined-fixedtable": "«$1» ble konfigurert som [https://www.semantic-mediawiki.org/wiki/Fixed_properties «fixed property»] og alle endringer av dens [https://www.semantic-mediawiki.org/wiki/Type_declaration typeerklæring] krever enten kjøring av setupStore.php eller fullføring av oppgaven [[Special:SemanticMediaWiki|«databaseinstallering og oppgradering»]].", + "smw-data-lookup": "Henter data ...", + "smw-data-lookup-with-wait": "Forespørselen prosesseres og kan ta en liten stund.", + "smw-no-data-available": "Ingen data tilgjengelige.", + "smw-property-req-violation-missing-fields": "Egenskapen «$1» mangler en påkrevd erklæring for [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] for denne «$2»-typen.", + "smw-property-req-violation-multiple-fields": "Egenskapen «$1» inneholder flere (og derfor konkurrerende) [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields]-erklæringer, kun én forventes for denne «$2»-typen.", + "smw-property-req-violation-missing-formatter-uri": "Egenskapen «$1» mangler erklæringsdetaljer for den annoterte typen ved ikke å definere egenskapen External formatter URI.", + "smw-property-req-violation-predefined-type": "Egenskapen «$1» som inneholder som forhåndsdefinert egenskap typeerklæringen «$2» som er inkompatibel med standardtypen til denne egenskapen.", + "smw-property-req-violation-import-type": "En typeerklæring ble funnet som ikke er kompatibel med den forhåndsdefinerte typen til det importerte ordforrådet «$1». Generelt sett er det ikke nødvendig å erklære en type fordi informasjonen hentes fra den importerte definisjonen.", + "smw-property-req-violation-change-propagation-locked-error": "Egenskapen «$1» ble endret og krever at tildelte entiteter reevalueres med bruk av prosessen [https://www.semantic-mediawiki.org/wiki/Change_propagation «change propagation»]. Egenskapssiden har blitt låst fram til den primære spesifikasjonsoppdateringen er fullført for å forhindre forstyrrelser i mellomtiden eller motstridende spesifikasjoner. Prosessen kan ta en liten stund før siden låses opp siden det avhenger av størrelsen og frekvensen til [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue jobbkøen].", + "smw-property-req-violation-change-propagation-locked-warning": "Egenskapen «$1» ble endret og krever at tildelte entiteter reevalueres med prosessen [https://www.semantic-mediawiki.org/wiki/Change_propagation «change propagation»]. Oppdateringen kan ta en liten stund siden den avhenger av størrelsen og frekvensen til [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue jobbkøen], og det foreslås å utsette endringer av egenskapen for å forhindre forstyrrelser i mellomtiden eller motstridende spesifikasjoner.", + "smw-property-req-violation-change-propagation-pending": "Oppdateringer med [https://www.semantic-mediawiki.org/wiki/Change_propagation «change propagation»] venter ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|jobb|jobber}}] estimert) og det anbefales å vente med endringer i egenskapen til prosessen er fullført for å forhindre forstyrrelser i mellomtiden eller motstridende spesifikasjoner.", + "smw-property-req-violation-missing-maps-extension": "Semantic MediaWiki oppdaget ikke utvidelsen [https://www.semantic-mediawiki.org/wiki/Extension:Maps «Maps»] som er en avhengighet, og som følge av dette begrenses funksjonaliteten (f.eks. muligheten til å lagre og prosessere geografiske data) til denne egenskapen.", + "smw-property-req-violation-type": "Egenskapen inneholder motstridende typespesifikasjoner som kan resultere i ugyldige verdiannoteringer, derfor forventes det at brukeren tildeler én passende type.", + "smw-property-req-error-list": "Egenskapen inneholder følgende feil eller advarsler:", + "smw-property-req-violation-parent-type": "Egenskapen «$1» og den tildelte foreldreegenskapen «$2» har forskjellige typeannoteringer.", + "smw-property-req-violation-forced-removal-annotated-type": "Håndhevelsen av [https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance obligatorisk foreldretypearv] har blitt slått på, annoteringstypen for egenskapen «$1» matcher ikke typen til foreldreegenskapen «$2» og har blitt endret for å reflektere det kravet. Det anbefales å tilpasse typedefinisjonene på sider så feilbeskjeden og obligatorisk håndhevelse fjernes for denne egenskapen.", + "smw-change-propagation-protection": "Denne siden er låst for å forhindre dataendring mens en [https://www.semantic-mediawiki.org/wiki/Change_propagation «change propagation»]-oppdatering kjøres. Prosessen kan ta en liten stund før siden låses opp, siden det avhenger av størrelsen og frekvensen til [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue jobbkøen].", + "smw-category-change-propagation-locked-error": "Kategorien «$1» ble endret og krever at tildelte entiteter reevalueres med bruk av prosessen [https://www.semantic-mediawiki.org/wiki/Change_propagation «change propagation»]. Kategorisiden har blitt låst fram til den primære spesifikasjonsoppdateringen er fullført for å forhindre forstyrrelser i mellomtiden eller motstridende spesifikasjoner. Prosessen kan ta en liten stund før siden låses opp siden det avhenger av størrelsen og frekvensen til [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue jobbkøen].", + "smw-category-change-propagation-locked-warning": "Kategorien «$1» ble endret og krever at tildelte entiteter reevalueres med bruk av prosessen [https://www.semantic-mediawiki.org/wiki/Change_propagation «change propagation»]. Oppdateringen kan ta en liten stund fordi den avhenger av størrelsen og frekvensen til [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue jobbkøen], og det anbefales at du venter med å gjøre endringer i kategorien for å forhindre forstyrrelser i mellomtiden eller motstridende spesifikasjoner.", + "smw-category-change-propagation-pending": "Oppdateringer med [https://www.semantic-mediawiki.org/wiki/Change_propagation «change propagation»] venter ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|jobb|jobber}}] estimert) og det anbefales å vente med endringer i kategorien til prosessen er fullført for å forhindre forstyrrelser i mellomtiden eller motstridende spesifikasjoner.", + "smw-category-invalid-value-assignment": "«$1» gjenkjennes ikke som en gyldig kategori- eller verdiannoteringe.", + "protect-level-smw-pageedit": "Tillat kun brukere med sideredigeringstillatelse (Semantic MediaWiki)", + "smw-create-protection": "Opprettelse av egenskapen «$1» er begrenset til brukere med den rette rettigheten (eller [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups brukergruppa]) «$2» mens [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode autoritetsmodus] er slått på.", + "smw-create-protection-exists": "Endringer i egenskapen «$1» begrenses til brukere med rettigheten (eller [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups brukergruppa]) «$2» mens [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode autoritetsmodus] er slått på.", + "smw-edit-protection": "Denne siden er [[Property:Is edit protected|beskyttet]] for å forhindre utilsikted dataendring og kan kun redigeres av brukere med den riktige rettigheten eller [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups brukergruppa] «$1».", + "smw-edit-protection-disabled": "Redigeringsbeskyttelsen er slått av og «$1» kan derfor ikke brukes for å beskytte entitetssider mot uautorisert redigering.", + "smw-edit-protection-auto-update": "Semantic MediaWiki har oppdatert beskyttelsesstatusen i samsvar med egenskapen «Is edit protected».", + "smw-edit-protection-enabled": "Redigeringsbeskyttet (Semantic MediaWiki)", + "smw-patternedit-protection": "Denne siden er beskyttet og kan kun redigeres av brukere med den rette [https://www.semantic-mediawiki.org/wiki/Help:Permissions tillatelsen] smw-patternedit.", + "smw-property-predefined-edip": "«$1» er en forhåndsdefinert egenskap gitt av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] for å indikere hvorvidt redigering er beskyttet eller ikke.", + "smw-property-predefined-long-edip": "Alle brukere er kvalifisert til å legge til denne egenskapen til et subjekt, men kun brukere med en spesiell tillatelse kan redigere eller fjerne beskyttelsen av en entitet etter at den har blitt lagt til.", + "smw-query-reference-link-label": "Spørringsreferanse", + "smw-format-datatable-emptytable": "Ingen data tilgjengelige i tabellen", + "smw-format-datatable-info": "Viser _START_ til _END_ av _TOTAL_ oppføringer", + "smw-format-datatable-infoempty": "Viser 0 til 0 av 0 oppføringer", + "smw-format-datatable-infofiltered": "(filtrert fra totalt _MAX_ oppføringer)", + "smw-format-datatable-lengthmenu": "Vis _MENU_ oppføringer", + "smw-format-datatable-loadingrecords": "Laster …", + "smw-format-datatable-processing": "Prosesserer …", + "smw-format-datatable-search": "Søk:", + "smw-format-datatable-zerorecords": "Ingen matchende opptegnelser funnet", + "smw-format-datatable-first": "Første", + "smw-format-datatable-last": "Siste", + "smw-format-datatable-next": "Neste", + "smw-format-datatable-previous": "Forrige", + "smw-format-datatable-sortascending": ": aktiver for å sortere kolonnen stigende", + "smw-format-datatable-sortdescending": ": aktiver for å sortere kolonnen synkende", + "smw-format-datatable-toolbar-export": "Eksporter", + "smw-format-list-other-fields-open": "(", + "smw-category-invalid-redirect-target": "Kategorien «$1» inneholder et ugyldig omdirigeringsmål til et navnerom som ikke er kategori.", + "smw-parser-function-expensive-execution-limit": "Parserfunksjonen har nådd grensa for dyre kjøringer (se konfigurasjonsparameteren [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "Semantic MediaWiki oppdaterer den gjeldende siden på grunn av etterprosessering av en spørring.", + "apihelp-smwinfo-summary": "API-modul for å hente informasjon om Semantic MediaWiki-statistikk og annen metainformasjon.", + "apihelp-ask-summary": "API-modul for å kjøre spørringer mot Semantic MediaWiki med ask-språket.", + "apihelp-askargs-summary": "API-modul for å kjøre spørringer mot Semantic MediaWiki med ask-språket som en liste over forutsetninger, printouts og parametre.", + "apihelp-browsebyproperty-summary": "API-modul for å hente informasjon om en egenskap eller en liste over egenskaper.", + "apihelp-browsebysubject-summary": "API-modul for å hente informasjon om et subjekt.", + "apihelp-smwtask-summary": "API-modul for å utføre Semantic MediaWiki-relaterte oppgaver (kun for intern bruk, ikke offentlig bruk).", + "apihelp-smwbrowse-summary": "API-modul for å støtte leseaktiviteter for forskjellige entitetstyper i Semantic MediaWiki.", + "apihelp-ask-parameter-api-version": "Resultatformat:\n;2:Bakoverkompatibelt format som bruker {} for resultatlista.\n;3:Eksperimentelt format som bruker [] for resultatlista.", + "apihelp-smwtask-param-task": "Definerer oppgavetypen", + "apihelp-smwtask-param-params": "JSON-kodede parametere som matcher valgte oppgavetypekrav", + "smw-apihelp-smwtask-example-update": "Eksempel på å kjøre en oppdateringsoppgave for et visst subjekt:", + "smw-api-invalid-parameters": "Ugyldige parametere, «$1»", + "smw-parser-recursion-level-exceeded": "Nivået for $1 rekursjoner ble overskredet under en tolkingsprosess. Det anbefales å validere malstrukturen, eller hvis det er nødvendig justere konfigurasjonsparameteren $maxRecursionDepth.", + "smw-property-page-list-count": "Viser $1 {{PLURAL:$1|side|sider}} som bruker denne egenskapen.", + "smw-property-page-list-search-count": "Viser $1 {{PLURAL:$1|side|sider}} som bruker denne egenskapen med treff på verdien «$2».", + "smw-property-page-filter-note": "[https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter Søkefilteret] gjør det mulig å bruke [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions spørringsuttrykk] som ~ eller !. Den valgte [https://www.semantic-mediawiki.org/wiki/Query_engine spørringsmotoren] kan også støtte matching uten hensyn til store/små bokstaver eller andre korte uttrykk, som:\n\n* in: resultatet bør inkludere begrepet, f.eks. «in:Foo»\n\n* not: resultatet bør ikke inkludere begrepet, f.eks. «not:Bar»", + "smw-property-reserved-category": "Kategori", + "smw-category": "Kategori", + "smw-datavalue-uri-invalid-scheme": "«$1» har ikke blitt listet opp som et gyldig URI-format.", + "smw-datavalue-uri-invalid-authority-path-component": "«$1» har lbitt identifisert til å inneholde en ugyldig autoritets- eller stikomponent «$2».", + "smw-browse-property-group-title": "Egenskapsgruppe", + "smw-browse-property-group-label": "Etikett for egenskapsgruppe", + "smw-browse-property-group-description": "Beskrivelse for egenskapsgruppe", + "smw-property-predefined-ppgr": "«$1» er en forhåndsdefinert egenskap som identifiserer entiteter (primært kategorier) som brukes som grupperingsinstanser for egenskaper og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-filter": "Filter", + "smw-section-expand": "Utvid seksjonen", + "smw-section-collapse": "Klapp sammen seksjonen", + "smw-ask-format-help-link": "[https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]-format", + "smw-help": "Hjelp", + "smw-cheat-sheet": "Jukseark", + "smw-personal-jobqueue-watchlist": "Jobbjø-overvåkningsliste", + "smw-personal-jobqueue-watchlist-explain": "Tallet indikerer et estimat for jobbkøoppføringer som venter på kjøring.", + "smw-property-predefined-label-skey": "Sorteringsnøkkel", + "smw-processing": "Prosesserer …", + "smw-loading": "Laster …", + "smw-fetching": "Henter …", + "smw-preparing": "Forbereder …", + "smw-expand": "Utvid", + "smw-collapse": "Slå sammen", + "smw-copy": "Kopier", + "smw-copy-clipboard-title": "Kopierer innholdet til utklippstavlen", + "smw-jsonview-expand-title": "Utvider JSON-visningen", + "smw-jsonview-collapse-title": "Slår sammen JSON-visningen", + "smw-jsonview-search-label": "Søk:", + "smw-redirect-target-unresolvable": "Målet kan ikke løses fordi «$1»", + "smw-types-title": "Type: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "Endring av innholdsmodellen til en [https://www.semantic-mediawiki.org/wiki/Help:Schema skjemaside] er ikke tillatt.", + "smw-schema-namespace-edit-protection": "Siden er beskyttet og kan kun redigeres av brukere med [https://www.semantic-mediawiki.org/wiki/Help:Permissions tillatelsen] smw-schemaedit.", + "smw-schema-namespace-edit-protection-by-import-performer": "Denne siden ble importert av en opplistet [https://www.semantic-mediawiki.org/wiki/Import_performer importeringsutfører], hvilket betyr at endring av innholdet på denne siden er begrenset til de opplistede brukerne.", + "smw-schema-error-title": "{{PLURAL:$1|Valideringsfeil}}", + "smw-schema-error-schema": "Valideringsskjemaet '''$1''' fant følgende inkonsekvenser:", + "smw-schema-error-miscellaneous": "Udefinert feil ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "JSON-validatoren «$1» er ikke tilgjengelig (eller installert), hvilket er grunnen til at fila «$2» ikke kan undersøkes, som hindrer den gjeldende siden fra å bli lagret eller endret.", + "smw-schema-error-validation-file-inaccessible": "Valideringsfila «$1» er utilgjengelig.", + "smw-schema-error-violation": "[«$1», «$2»]", + "smw-schema-error-type-missing": "Konspetet mangler en type for at den skal kunne gjenkjennes og brukes i [https://www.semantic-mediawiki.org/wiki/Help:Schema skjemanavnerommet].", + "smw-schema-error-type-unknown": "Typen «$1» er ikke registrert og kan ikke brukes for innhold i [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema]-navnerommet.", + "smw-schema-error-json": "JSON-feil: «$1»", + "smw-schema-error-input": "Inndatavalideringen fant følgende feil, de må fikses før innholdet kan lagres. [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling Skjemahjelpesiden] kan gi noen råd om hvordan man fjerner inkonsekvenser eller løser feil med skjemaets inndata.", + "smw-schema-error-input-schema": "Valideringsskjemaet '''$1''' fant følgende inkonsekvenser, og de må fikses før innholdet kan lagres. [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling Skjemahjelpesiden] kan gi noen råd for hvordan man kan fikse disse feilene.", + "smw-schema-error-title-prefix": "Denne skjematypen krever at tittelen til skjemaet begynner med prefikset «$1».", + "smw-schema-validation-error": "Typen «$1» er ikke registrert og kan ikke brukes for innhold i [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema]-navnerommet.", + "smw-schema-validation-schema-title": "JSON-skjema", + "smw-schema-summary-title": "Sammendrag", + "smw-schema-title": "Skjema", + "smw-schema-usage": "Bruk", + "smw-schema-type": "Skjematype", + "smw-schema-type-description": "Typebeskrivelse", + "smw-schema-description": "Skjemabeskrivelse", + "smw-schema-description-link-format-schema": "Denne skjematypen støtter definisjonen av karakteristikker for å opprette kontekstsensitive lenker i tilknytning til en [[Property:Formatter schema|formatskjema]]-tildelt egenskap.", + "smw-schema-description-search-form-schema": "Denne skjematypen støtter definisjonen av inndataformer og -karakteristikker for den [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch utvidede søkeprofilen] der den inneholder instruksjoner for hvordan man genererer inndatafelt, definerer standard navnerom eller erklærer prefiksuttrykk for en søkeforespørsel.", + "smw-schema-description-property-profile-schema": "Denne skjematypen støtter definisjonen av en profil for å erklære karakteristikker for den tildelte egenskapen og dens annoteringsverdier.", + "smw-schema-description-property-group-schema": "Denne skjematypen støtter definisjonen av [https://www.semantic-mediawiki.org/wiki/Help:Property_group egenskapsgrupper] for å hjelpe strukteren til [https://www.semantic-mediawiki.org/wiki/Help:Special:Browse lesingsgrensesnittet].", + "smw-schema-description-property-constraint-schema": "Dette støtter definisjonen av begrensningsregler for en egenskapsinstans samt de verdiene som er tildelt den.", + "smw-schema-description-class-constraint-schema": "Denne skjematypen støtter definisjonen av begrensningsregler for en klasseinstans (også kjent som en kategori).", + "smw-schema-tag": "{{PLURAL:$1|Tagg|Tagger}}", + "smw-property-predefined-constraint-schema": "«$1» er en forhåndsdefinert egenskap som definererer et begrensningsskjema og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-desc": "«$1» er en forhåndsdefinert egenskap som lagrer en skjemabeskrivelse og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-def": "«$1» er en forhåndsdefinert egenskap som lagrer skjemainnhold og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-tag": "«$1» er en forhåndsdefinert egenskap av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] for å identifisere en samling skjemaer.", + "smw-property-predefined-long-schema-tag": "En etikett som identifiserer skjemaene til lignende innhold eller karakteristikk.", + "smw-property-predefined-schema-type": "«$1» er en forhåndsdefinert egenskap som beskriver en type for å skjelne en gruppe skjemaer og gis av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-schema-type": "Hver [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type type] gir sin egen tolkning av syntakselementene og applikasjonsreglene og kan uttrykkes med hjelp av et [https://www.semantic-mediawiki.org/wiki/Help:Schema#validation valideringsskjema].", + "smw-ask-title-keyword-type": "Nøkkelordsøk", + "smw-ask-message-keyword-type": "Dette søket matcher vilkåret $1.", + "smw-remote-source-unavailable": "Kunne ikke koble til eksternt mål «$1».", + "smw-remote-source-disabled": "Kilden «$1» har slått av støtte for eksterne forespørsler!", + "smw-remote-source-unmatched-id": "Kilden '''$1''' matcher ikke en versjon av Semantic MediaWiki som kan støtte en ekstern forespørsel.", + "smw-remote-request-note": "Resultatet er hentet fra den eksterne kilden '''$1''', og det er sannsynlig at generert innhold inneholder informasjon som ikke er tilgjengelig fra den nåværende wikien.", + "smw-remote-request-note-cached": "Resultatet er '''mellomlagret''' fra den eksterne kilden '''$1''', og det er sannsynlig at det genererte innholdet inneholder informasjon som ikke er tilgjengelig i den nåværende wikien.", + "smw-parameter-missing": "Parameteren «$1» mangler.", + "smw-property-tab-usage": "Bruk", + "smw-property-tab-profile-schema": "Profilskjema", + "smw-property-tab-redirects": "Synonymer", + "smw-property-tab-subproperties": "Underegenskaper", + "smw-property-tab-errors": "Feilaktige tildelinger", + "smw-property-tab-constraint-schema": "Begrensningsskjema", + "smw-property-tab-constraint-schema-title": "Kompilert begrensningsskjema", + "smw-property-tab-specification": "… mer", + "smw-concept-tab-list": "Liste", + "smw-concept-tab-errors": "Feil", + "smw-ask-tab-result": "Resultat", + "smw-ask-tab-extra": "Ekstra", + "smw-ask-tab-debug": "Feilsøking", + "smw-ask-tab-code": "Kode", + "smw-install-incomplete-tasks-title": "Ufullstendige administrasjonsoppgaver", + "smw-install-incomplete-intro": "Det er $2 {{PLURAL:$2|ufullstendig|ufullstendige}} eller [[Special:PendingTaskList|ventende]] {{PLURAL:$2|oppgave|oppgaver}} for å fullføre {{PLURAL:$1|installasjonen|oppgraderingen}} av [https://www.semantic-mediawiki.org Semantic MediaWiki]. En administrator eller bruker med nødvendige rettigheter kan fullføre {{PLURAL:$2|den|dem}}. Dette bør gjøres før nye data legges til for å unngå unøyaktigheter.", + "smw-install-incomplete-intro-note": "Denne beskjeden forsvinner når alle relevante oppgaver har blitt løst.", + "smw-pendingtasks-intro-empty": "Ingen oppgaver har blitt klassifisert som ventende, ufullstendige eller ufullførte i forbindelse med Semantic MediaWiki.", + "smw-pendingtasks-intro": "Denne siden gir informasjon om oppgaver som har blitt klassifisert som ventende, ufullstendige eller utestående i forbindelse med Semantic MediaWiki.", + "smw-pendingtasks-setup-no-tasks-intro": "Installasjonen (eller oppgraderingen) har blitt fullført, det er ingen ventende eller utestående oppgaver.", + "smw-pendingtasks-tab-setup": "Oppsett", + "smw-updateentitycollation-incomplete": "Innstillingen [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] ble nylig endret, og krever at skriptet [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php] kjøres slik at entitetene er oppdatert og inneholder riktig sorteringsfeltverdi.", + "smw-updateentitycountmap-incomplete": "Feltet smw_countmap ble lagt til i en ny utgivelse og krever at skriptet [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php] kjøres slik at funksjoner kan få tilgang til innholdet i dette feltet.", + "smw-populatehashfield-incomplete": "Befolkningen av feltet smw_hash ble hoppet over under oppsettet. Skriptet [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] må kjøres.", + "smw-install-incomplete-populate-hash-field": "Befolkningen av feltet smw_hash ble hoppet over under oppsettet. Skriptet [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] må kjøres.", + "smw-install-incomplete-elasticstore-indexrebuild": "ElasticStore har blitt valgt som [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore standardlager], men utvidelsen kunne ikke finne noen opptegnelser på at skriptet [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] ble kjørt. Kjør skriptet som instruert.", + "smw-elastic-rebuildelasticindex-run-incomplete": "ElasticStore har blitt valgt som [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore standardlager], men utvidelsen kunne ikke finne noen opptegnelser på at skriptet [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] ble kjørt. Kjør skriptet som instruert.", + "smw-pendingtasks-setup-intro": "{{PLURAL:$1|Installeringen|Oppgraderingen}} av Semantic MediaWiki har klassifisert følgende oppgaver som [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade ufullstendige], og en administrator (eller en annen bruker med rette rettigheter) forventes å løse disse oppgavene før brukere kan fortsette å opprette eller endre innhold.", + "smw-pendingtasks-setup-tasks": "Oppgaver", + "smw-filter-count": "Antall filtre", + "smw-es-replication-check": "Replikasjonssjekk (ElasticSearch)", + "smw-es-replication-error": "Replikasjonsproblem i Elasticsearch", + "smw-es-replication-file-ingest-error": "Problem med filhenting", + "smw-es-replication-maintenance-mode": "Elasticsearch-vedlikehold", + "smw-es-replication-error-missing-id": "Replikasjonsovervåkningen har funnet at artikkelen «$1» (ID: $2) mangler i ElasticSearchs bakstykke.", + "smw-es-replication-error-divergent-date": "Replikasjonsovervåkningen har funnet ut at for artikkelen «$1» (ID: $2) er det inkonsekvenser i endringsdatoen.", + "smw-es-replication-error-divergent-date-short": "Følgende datoinformasjon ble brukt for sammenligning:", + "smw-es-replication-error-divergent-date-detail": "Referert endringsdato:\n* ElasticSearch: $1\n* Database: $2", + "smw-es-replication-error-divergent-revision": "Replikasjonsovervåkningen har funnet ut at den tilknyttede revisjonen for artikkelen «$1» (ID: $2) viser inkonsekvens.", + "smw-es-replication-error-divergent-revision-short": "Følgende assosierte revisjonsdata ble brukt for sammenligning:", + "smw-es-replication-error-divergent-revision-detail": "Referert tilknyttet sideversjon:\n* ElasticSearch: $1\n* Database: $2", + "smw-es-replication-error-maintenance-mode": "Replikasjonen til Elasticsearch re for tiden begrenset fordi den drives i [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode vedlikeholdsmodus]; endringer i entiteter og sider blir ikke umiddelbart synlig, og spørringsresultater kan inneholde utdatert informasjon.", + "smw-es-replication-error-no-connection": "Replikasjonsovervåkningen kan ikke utføre noen sjekker fordi den ikke kan etablere en tilkobling til ElasticSearch-klyngen.", + "smw-es-replication-error-bad-request-exception": "ElasticSearch-tilkoblingshåndtereren har avgitt et unntak for ugyldig forespørsel («400 conflict http error») som indikerer et fortsettelsesproblem under replikasjons- og søkeforespørsler.", + "smw-es-replication-error-other-exception": "Elasticsearch-tilkoblingsbehandleren har returnert et unntak: «$1».", + "smw-es-replication-error-suggestions": "Det anbefales å redigere eller gjenoppfriske mellomlageret til siden for å fjerne inkonsekvensen. Hvis problemer fortsetter, sjekk selve ElasticSearch-klyngen.", + "smw-es-replication-error-suggestions-maintenance-mode": "Det anbefales å kontakte wikiens administrator for å sjekke hvorvidt en [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild indeksgjenoppbygging] er på gang eller om refresh_interval ikke har blitt satt til den forventede standardverdien.", + "smw-es-replication-error-suggestions-no-connection": "Det foreslås å kontakte wikiens administrator og rapportere feilen for «ingen tilkobling»…", + "smw-es-replication-error-suggestions-exception": "Sjekk loggene for informasjon om statusen til ElasticSearch, dens indekser og mulige feilkonfigurasjoner.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "Replikasjonsovervåkningen har funnet ut at «$1» mangler en [[Property:File attachment|File attachment]]-annotering, som indikererer at filhentingsprosessoren ikke har begynt eller ikke har fullført.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "Sjekk at [https://www.semantic-mediawiki.org/wiki/Help:ElasticSearch/File_ingestion file ingest]-jobben er planlagt og fullført før annoteringen og filindeksen er gjort tilgjengelig.", + "smw-report": "Rapport", + "smw-legend": "Tegnforklaring", + "smw-datavalue-constraint-schema-category-invalid-type": "Det annoterte skjemaet «$1» er ugyldig for en kategori, det krever typen «$2».", + "smw-datavalue-constraint-schema-property-invalid-type": "Det annoterte skjemaet «$1» er ugyldig for en egenskap, det krever typen «$2».", + "smw-entity-examiner-check": "Kjører {{PLURAL:$1|en undersøker|undersøkere}} i bakgrunnen", + "smw-entity-examiner-indicator": "Entitetsproblempanel", + "smw-entity-examiner-deferred-check-awaiting-response": "Undersøkeren «$1» venter på svar fra bakstykket.", + "smw-entity-examiner-deferred-elastic-replication": "Elastic", + "smw-entity-examiner-deferred-constraint-error": "Begrensning", + "smw-entity-examiner-associated-revision-mismatch": "Versjon", + "smw-entity-examiner-deferred-fake": "Falsk", + "smw-entity-examiner-indicator-suggestions": "Som del av en entitetsundersøkelse ble følgende {{PLURAL:$1|problem|problemer}} funnet, og det foreslås at du går gjennom {{PLURAL:$1|det|dem}} og tar riktig grep.", + "smw-indicator-constraint-violation": "{{PLURAL:$1|Begrensning|Begrensninger}}", + "smw-indicator-revision-mismatch": "Versjon", + "smw-indicator-revision-mismatch-error": "Sjekken for [https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner assosiert versjon] fant manglende samsvar mellom versjonen som refereres til i MediaWiki og den som er assosiert med Semantic MediaWiki for denne entiteten.", + "smw-indicator-revision-mismatch-comment": "Manglende samsvar indikerer vanligvis at en prosess forstyrret lagringsoperasjonen i Semantic MediaWiki. Det anbefales å gå gjennom tjenerloggene og se etter unntak eller andre feil.", + "smw-listingcontinuesabbrev": "forts.", + "smw-showingresults": "Nedenfor vises opptil {{PLURAL:$1|'''ett''' resultat|'''$1''' resultater}} fra og med nummer $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/nds-nl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/nds-nl.json new file mode 100644 index 0000000..bb7ec23 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/nds-nl.json @@ -0,0 +1,17 @@ +{ + "@metadata": { + "authors": [ + "Servien" + ] + }, + "smw-categories": "Kategoryen", + "smw_purge": "Vernyen", + "smw_ask_descorder": "Aoflopend", + "browse": "Wiki bekyken", + "smw_browselink": "Eigenskappen bekyken", + "smw-ui-tooltip-title-reference": "Referensy", + "smw-livepreview-loading": "An t laojen…", + "smw-expand": "Uutklappen", + "smw-listingcontinuesabbrev": "(vervolg)", + "smw-showingresults": "Hieronder {{PLURAL:$1|steet '''1''' resultaot|staon '''$1''' resultaoten}} $1 vanaof nummer $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/nds.json b/mediawiki/extensions/SemanticMediaWiki/i18n/nds.json new file mode 100644 index 0000000..2bd94ae --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/nds.json @@ -0,0 +1,32 @@ +{ + "@metadata": { + "authors": [ + "Joachim Mos", + "Slomox", + "Wikiundeplattsnacker" + ] + }, + "smw_finallistconjunct": "un", + "smw_printername_list": "List", + "smw_printername_table": "Tabell", + "smw_printername_template": "Vörlaag", + "smw_printername_category": "Kategorie", + "validator-type-class-SMWParamSource": "Text", + "smw-categories": "Kategorien", + "smw_ask_defaultformat": "default", + "smw-ask-search": "Söök", + "smw_sbv_value": "Weert:", + "browse": "in't Wiki stövern", + "smw_browse_go": "Gah", + "smw_inverse_label_default": "$1 vun", + "smw_pp_type": "Egenschop", + "smw_result_next": "Tokamen", + "smw_result_results": "Resultaten", + "smw_result_noresults": "Keen Resultaten.", + "smw-ui-tooltip-title-warning": "Fähler", + "smw-livepreview-loading": "Läädt…", + "smw-sp-searchbyproperty-resultlist-header": "List vun Resultaten", + "smw-help": "Hülp", + "smw-listingcontinuesabbrev": "wieder", + "smw-showingresults": "Hier {{PLURAL:$1|is een Resultat|sünd '''$1''' Resultaten}}, anfungen mit #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ne.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ne.json new file mode 100644 index 0000000..180c795 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ne.json @@ -0,0 +1,67 @@ +{ + "@metadata": { + "authors": [ + "Bada Kaji", + "Nirajan pant", + "जनक राज भट्ट", + "पर्वत सुबेदी", + "बडा काजी", + "बिप्लब आनन्द", + "हिमाल सुबेदी" + ] + }, + "smw-error": "त्रुटी", + "smw-upgrade-release": "जारी गर्नुहाेस्", + "smw-upgrade-progress": "प्रगति", + "smw_finallistconjunct": ", र", + "smw-factbox-facts": "तथ्यहरू", + "smw_printername_category": "श्रेणी", + "validator-type-class-SMWParamSource": "पाठ", + "smw-categories": "श्रेणीहरू", + "smw-special-property-searchform-options": "विकल्पहरू", + "smw-special-wantedproperties-filter-none": "कुनै पनि होइन", + "smw-special-wantedproperties-filter-unapproved": "अस्वीकृत", + "smw-special-concept-header": "अवधारणाहरूकाे सूची", + "smw_purge": "ताजा गर्नुहोस्", + "smw-ask-order-rand": "अनियमित", + "smw-ask-sort-add-action": "क्रम शर्त थप्नुहोस्", + "smw_ask_queryhead": "शर्त", + "smw-ask-delete": "हटाउनुहोस्", + "smw-ask-options": "विकल्पहरू", + "smw-ask-options-sort": "क्रम विकल्पहरू", + "smw-ask-search": "खोज्नुहोस्", + "smw-ask-debug": "डिबग", + "smw-ask-result": "नतिजा", + "smw-ask-empty": "सबै प्रविष्टिहरू हटाउनुहोस्", + "smw-ask-format": "ढाँचा", + "browse": "विकि हेर्नुहोस्", + "smw-prev": "पछिल्लो {{PLURAL:$1|$1}}", + "smw-next": "अर्को {{PLURAL:$1|$1}}", + "smw-admin-deprecation-notice-section-legend": "दिग्गज", + "smw-admin-statistics": "तथ्याङ्कहरू", + "smw-admin-supplementary-elastic-functions": "समर्थित सुविधाहरू", + "smw-admin-supplementary-elastic-statistics-title": "तथ्याङ्कहरू", + "smw-ui-tooltip-title-note": "टिप्पणी", + "smw-ui-tooltip-title-reference": "सन्दर्भ", + "smw-admin-idlookup-input": "खोज्नुहोस्:", + "smw-admin-tab-maintenance": "व्यवस्थापन", + "smw-admin-tab-alerts": "सुचनाहरू", + "smw-admin-alerts-tab-maintenancealerts": "मर्मत सतर्कताहरू", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "तालिका अनुकूलन", + "smw-admin-maintenance-no-description": "कुनैपनि विवरण छैन", + "smw-livepreview-loading": "खुल्दै छ…", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|सेकेण्ड|सेकेण्डहरू}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|सेकेण्ड|सेकेण्डहरू}}", + "smw-format-datatable-search": "खोज्नुहोस्:", + "smw-format-datatable-last": "पछिल्लो", + "smw-property-reserved-category": "श्रेणी", + "smw-category": "श्रेणी", + "smw-collapse": "खुम्च्याउनुहाेस्", + "smw-pendingtasks-setup-tasks": "कार्यहरू", + "smw-entity-examiner-deferred-elastic-replication": "लचकता", + "smw-entity-examiner-deferred-fake": "नक्कली", + "smw-indicator-constraint-violation": "{{PLURAL:$1|बाधा|बाधाहरू}}", + "smw-indicator-revision-mismatch": "पुनरावलोकन", + "smw-listingcontinuesabbrev": "निरन्तरता...", + "smw-showingresults": "देखाउँदै {{PLURAL:$1|'''१''' नतिजा|'''$1''' नतिजाहरू }} , #'''$2''' बाट सुरुहुने ।" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/niu.json b/mediawiki/extensions/SemanticMediaWiki/i18n/niu.json new file mode 100644 index 0000000..c8c2e0f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/niu.json @@ -0,0 +1,8 @@ +{ + "@metadata": { + "authors": [ + "Jose77" + ] + }, + "smw_browse_go": "Fano" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/nl-informal.json b/mediawiki/extensions/SemanticMediaWiki/i18n/nl-informal.json new file mode 100644 index 0000000..99253ca --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/nl-informal.json @@ -0,0 +1,8 @@ +{ + "@metadata": { + "authors": [ + "McDutchie" + ] + }, + "smw-admin-docu": "Deze speciale pagina helpt je met het installeren en bijwerken van Semantic MediaWiki en geeft je nog meer beheermogelijkheden, en statistieken bovendien.\nVergeet niet een reservekopie te maken van je waardevolle gegevens voordat je beheerhandelingen verricht." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/nl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/nl.json new file mode 100644 index 0000000..68367fb --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/nl.json @@ -0,0 +1,1137 @@ +{ + "@metadata": { + "authors": [ + "Arent", + "Danieldegroot2", + "DengroWikibase", + "Ecthelion3", + "Elroy", + "Festina90", + "Goefie", + "Hamaryns", + "Hansmuller", + "Hex", + "Kghbln", + "Klaas van Buiten", + "KlaasZ4usV", + "Macofe", + "Mainframe98", + "Mar(c)", + "MarcoSwart", + "McDutchie", + "Nemo bis", + "Optilete", + "Patio", + "PonkoSasuke", + "Rangekill", + "Rcdeboer", + "Robin van der Linde", + "Romaine", + "SPQRobin", + "Saruman", + "Siebrand", + "Sjoerddebruin", + "Tjcool007", + "Wiki13", + "Xbaked potatox" + ] + }, + "smw-desc": "Uw wiki toegankelijker maken – voor machines ''en'' mensen ([https://www.semantic-mediawiki.org/wiki/Help:User_manual online documentatie])", + "smw-error": "Fout", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] is geïnstalleerd en ingeschakeld, maar er ontbreekt een geschikte [https://www.semantic-mediawiki.org/wiki/Help:Upgrade upgrade-sleutel].", + "smw-upgrade-release": "Uitgave", + "smw-upgrade-progress": "Voortgang", + "smw-upgrade-progress-explain": "Het is moeilijk te voorspellen wanneer het opwaarderen voltooid zal zijn. Het hangt af van de grootte van de gegevensopslag en de beschikbare apparatuur. Voor grotere wiki’s kan het even duren.\n\nVoor meer informatie over de voortgang neemt u contact op met uw lokale beheerder.", + "smw-upgrade-progress-create-tables": "Tabellen en indexen aanmaken (of bijwerken)…", + "smw-upgrade-progress-post-creation": "Taken voor na de aanmaak uitvoeren…", + "smw-upgrade-progress-table-optimization": "Tabellen optimaliseren…", + "smw-upgrade-progress-supplement-jobs": "Aanvullende taken toevoegen…", + "smw-upgrade-error-title": "Fout » Semantic MediaWiki", + "smw-upgrade-error-why-title": "Waarom zie ik deze pagina?", + "smw-upgrade-error-why-explain": "De interne databasestructuur van Semantic MediaWiki is gewijzigd en vereist enkele aanpassingen om volledig te kunnen werken. Er kunnen verschillende redenen zijn, waaronder:\n* Er zijn vaste eigenschappen toegevoegd (vereist extra tabelinstellingen)\n* Een upgrade bevat wijzigingen aan tabellen of indices waardoor een onderschepping verplicht is voordat toegang tot de gegevens wordt verkregen\n* Wijzigingen in het opslag- of query-systeem", + "smw-upgrade-error-how-title": "Hoe los ik deze fout op?", + "smw-upgrade-error-how-explain-admin": "Een beheerder (of een persoon met beheerdersrechten) moet het onderhoudsscript [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] van MediaWiki of [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] van Semantic MediaWiki uitvoeren.", + "smw-upgrade-error-how-explain-links": "U kunt ook de volgende pagina’s raadplegen voor verdere hulp:\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation Installatie-instructies]\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting Hulppagina probleemoplossing]", + "smw-extensionload-error-why-title": "Waarom zie ik deze pagina?", + "smw-extensionload-error-why-explain": "De uitbreiding is niet geladen met behulp van enableSemantics en is in plaats daarvan op een andere manier ingeschakeld, zoals door rechtstreeks gebruik van wfLoadExtension( 'SemanticMediaWiki' ).", + "smw-extensionload-error-how-title": "Hoe los ik deze fout op?", + "smw-extensionload-error-how-explain": "Om de uitbreiding in te schakelen en problemen met naamruimte-declaraties en in behandeling zijnde configuraties te voorkomen, is het noodzakelijk om enableSemantics te gebruiken. Dit zorgt ervoor dat de vereiste variabelen worden klaargezet voordat de uitbreiding via de ExtensionRegistry wordt geladen.\n\nKijk eens naar de hulppagina [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] voor verdere inlichtingen.", + "smw-upgrade-maintenance-title": "Onderhoud » Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "Waarom zie ik deze pagina?", + "smw-upgrade-maintenance-note": "Het systeem ondergaat momenteel een [https://www.semantic-mediawiki.org/wiki/Help:Upgrade opwaardering] van de uitbreiding [https://www.semantic-mediawiki.org/ Semantic MediaWiki] alsmede de bijbehorende gegevensopslag. Even geduld alstublieft; na het onderhoud kan de wiki weer toegankelijk worden gemaakt.", + "smw-upgrade-maintenance-explain": "De uitbreiding probeert hinder en uitval te beperken door de meeste van haar onderhoudstaken uit te stellen tot na het uitvoeren van update.php, maar sommige wijzigingen aan de database moeten eerst worden afgewerkt om tegenstrijdigheden in de gegevens te voorkomen. Dit kan het volgende omvatten:\n* Het wijzigen van tabelstructuren zoals het toevoegen van nieuwe of het wijzigen van bestaande velden\n* Het wijzigen of toevoegen van tabelindices\n* Het optimaliseren van de tabellen (indien ingeschakeld)", + "smw-semantics-not-enabled": "Semantic MediaWiki-functionaliteit is niet ingeschakeld voor deze wiki.", + "smw_viewasrdf": "RDF-feed", + "smw_finallistconjunct": " en", + "smw-factbox-head": "… meer over “$1”", + "smw-factbox-facts": "Feiten", + "smw-factbox-facts-help": "Toon verklaringen en feiten die door een gebruiker zijn aangemaakt", + "smw-factbox-attachments": "Bijlagen", + "smw-factbox-attachments-value-unknown": "N.v.t.", + "smw-factbox-attachments-is-local": "Is lokaal", + "smw-factbox-attachments-help": "Toont beschikbare bijlagen", + "smw-factbox-facts-derived": "Afgeleide feiten", + "smw-factbox-facts-derived-help": "Toont feiten die zijn afgeleid uit regels of met behulp van andere redeneertechnieken", + "smw_isspecprop": "Dit is een speciale eigenschap in deze wiki.", + "smw-concept-cache-header": "Cachegebruik", + "smw-concept-cache-count": "De [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count conceptcache] bevat {{PLURAL:$1|'''één''' entiteit|'''$1''' entiteiten}} ($2).", + "smw-concept-no-cache": "Geen cache beschikbaar.", + "smw_concept_description": "Beschrijving van concept \"$1\"", + "smw_no_concept_namespace": "Concepten kunnen alleen op pagina’s in de naamruimte ‘Concept:’ gedefinieerd worden.", + "smw_multiple_concepts": "Iedere conceptpagina kan maar één conceptdefinitie bevatten.", + "smw_concept_cache_miss": "Het concept \"$1\" kan op het moment niet gebruikt worden, omdat de wiki-configuratie vereist dat deze offline wordt berekend.\nAls het probleem over enige tijd nog niet verholpen is, vraag uw sitebeheerder dan om dit concept beschikbaar te maken.", + "smw_noinvannot": "Waarden kunnen niet toegekend worden aan omgekeerde eigenschappen.", + "version-semantic": "Semantische uitbreidingen", + "smw_baduri": "URI's van het formaat \"$1\" zijn niet toegestaan.", + "smw_printername_count": "Resultaten tellen", + "smw_printername_csv": "Naar CSV exporteren", + "smw_printername_dsv": "Naar DSV exporteren", + "smw_printername_debug": "Query debuggen (voor experts)", + "smw_printername_embedded": "Paginainhoud insluiten", + "smw_printername_json": "Naar JSON exporteren", + "smw_printername_list": "Lijst", + "smw_printername_plainlist": "Gewone lijst", + "smw_printername_ol": "Genummerde lijst", + "smw_printername_ul": "Lijst met opsommingstekens", + "smw_printername_table": "Tabel", + "smw_printername_broadtable": "Brede tabel", + "smw_printername_template": "Sjabloon", + "smw_printername_templatefile": "Sjabloonbestand", + "smw_printername_rdf": "Naar RDF exporteren", + "smw_printername_category": "Categorie", + "validator-type-class-SMWParamSource": "tekst", + "smw-paramdesc-limit": "Het maximaal aantal weer te geven resultaten", + "smw-paramdesc-offset": "De positie van het eerste resultaat", + "smw-paramdesc-headers": "De namen van koppen en eigenschappen weergeven", + "smw-paramdesc-mainlabel": "Het label voor de hoofdpaginanaam", + "smw-paramdesc-link": "Waarden als koppelingen weergeven", + "smw-paramdesc-intro": "De tekst die wordt weergegeven boven de zoekresultaten, als die er zijn", + "smw-paramdesc-outro": "De tekst die wordt weergegeven onder de zoekresultaten, als die er zijn", + "smw-paramdesc-default": "De tekst die wordt weergegeven als er geen zoekresultaten zijn", + "smw-paramdesc-sep": "Het scheidingsteken voor resultaten", + "smw-paramdesc-propsep": "Het scheidingsteken tussen de eigenschappen van een resultaatvermelding", + "smw-paramdesc-valuesep": "Het scheidingsteken tussen de waarden voor een eigenschap van een resultaat", + "smw-paramdesc-showsep": "Het scheidingsteken bovenaan het CSV-bestand weergeven (\"sep=\")", + "smw-paramdesc-distribution": "Geef de aantallen waarden weer in plaats van alle waarden.", + "smw-paramdesc-distributionsort": "De waardeverdeling sorteren op aantal keer dat die voorkomt.", + "smw-paramdesc-distributionlimit": "De waardeverdeling beperken tot alleen het aantal van bepaalde waarden.", + "smw-paramdesc-aggregation": "Geeft aan waar de aggregatie betrekking op moet hebben", + "smw-paramdesc-template": "De naam van een sjabloon waarmee de afdrukken moeten worden weergegeven", + "smw-paramdesc-columns": "Het aantal kolommen waarin de resultaten weergegeven moeten worden", + "smw-paramdesc-userparam": "Een aan elke sjabloon-aanroep doorgegeven waarde, als er een sjabloon wordt gebruikt", + "smw-paramdesc-class": "Een extra CSS-klasse die voor de lijst kan worden ingesteld", + "smw-paramdesc-introtemplate": "De naam van een boven de zoekresultaten weer te geven sjabloon als er zoekresultaten zijn", + "smw-paramdesc-outrotemplate": "De naam van een onder de zoekresultaten weer te geven sjabloon als er zoekresultaten zijn", + "smw-paramdesc-embedformat": "Het HTML-element voor het definiëren van sectiekoppen", + "smw-paramdesc-embedonly": "Geen koppen weergeven", + "smw-paramdesc-table-class": "Een extra CSS-klasse om voor de tabel in te stellen", + "smw-paramdesc-table-transpose": "Tabelkoppen verticaal en resultaten horizontaal weergeven", + "smw-paramdesc-prefix": "De weergave van de naamruimte bij afdrukken instellen", + "smw-paramdesc-rdfsyntax": "De te gebruiken RDF-syntaxis", + "smw-paramdesc-csv-sep": "Geeft een kolomscheidingsteken aan", + "smw-paramdesc-csv-valuesep": "Geeft een waardescheidingsteken aan", + "smw-paramdesc-csv-merge": "Voeg rijen en kolomwaardes met een identiek onderwerp-ID (oftewel eerste kolom) samen", + "smw-paramdesc-csv-bom": "Voeg een BOM (teken om endianness aan te geven) toe aan het begin van het uitvoerbestand", + "smw-paramdesc-dsv-separator": "Het te gebruiken scheidingsteken", + "smw-paramdesc-dsv-filename": "De naam voor het DSV-bestand", + "smw-paramdesc-filename": "De naam voor het uitvoerbestand", + "smw-smwdoc-description": "Geeft een tabel weer met alle parameters die kunnen worden gebruikt voor de opgegeven resultaatopmaak samen met standaardwaarden en beschrijvingen.", + "smw-smwdoc-default-no-parameter-list": "Deze resultaatindeling biedt geen indelingsspecifieke parameters.", + "smw-smwdoc-par-format": "De resultaatopmaak waarvoor parameterdocumentatie weergegeven moet worden.", + "smw-smwdoc-par-parameters": "Welke parameters weer te geven; \"specific\" voor degene toegevoegd door de opmaak, \"base\" voor degene die beschikbaar zijn in alle opmaken, en \"all\" voor beide.", + "smw-paramdesc-sort": "Eigenschap om de zoekopdracht op te sorteren", + "smw-paramdesc-order": "Sorteervolgorde", + "smw-paramdesc-searchlabel": "Tekst voor het voortzetten van de zoekopdracht", + "smw-paramdesc-named_args": "Noem de aan de sjabloon door te geven parameters", + "smw-paramdesc-template-arguments": "Stelt in hoe de benoemde argumenten aan de sjabloon worden doorgegeven", + "smw-paramdesc-import-annotation": "Aanvullende geannoteerde gegevens zullen gekopieerd worden tijdens het parseren van een onderwerp", + "smw-paramdesc-export": "Exportoptie", + "smw-paramdesc-prettyprint": "Een netjes opgemaakte uitvoer inschakelen die tabs en nieuwe regels toevoegt", + "smw-paramdesc-json-unescape": "De uitvoer bevat slashes en multibyte Unicode-tekens die niet voorafgegaan worden door een escape", + "smw-paramdesc-json-type": "Serialisatietype", + "smw-paramdesc-source": "Alternatieve zoekopdrachtbron", + "smw-paramdesc-jsonsyntax": "Te gebruiken JSON-syntaxis", + "smw-printername-feed": "RSS- en Atom-feed", + "smw-paramdesc-feedtype": "Feedtype", + "smw-paramdesc-feedtitle": "De tekst die als titel van de feed moet worden gebruikt", + "smw-paramdesc-feeddescription": "De tekst die als beschrijving van de feed moet worden gebruikt", + "smw-paramdesc-feedpagecontent": "In de feed weer te geven paginainhoud", + "smw-label-feed-description": "$2-feed $1", + "smw-paramdesc-mimetype": "Het mediatype (MIME-type) voor het uitvoerbestand", + "smw_iq_disabled": "Zoekopdrachten binnen tekst zijn uitgeschakeld in deze wiki.", + "smw_iq_moreresults": "... meer resultaten", + "smw_parseerror": "De opgegeven waarde is niet begrepen.", + "smw_decseparator": ",", + "smw_kiloseparator": ".", + "smw_notitle": "\"$1\" kan in deze wiki niet als paginanaam gebruikt worden.", + "smw_noproperty": "\"$1\" kan in deze wiki niet als eigenschapsnaam gebruikt worden.", + "smw_wrong_namespace": "Hier zijn alleen pagina's in naamruimte \"$1\" toegestaan.", + "smw_manytypes": "Meer dan één type gedefinieerd voor eigenschap.", + "smw_emptystring": "Lege strings zijn niet toegestaan.", + "smw_notinenum": "“$1” staat niet in de lijst met [[Property:Allows value|mogelijke waarden]] voor de eigenschap “$3” ($2).", + "smw-datavalue-constraint-error-allows-value-list": "“$1” staat niet in de lijst ($2) van [[Property:Allows value|toegestane waarden]] voor de eigenschap “$3”.", + "smw-datavalue-constraint-error-allows-value-range": "“$1” valt niet binnen het bereik van “$2” dat is opgegeven door de beperking [[Property:Allows value|toegestane waarden]] voor de eigenschap “$3”.", + "smw-constraint-error": "Beperkingsprobleem", + "smw-constraint-error-suggestions": "Controleer de vermelde overtredingen en eigenschappen samen met hun geannoteerde waarden om er zeker van te zijn dat aan alle beperkingsvereisten wordt voldaan.", + "smw-constraint-error-limit": "De lijst bevat maximaal $1 overtredingen.", + "smw_noboolean": "\"$1\" is niet herkend als een booleaanse waarde (waar/onwaar).", + "smw_true_words": "waar,w,ja,j,true", + "smw_false_words": "onwaar,o,nee,n,false", + "smw_nofloat": "\"$1\" is geen getal.", + "smw_infinite": "Getallen zo groot als \"$1\" worden niet ondersteund.", + "smw_unitnotallowed": "\"$1\" is niet ingesteld als een geldige meeteenheid voor deze eigenschap.", + "smw_nounitsdeclared": "Er zijn geen meeteenheden opgegeven voor deze eigenschap.", + "smw_novalues": "Geen waarden opgegeven.", + "smw_nodatetime": "De datum \"$1\" kon niet verwerkt worden.", + "smw_toomanyclosing": "\"$1\" lijkt te vaak voor te komen in de zoekopdracht.", + "smw_noclosingbrackets": "Ergens in uw zoekopdracht was \"[[\" niet afgesloten door een bijbehorende \"]]\".", + "smw_misplacedsymbol": "Het symbool \"$1\" is gebruikt op een plaats waar het niet gebruikt hoort te worden.", + "smw_unexpectedpart": "Het deel \"$1\" van de zoekopdracht is niet begrepen.\nDe resultaten kunnen afwijken van de verwachting.", + "smw_emptysubquery": "Er is een subzoekopdracht met een onjuiste conditie.", + "smw_misplacedsubquery": "Er is een subzoekopdracht gebruikt op een plaats waar subzoekopdrachten niet gebruikt mogen worden.", + "smw_valuesubquery": "Subzoekopdrachten worden niet ondersteund voor waarden van de eigenschap \"$1\".", + "smw_badqueryatom": "Een onderdeel \"[[...]]\" van de zoekopdracht is niet begrepen.", + "smw_propvalueproblem": "De waarde van eigenschap \"$1\" is niet begrepen.", + "smw_noqueryfeature": "Een bepaalde vraagoptie wordt niet ondersteund in deze wiki en een deel van de zoekopdracht is genegeerd ($1).", + "smw_noconjunctions": "Verbindingen in zoekopdrachten worden in deze wiki niet ondersteund en een deel van de zoekopdracht is genegeerd ($1).", + "smw_nodisjunctions": "Scheidingen in zoekopdrachten worden niet ondersteund in deze wiki, dus een deel van de zoekopdracht is genegeerd ($1).", + "smw_querytoolarge": "De volgende {{PLURAL:$2|zoekopdrachtconditie is|$2 zoekopdrachtcondities zijn}} niet in acht genomen vanwege beperkingen in de grootte of diepte van zoekopdrachten in deze wiki: $1.", + "smw_notemplategiven": "Geef een waarde voor de parameter \"sjabloon\" op om deze zoekopdracht te laten werken.", + "smw_db_sparqlqueryproblem": "Er is geen antwoord op de zoekopdracht gekomen uit de SPARQL-database. Deze fout kan tijdelijk zijn of wijzen op een bug in de databasesoftware.", + "smw_db_sparqlqueryincomplete": "De zoekopdracht beantwoorden bleek te moeilijk en deze is afgebroken. Sommige resultaten kunnen ontbreken. Probeer een eenvoudiger zoekopdracht te gebruiken.", + "smw_type_header": "Eigenschappen van het type \"$1\"", + "smw_typearticlecount": "{{PLURAL:$1|Eén eigenschap gebruikt|$1 eigenschappen gebruiken}} dit type.", + "smw_attribute_header": "Pagina's die de eigenschap \"$1\" gebruiken", + "smw_attributearticlecount": "{{PLURAL:$1|Eén pagina gebruikt|$1 pagina's gebruiken}} deze eigenschap.", + "smw-propertylist-subproperty-header": "Subeigenschappen", + "smw-propertylist-redirect-header": "Synoniemen", + "smw-propertylist-error-header": "Pagina's met onjuiste toewijzigen", + "smw-propertylist-count": "$1 gerelateerde {{PLURAL:$1|entiteit|entiteiten}} weergegeven.", + "smw-propertylist-count-with-restricted-note": "$1 gerelateerde {{PLURAL:$1|entiteit|entiteiten}} weergegeven (er zijn er meer beschikbaar, maar de weergave is beperkt tot \"$2\").", + "smw-propertylist-count-more-available": "$1 gerelateerde {{PLURAL:$1|entiteit|entiteiten}} weergegeven (er zijn er meer beschikbaar).", + "specialpages-group-smw_group-maintenance": "Onderhoud", + "specialpages-group-smw_group-properties-concepts-types": "Eigenschappen, concepten en typen", + "specialpages-group-smw_group-search": "Bladeren en zoeken", + "exportrdf": "Pagina's exporteren naar RDF", + "smw_exportrdf_docu": "Deze pagina maakt het mogelijk gegevens te verkrijgen van een pagina in RDF-formaat.\nOm pagina's te exporteren, voert u in het onderstaande invoerveld paginanamen in, één paginanaam per regel.", + "smw_exportrdf_recursive": "Alle gerelateerde pagina's recursief exporteren.\nHet resultaat kan groot zijn!", + "smw_exportrdf_backlinks": "Ook alle pagina's exporteren die verwijzen naar de te exporteren pagina's.\nGenereert doorbladerbare RDF.", + "smw_exportrdf_lastdate": "Pagina's die sinds het opgegeven tijdstip niet gewijzigd zijn, niet exporteren.", + "smw_exportrdf_submit": "Exporteren", + "uriresolver": "URI-resolver", + "properties": "Eigenschappen", + "smw-categories": "Categorieën", + "smw_properties_docu": "De volgende eigenschappen worden in de wiki gebruikt.", + "smw_property_template": "$1 van type $2 ($3 keer {{PLURAL:$3|gebruikt}})", + "smw_propertylackspage": "Alle eigenschappen moeten op een pagina beschreven worden!", + "smw_propertylackstype": "Er is geen type opgegeven voor deze eigenschap (type $1 wordt verondersteld).", + "smw_propertyhardlyused": "Deze eigenschap wordt in de wiki vrijwel niet gebruikt!", + "smw-property-name-invalid": "Eigenschap $1 kan niet gebruikt worden (ongeldige eigenschapsnaam).", + "smw-property-name-reserved": "\"$1\" werd vermeld als gereserveerde naam en mag niet worden gebruikt als een eigenschap. De volgende [https://www.semantic-mediawiki.org/wiki/Help:Property_naming helppagina] kan informatie bevatten over waarom deze naam was gereserveerd.", + "smw-sp-property-searchform": "Eigenschappen weergeven die de volgende tekst bevatten:", + "smw-sp-property-searchform-inputinfo": "De invoer is hoofdlettergevoelig, en als deze wordt gebruikt voor filteren dan worden alleen eigenschappen weergegeven die overeenkomen met de voorwaarde.", + "smw-special-property-searchform": "Eigenschappen weergeven die de volgende waarde bevatten:", + "smw-special-property-searchform-inputinfo": "De invoer is hoofdlettergevoelig, en als deze wordt gebruikt voor filteren dan worden alleen eigenschappen weergegeven die overeenkomen met de voorwaarde.", + "smw-special-property-searchform-options": "Opties", + "smw-special-wantedproperties-filter-label": "Filter:", + "smw-special-wantedproperties-filter-none": "Geen", + "smw-special-wantedproperties-filter-unapproved": "Niet goedgekeurd", + "smw-special-wantedproperties-filter-unapproved-desc": "Filteroptie die wordt gebruikt in verband met de autorisatiemodus.", + "concepts": "Concepten", + "smw-special-concept-docu": "Een [https://www.semantic-mediawiki.org/wiki/Help:Concepts concept] kan gezien worden als \"dynamische categorie\", dat wil zeggen als een verzameling pagina's die niet handmatig zijn aangemaakt, maar zijn berekend door Semantic MediaWiki uit een beschrijving van een gegeven zoekopdracht.", + "smw-special-concept-header": "Lijst van concepten", + "smw-special-concept-count": "{{PLURAL:$1|Het volgende concept wordt|De volgende $1 concepten worden}} weergegeven.", + "smw-special-concept-empty": "Er is geen concept gevonden.", + "unusedproperties": "Ongebruikte eigenschappen", + "smw-unusedproperties-docu": "Op deze pagina vindt u [https://www.semantic-mediawiki.org/wiki/Unused_properties ongebruikte eigenschappen] die bestaan hoewel ze op geen andere pagina gebruikt worden. Voor een andere weergave, zie de speciale pagina's met [[Special:Properties|alle]] of [[Special:WantedProperties|gewenste eigenschappen]].", + "smw-unusedproperty-template": "$1 van type $2", + "wantedproperties": "Gewenste eigenschappen", + "smw-wantedproperties-docu": "Op deze pagina vindt u [https://www.semantic-mediawiki.org/wiki/Wanted_properties gewenste eigenschappen] die in de wiki worden gebruikt, maar geen pagina hebben waarop ze worden beschreven. Voor een andere weergave, zie de speciale pagina's met [[Special:Properties|alle]] of [[Special:UnusedProperties|ongebruikte eigenschappen]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|keer|keren}} gebruikt)", + "smw-special-wantedproperties-docu": "Op deze pagina vindt u [https://www.semantic-mediawiki.org/wiki/Wanted_properties gewenste eigenschappen] die in de wiki worden gebruikt, maar geen pagina hebben waarop ze worden beschreven. Voor een gedifferentieerde weergave, zie de speciale pagina's met [[Special:Properties|alle]] of [[Special:UnusedProperties|ongebruikte eigenschappen]].", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|keer|keren}} gebruikt)", + "smw_purge": "Vernieuwen", + "smw-purge-update-dependencies": "Semantic MediaWiki is deze pagina opnieuw aan het opbouwen, want er zijn een aantal verouderde afhankelijkheden ontdekt waardoor de pagina bijgewerkt moet worden.", + "smw-purge-failed": "Semantic MediaWiki probeerde de pagina op te schonen, maar dat lukte niet", + "types": "Types", + "smw_types_docu": "Lijst van [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes beschikbare datatypes] waarvan elk [https://www.semantic-mediawiki.org/wiki/Help:Datatype type] een unieke set attributen vertegenwoordigt om een waarde te beschrijven in termen van opslag en weergavekenmerken die erfelijk zijn voor een toegewezen eigenschap.", + "smw-special-types-no-such-type": "\"$1\" is onbekend of is niet opgegeven als geldig datatype.", + "smw-statistics": "Semantische statistieken", + "smw-statistics-cached": "Semantische statistieken (uit de cache)", + "smw-statistics-entities-total": "Entiteiten (totaal)", + "smw-statistics-entities-total-info": "Een geschat aantal rijen met entiteiten. Het omvat eigenschappen, concepten of andere geregistreerde objectrepresentaties waarvoor een ID-toewijzing vereist is.", + "smw-statistics-property-instance": "Eigenschapswaarde{{PLURAL:$1||n}} (totaal)", + "smw-statistics-property-total": "[[Special:Properties|Eigenschap{{PLURAL:$1||pen}}]] (totaal)", + "smw-statistics-property-total-info": "Het totaal aan geregistreerde eigenschappen.", + "smw-statistics-property-total-legacy": "Eigenschap{{PLURAL:$1||pen}} (totaal)", + "smw-statistics-property-used": "{{PLURAL:$1|Eigenschap|Eigenschappen}} (gebruikt met ten minste één waarde)", + "smw-statistics-property-page": "Eigenschap{{PLURAL:$1||pen}} (geregistreerd bij een pagina)", + "smw-statistics-property-page-info": "Het aantal eigenschappen met een eigen pagina en beschrijving.", + "smw-statistics-property-type": "Eigenschap{{PLURAL:$1||pen}} (toegewezen aan een datatype)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Zoekopdracht|Zoekopdrachten}}", + "smw-statistics-query-inline": "[[Property:Has query|Zoekopdracht{{PLURAL:$1||en}}]] (ingebed, totaal)", + "smw-statistics-query-format": "formaat $1", + "smw-statistics-query-size": "Grootte van zoekopdracht", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Concept|Concepten}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Concept|Concepten}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Subobject|Subobjecten}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Subobject|Subobjecten}}", + "smw-statistics-datatype-count": "[[Special:Types|Datatype{{PLURAL:$1||s}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Eigenschapswaarde|Eigenschapswaarden}} ([[Special:ProcessingErrorList|{{PLURAL:$1|ongeldige annotatie|ongeldige annotaties}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Eigenschapswaarde|Eigenschapswaarden}} ({{PLURAL:$1|verkeerde annotatie|verkeerde annotaties}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities Verouderde {{PLURAL:$1|entiteit|entiteiten}}]", + "smw-statistics-delete-count-info": "De voor verwijdering gemarkeerde entiteiten moeten regelmatig verwijderd worden met behulp van de meegeleverde onderhoudsscripts.", + "smw_uri_doc": "In de URI-resolver is de [$1 bevinding van de Groep Technische Architectuur van de W3C inzake httpRange-14] doorgevoerd.\nHierdoor wordt, afhankelijk van het verzoek, een RDF-weergave (voor machines) of een wikipagina (voor mensen) geleverd.", + "ask": "Semantisch zoeken", + "smw-ask-help": "Dit gedeelte bevat een aantal koppelingen om uit te leggen hoe de syntaxis #ask moet worden gebruikt:\n\n* in [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Pagina's selecteren] wordt beschreven hoe u pagina's selecteert en selectiecriteria formuleert;\n\n* in [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Zoekoperators] worden de beschikbare zoekoperators opgesomd, waaronder die voor zoekopdrachten voor een bepaald bereik en met jokertekens;\n\n* in [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Informatie weergeven] wordt het gebruik van afdrukinstructies en opmaakopties beschreven.", + "smw_ask_sortby": "Sorteren op kolom (optioneel)", + "smw_ask_ascorder": "Oplopend", + "smw_ask_descorder": "Aflopend", + "smw-ask-order-rand": "Willekeurig", + "smw_ask_submit": "Resultaten zoeken", + "smw_ask_editquery": "Zoekopdracht bewerken", + "smw_add_sortcondition": "[Sorteervoorwaarde toevoegen]", + "smw-ask-sort-add-action": "Sorteervoorwaarde toevoegen", + "smw_ask_hidequery": "Zoekopdracht verbergen (compacte weergave)", + "smw_ask_help": "Hulp bij zoekopdrachten", + "smw_ask_queryhead": "Voorwaarde", + "smw_ask_printhead": "Print selectie", + "smw_ask_printdesc": "(voeg één eigenschapsnaam per regel toe)", + "smw_ask_format_as": "Opmaken als:", + "smw_ask_defaultformat": "standaard", + "smw_ask_otheroptions": "Andere opties", + "smw-ask-otheroptions-info": "Dit onderdeel bevat opties die afdrukinstructies wijzigen. Parameterbeschrijvingen worden zichtbaar door de muisaanwijzer erover te bewegen.", + "smw-ask-otheroptions-collapsed-info": "Gebruik het plusicoon om alle beschikbare opties te bekijken", + "smw_ask_show_embed": "Insluitcode weergeven", + "smw_ask_hide_embed": "Insluitcode verbergen", + "smw_ask_embed_instr": "Gebruik de onderstaande code om deze zoekopdracht op te nemen in een wikipagina.", + "smw-ask-delete": "Verwijderen", + "smw-ask-sorting": "Sortering", + "smw-ask-options": "Opties", + "smw-ask-options-sort": "Sorteeropties", + "smw-ask-format-options": "Formaat en opties", + "smw-ask-parameters": "Parameters", + "smw-ask-search": "Zoeken", + "smw-ask-debug": "Debuggen", + "smw-ask-debug-desc": "Genereert debuginformatie voor zoekopdrachten", + "smw-ask-no-cache": "Querycache uitschakelen", + "smw-ask-no-cache-desc": "Resultaten zonder querycache", + "smw-ask-result": "Resultaat", + "smw-ask-empty": "Alle vermeldingen wissen", + "smw-ask-download-link-desc": "Download opgevraagde resultaten in $1-formaat", + "smw-ask-format": "Indeling", + "smw-ask-format-selection-help": "Hulp voor het geselecteerde formaat: $1.", + "smw-ask-condition-change-info": "De voorwaarde is gewijzigd en de zoekmachine moet de zoekopdracht opnieuw uitvoeren om resultaten te verkrijgen die aan de nieuwe vereisten voldoen.", + "smw-ask-input-assistance": "Hulp bij invoer", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Hulp bij invoer] wordt geleverd voor het afdruk-, sorteer- en conditieveld. Voor het conditieveld moet een van de volgende voorvoegsels worden gebruikt:", + "smw-ask-condition-input-assistance-property": "p: om suggesties voor eigenschappen op te halen (bijv. [[p:Has ...)", + "smw-ask-condition-input-assistance-category": "c: om categoriesuggesties op te halen", + "smw-ask-condition-input-assistance-concept": "con: om conceptsuggesties op te halen", + "smw-ask-format-change-info": "Het uitvoerformaat is gewijzigd en de zoekopdracht moet opnieuw worden uitgevoerd zodat de resultaten aansluiten bij de nieuwe parameters en weergaveopties.", + "smw-ask-format-export-info": "Het geselecteerde formaat is voor gegevensexport en heeft geen visuele weergave. De resultaten kunnen alleen worden gedownload.", + "smw-ask-query-search-info": "De zoekopdracht $1 is beantwoord door de {{PLURAL:$3|1=$2 (uit de cache)|$2 (uit de cache)|$2}} in $4 {{PLURAL:$4|seconde|seconden}}.", + "smw-ask-extra-query-log": "Logboek zoekopdrachten", + "smw-ask-extra-other": "Overige", + "searchbyproperty": "Op eigenschap zoeken", + "processingerrorlist": "Lijst met verwerkingsfouten", + "constrainterrorlist": "Lijst met beperkingsfouten", + "propertylabelsimilarity": "Gelijkenisrapportage eigenschapslabels", + "missingredirectannotations": "Ontbrekende omleidaantekeningen", + "smw-processingerrorlist-intro": "De volgende lijst biedt een overzicht van [https://www.semantic-mediawiki.org/wiki/Processing_errors verwerkingsfouten] die in verband met [https://www.semantic-mediawiki.org/ Semantic MediaWiki] zijn opgetreden. Het wordt aanbevolen om deze lijst met enige regelmaat te controleren en ongeldige waardeannotaties te corrigeren.", + "smw-constrainterrorlist-intro": "In de volgende lijst staat een overzicht van [https://www.semantic-mediawiki.org/wiki/Constraint_errors beperkingsfouten] die zijn verschenen in verband met [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. Het wordt aanbevolen deze lijst regelmatig te controleren en annotaties met ongeldige waarden te verbeteren.", + "smw-missingredirects-intro": "In de volgende sectie worden pagina’s vermeld waaraan [https://www.semantic-mediawiki.org/wiki/Redirects doorverwijzings-annotaties] ontbreken in Semantic MediaWiki (door deze te vergelijken met de in MediaWiki opgeslagen gegevens). Om deze annotaties handmatig te herstellen, [https://www.semantic-mediawiki.org/wiki/Help:Purge leegt u de cache] van de pagina of voert u het onderhoudsscript rebuildData.php uit (met optie --redirects).", + "smw-missingredirects-list": "Pagina met ontbrekende aantekeningen", + "smw-missingredirects-list-intro": "Er {{PLURAL:$1|wordt|worden}} $1 {{PLURAL:$1|pagina|pagina's}} met ontbrekende omleidaantekeningen weergegeven.", + "smw-missingredirects-noresult": "Kan geen ontbrekende omleidaantekeningen vinden.", + "smw_sbv_docu": "Alle pagina's zoeken die een bepaalde eigenschap en waarde hebben.", + "smw_sbv_novalue": "Voer een geldige waarde in voor de eigenschap, of bekijk alle waarden voor eigenschap \"$1.\"", + "smw_sbv_displayresultfuzzy": "Een lijst van alle pagina's met de eigenschap \"$1\" met waarde \"$2\".\nOmdat er een beperkt aantal resultaten is, worden ook nabije waarden weergegeven.", + "smw_sbv_property": "Eigenschap:", + "smw_sbv_value": "Waarde:", + "smw_sbv_submit": "Resultaten zoeken", + "browse": "Wiki bekijken", + "smw_browselink": "Eigenschappen bekijken", + "smw_browse_article": "Voer de naam in van de pagina waar u met browsen wilt beginnen.", + "smw_browse_go": "OK", + "smw_browse_show_incoming": "Inkomende eigenschappen weergeven", + "smw_browse_hide_incoming": "Inkomende eigenschappen verbergen", + "smw_browse_no_outgoing": "Deze pagina heeft geen eigenschappen.", + "smw_browse_no_incoming": "Er verwijzen geen eigenschappen naar deze pagina.", + "smw-browse-from-backend": "Informatie wordt momenteel uit de backend gehaald.", + "smw-browse-intro": "Deze pagina bevat informatie over een subject of instantie van een entiteit. Voer de naam in van een te inspecteren object.", + "smw-browse-invalid-subject": "De onderwerpvalidatie gaf een \"$1\"-fout terug.", + "smw-browse-api-subject-serialization-invalid": "Het onderwerp heeft een ongeldige serialisatie-formaat.", + "smw-browse-js-disabled": "Het vermoeden bestaat dat JavaScript is uitgeschakeld of niet beschikbaar is. We raden aan gebruik te maken van een browser die JavaScript ondersteunt. Andere mogelijkheden worden besproken op de hulppagina over de configuratieparameter [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Toon groepen", + "smw-browse-hide-group": "Verberg groepen", + "smw-noscript": "Deze pagina of handeling vereist JavaScript om te werken. Schakel JavaScript in uw browser in, of gebruik een browser waarin dit wordt ondersteund, zodat de functionaliteit naar behoren kan werken. Kijk voor meer informatie op de hulppagina [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript].", + "smw_inverse_label_default": "$1 van", + "smw_inverse_label_property": "Tegenovergesteld eigenschapslabel", + "pageproperty": "Paginaeigenschap zoeken", + "pendingtasklist": "Lijst met openstaande taken", + "facetedsearch": "Gefacetteerd zoeken", + "smw_pp_docu": "Voer een pagina en eigenschap in, of alleen een eigenschap om alle toegewezen waarden op te halen.", + "smw_pp_from": "Van pagina:", + "smw_pp_type": "Eigenschap:", + "smw_pp_submit": "Resultaten zoeken", + "smw-prev": "vorige {{PLURAL:$1|$1}}", + "smw-next": "volgende {{PLURAL:$1|$1}}", + "smw_result_prev": "Vorige", + "smw_result_next": "Volgende", + "smw_result_results": "Resultaten", + "smw_result_noresults": "Geen resultaten.", + "smwadmin": "Semantic MediaWiki-dashboard", + "smw-admin-statistics-job-title": "Taakstatistieken", + "smw-admin-statistics-job-docu": "De taakstatistieken geven informatie over geplande Semantic MediaWiki-taken die nog niet zijn uitgevoerd. Het aantal taken kan enigszins afwijken of mislukte pogingen bevatten. Raadpleeg de [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue handleiding] voor meer informatie.", + "smw-admin-statistics-querycache-title": "Querycache", + "smw-admin-statistics-querycache-disabled": "De [https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] is niet ingeschakeld op deze wiki en daarom zijn er geen statistieken beschikbaar.", + "smw-admin-statistics-querycache-legend": "De cachestatistieken moeten zowel voorlopige cumulatieve als afgeleide gegevens bevatten, waaronder:\n* \"misses\" (missers), oftewel het totale aantal pogingen om gegevens uit de cache op te halen met onbereikbare antwoorden, waardoor ze direct uit een repository (DB, triple-store enz.) moeten worden opgehaald \n* \"deletes\" (verwijderingen), oftewel het totale aantal bewerkingen voor het legen van de cache (door opschonen dan wel query-afhankelijkheid)\n* \"hits\" (treffers) bevat het aantal cache-opvragingen van hetzij ingebedde bronnen (query's opgeroepen vanuit een wikipagina) of niet-ingebedde bronnen (indien ingeschakeld, opgevraagd door pagina's zoals Special:Ask of de API).\n* \"medianRetrievalResponseTime\" (mediaan van de reactietijd voor het ophalen) is een oriëntatiewaarde van de mediane responstijd (in sec.) voor gecachete en niet-gecachete ophaalverzoeken over de tijdspanne van het verzamelproces\n* \"noCache\" (geen cache) geeft het aantal verzoeken zonder poging aan (query's met limit=0, de optie 'no-cache', enz.) om resultaten uit de cache op te halen", + "smw-admin-statistics-section-explain": "De sectie biedt aanvullende statistieken voor moderatoren.", + "smw-admin-statistics-semanticdata-overview": "Overzicht", + "smw-admin-permission-missing": "De toegang tot deze pagina is geblokkeerd wegens het ontbreken van de juiste rechten. Raadpleeg de [https://www.semantic-mediawiki.org/wiki/Help:Permissions rechten] help-pagina voor meer informatie over de vereiste instellingen.", + "smw-admin-setupsuccess": "De opslagmodule is ingesteld.", + "smw_smwadmin_return": "Terug naar $1", + "smw_smwadmin_updatestarted": "Er is een proces gestart voor het bijwerken van de semantische gegevens.\nAlle opgeslagen gegevens worden opnieuw opgebouwd of gerepareerd als dat nodig is.\nU kunt de voortgang volgen via deze speciale pagina.", + "smw_smwadmin_updatenotstarted": "Er loopt al een bijwerkproces.\nEr wordt geen nieuw proces gestart.", + "smw_smwadmin_updatestopped": "Alle lopende bijwerkprocessen zijn afgebroken.", + "smw_smwadmin_updatenotstopped": "Om de lopende processen te stoppen, moet u het vinkje inschakelen om aan te geven dat u het zeker weet.", + "smw-admin-docu": "Deze speciale pagina helpt u tijdens de installatie en het bijwerken van Semantic MediaWiki en voorziet in verdere administratieve functies en taken, alsook statistieken.\nDenk eraan een reservekopie te maken van uw waardevolle gegevens voordat u beheerhandelingen verricht.", + "smw-admin-environment": "Software omgeving", + "smw-admin-db": "Database instellen", + "smw-admin-db-preparation": "De initialisatie van de tabel is aan de gang en het kan even duren voordat de resultaten worden weergegeven, afhankelijk van de grootte en mogelijke tabeloptimalisaties.", + "smw-admin-dbdocu": "Semantic MediaWiki vereist zijn eigen databasestructuur (en is onafhankelijk van MediaWiki en heeft dus geen invloed op de rest van de MediaWiki-installatie) om de semantische gegevens op te slaan.\nDeze instellingsfunctie kan meerdere keren worden uitgevoerd zonder schade aan te richten, maar is slechts één keer nodig bij installatie of upgrade.", + "smw-admin-permissionswarn": "Als de handeling mislukt en er SQL-foutmeldingen worden weergegeven, heeft de databasegebruiker van uw wiki waarschijnlijk onvoldoende rechten (zie het \"LocalSettings.php\"-bestand).\nGeef deze gebruiker de benodigde extra rechten om tabellen aan te maken en te verwijderen, zet tijdelijk de aanmeldgegevens van de hoofdgebruiker (root) van uw databasesysteem in het \"LocalSettings.php\"-bestand, of gebruik het beheerscript setupStore.php dat de gebruikersnaam en wachtwoord van een beheerder kan gebruiken.", + "smw-admin-dbbutton": "Tabellen initialiseren of bijwerken", + "smw-admin-announce": "Uw wiki aankondigen", + "smw-admin-announce-text": "Als uw wiki openbaar is, kunt u deze registreren op WikiApiary, de wiki tracking wiki.", + "smw-admin-deprecation-notice-title": "Verouderingsmeldingen", + "smw-admin-deprecation-notice-docu": "In de volgende sectie staan verouderde of verwijderde instellingen waarvan is vastgesteld dat ze op deze wiki nog in gebruik zijn. Naar verwachting zal de ondersteuning voor deze instellingen in een toekomstige uitgave verdwijnen.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] is verouderd en wordt in $2 verwijderd", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] zal de volgende optie{{PLURAL:$2||s}} verwijderen (of vervangen):", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 is verouderd en wordt in $2 verwijderd", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] is vervangen door [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] is vervangen door $2", + "smw-admin-deprecation-notice-config-replacement-option": "Optie{{PLURAL:$2||s}} voor [https://www.semantic-mediawiki.org/wiki/Help:$1 $1]:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 wordt vervangen door $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] is verwijderd in $2", + "smw-admin-deprecation-notice-title-notice": "Verouderde instellingen", + "smw-admin-deprecation-notice-title-notice-explanation": "Onder Verouderde instellingen staan de instellingen vermeld waarvan is vastgesteld dat ze op deze wiki in gebruik zijn en die in een toekomstige uitgave worden verwijderd of gewijzigd.", + "smw-admin-deprecation-notice-title-replacement": "Vervangen of hernoemde instellingen", + "smw-admin-deprecation-notice-title-replacement-explanation": "Onder Vervangen of hernoemde instellingen staan de instellingen vermeld die hernoemd of anderszins gewijzigd zijn. Het wordt aanbevolen de naam of indeling ervan onmiddellijk bij te werken.", + "smw-admin-deprecation-notice-title-removal": "Gewijzigde instellingen", + "smw-admin-deprecation-notice-title-removal-explanation": "Onder Verwijderde instellingen ziet u de instellingen die in een vorige uitgave zijn verwijderd, maar waarvan is vastgesteld dat ze op deze wiki nog in gebruik zijn.", + "smw-admin-deprecation-notice-section-legend": "Legenda", + "smw-smwadmin-refresh-title": "Gegevens repareren en bijwerken", + "smw_smwadmin_datarefresh": "Gegevens opnieuw opbouwen", + "smw_smwadmin_datarefreshdocu": "Het is mogelijk om alle gegevens van Semantic MediaWiki opnieuw te genereren op basis van de huidige inhoud van de wiki.\nDit kan handig zijn om gegevens te repareren of de gegevens te vernieuwen als de interne opmaak gewijzigd is bij een softwareupdate.\nDe gegevens worden pagina voor pagina bijgewerkt en het kan enige tijd duren voor de taak is afgerond.\nHieronder wordt weergegeven of er op dit moment een taak loopt en stelt u in staat een taak te stoppen of te starten (tenzij deze mogelijkheid door de sitebeheerder is uitgeschaked).", + "smw_smwadmin_datarefreshprogress": "Er loopt een bijwerktaak\nHet is normaal dat de voortgang langzaam is omdat de gegevens ververst worden in kleine porties iedere keer als een gebruiker de wiki raadpleegt.\nOm het bijwerken sneller te laten verlopen, kunt u het beheerscript runJobs.php draaien. Gebruik de optie --maxjobs 1000 om aan het aantal bij te werken pagina's per handeling te beperken.\nGeschatte voortgang van de huidige taak:", + "smw_smwadmin_datarefreshbutton": "Gegevensherstel plannen", + "smw_smwadmin_datarefreshstop": "Bijwerken afbreken", + "smw_smwadmin_datarefreshstopconfirm": "Ja, ik weet het {{GENDER:$1|zeker}}.", + "smw-admin-job-scheduler-note": "De taken (die zijn ingeschakeld) in deze paragraaf worden uitgevoerd via de taakwachtrij om impasses tijdens hun uitvoering te voorkomen. De [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue werkvoorbereider] is verantwoordelijk voor de verwerking en het luistert nauw dat het onderhoudsscript runJobs.php een juiste capaciteit heeft (zie ook de configuratieparameter $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "Opruiming verouderde entiteiten", + "smw-admin-outdateddisposal-intro": "Sommige activiteiten (een wijziging van een eigenschapstype, het verwijderen van wikipagina’s of het corrigeren van foute waarden) resulteren in [https://www.semantic-mediawiki.org/wiki/Outdated_entities verouderde entiteiten]. Het wordt aangeraden deze af en toe te verwijderen om de tabelruimte die ze innemen vrij te maken.", + "smw-admin-outdateddisposal-active": "Er is een taak ingepland om verouderde entiteiten op te ruimen.", + "smw-admin-outdateddisposal-button": "Opruiming inplannen", + "smw-admin-feature-disabled": "Deze functie is uitgeschakeld op deze wiki. Raadpleeg de hulppagina voor instellingen of neem contact op met de systeembeheerder.", + "smw-admin-propertystatistics-title": "Eigenschapstatistieken opnieuw opbouwen", + "smw-admin-propertystatistics-intro": "Bouwt de volledige gebruiksstatistieken van eigenschappen opnieuw op, waarbij de [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count gebruikstellers] van eigenschappen bijgewerkt en gecorrigeerd worden.", + "smw-admin-propertystatistics-active": "Een taak om statistieken opnieuw op te bouwen is aan de wachtrij toegevoegd.", + "smw-admin-propertystatistics-button": "Inplannen statistieken opnieuw opbouwen", + "smw-admin-fulltext-title": "Opnieuw opbouwen van zoeken in volledige tekst", + "smw-admin-fulltext-intro": "Bouwt opnieuw de zoekindex op van eigenschaptabellen waarop een ''[https://www.semantic-mediawiki.org/wiki/Full-text zoeken in volledige tekst]''-datatype is ingeschakeld. Wijzigingen in de indexregels (gewijzigde stopwoorden, nieuwe ''stemmer'', enz.) en/of een nieuw toegevoegde of gewijzigde tabel vereisen het opnieuw uitvoeren van deze taak.", + "smw-admin-fulltext-active": "Een taak om het zoeken in volledige tekst opnieuw op te bouwen is aan de wachtrij toegevoegd.", + "smw-admin-fulltext-button": "Opnieuw opbouwen van zoeken in volledige tekst aan wachtrij toevoegen", + "smw-admin-support": "Ondersteuning krijgen", + "smw-admin-supportdocu": "Er zijn verscheidene bronnen beschikbaar om u te ondersteunen als u problemen ondervindt:", + "smw-admin-installfile": "Als u problemen ondervindt bij uw installatie, controleer dan eerst de richtlijnen in het bestand INSTALL en de installatiepagina.", + "smw-admin-smwhomepage": "De volledige gebruikersdocumentatie voor Semantic MediaWiki is te vinden op semantic-mediawiki.org.", + "smw-admin-bugsreport": "Problemen kunt u melden op de issuetracker. De pagina over het rapporteren van bugs biedt een aantal richtlijnen voor het schrijven van een effectief probleemrapport.", + "smw-admin-questions": "Als u verder nog vragen of suggesties hebt, neem dan deel aan het overleg op de gebruikersmailinglijst van Semantic MediaWiki.", + "smw-admin-other-functions": "Andere functies", + "smw-admin-statistics-extra": "Statistische functies", + "smw-admin-statistics": "Statistieken", + "smw-admin-supplementary-section-title": "Aanvullende functies", + "smw-admin-supplementary-section-subtitle": "Ondersteunde kernfuncties", + "smw-admin-supplementary-section-intro": "In deze sectie staan aanvullende functies die buiten het bereik van onderhoudsactiviteiten vallen. Het is mogelijk dat sommige hier vermelde functies (zie de [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions documentatie]) beperkt of helemaal niet beschikbaar zijn en daarom niet toegankelijk zijn op deze wiki.", + "smw-admin-supplementary-settings-title": "Configuratie en instellingen", + "smw-admin-supplementary-settings-intro": "Onder $1 staan de parameters die het gedrag van Semantic MediaWiki bepalen", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Operationele statistieken", + "smw-admin-supplementary-operational-statistics-short-title": "operationele statistieken", + "smw-admin-supplementary-operational-statistics-intro": "Geeft een keur aan $1 weer", + "smw-admin-supplementary-idlookup-title": "Opzoeken en opruimen van entiteiten", + "smw-admin-supplementary-idlookup-short-title": "opzoeken en opruimen van entiteiten", + "smw-admin-supplementary-idlookup-intro": "Ondersteunt een eenvoudige functie voor het $1", + "smw-admin-supplementary-duplookup-title": "Dubbele entiteiten opzoeken", + "smw-admin-supplementary-duplookup-intro": "$1: dit is om entiteiten te vinden die zijn gecategoriseerd als duplicaten voor de geselecteerde tabelmatrix", + "smw-admin-supplementary-duplookup-docu": "Deze pagina bevat vermeldingen uit geselecteerde tabellen die zijn gecategoriseerd als [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities duplicaten]. Dubbele vermeldingen zouden zelden (of nooit) moeten voorkomen, maar kunnen zich sporadisch voordoen als gevolg van een afgebroken update of een mislukte terugdraai-transactie.", + "smw-admin-supplementary-operational-statistics-cache-title": "Cachestatistieken", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 toont een geselecteerde verzameling statistieken over de cache", + "smw-admin-supplementary-operational-table-statistics-title": "Tabelstatistieken", + "smw-admin-supplementary-operational-table-statistics-short-title": "tabelstatistieken", + "smw-admin-supplementary-operational-table-statistics-intro": "Genereert $1 voor een geselecteerde verzameling tabellen", + "smw-admin-supplementary-operational-table-statistics-explain": "In deze sectie staan geselecteerde tabelstatistieken waarmee systeem- en gegevensbeheerders weloverwogen beslissingen kunnen nemen over de status van de back-end en de opslagengine.", + "smw-admin-supplementary-operational-table-statistics-legend": "De legenda beschrijft enkele van de sleutels die worden gebruikt voor de tabelstatistieken en omvat:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count totaal aantal rijen in een tabel", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id laatste ID die momenteel in gebruik is\n* duplicate_count aantal in de id_table gevonden duplicaten (zie ook [[Special:SemanticMediaWiki/duplicate-lookup|Dubbele entiteiten opzoeken]])\n* rows.rev_count aantal rijen met een toegekende revision_id die een directe wikipagina-koppeling aangeeft\n* rows.smw_namespace_group_by_count aantal geaggregeerde rijen voor naamruimten die in de tabel worden gebruikt\n* rows.smw_proptable_hash.query_match_count aantal query-subobjecten met een overeenkomstige tabelverwijzing\n* rows.smw_proptable_hash.query_null_count aantal query-subobjecten zonder tabelverwijzing (niet-gekoppeld, zwevende verwijzing)", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent percentage termen die uniek zijn (een laag percentage geeft aan dat herhaalde termen de tabelinhoud en index in beslag nemen)\n* rows.terms_occurrence.single_occurrence_total_count aantal termen die maar één keer voorkomen\n* rows.terms_occurrence.multi_occurrence_total_count aantal termen die meer dan eens voorkomen", + "smw-admin-supplementary-elastic-version-info": "Versie", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 toont details over instellingen en indexstatistieken", + "smw-admin-supplementary-elastic-docu": "Deze pagina bevat informatie over instellingen, toewijzingen, bedrijfstoestand en indexstatistieken met betrekking tot een Elasticsearch-cluster die is verbonden met Semantic MediaWiki en zijn [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Ondersteunde onderdelen", + "smw-admin-supplementary-elastic-settings-title": "Instellingen (indexen)", + "smw-admin-supplementary-elastic-settings-intro": "$1 waarmee Elasticsearch de indexen van Semantic MediaWiki beheert", + "smw-admin-supplementary-elastic-mappings-title": "Toewijzingen", + "smw-admin-supplementary-elastic-mappings-intro": "Onder $1 worden indices en veldtoewijzingen weergegeven", + "smw-admin-supplementary-elastic-mappings-docu": "Hier staan gegevens over de door de huidige index gebruikte veldtoewijzingen. Het wordt aanbevolen om de toewijzingen geregeld te controleren in verband met de grenswaarde index.mapping.total_fields.limit (het maximaal toegestane aantal velden in een index).", + "smw-admin-supplementary-elastic-mappings-docu-extra": "De waarde property_fields verwijst naar het aantal geïndexeerde kernvelden, terwijl nested_fields verwijst naar een gezamenlijke optelsom van extra velden die aan een kernveld zijn toegewezen om specifieke gestructureerde zoekpatronen mogelijk te maken.", + "smw-admin-supplementary-elastic-mappings-summary": "Samenvatting", + "smw-admin-supplementary-elastic-mappings-fields": "Veldtoewijzingen", + "smw-admin-supplementary-elastic-nodes-title": "Knooppunten", + "smw-admin-supplementary-elastic-nodes-intro": "Onder $1 staan de knooppuntstatistieken", + "smw-admin-supplementary-elastic-indices-title": "Indices", + "smw-admin-supplementary-elastic-indices-intro": "$1 geeft een overzicht van de beschikbare indices en hun statistieken", + "smw-admin-supplementary-elastic-statistics-title": "Statistieken", + "smw-admin-supplementary-elastic-statistics-intro": "Op de pagina $1 staan statistieken op indexniveau", + "smw-admin-supplementary-elastic-statistics-docu": "Hier staan statistieken die inzicht bieden in de verschillende bewerkingen die op indexniveau plaatsvinden. Deze statistieken zijn samengevoegd met primaire en totale aggregaties. Op de [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html hulppagina] worden de beschikbare indexstatistieken nader beschreven.", + "smw-admin-supplementary-elastic-status-replication": "Replicatiestatus", + "smw-admin-supplementary-elastic-status-last-active-replication": "Laatste actieve replicatie: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Verversinterval: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Achterstand hersteltaken: $1 (schatting)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Taakachterstand (bestands)invoer: $1 (schatting)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Replicatie vergrendeld: $1 (heropbouw in uitvoering)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Replicatiebewaking (actief): $1", + "smw-admin-supplementary-elastic-replication-header-title": "Replicatiestatus", + "smw-admin-supplementary-elastic-replication-function-title": "Replicatie", + "smw-admin-supplementary-elastic-replication-intro": "$1 toont informatie over mislukte replicaties", + "smw-admin-supplementary-elastic-replication-docu": "Op deze pagina staat informatie over de [https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring replicatiestatus] van entiteiten waarvan is gemeld dat ze problemen hebben met het Elasticsearch-cluster. Het wordt aanbevolen de vermelde entiteiten te controleren en de cache ervan te legen om te bevestigen dat het een tijdelijk probleem was.", + "smw-admin-supplementary-elastic-replication-files-docu": "Opgemerkt moet worden dat voor de lijst met bestanden eerst de taak [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion bestandsinname (''file ingest'')] moet worden uitgevoerd en de verwerking ervan voltooid moet zijn.", + "smw-admin-supplementary-elastic-replication-files": "Bestanden", + "smw-admin-supplementary-elastic-replication-pages": "Pagina's", + "smw-admin-supplementary-elastic-endpoints": "Eindpunten", + "smw-admin-supplementary-elastic-config": "Configuraties", + "smw-admin-supplementary-elastic-no-connection": "De wiki kan momenteel '''geen'' verbinding tot stand brengen met de Elasticsearch-cluster. Neem contact op met de wikibeheerder om het probleem te onderzoeken, aangezien dit de index- en zoekmogelijkheden van het systeem uitschakelt.", + "smw-list-count": "Er staan $1 vermelding{{PLURAL:$1||en}} in de lijst.", + "smw-property-label-uniqueness": "Het label “$1” is aan ten minste nog één andere eigenschap gekoppeld. Raadpleeg de [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness hulppagina] om dit probleem op te lossen.", + "smw-property-label-similarity-title": "Gelijkenisrapportage eigenschapslabels", + "smw-property-label-similarity-intro": "$1 berekent overeenkomsten voor bestaande eigenschapslabels", + "smw-property-label-similarity-threshold": "Drempelwaarde:", + "smw-property-label-similarity-type": "Typenummer weergeven", + "smw-property-label-similarity-noresult": "Er zijn geen resultaten gevonden voor de geselecteerde opties.", + "smw-property-label-similarity-docu": "Deze pagina vergelijkt de [https://www.semantic-mediawiki.org/wiki/Property_similarity gelijkenisafstand] (niet te verwarren met een semantische of lexicale gelijkenis) tussen eigenschapslabels en meldt ze als ze de drempel overschrijden. De melding kan helpen bij het filteren van verkeerd gespelde of gelijkwaardige eigenschappen die hetzelfde concept vertegenwoordigen (zie de speciale pagina [[Special:Properties|Eigenschappen]] om het concept en het gebruik van gemelde eigenschappen te verduidelijken). De drempel kan worden aangepast om de afstand die wordt gebruikt voor het bij benadering vergelijken te vergroten of te verkleinen. [[Property:$1|$1]] wordt gebruikt om eigenschappen van de analyse uit te zonderen.", + "smw-admin-operational-statistics": "Op deze pagina staan operationele statistieken die zijn verzameld in of vanuit functies die verband houden met Semantic MediaWiki. Een uitgebreide lijst met wiki-specifieke statistieken vindt u [[Special:Statistics|hier]].", + "smw_adminlinks_datastructure": "Gegevensstructuur", + "smw_adminlinks_displayingdata": "Gegevens weergeven", + "smw_adminlinks_inlinequerieshelp": "Hulp bij ingevoegde zoekopdrachten", + "smw-page-indicator-usage-count": "Geschatte [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count aantal keren gebruikt]: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "Door {{PLURAL:$1|de gebruiker|het systeem}} gedefinieerde eigenschap", + "smw-property-indicator-last-count-update": "Geschat gebruiksaantal\nLaatst bijgewerkt: $1", + "smw-concept-indicator-cache-update": "Cache-teller\nLaatst bijgewerkt: $1", + "smw-createproperty-isproperty": "Het is een eigenschap van het type $1.", + "smw-createproperty-allowedvals": "De toegelaten {{PLURAL:$1|waarde voor deze eigenschap is|waarden voor deze eigenschap zijn}}:", + "smw-paramdesc-category-delim": "Het scheidingsteken", + "smw-paramdesc-category-template": "Een sjabloon om de items mee op te maken", + "smw-paramdesc-category-userparam": "Een aan de sjabloon door te geven parameter", + "smw-info-par-message": "Weer te geven bericht.", + "smw-info-par-icon": "Pictogram dat \"informatie\" of \"waarschuwing\" aangeeft.", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Algemene opties", + "prefs-extended-search-options": "Uitgebreid zoeken", + "prefs-ask-options": "Semantisch zoeken", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] en bijbehorende extensies bieden individuele voorkeuren voor een groep geselecteerde eigenschappen en functies. Een lijst met individuele instellingen met hun beschrijving en kenmerken is beschikbaar op [https://www.semantic-mediawiki.org/wiki/Help:User_preferences deze hulppagina].", + "smw-prefs-ask-options-tooltip-display": "Parametertekst weergeven als info-tooltip op de speciale pagina #ask [[Special:Ask|zoekopdrachtbouwer]].", + "smw-prefs-ask-options-compact-view-basic": "De eenvoudige compacte weergave inschakelen", + "smw-prefs-help-ask-options-compact-view-basic": "Bij inschakeling wordt een beperkt aantal koppelingen weergegeven in de compacte weergave van Special:Ask.", + "smw-prefs-general-options-time-correction": "Tijdcorrectie inschakelen voor speciale pagina’s met behulp van de lokale voorkeur [[Special:Preferences#mw-prefsection-rendering|Tijdverschil]]", + "smw-prefs-general-options-jobqueue-watchlist": "De taakwachtrij-volglijst weergeven in mijn persoonlijke balk", + "smw-prefs-help-general-options-jobqueue-watchlist": "Als dit is ingeschakeld wordt een [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist lijst met] geselecteerde uitstaande taken weergegeven, samen met hun geschatte wachtrijgroottes.", + "smw-prefs-general-options-disable-editpage-info": "De inleidende tekst op de bewerkingspagina uitschakelen", + "smw-prefs-general-options-disable-search-info": "De hulpinformatie voor syntaxis uitschakelen op de standaardzoekpagina", + "smw-prefs-general-options-suggester-textinput": "Invoerhulp voor semantische entiteiten inschakelen", + "smw-prefs-help-general-options-suggester-textinput": "Na inschakeling kunt u een [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance invoerhulp] gebruiken om eigenschappen, concepten en categorieën uit een invoercontext te vinden.", + "smw-prefs-general-options-show-entity-issue-panel": "Het paneel entiteitsproblemen weergeven", + "smw-prefs-help-general-options-show-entity-issue-panel": "Bij inschakeling worden er integriteitscontroles op elke pagina uitgevoerd en wordt het [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel paneel entiteitsproblemen] weergegeven.", + "smw-prefs-factedsearch-profile": "Selecteer een standaardprofiel voor [[Special:FacetedSearch|gefacetteerd zoeken]]:", + "smw-ui-tooltip-title-property": "Eigenschap", + "smw-ui-tooltip-title-quantity": "Eenheidomzetting", + "smw-ui-tooltip-title-info": "Gegevens", + "smw-ui-tooltip-title-service": "Dienstenkoppelingen", + "smw-ui-tooltip-title-warning": "Waarschuwing", + "smw-ui-tooltip-title-error": "Fout", + "smw-ui-tooltip-title-parameter": "Parameter", + "smw-ui-tooltip-title-event": "Evenement", + "smw-ui-tooltip-title-note": "Opmerking", + "smw-ui-tooltip-title-legend": "Legenda", + "smw-ui-tooltip-title-reference": "Referentie", + "smw_unknowntype": "Het type \"$1\" van deze eigenschap is ongeldig", + "smw-concept-cache-text": "Het concept heeft in totaal $1 {{PLURAL:$1|pagina|pagina's}} en is voor het laatst bijgewerkt op $3, $2.", + "smw_concept_header": "Pagina's met het concept \"$1\"", + "smw_conceptarticlecount": "Hieronder {{PLURAL:$1|wordt $1 pagina|worden $1 pagina's}} weergegeven.", + "smw-qp-empty-data": "De gevraagde gegevens kunnen niet worden weergegeven vanwege enkele onvoldoende selectiecriteria.", + "right-smw-admin": "Toegang tot administratieve taken (Semantic MediaWiki)", + "right-smw-patternedit": "Bewerkingsrechten om toegestane reguliere expressies en patronen te onderhouden (Semantic MediaWiki)", + "right-smw-pageedit": "Bewerkingsrechten voor pagina’s die zijn geannoteerd met Is edit protected (Semantic MediaWiki)", + "right-smw-schemaedit": "Bewerk [https://www.semantic-mediawiki.org/wiki/Help:Schema schema pages] (Semantic MediaWiki)", + "right-smw-viewjobqueuewatchlist": "De [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist volglijst voor de taakwachtrij] gebruiken (Semantic MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "Toegangsinformatie over een revisie wanverhouding geassocieerd met een entiteit (Semantic MediaWiki)", + "right-smw-vieweditpageinfo": "Bekijk [https://www.semantic-mediawiki.org/wiki/Help:Edit_help edit help] (Semantic MediaWiki)", + "restriction-level-smw-pageedit": "beveiligd (alleen in aanmerking komende gebruikers)", + "action-smw-patternedit": "reguliere expressies gebruikt door Semantic MediaWiki te bewerken", + "action-smw-pageedit": "pagina’s te bewerken die geannoteerd zijn met Is edit protected (Semantic MediaWiki)", + "group-smwadministrator": "Beheerders (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|beheerder (Semantic MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:Beheerders_(Semantic_MediaWiki)", + "group-smwcurator": "Curatoren (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|curator (Semantic MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:Curatoren (Semantic MediaWiki)", + "group-smweditor": "Redacteuren (Semantic MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|redacteur (Semantic MediaWiki)}}", + "grouppage-smweditor": "{{ns:project}}:Redacteuren (Semantic MediaWiki)", + "action-smw-admin": "Semantic MediaWiki te beheren", + "action-smw-ruleedit": "regelpagina’s te bewerken (Semantic MediaWiki)", + "smw-property-namespace-disabled": "De eigenschap [https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks naamruimte] is uitgeschakeld. Het is niet mogelijk een type of andere eigenschapspecifieke kenmerken voor deze eigenschap te declareren.", + "smw-property-predefined-default": "“$1” is een voorgedefinieerde eigenschap van het type $2.", + "smw-property-predefined-common": "Deze eigenschap is voorgedefinieerd (en is dus een [https://www.semantic-mediawiki.org/wiki/Help:Special_properties speciale eigenschap]). Er zijn extra beheersprivileges aan verbonden maar verder kan ze net als elke andere [https://www.semantic-mediawiki.org/wiki/Property door de gebruiker gedefinieerde eigenschap] worden gebruikt.", + "smw-property-predefined-ask": "“$1” is een voorgedefinieerde eigenschap die staat voor meta-informatie (in de vorm van een [https://www.semantic-mediawiki.org/wiki/Subobject subobject]) over individuele zoekopdrachten. Deze eigenschap wordt geleverd bij [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksi": "\"$1\" is een voorgedefinieerde eigenschap die het aantal voorwaarden dat wordt gebruikt in een zoekopdracht verzamelt en bij [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] wordt geleverd.", + "smw-property-predefined-askde": "\"$1\" is een voorgedefinieerde eigenschap die de diepte van een zoekopdracht aangeeft en bij [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] wordt geleverd.", + "smw-property-predefined-long-askde": "Het is een numerieke waarde die is berekend op basis van geneste zoekopdrachten, eigenschapreeksen, en beschikbare beschrijvingselementen waarbij de uitvoer van de zoekopdracht beperkt wordt door de configuratieparameter [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-property-predefined-askpa": "“$1” is een voorgedefinieerde eigenschap die parameters beschrijft die een zoekresultaat beïnvloeden. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askpa": "Deze maakt deel uit van een verzameling eigenschappen die een [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler zoekopdrachtprofiel] bepalen.", + "smw-sp-properties-docu": "Op deze pagina wordt een lijst van [https://www.semantic-mediawiki.org/wiki/Property eigenschappen] getoond die beschikbaar zijn op deze wiki, met tellingen van het aantal keren dat ze gebruikt worden. Voor actuele tellingen wordt aangeraden het onderhoudsscript voor [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics eigenschapstatistieken] regelmatig uit te voeren. Voor een andere weergave, zie de speciale pagina's [[Special:UnusedProperties|ongebruikte eigenschappen]] of [[Special:WantedProperties|gewenste eigenschappen]].", + "smw-sp-properties-cache-info": "Deze gegevens zijn overgenomen uit een [https://www.semantic-mediawiki.org/wiki/Caching cache] en zijn voor het laatst bijgewerkt op $1.", + "smw-sp-properties-header-label": "Lijst met eigenschappen", + "smw-admin-settings-docu": "Geeft een lijst van alle standaard en lokale instellingen die relevant zijn voor de Semantic MediaWiki-omgeving. Raadpleeg de help-pagina [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuratie] voor meer informatie over afzonderlijke instellingen.", + "smw-sp-admin-settings-button": "Genereren van de lijst met instellingen", + "smw-admin-idlookup-title": "Opzoeken", + "smw-admin-idlookup-docu": "Deze sectie toont technische details over een individuele entiteit (wikipagina, subobject, eigenschap, enz.) in Semantic MediaWiki. De invoer kan een numerieke ID zijn of een tekenreekswaarde die overeenkomt met het relevante zoekveld, maar elke ID-verwijzing heeft betrekking op Semantic MediaWiki en niet op een pagina of versie-ID van MediaWiki.", + "smw-admin-iddispose-title": "Opruiming", + "smw-admin-iddispose-docu": "Houd er rekening mee dat de opruimingsoperatie onbeperkt is. De entiteit zal uit de opslag verwijderd worden, samen met alle referenties ervan in uitstaande tabellen, indien bevestigd. Voer deze taak '''voorzichtig''' uit en pas na het raadplegen van de [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal documentatie].", + "smw-admin-iddispose-done": "ID “$1” is verwijderd uit de opslag-backend.", + "smw-admin-iddispose-references": "ID “$1” heeft {{PLURAL:$2|geen|ten minste één}} actieve referentie:", + "smw-admin-iddispose-references-multiple": "Lijst met treffers met ten minste één actief referentierecord.", + "smw-admin-iddispose-no-references": "Bij het zoeken kon “$1” niet worden gekoppeld aan een tabelvermelding.", + "smw-admin-idlookup-input": "Zoeken:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Overzicht", + "smw-admin-tab-notices": "Verouderingsmeldingen", + "smw-admin-tab-maintenance": "Onderhoud", + "smw-admin-tab-supplement": "Aanvullende functies", + "smw-admin-tab-registry": "Register", + "smw-admin-tab-alerts": "Waarschuwingen", + "smw-admin-alerts-tab-deprecationnotices": "Verouderingsmeldingen", + "smw-admin-alerts-tab-maintenancealerts": "Onderhoudswaarschuwingen", + "smw-admin-alerts-section-intro": "In deze sectie worden waarschuwingen en mededelingen weergegeven met betrekking tot instellingen, bewerkingen en andere activiteiten waarvan is aangegeven dat deze de aandacht vereisen van een moderator of gebruiker met de juiste rechten.", + "smw-admin-maintenancealerts-section-intro": "De volgende waarschuwingen en mededelingen zouden moeten worden opgelost. Verplicht is dat niet, maar naar verwachting helpt het wel de onderhoudbaarheid en de werking van het systeem te verbeteren.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Tabeloptimalisatie", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "Het systeem heeft vastgesteld dat de laatste [https://www.semantic-mediawiki.org/wiki/Table_optimization tabeloptimalisatie] $2 dagen geleden is uitgevoerd (logboekvermelding van $1), wat de onderhoudsdrempel van $3 dagen overschrijdt. Zoals vermeld in de documentatie, zorgt het uitvoeren van optimalisaties ervoor dat de zoekopdrachtplanner betere beslissingen kan nemen over zoekopdrachten. Daarom wordt het aanbevolen de tabeloptimalisatie regelmatig uit te voeren.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Verouderde entiteiten", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "Het systeem heeft $1 [https://www.semantic-mediawiki.org/wiki/Outdated_entities verouderde entiteiten] geteld en heeft door het overschrijden van de drempel van $2 een kritiek niveau van achterstallig onderhoud bereikt. Het wordt aanbevolen om het onderhoudsscript [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] uit te voeren.", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Ongeldige entiteiten", + "smw-admin-maintenancealerts-invalidentities-alert": "Het systeem heeft vastgesteld dat $1 [https://www.semantic-mediawiki.org/wiki/Invalid_entities entiteit{{PLURAL:$1||en}}] zich in een [https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace niet onderhouden naamruimte] bevinden. Het wordt aanbevolen het onderhoudsscript [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] of [https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php] uit te voeren.", + "smw-admin-deprecation-notice-section": "Semantic MediaWiki", + "smw-admin-configutation-tab-settings": "Instellingen", + "smw-admin-configutation-tab-namespaces": "Naamruimten", + "smw-admin-configutation-tab-schematypes": "Schematypes", + "smw-admin-maintenance-tab-tasks": "Taken", + "smw-admin-maintenance-tab-scripts": "Onderhoudsscripts", + "smw-admin-maintenance-no-description": "Geen beschrijving.", + "smw-admin-maintenance-script-section-title": "Lijst met beschikbare onderhoudsscripts", + "smw-admin-maintenance-script-section-intro": "Voor de volgende onderhoudsscripts zijn een beheerder en toegang tot de opdrachtregel vereist om de genoemde scripts uit te kunnen voeren.", + "smw-admin-maintenance-script-description-dumprdf": "RDF-export van bestaande ''triples''.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "Dit script wordt gebruikt om conceptcaches voor Semantic MediaWiki te beheren. Het kan de geselecteerde caches aanmaken, verwijderen en bijwerken.", + "smw-admin-maintenance-script-description-rebuilddata": "Herschept alle semantische gegevens in de database door alle pagina’s te doorlopen die mogelijk semantische gegevens bevatten.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "Bouwt de Elasticsearch-index opnieuw op (alleen voor installaties die ElasticStore gebruiken), door alle entiteiten te doorlopen die semantische gegevens bevatten.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Vindt ontbrekende entiteiten in Elasticsearch (alleen voor installaties die ElasticStore gebruiken) en plant de juiste bijwerkingstaken.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "Bouwt de zoekindex voor volledige tekst SQLStore opnieuw op (voor installaties waarbij dit is ingeschakeld).", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Bouwt de gebruiksstatistieken voor alle eigenschapsentiteiten opnieuw op.", + "smw-admin-maintenance-script-description-removeduplicateentities": "Verwijdert dubbele entiteiten die gevonden zijn in geselecteerde tabellen zonder actieve referenties.", + "smw-admin-maintenance-script-description-setupstore": "Stelt de opslag- en query-backend in zoals gedefinieerd in LocalSettings.php.", + "smw-admin-maintenance-script-description-updateentitycollation": "Werkt het veld smw_sort in de SQLStore bij (in overeenstemming met de instelling [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation]).", + "smw-admin-maintenance-script-description-populatehashfield": "Vult het veld smw_hash in voor rijen waarin de waarde ontbreekt.", + "smw-admin-maintenance-script-description-purgeentitycache": "Cache-vermeldingen wissen voor bekende entiteiten en de bijbehorende gegevens.", + "smw-admin-maintenance-script-description-updatequerydependencies": "Query’s en query-afhankelijkheden bijwerken (zie de instelling [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore]).", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "Verouderde entiteiten en querykoppelingen opruimen.", + "smw-admin-maintenance-script-description-runimport": "Automatisch ontdekte inhoud invullen en importeren van [https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs].", + "smw-admin-maintenance-script-section-update": "Bijwerkingsscripts", + "smw-admin-maintenance-script-section-rebuild": "Scripts voor opnieuw opbouwen", + "smw-livepreview-loading": "Bezig met laden…", + "smw-sp-searchbyproperty-description": "Deze pagina biedt een eenvoudige [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces bladerinteractie] voor het vinden van entiteiten met een eigenschap met een bepaalde waarde. Andere beschikbare zoekinteracties zijn de [[Special:PageProperty|zoekpagina voor pagina-eigenschappen]] en de [[Special:Ask|zoekopdrachtbouwer]].", + "smw-sp-searchbyproperty-resultlist-header": "Lijst van resultaten", + "smw-sp-searchbyproperty-nonvaluequery": "Een lijst met waarden waaraan de eigenschap \"$1\" is toegekend.", + "smw-sp-searchbyproperty-valuequery": "Een lijst met pagina's die de eigenschap \"$1\" hebben met de geannoteerde waarde \"$2\".", + "smw-datavalue-number-textnotallowed": "\"$1\" kan niet worden toegewezen aan een gedeclareerd getaltype met waarde $2.", + "smw-datavalue-number-nullnotallowed": "“$1” retourneerde een “NULL”, wat niet als getal is toegestaan.", + "smw-editpage-annotation-enabled": "Deze pagina ondersteunt semantische annotaties in de tekst (bv. \"[[Is specified as::World Heritage Site]]\") om gestructureerde en opvraagbare inhoud te bouwen die wordt geleverd door Semantic MediaWiki. Voor een uitgebreide beschrijving van het gebruik van annotaties of de parserfunctie #ask, kijkt u op de hulppagina’s [https://www.semantic-mediawiki.org/wiki/Help:Getting_started Aan de slag], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation Annotaties in tekst] of [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries Ingevoegde zoekopdrachten].", + "smw-editpage-annotation-disabled": "Deze pagina is vanwege naamruimtebeperkingen niet geschikt voor semantische annotaties in de tekst. Details over het inschakelen van de naamruimte kunt u vinden op de hulppagina [https://www.semantic-mediawiki.org/wiki/Help:Configuration Configuratie].", + "smw-editpage-property-annotation-enabled": "Deze eigenschap kan worden uitgebreid met behulp van semantische annotaties om een gegevenstype op te geven (bv.. \"[[Has type::Page]]\") of andere ondersteunende verklaringen (bv. \"[[Subproperty of::dc:date]]\"). Voor een beschrijving van hoe u deze pagina kunt uitbreiden kijkt u op de hulppagina’s [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration Eigenschappen declareren] of [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes Lijst met beschikbare gegevenstypen].", + "smw-editpage-property-annotation-disabled": "Deze eigenschap kan niet worden uitgebreid met een gegevenstype-annotatie (bv. \"[[Has type::Page]]\") omdat deze al vooraf is gedefinieerd (zie de hulppagina over [https://www.semantic-mediawiki.org/wiki/Help:Special_properties speciale eigenschappen] voor meer informatie).", + "smw-editpage-concept-annotation-enabled": "Dit concept kan worden uitgebreid met de parserfunctie #concept. Voor een beschrijving van het gebruik van #concept kijkt u op de hulppagina [https://www.semantic-mediawiki.org/wiki/Help:Concepts Concepten].", + "smw-search-syntax-support": "De zoekingang ondersteunt het gebruik van de [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search syntaxis voor semantische zoekopdrachten] om resultaten te helpen vinden met behulp van Semantic MediaWiki.", + "smw-search-input-assistance": "De [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance invoerassistent] is ook ingeschakeld om de voorselectie van beschikbare eigenschappen en categorieën te vergemakkelijken.", + "smw-search-help-intro": "Een invoer van [[ ... ]] geeft de invoerprocessor het signaal om de Semantic MediaWiki zoekback-end te gebruiken. Opgemerkt moet worden dat het combineren van [[ ... ]] met een ongestructureerde tekstzoekopdracht zoals [[ ... ]] OR Lorem ipsum niet wordt ondersteund.", + "smw-search-help-structured": "Gestructureerde zoekopdrachten:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] (als [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context gefilterde context])\n\n*[[Has text::~*lorem*]] (met een [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context zoekopdrachtcontext])", + "smw-search-help-proximity": "Zoeken op nabijheid (bij een onbekende eigenschap '''alleen'' beschikbaar voor back-ends met een geïntegreerde functie voor zoeken op volledige tekst):\n\n*[[in:lorem ipsum]] (in alle geïndexeerde documenten naar “lorem” en “ipsum” zoeken)\n\n* [[phrase:lorem ipsum]] (“lorem ipsum” als zin zoeken)", + "smw-search-help-ask": "Op de hieronder gekoppelde pagina's wordt uitgelegd hoe u de syntaxis #ask gebruikt:\n\n* in [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Pagina's selecteren] wordt beschreven hoe u pagina's selecteert en selectiecriteria formuleert;\n\n* in [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Zoekoperators] worden de beschikbare zoekoperators opgesomd, waaronder die voor zoekopdrachten voor een bepaald bereik en met jokertekens.", + "smw-search-input": "Invoeren en zoeken", + "smw-search-help-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Hulp bij invoer] is beschikbaar voor het invoerveld en vereist het gebruik van een van de volgende voorvoegsels:\n\n* p: om suggesties voor eigenschappen in te schakelen (bv. [[p:Has ...)\n\n* c: om categoriesuggesties in te schakelen\n\n* con: om conceptsuggesties in te schakelen", + "smw-search-syntax": "Syntaxis", + "smw-search-profile": "Uitgebreid", + "smw-search-profile-tooltip": "Zoekfuncties in verband met Semantic MediaWiki", + "smw-search-profile-sort-best": "Beste treffer", + "smw-search-profile-sort-recent": "Meest recent", + "smw-search-profile-sort-title": "Titel", + "smw-search-profile-extended-help-intro": "Het [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile uitgebreide profiel] van Special:Search biedt toegang tot zoekfuncties die specifiek zijn voor Semantic MediaWiki en de bijbehorende query-backend.", + "smw-search-profile-extended-help-sort": "Geeft een sorteervoorkeur op voor de resultaatweergave met:", + "smw-search-profile-extended-help-sort-title": "* “Titel” waarbij de paginatitel (of weergavetitel) als sorteercriterium wordt gebruikt", + "smw-search-profile-extended-help-sort-recent": "* “Meest recente” toont eerst de meest recent gewijzigde entiteiten (subobject-entiteiten worden echter niet weergegeven, want die zijn niet geannoteerd met een [[Property:Modification date|wijzigingsdatum]])", + "smw-search-profile-extended-help-sort-best": "* “Beste treffer” sorteert entiteiten op [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy relevantie] op basis van door de back-end geleverde scores", + "smw-search-profile-extended-help-form": "Er worden formulieren verstrekt (indien onderhouden) om aan bepaalde gebruiksscenario’s te voldoen. Daarin worden verschillende eigenschaps- en waardevelden weergegeven om zo het invoerproces binnen de perken te houden en het voor gebruikers gemakkelijk te maken om door te gaan met een zoekopdracht (zie $1).", + "smw-search-profile-extended-help-namespace": "Het naamruimte-selectievakje wordt verborgen zodra een formulier wordt geselecteerd, maar kan weer zichtbaar worden gemaakt met de knop “weergeven/verbergen”.", + "smw-search-profile-extended-help-search-syntax": "In het zoekinvoerveld kan de syntaxis van #ask worden gebruikt om een voor Semantic MediaWiki specifieke zoekcontext te definiëren. Nuttige uitdrukkingen zijn onder meer:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: om alles te vinden dat “...” bevat. Dit is vooral handig als de betrokken zoekcontext of eigenschappen onbekend zijn (bv. in:(lorem && ipsum) is gelijkwaardig aan [[~~*lorem*]] && [[~~*ipsum*]]).", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: om alles te vinden dat “...” in exact dezelfde volgorde bevat", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: om elke entiteit te met de eigenschap “...” te vinden (bv. has:(Foo && Bar) is gelijkwaardig aan [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: om geen enkele entiteit te vinden die “...” bevat", + "smw-search-profile-extended-help-search-syntax-prefix": "* Er zijn nog meer aangepaste voorvoegsels beschikbaar en gedefinieerd, zoals: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* Sommige uitdrukkingen zijn gereserveerd, zoals: $1", + "smw-search-profile-extended-help-search-syntax-note": "''Sommige van de genoemde verrichtingen zijn alleen nuttig bij gebruik van een volledige-tekstindex of de ElasticStore.''", + "smw-search-profile-extended-help-query": "$1 is als zoekopdracht gebruikt.", + "smw-search-profile-extended-help-query-link": "Zie voor meer informatie de $1.", + "smw-search-profile-extended-help-find-forms": "beschikbare formulieren", + "smw-search-profile-extended-section-sort": "Sorteren op", + "smw-search-profile-extended-section-form": "Formulieren", + "smw-search-profile-extended-section-search-syntax": "Zoekinvoer", + "smw-search-profile-extended-section-namespace": "Naamruimte", + "smw-search-profile-extended-section-query": "Zoekopdracht", + "smw-search-profile-link-caption-query": "zoekopdrachtbouwer", + "smw-search-show": "Weergeven", + "smw-search-hide": "Verbergen", + "log-name-smw": "Logboek Semantic MediaWiki", + "log-show-hide-smw": "$1 Semantic MediaWiki-logboek", + "logeventslist-smw-log": "Logboek Semantic MediaWiki", + "log-description-smw": "Activiteiten voor [https://www.semantic-mediawiki.org/wiki/Help:Logging ingeschakelde gebeurtenistypen] die zijn gemeld door Semantic MediaWiki en de componenten ervan.", + "logentry-smw-maintenance": "Onderhoudsgerelateerde gebeurtenissen die zijn doorgevoerd door Semantic MediaWiki", + "smw-datavalue-import-unknown-namespace": "De importnaamruimte “$1” is onbekend. Zorg ervoor dat de OWL-importgegevens beschikbaar zijn via [[MediaWiki:Smw import $1]]", + "smw-datavalue-import-missing-namespace-uri": "Kan geen URI in de naamruimte “$1” vinden in de [[MediaWiki:Smw import $1|import van $1]].", + "smw-datavalue-import-missing-type": "Er is geen typedefinitie voor “$1” gevonden in de [[MediaWiki:Smw import $2|import van $2]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|Import van $1]]", + "smw-datavalue-import-invalid-value": "“$1” is niet juist opgemaakt. Dit moet bestaan uit “naamruimte”:“ID” (bv. “foaf:naam”).", + "smw-datavalue-import-invalid-format": "De tekenreeks “$1” moet uit vier delen bestaan, maar de indeling werd niet begrepen.", + "smw-property-predefined-impo": "“$1” is een voorgedefinieerde eigenschap die een verhouding tot een [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary geïmporteerde woordenschat] beschrijft. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org /wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-type": "“$1” is een voorgedefinieerde eigenschap die het [[Special:Types|gegevenstype]] van een eigenschap beschrijft. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-sobj": "“$1” is een voorgedefinieerde eigenschap die een [https://www.semantic-mediawiki.org/wiki/Help:Container container]-constructie vertegenwoordigt. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-sobj": "De container maakt het mogelijk om eigenschapswaardetoewijzingen te vergaren, vergelijkbaar met die van een normale wikipagina, maar binnen een andere entiteitsruimte, terwijl ze gekoppeld zijn aan het inbeddingsonderwerp.", + "smw-property-predefined-errp": "“$1” is een voorgedefinieerde eigenschap die invoerfouten bij annotaties met onregelmatige waarden bijhoudt. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-errp": "In de meeste gevallen wordt dit veroorzaakt door een afwijkend type of door een [[Property:Allows value|waarde]]-beperking.", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value “$1”] is een voorgedefinieerde eigenschap die een lijst met toegestane waarden kan definiëren om waardetoewijzingen voor een eigenschap te beperken. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list “$1”] is een voorgedefinieerde eigenschap die een verwijzing kan specificeren naar een lijst die toegestane waarden bevat om waardetoewijzingen voor een eigenschap te beperken. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-datavalue-property-restricted-annotation-use": "De eigenschap “$1” heeft een beperkt toepassingsgebied en kan niet door een gebruiker als annotatie-eigenschap worden gebruikt.", + "smw-datavalue-property-restricted-declarative-use": "De eigenschap “$1” is een declaratieve eigenschap en kan alleen worden gebruikt op een eigenschaps- of categoriepagina.", + "smw-datavalue-property-create-restriction": "De eigenschap “$1” bestaat niet en de gebruiker beschikt niet over het recht “$2” om waarden te maken of te annoteren met een niet-goedgekeurde eigenschap (zie [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode Autoriteitsmodus]).", + "smw-datavalue-property-invalid-character": "“$1” bevat het op de lijst vermelde teken “$2” als onderdeel van het eigenschapslabel en is daarom als ongeldig geclassificeerd.", + "smw-datavalue-property-invalid-chain": "Het gebruik van “$1” als eigenschappenketen is niet toegestaan tijdens het annotatieproces.", + "smw-datavalue-restricted-use": "De gegevenswaarde “$1” is gemarkeerd voor beperkt gebruik.", + "smw-datavalue-invalid-number": "\"$1\" kan niet worden geïnterpreteerd als een getal.", + "smw-query-condition-circular": "Er is een mogelijke circulaire aanroep aangetroffen in \"$1\".", + "smw-query-condition-empty": "De beschrijving van de zoekopdracht bevat een lege voorwaarde.", + "smw-types-list": "Lijst van gegevenstypen", + "smw-types-default": "\"$1\" is een ingebouwd gegevenstype.", + "smw-types-help": "Meer informatie en voorbeelden vindt u op [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 deze hulppagina].", + "smw-type-anu": "\"$1\" is een variant van het [[Special:Types/URL|URL]] gegevenstype, dat meestal wordt gebruikt voor een \"owl:AnnotationProperty\" exportdeclaratie.", + "smw-type-boo": "\"$1\" is een basisdatatype voor het beschrijven van een waarheidswaarde.", + "smw-type-cod": "\"$1\" is een variant van het [[Special:Types/Text|Tekst]] gegevenstype, dat kan worden gebruikt voor technische teksten van willekeurige lengte, zoals broncode.", + "smw-type-geo": "\"$1\" is een datatype dat geografische locaties beschrijft. Voor volledige functionaliteit is de uitbreiding [https://www.semantic-mediawiki.org/wiki/Extension:Maps Semantic Maps] vereist.", + "smw-type-tel": "\"$1\" is een speciaal gegevenstype om internationale telefoonnummers te beschrijven conform RFC 3966.", + "smw-type-txt": "\"$1\" is een basisdatatype om tekenreeksen van willekeurige lengte te beschrijven.", + "smw-type-dat": "\"$1\" is een basisdatatype om tijdstippen in een uniform formaat weer te geven.", + "smw-type-ema": "“$1” is een speciaal gegevenstype dat een e-mail vertegenwoordigt.", + "smw-type-tem": "“$1” is een speciaal numeriek gegevenstype dat een temperatuur vertegenwoordigt.", + "smw-type-qty": "“$1” is een gegevenstype om hoeveelheden te beschrijven met een numerieke weergave en een meeteenheid.", + "smw-type-rec": "“$1” is een containergegevenstype dat een lijst met eigenschappen met typen in een vaste volgorde opgeeft.", + "smw-type-extra-tem": "Het conversieschema bevat ondersteunde eenheden zoals Kelvin, Celsius, Fahrenheit en Rankine.", + "smw-type-tab-properties": "Eigenschappen", + "smw-type-tab-types": "Typen", + "smw-type-tab-type-ids": "Type-ID’s", + "smw-type-tab-errors": "Fouten", + "smw-type-primitive": "Eenvoudig", + "smw-type-contextual": "Contextueel", + "smw-type-compound": "Samengesteld", + "smw-type-container": "Container", + "smw-type-no-group": "Niet geclassificeerd", + "smw-special-pageproperty-description": "Deze pagina biedt een browserinterface waarmee u alle waarden van een eigenschap en een bepaalde pagina kunt vinden. Andere beschikbare zoekinterfaces zijn onder meer [[Special:SearchByProperty|Op eigenschap zoeken]] en de [[Special:Ask|zoekopdrachtbouwer voor ''Ask'']].", + "smw-property-predefined-errc": "“$1” is een voorgedefinieerde eigenschap die wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]. Deze eigenschap vertegenwoordigt fouten die zijn verschenen in verband met onjuiste waardeannotaties of invoerverwerking.", + "smw-property-predefined-long-errc": "Fouten worden verzameld in een [https://www.semantic-mediawiki.org/wiki/Help:Container container] die mogelijk een verwijzing bevat naar de eigenschap die de discrepantie heeft veroorzaakt.", + "smw-property-predefined-errt": "“$1” is een voorgedefinieerde eigenschap die een tekstuele beschrijving van een fout bevat. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-subobject-parser-invalid-naming-scheme": "Een door de gebruiker gedefinieerd subobject bevatte een ongeldig naamgevingsschema. De puntnotatie ($1) die binnen de eerste vijf tekens wordt gebruikt, is gereserveerd voor uitbreidingen. U kunt een [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier ID op naam] instellen.", + "smw-datavalue-record-invalid-property-declaration": "De recorddefinitie bevat de eigenschap “$1”, die zelf als recordtype is gedeclareerd, en dat is niet toegestaan.", + "smw-property-predefined-mdat": "“$1” is een voorgedefinieerde eigenschap die overeenkomt met de datum van de laatste wijziging van een onderwerp. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cdat": "“$1” is een voorgedefinieerde eigenschap die overeenkomt met de datum van de eerste herziening van een onderwerp. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-newp": "“$1” is een voorgedefinieerde eigenschap die aangeeft of een onderwerp nieuw is of niet. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-ledt": "“$1” is een voorgedefinieerde eigenschap die de paginanaam bevat van de gebruiker die de laatste versie heeft aangemaakt. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-mime": "“$1” is een voorgedefinieerde eigenschap die het MIME-type van een geüpload bestand beschrijft. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-media": "“$1” is een voorgedefinieerde eigenschap die het mediatype van een geüpload bestand beschrijft. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askfo": "“$1” is een voorgedefinieerde eigenschap die de naam bevat van het resultaatformaat dat in een zoekopdracht wordt gebruikt. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askst": "“$1” is een voorgedefinieerde eigenschap die de voorwaarden van de zoekopdracht beschrijft als een tekenreeks. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askdu": "“$1” is een voorgedefinieerde eigenschap die een tijdswaarde (in seconden) bevat die nodig was om de uitvoering van de zoekopdracht te voltooien. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksc": "“$1” is een voorgedefinieerde eigenschap, geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], die alternatieve (bv. externe, federatieve) zoekbronnen identificeert.", + "smw-property-predefined-askco": "“$1” is een voorgedefinieerde eigenschap die wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]. Deze eigenschap beschrijft de status van een zoekopdracht of de componenten ervan.", + "smw-property-predefined-long-askco": "Het toegewezen nummer of de toegewezen nummers vertegenwoordigen een interne gecodificeerde status die op de [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler hulppagina] wordt uitgelegd.", + "smw-property-predefined-prec": "“$1” is een voorgedefinieerde eigenschap die een [https://www.semantic-mediawiki.org/wiki/Help:Display_precision weergaveprecisie] (in decimale cijfers) voor numerieke gegevenstypen beschrijft.", + "smw-property-predefined-attch-link": "“$1” is een voorgedefinieerde eigenschap die ingebedde bestands- en afbeeldingskoppelingen verzamelt die op een pagina worden gevonden. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-inst": "“$1” is een interne voorgedefinieerde eigenschap die van MediaWiki onafhankelijke categorie-informatie opslaat. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-unit": "“$1” is een voorgedefinieerde declaratieve eigenschap om weergave-eenheden te definiëren voor eigenschappen van numerieke typen. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-unit": "Een door komma’s gescheiden lijst maakt het mogelijk eenheden of formaten te beschrijven die voor de weergave moeten worden gebruikt.", + "smw-property-predefined-conv": "“$1” is een declaratieve, voorgedefinieerde eigenschap om de conversiefactor te definiëren voor een bepaalde eenheid van een fysieke grootheid. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-serv": "“$1” is een voorgedefinieerde declaratieve eigenschap om dienstkoppelingen aan een eigenschap toe te voegen. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-redi": "“$1” is een voorgedefinieerde interne eigenschap om doorverwijzingen vast te leggen. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-subp": "“$1” is een voorgedefinieerde declaratieve eigenschap om te definiëren dat een eigenschap een [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of deeleigenschap van] een andere eigenschap is. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-subc": "“$1” is een voorgedefinieerde eigenschap om te definiëren dat een categorie een [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of subcategorie van] een andere is. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-conc": "“$1” is een voorgedefinieerde interne eigenschap om een bijbehorend concept te definiëren. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-err-type": "“$1” is een voorgedefinieerde eigenschap om een groep of klasse [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors verwerkingsfouten] te identificeren. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-skey": "“$1” is een voorgedefinieerde interne eigenschap die een sorteerreferentie bevat. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pplb": "“$1” is een voorgedefinieerde declaratieve eigenschap om een [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label voorkeurseigenschapslabel] op te geven. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-chgpro": "“$1” is een voorgedefinieerde eigenschap die informatie over de [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation propagatie van wijzigingen] bevat. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]", + "smw-property-predefined-schema-link": " Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-format-schema": " Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-profile-schema": " Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans": " Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-source": " Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-group": " Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cont-len": "“$1” is een voorgedefinieerde eigenschap om lengte-informatie op te slaan. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-len": "Deze wordt gebruikt in combinatie met de [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en de [https://www.semantic-mediawiki.org/Attachment_processor bijlageprocessor]) om de uit een ingenomen bestand gehaalde lengte-informatie te verzamelen en op te slaan (indien aanwezig).", + "smw-property-predefined-cont-lang": "“$1” is een voorgedefinieerde eigenschap om taalinformatie op te slaan. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-lang": "Deze wordt gebruikt in combinatie met de [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en de [https://www.semantic-mediawiki.org/Attachment_processor bijlageprocessor]) om de uit een ingenomen bestand gehaalde taalinformatie te verzamelen en op te slaan (indien aanwezig).", + "smw-property-predefined-cont-title": "“$1” is een voorgedefinieerde eigenschap om titelinformatie op te slaan. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-title": "Deze wordt gebruikt in combinatie met de [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en de [https://www.semantic-mediawiki.org/Attachment_processor bijlageprocessor]) om de uit een ingenomen bestand gehaalde titelinformatie te verzamelen en op te slaan (indien aanwezig).", + "smw-property-predefined-cont-author": "“$1” is een voorgedefinieerde eigenschap om auteursinformatie op te slaan. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-author": "Deze wordt gebruikt in combinatie met de [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en de [https://www.semantic-mediawiki.org/Attachment_processor bijlageprocessor]) om de uit een ingenomen bestand gehaalde auteursinformatie te verzamelen en op te slaan (indien aanwezig).", + "smw-property-predefined-cont-date": "“$1” is een voorgedefinieerde eigenschap om datuminformatie op te slaan. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-date": "Deze wordt gebruikt in combinatie met de [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en de [https://www.semantic-mediawiki.org/Attachment_processor bijlageprocessor]) om de uit een ingenomen bestand gehaalde datuminformatie te verzamelen en op te slaan (indien aanwezig).", + "smw-property-predefined-cont-type": "“$1” is een voorgedefinieerde eigenschap om bestandstype-informatie op te slaan. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-type": "Deze wordt gebruikt in combinatie met de [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en de [https://www.semantic-mediawiki.org/Attachment_processor bijlageprocessor]) om de uit een ingenomen bestand gehaalde type-informatie te verzamelen en op te slaan (indien aanwezig).", + "smw-property-predefined-cont-keyw": "“$1” is een voorgedefinieerde eigenschap om trefwoorden te vertegenwoordigen. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-keyw": "Deze wordt gebruikt in combinatie met de [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en de [https://www.semantic-mediawiki.org/Attachment_processor bijlageprocessor]) om de uit een ingenomen bestand gehaalde sleutelwoorden te verzamelen en op te slaan (indien aanwezig).", + "smw-property-predefined-file-attch": "“$1” is een voorgedefinieerde eigenschap om een container te vertegenwoordigen waarin bijlage-informatie wordt opgeslagen. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-file-attch": "Deze wordt gebruikt in combinatie met de [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (en de [https://www.semantic-mediawiki.org/Attachment_processor bijlageprocessor]) om alle uit een ingenomen bestand opvraagbare inhoudsspecifieke informatie te verzamelen (indien aanwezig).", + "smw-types-extra-geo-not-available": "De [https://www.semantic-mediawiki.org/wiki/Extension:Maps uitbreiding “Maps”] is niet gedetecteerd en daarom is “$1” beperkt in zijn vermogen om te werken.", + "smw-datavalue-monolingual-dataitem-missing": "Er ontbreekt een element dat is vereist voor het opbouwen van een eentalige samengestelde waarde.", + "smw-datavalue-languagecode-missing": "Voor de annotatie “$1” kon de parser geen taalcode bepalen (bv “iets@nl”).", + "smw-datavalue-languagecode-invalid": "\"$1\" wordt niet herkend als een ondersteunde taalcode.", + "smw-property-predefined-lcode": "“$1” is een voorgedefinieerde eigenschap die een volgens BCP47 opgemaakte taalcode vertegenwoordigt. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-type-mlt-rec": "“$1” is een [https://www.semantic-mediawiki.org/wiki/Help:Container container]-gegevenstype dat een tekstwaarde associeert met een bepaalde [[Eigenschap:Taalcode|taalcode]].", + "smw-types-extra-mlt-lcode": "Voor dit gegevenstype is een taalcode {{PLURAL:$2||niet}} vereist (d.w.z. een waarde-annotatie zonder taalcode wordt {{PLURAL:$2|niet|}} geaccepteerd).", + "smw-property-predefined-text": "“$1” is een voorgedefinieerde eigenschap die tekst van willekeurige lengte vertegenwoordigt. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pdesc": "“$1” is een voorgedefinieerde eigenschap die het mogelijk maakt een eigenschap in de context van een taal te beschrijven. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-list": "“$1” is een voorgedefinieerde eigenschap om een lijst met eigenschappen te definiëren die worden gebruikt met een eigenschap van het type [[Special:Types/Record|record]]. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] Parsertijd van annotaties in de tekst", + "smw-limitreport-intext-postproctime": "[SMW] naverwerkingstijd", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|seconde|seconden}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|seconde|seconden}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Duur bijwerken opslag (bij pagina opschonen)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|seconde|seconden}}", + "smw_allows_pattern": "Deze pagina wordt geacht een lijst met referenties te bevatten (gevolgd door [https://en.wikipedia.org/wiki/Regular_expression reguliere expressies]) die beschikbaar wordt gemaakt door de eigenschap [[Property:Allows pattern|Allows pattern]]. Om deze pagina te bewerken is het recht smw-patternedit vereist.", + "smw-datavalue-allows-pattern-mismatch": "“$1” is als ongeldig geclassificeerd door de reguliere expressie “$2”.", + "smw-datavalue-allows-pattern-reference-unknown": "De patroonreferentie “$1” kon niet worden gekoppeld aan een item in [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "Voor de lijstreferentie “$1” is geen pagina [[MediaWiki:Smw allows list $1]] gevonden.", + "smw-datavalue-allows-value-list-missing-marker": "In de inhoud van de lijst “$1” ontbreken vermeldingen met een lijstmarkering “*”.", + "smw-datavalue-feature-not-supported": "De functie “$1” wordt niet ondersteund of is uitgeschakeld op deze wiki.", + "smw-property-predefined-pvap": "“$1” is een voorgedefinieerde eigenschap die een [[MediaWiki:Smw allows pattern|patroonreferentie]] kan specificeren om met een [https://en.wikipedia.org/wiki/Regular_expression reguliere expressie] te vergelijken. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-dtitle": "“$1” is een vooraf gedefinieerde eigenschap die een aparte weergavetitel aan een entiteit kan toewijzen. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvuc": "“$1” is een voorgedefinieerde eigenschap, geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], om de waarde van elke instantie te beperken zodat deze uniek is (of hoogstens één).", + "smw-property-predefined-long-pvuc": "Uniciteit wordt vastgesteld wanneer twee waarden niet gelijk zijn in hun letterlijke weergave. Elke overtreding van die beperking wordt als fout gecategoriseerd.", + "smw-datavalue-constraint-uniqueness-violation": "De eigenschap “$1” staat alleen unieke waardetoewijzingen toe en ''$2'' was al geannoteerd in onderwerp “$3”.", + "smw-datavalue-constraint-uniqueness-violation-isknown": "De eigenschap “$1” staat alleen unieke waarde-annotaties toe, ''$2'' bevat al een toegewezen waarde. “$3” schendt de uniciteitsvereiste.", + "smw-datavalue-constraint-violation-non-negative-integer": "De eigenschap “$1” heeft een beperking “niet-negatieve gehele getallen” en de waarde “$2” schendt deze vereiste.", + "smw-datavalue-constraint-violation-must-exists": "De eigenschap “$1” heeft een beperking must_exists en de waarde ''$2'' schendt deze vereiste.", + "smw-datavalue-constraint-violation-single-value": "De eigenschap “[[Property:$1|$1]]” heeft een beperking single_value en de waarde “$2” schendt deze vereiste.", + "smw-constraint-violation-uniqueness": "De beperking unique_value_constraint is toegewezen aan de eigenschap \"[[Property:$1|$1]]\" zodat deze alleen unieke waardetoewijzingen toestaat, maar de waardeannotatie ''$2'' bleek al te zijn geannoteerd in het onderwerp \"$3\".", + "smw-constraint-violation-uniqueness-isknown": "Er is een beperking unique_value_constraint toegewezen aan de eigenschap \"[[Property:$1|$1]]\", zodat alleen annotaties met unieke waarden zijn toegestaan. ''$2'' bevat echter al een geannoteerde waarde met \"$3\", wat in strijd is met de uniciteitsbeperking voor het huidige onderwerp.", + "smw-constraint-violation-non-negative-integer": "Er is een beperking non_negative_integer toegewezen aan de eigenschap “[[Property:$1|$1]]” en de waardeannotatie ''$2'' schendt de beperkingsvereiste.", + "smw-constraint-violation-must-exists": "Er is een beperking must_exists toegewezen aan de eigenschap “[[Property:$1|$1]]” en de waardeannotatie ''$2'' schendt de beperkingsvereiste.", + "smw-constraint-violation-single-value": "Er is een beperking single_value toegewezen aan de eigenschap “[[Property:$1|$1]]” en de waardeannotatie “$2” schendt de beperkingsvereiste.", + "smw-constraint-violation-class-shape-constraint-missing-property": "Er is een beperking shape_constraint toegewezen aan de categorie “[[:$1]]” met een sleutel property. De vereiste eigenschap “$2” ontbreekt.", + "smw-constraint-violation-class-shape-constraint-wrong-type": "Er is een beperking shape_constraint toegewezen aan de categorie “[[:$1]]” met een sleutel property_type. De eigenschap “$2” is niet van het type “$3”.", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "Er is een beperking shape_constraint toegewezen aan de categorie “[[:$1]]” met een sleutel max_cardinality. De eigenschap “$2” heeft niet de kardinaliteit van “$3”.", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "Er is een beperking shape_constraint toegewezen aan de categorie “[[:$1]]” met een sleutel min_textlength. De eigenschap “$2” voldoet niet aan de minimumlengte van “$3”.", + "smw-constraint-violation-class-mandatory-properties-constraint": "Er is een beperking mandatory_properties toegewezen aan de categorie “[[:$1]]”. De volgende verplichte eigenschappen zijn vereist: $2", + "smw-constraint-violation-allowed-namespace-no-match": "Er is een beperking allowed_namespaces toegewezen aan de eigenschap “[[Property:$1|$1]]” en “$2” schendt de naamruimtevereiste. Alleen de volgende naamruimten zijn toegestaan: $3", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "De beperking allowed_namespaces vereist een paginatype.", + "smw-constraint-schema-category-invalid-type": "Het geannoteerde schema “$1” is ongeldig voor een categorie. Een type “$2” is vereist.", + "smw-constraint-schema-property-invalid-type": "Het geannoteerde schema “$1” is ongeldig voor een eigenschap. Een type “$2” is vereist.", + "smw-constraint-error-allows-value-list": "“$1” staat niet in de lijst met [[Property:Allows value|mogelijke waarden]] voor de eigenschap “$3” ($2).", + "smw-constraint-error-allows-value-range": "“$1” valt niet binnen het bereik van “$2” dat is opgegeven door de beperking [[Property:Allows value|toegestane waarden]] voor de eigenschap “$3”.", + "smw-property-predefined-boo": "“$1” is een [[Special:Types/Boolean|type]] en voorgedefinieerde eigenschap, geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], om booleaanse waarden weer te geven.", + "smw-property-predefined-num": "“$1” is een [[Special:Types/Number|type]] en voorgedefinieerde eigenschap, geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], om numerieke waarden weer te geven.", + "smw-property-predefined-dat": "“$1” is een [[Special:Types/Date|type]] en voorgedefinieerde eigenschap, geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], om datumwaarden weer te geven.", + "smw-property-predefined-uri": "“$1” is een [[Special:Types/URL|type]] en voorgedefinieerde eigenschap, geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], om URI/URL-waarden weer te geven.", + "smw-property-predefined-qty": "“$1” is een [[Special:Types/Quantity|type]] en voorgedefinieerde eigenschap, geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], om hoeveelheidswaarden weer te geven.", + "smw-datavalue-time-invalid-offset-zone-usage": "“$1” bevat een offset en zone-ID die niet wordt ondersteund.", + "smw-datavalue-time-invalid-values": "De waarde “$1” bevat niet-interpreteerbare informatie in de vorm van “$2”.", + "smw-datavalue-time-invalid-date-components-common": "“$1” bevat niet-interpreteerbare informatie.", + "smw-datavalue-time-invalid-date-components-dash": "“$1” bevat een extrinsiek streepje of andere tekens die ongeldig zijn voor een datuminterpretatie.", + "smw-datavalue-time-invalid-date-components-empty": "“$1” bevat enkele lege componenten.", + "smw-datavalue-time-invalid-date-components-three": "“$1” bevat meer dan drie componenten die nodig zijn voor een datuminterpretatie.", + "smw-datavalue-time-invalid-date-components-sequence": "“$1” bevat een reeks die niet kon worden geïnterpreteerd op basis van een beschikbare overeenkomstmatrix voor datumcomponenten.", + "smw-datavalue-time-invalid-ampm": "“$1” bevat “$2” als uurelement dat ongeldig is voor een conventie van 12 uur.", + "smw-datavalue-time-invalid-jd": "Kan de invoerwaarde “$1” niet interpreteren als een geldig JD-nummer (Juliaanse Dag). De teruggegeven waarde is “$2”.", + "smw-datavalue-time-invalid-prehistoric": "Het is niet mogelijk een prehistorische invoerwaarde van “$1” te interpreteren. Als u bijvoorbeeld meer dan jaren of een kalendermodel heeft gespecificeerd, kan dit onverwachte resultaten opleveren in een prehistorische context.", + "smw-datavalue-time-invalid": "Kan de invoerwaarde “$1” niet interpreteren als een geldig onderdeel van een datum of tijd. De teruggegeven waarde is “$2”.", + "smw-datavalue-external-formatter-uri-missing-placeholder": "In de op te maken URI ontbreekt de plaatsaanduiding ''$1''.", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\" is een ongeldige URL.", + "smw-datavalue-external-identifier-formatter-missing": "In de eigenschap ontbreekt de toewijzing van een [[Property:External formatter uri|externe URI met plaatsaanduiding]].", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "Voor de externe identificatie “$1” is een vervanging van meerdere velden vereist, maar aan de huidige waarde “$2” ontbreekt ten minste één waardeparameter die nodig is om aan de vereiste te voldoen.", + "smw-datavalue-keyword-maximum-length": "Het sleutelwoord overschrijdt de maximale lengte van $1 teken{{PLURAL:$1||s}}.", + "smw-property-predefined-eid": "“$1” is een [[Special:Types/External identifier|type]] en voorgedefinieerde eigenschap, geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], om externe identificaties weer te geven.", + "smw-property-predefined-peid": "“$1” is een voorgedefinieerde eigenschap die een externe identificatiecode specificeert. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pefu": "“$1” is een voorgedefinieerde eigenschap, geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], om een externe bron met een plaatsaanduiding op te geven.", + "smw-property-predefined-long-pefu": "De URI moet een tijdelijke aanduiding bevatten die wordt aangepast met de waarde van een [[Special:Types/External identifier|externe identificatiecode]] om een geldige bronreferentie te vormen.", + "smw-type-eid": "“$1” is een variant van het datatype [[Special:Types/Text|Text]] om externe bronnen te beschrijven (op basis van URI) en vereist toegewezen eigenschappen om een [[Property:External formatter uri|externe URI met plaatsaanduiding]] te declareren.", + "smw-property-predefined-keyw": "“$1” is een voorgedefinieerde eigenschap en voorgedefinieerd [[Special:Types/Keyword|type]], geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], waarmee een tekst kan worden genormaliseerd en de lengte in tekens kan worden beperkt.", + "smw-type-keyw": "“$1” is een variant van het gegevenstype [[Special:Types/Text|Text]] met een beperkte tekenlengte en een genormaliseerde inhoudsweergave.", + "smw-datavalue-stripmarker-parse-error": "De opgegeven waarde “$1” bevat [https://en.wikipedia.org/wiki/Help:Strip_markers ''strip markers''] en kan daarom niet in voldoende mate worden verwerkt.", + "smw-datavalue-parse-error": "De opgegeven waarde “$1” is niet begrepen.", + "smw-datavalue-propertylist-invalid-property-key": "De eigenschappenlijst “$1” bevatte een ongeldige eigenschapssleutel “$2”.", + "smw-datavalue-type-invalid-typeuri": "Het type “$1” kon niet worden omgezet in een geldige URI-weergave.", + "smw-datavalue-wikipage-missing-fragment-context": "De wikipagina-invoerwaarde “$1” kan niet worden gebruikt zonder contextpagina.", + "smw-datavalue-wikipage-invalid-title": "De invoerwaarde van het paginatype, “$1”, bevat ongeldige tekens of is onvolledig en kan daarom onverwachte resultaten veroorzaken tijdens een opvraag- of annotatieproces.", + "smw-datavalue-wikipage-property-invalid-title": "De eigenschap “$1” (als paginatype) met de invoerwaarde “$2” bevat ongeldige tekens of is onvolledig en kan daarom onverwachte resultaten veroorzaken tijdens een opvraag- of annotatieproces.", + "smw-datavalue-wikipage-empty": "De invoerwaarde van de wikipagina is leeg (bv. [[SomeProperty::]], [[]]) en kan daarom niet worden gebruikt als naam of als onderdeel van een zoekopdracht-voorwaarde.", + "smw-type-ref-rec": "“$1” is een [https://www.semantic-mediawiki.org/wiki/Container container]-type waarmee aanvullende informatie (bv. herkomstgegevens) over een waardetoekenning kan worden vastgelegd.", + "smw-datavalue-reference-invalid-fields-definition": "Voor het type [[Special:Types/Reference|Reference]] wordt verwacht dat een lijst met eigenschappen wordt gedeclareerd met behulp van de eigenschap [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields].", + "smw-parser-invalid-json-format": "In de JSON-parser is een fout opgetreden: “$1”.", + "smw-property-preferred-label-language-combination-exists": "“$1” kan niet als voorkeurslabel worden gebruikt omdat de taal “$2” al is toegewezen aan het label “$3”.", + "smw-clipboard-copy-link": "Verwijzing naar het klembord kopiëren", + "smw-property-userdefined-fixedtable": "“$1” is ingesteld als [https://www.semantic-mediawiki.org/wiki/Fixed_properties vaste eigenschap] en elke wijziging aan de [https://www.semantic-mediawiki.org/wiki/Type_declaration typedeclaratie] ervan vereist het uitvoeren van setupStore.php of het voltooien van de speciale taak [[Special:SemanticMediaWiki|“Database installeren en bijwerken”]].", + "smw-data-lookup": "Gegevens ophalen…", + "smw-data-lookup-with-wait": "Het verzoek wordt verwerkt en kan even duren.", + "smw-no-data-available": "Geen gegevens beschikbaar", + "smw-property-req-violation-missing-fields": "In de eigenschap “$1” ontbreekt een door het type “$2” vereiste verklaring [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields].", + "smw-property-req-violation-multiple-fields": "Eigenschap \"$1\" bevat meerdere (en dus concurrerende) declaraties [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields]. Er wordt slechts één verwacht voor dit gegevenstype \"$2\".", + "smw-property-req-violation-missing-formatter-uri": "In de eigenschap “$1” ontbreken de verklaringsgegevens voor het geannoteerde type omdat de eigenschap External formatter URI niet is gedefinieerd.", + "smw-property-req-violation-predefined-type": "De eigenschap “$1” als voorgedefinieerde eigenschap bevat een verklaring van het type “$2” die niet compatibel is met het standaardtype van deze eigenschap.", + "smw-property-req-violation-import-type": "Er is een typedeclaratie gevonden die niet verenigbaar is met het voorgedefinieerde type van de geïmporteerde woordenschat “$1”. Over het algemeen is het niet nodig om een type te declareren, want die informatie wordt uit de importdefinitie verkregen.", + "smw-property-req-violation-change-propagation-locked-error": "De eigenschap “$1” is gewijzigd, waardoor de toegewezen entiteiten opnieuw moeten worden geëvalueerd met behulp van een [https://www.semantic-mediawiki.org/wiki/Change_propagation wijzigingspropagatie]-proces. Om tussentijdse onderbrekingen of tegenstrijdige specificaties te voorkomen is de eigenschapspagina vergrendeld totdat het bijwerken van de primaire specificatie is voltooid. Het kan even duren voordat de pagina weer kan worden ontgrendeld; dit hangt af van de grootte en planningsfrequentie van de [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue taakwachtrij].", + "smw-property-req-violation-change-propagation-locked-warning": "De eigenschap “$1” is gewijzigd, waardoor de toegewezen entiteiten opnieuw moeten worden geëvalueerd met behulp van een [https://www.semantic-mediawiki.org/wiki/Change_propagation wijzigingspropagatie]-proces. Het bijwerken kan even duren; het hangt af van de grootte en planningsfrequentie van de [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue taakwachtrij]. Om tussentijdse onderbrekingen of tegenstrijdige specificaties te voorkomen wordt het aanbevolen geen wijzigingen aan de eigenschap aan te brengen voordat het bijwerken voltooid is.", + "smw-property-req-violation-change-propagation-pending": "Er zijn nog [https://www.semantic-mediawiki.org/wiki/Change_propagation wijzigingen in behandeling] (ongeveer $1 [https://www.mediawiki.org/wiki/Manual:Job_queue {{PLURAL:$1|taak|taken}}]). Het wordt aangeraden om te wachten met aanpassingen aan een eigenschap tot het proces is afgerond, dit om tussentijdse onderbrekingen of tegenstrijdige specificaties te voorkomen.", + "smw-property-req-violation-missing-maps-extension": "Semantic MediaWiki heeft de vereiste uitbreiding [https://www.semantic-mediawiki.org/wiki/Extension:Maps “Maps”] niet kunnen vinden. Als gevolg daarvan kan deze eigenschap geen geografische gegevens opslaan of verwerken.", + "smw-property-req-violation-type": "De eigenschap bevat concurrerende typespecificaties die kunnen leiden tot ongeldige waarde-annotaties. Daarom wordt verwacht dat een gebruiker één geschikt type toewijst.", + "smw-property-req-error-list": "De eigenschap bevat de volgende fouten of waarschuwingen:", + "smw-property-req-violation-parent-type": "De eigenschap “$1” en de toegewezen bovenliggende eigenschap “$2” hebben verschillende type-annotaties.", + "smw-property-req-violation-forced-removal-annotated-type": "De [https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance verplichte overerving van het bovenliggende type] is ingeschakeld. Het annotatietype “$1” van de eigenschap komt niet overeen met het type “$2” van de bovenliggende eigenschap en is gewijzigd om aan deze eis te voldoen. Het wordt aanbevolen de typedefinitie op de pagina zo aan te passen dat de foutmelding en typehandhaving voor deze eigenschap worden verwijderd.", + "smw-change-propagation-protection": "Deze pagina is vergrendeld om onbedoelde gegevenswijziging te voorkomen terwijl de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagatie van wijzigingen] in uitvoering is. Het kan even duren voordat de pagina wordt ontgrendeld; het hangt af van de grootte en planningsfrequentie van de [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue taakwachtrij].", + "smw-category-change-propagation-locked-error": "De categorie “$1” is gewijzigd, waardoor de toegewezen entiteiten opnieuw moeten worden geëvalueerd met behulp van een [https://www.semantic-mediawiki.org/wiki/Change_propagation wijzigingspropagatie]-proces. Om tussentijdse onderbrekingen of tegenstrijdige specificaties te voorkomen is de categoriepagina vergrendeld totdat het bijwerken van de primaire specificatie is voltooid. Het kan even duren voordat de pagina weer kan worden ontgrendeld; dit hangt af van de grootte en planningsfrequentie van de [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue taakwachtrij].", + "smw-category-change-propagation-locked-warning": "De categorie “$1” is gewijzigd, waardoor de toegewezen entiteiten opnieuw moeten worden geëvalueerd met behulp van een [https://www.semantic-mediawiki.org/wiki/Change_propagation wijzigingspropagatie]-proces. Het bijwerken kan even duren; het hangt af van de grootte en planningsfrequentie van de [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue taakwachtrij]. Om tussentijdse onderbrekingen of tegenstrijdige specificaties te voorkomen wordt het aanbevolen geen wijzigingen aan de categorie aan te brengen voordat het bijwerken voltooid is.", + "smw-category-change-propagation-pending": "Er zijn nog [https://www.semantic-mediawiki.org/wiki/Change_propagation wijzigingen in behandeling] (ongeveer $1 [https://www.mediawiki.org/wiki/Manual:Job_queue {{PLURAL:$1|taak|taken}}]). Het wordt aangeraden om te wachten met aanpassingen aan een categorie tot het proces is afgerond, dit om tussentijdse onderbrekingen of tegenstrijdige specificaties te voorkomen.", + "smw-category-invalid-value-assignment": "“$1” wordt niet herkend als geldige categorie of waardeannotatie.", + "protect-level-smw-pageedit": "Alleen gebruikers toestaan met toestemming voor het bewerken van pagina’s (Semantic MediaWiki)", + "smw-create-protection": "Het aanmaken van de eigenschap “$1” is beperkt tot gebruikers met het recht (of de [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups gebruikersgroep]) “$2” zolang de [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode autoriteitsmodus] is ingeschakeld.", + "smw-create-protection-exists": "Het wijzigen van de eigenschap “$1” is beperkt tot gebruikers met het recht (of de [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups gebruikersgroep]) “$2” zolang de [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode autoriteitsmodus] is ingeschakeld.", + "smw-edit-protection": "Deze pagina is [[Property:Is edit protected|beveiligd]] ter voorkoming van onbedoelde gegevenswijziging en kan alleen worden bewerkt door gebruikers met het juiste recht (“$1”) of die lid zijn van de juiste [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups gebruikersgroep].", + "smw-edit-protection-disabled": "Het beveiligen tegen bewerken is uitgeschakeld en daarom kan “$1” niet worden gebruikt om entiteitspagina’s te beveiligen tegen ongeoorloofd bewerken.", + "smw-edit-protection-auto-update": "Semantic MediaWiki heeft de beveiligingsstatus bijgewerkt volgens de eigenschap “Is beveiligd tegen bewerken”.", + "smw-edit-protection-enabled": "Beveiligd tegen bewerken (Semantic MediaWiki)", + "smw-patternedit-protection": "Deze pagina is beveiligd en kan alleen worden bewerkt door gebruikers met de [https://www.semantic-mediawiki.org/wiki/Help:Permissions toestemming] smw-patternedit.", + "smw-property-predefined-edip": "“$1” is een voorgedefinieerde eigenschap die wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]. Deze eigenschap geeft aan of de pagina al dan niet tegen bewerken beveiligd is.", + "smw-property-predefined-long-edip": "Hoewel elke gebruiker deze eigenschap aan een onderwerp mag toevoegen, kan alleen een gebruiker met een speciale machtiging de bescherming van een entiteit bewerken of intrekken nadat die is toegevoegd.", + "smw-query-reference-link-label": "Referentie naar de zoekopdracht", + "smw-format-datatable-emptytable": "Geen data beschikbaar in de tabel", + "smw-format-datatable-info": "Weergave _START_ tot _END_ van _TOTAL_ resultaten", + "smw-format-datatable-infoempty": "Weergave 0 to 0 van 0 resultaten", + "smw-format-datatable-infofiltered": "(gefilterd uit _MAX_ resultaten)", + "smw-format-datatable-infothousands": ".", + "smw-format-datatable-lengthmenu": "Toon _MENU_ resultaten", + "smw-format-datatable-loadingrecords": "Bezig met laden…", + "smw-format-datatable-processing": "Verwerken...", + "smw-format-datatable-search": "Zoekopdracht:", + "smw-format-datatable-zerorecords": "Geen overeenkomende resultaten gevonden", + "smw-format-datatable-first": "Eerste", + "smw-format-datatable-last": "Laatste", + "smw-format-datatable-next": "Volgende", + "smw-format-datatable-previous": "Vorige", + "smw-format-datatable-sortascending": ": activeren om de kolom oplopend te sorteren", + "smw-format-datatable-sortdescending": ": activeren om de kolom aflopend te sorteren", + "smw-format-datatable-toolbar-export": "Exporteren", + "smw-category-invalid-redirect-target": "De categorie “$1” bevat een onjuiste doorverwijzing naar een pagina die zich niet in de categorie-naamruimte bevindt.", + "smw-parser-function-expensive-execution-limit": "De parserfunctie heeft de grens voor veeleisende verrichtingen bereikt (zie de configuratieparameter [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "Semantic MediaWiki ververst deze pagina al naargelang deze na het uitvoeren van query’s moet worden bijgewerkt.", + "apihelp-smwinfo-summary": "API-module om informatie op te halen over Semantic MediaWiki-statistieken en andere metagegevens.", + "apihelp-ask-summary": "API-module om Semantic MediaWiki te bevragen met behulp van de taal “ask”.", + "apihelp-askargs-summary": "API-module om Semantic MediaWiki te bevragen met behulp van de taal “ask” aan de hand van een lijst met voorwaarden, uitvoeraanwijzingen en parameters.", + "apihelp-browsebyproperty-summary": "API-module om informatie over een eigenschap of een lijst met eigenschappen op te vragen.", + "apihelp-browsebysubject-summary": "API-module om informatie over een onderwerp op te vragen.", + "apihelp-smwtask-summary": "API-module om Semantic MediaWiki-gerelateerde taken uit te voeren (alleen voor intern gebruik, niet voor openbaar gebruik).", + "apihelp-smwbrowse-summary": "API-module ter ondersteuning van het doorbladeren van verschillende entiteitstypen in Semantic MediaWiki.", + "apihelp-ask-parameter-api-version": "Uitvoeropmaak:\n;2:Achterwaarts compatibele indeling met {} voor de resultatenlijst.\n;3:Experimentele indeling met [] als resultatenlijst.", + "apihelp-smwtask-param-task": "Definieert het taaktype", + "apihelp-smwtask-param-params": "In JSON gecodeerde parameters die overeenkomen met de geselecteerde taaktypevereiste", + "smw-apihelp-smwtask-example-update": "Voorbeeld van het uitvoeren van een bijwerktaak voor een bepaald onderwerp:", + "smw-api-invalid-parameters": "Onjuiste parameters, “$1”", + "smw-parser-recursion-level-exceeded": "Het recursieniveau is tijdens een ontleedproces de $1 gepasseerd. Het wordt aangeraden om de sjabloonstructuur op juistheid te controleren, of zo nodig de configuratieparameter $maxRecursionDepth aan te passen.", + "smw-property-page-list-count": "{{PLURAL:$1|Eén pagina gebruikt|$1 pagina’s gebruiken}} deze eigenschap.", + "smw-property-page-list-search-count": "{{PLURAL:$1|Eén pagina gebruikt|$1 pagina’s gebruiken}} deze eigenschap met een bij “$2” passende waarde.", + "smw-property-page-filter-note": "Het [https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter zoekfilter] maakt het mogelijk [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions query-expressies] zoals ~ of ! in te voegen. De geselecteerde [https://www.semantic-mediawiki.org/wiki/Query_engine query-engine] ondersteunt mogelijk ook hoofdletter-ongevoelig zoeken of andere korte uitdrukkingen zoals:\n\n* in: resultaat moet de term bevatten, bv. ‘in:Foo’\n\n* not: het resultaat mag de term niet bevatten, bv. ‘not:Bar’", + "smw-property-reserved-category": "Categorie", + "smw-category": "Categorie", + "smw-datavalue-uri-invalid-scheme": " “$1” is niet vermeld als geldig URI-schema.", + "smw-datavalue-uri-invalid-authority-path-component": "Er is vastgesteld dat “$1” een ongeldige autoriteits- of padcomponent “$2” bevat.", + "smw-browse-property-group-title": "Eigenschappengroep", + "smw-browse-property-group-label": "Label eigenschappengroep", + "smw-browse-property-group-description": "Beschrijving eigenschappengroep", + "smw-property-predefined-ppgr": "“$1” is een vooraf gedefinieerde eigenschap die entiteiten (voornamelijk categorieën) identificeert die worden gebruikt als groeperingsinstantie voor eigenschappen. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-filter": "Filter", + "smw-section-expand": "De selectie uitvouwen", + "smw-section-collapse": "De selectie invouwen", + "smw-ask-format-help-link": "Formaat [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Hulp", + "smw-cheat-sheet": "Spiekbriefje", + "smw-personal-jobqueue-watchlist": "Volglijst taakwachtrij", + "smw-personal-jobqueue-watchlist-explain": "De getallen geven een schatting aan van het aantal nog uit te voeren taken in de wachtrij.", + "smw-property-predefined-label-skey": "Sorteersleutel", + "smw-processing": "Verwerken…", + "smw-loading": "Laden…", + "smw-fetching": "Ophalen…", + "smw-preparing": "Voorbereiden…", + "smw-expand": "Uitvouwen", + "smw-collapse": "Samenvouwen", + "smw-copy": "Kopiëren", + "smw-copy-clipboard-title": "Inhoud naar het klembord kopiëren", + "smw-jsonview-expand-title": "Vouwt de JSON-weergave uit", + "smw-jsonview-collapse-title": "Vouwt de JSON-weergave samen", + "smw-jsonview-search-label": "Zoeken:", + "smw-redirect-target-unresolvable": "Het doel kan niet worden bepaald vanwege “$1”", + "smw-types-title": "Type: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "Het wijzigen van het inhoudsmodel van een [https://www.semantic-mediawiki.org/wiki/Help:Schema schemapagina] is niet toegestaan.", + "smw-schema-namespace-edit-protection": "Deze pagina is beveiligd en kan alleen worden bewerkt door gebruikers met de [https://www.semantic-mediawiki.org/wiki/Help:Permissions toestemming] smw-schemaedit.", + "smw-schema-namespace-edit-protection-by-import-performer": "Deze pagina is geïmporteerd door een vermelde [https://www.semantic-mediawiki.org/wiki/Import_performer ''import performer'']. Dit betekent dat het wijzigen van de inhoud van deze pagina voorbehouden is aan de vermelde gebruikers.", + "smw-schema-error-title": "Valideerfout{{PLURAL:$1||en}}", + "smw-schema-error-schema": "Aan de hand van het validatieschema '''$1''' zijn de volgende tegenstrijdigheden aangetroffen:", + "smw-schema-error-miscellaneous": "Overige fout ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "De JSON-validator “$1” is niet toegankelijk (of niet geïnstalleerd). Daardoor kan het bestand “$2” niet worden beoordeeld, wat het onmogelijk maakt de huidige pagina op te slaan of te wijzigen.", + "smw-schema-error-validation-file-inaccessible": "Het validatiebestand “$1” is niet toegankelijk.", + "smw-schema-error-type-missing": "Er ontbreekt een typeaanduiding voor de inhoud, zodat deze kan niet worden herkend en gebruikt in de [https://www.semantic-mediawiki.org/wiki/Help:Schema schemanaamruimte].", + "smw-schema-error-type-unknown": "Het type “$1” is niet geregistreerd en kan niet worden gebruikt voor inhoud in de naamruimte [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-error-json": "JSON-fout: “$1”", + "smw-schema-error-input": "Bij de invoervalidatie zijn de volgende problemen aangetroffen. Deze moeten worden opgelost voordat de inhoud kan worden opgeslagen. De [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling hulppagina over schema’s] kan advies geven over het wegnemen van tegenstrijdigheden of het oplossen van problemen met de schema-invoer.", + "smw-schema-error-input-schema": "Aan de hand van het validatieschema '''$1''' zijn de volgende tegenstrijdigheden aangetroffen. Deze moeten worden verholpen voordat de inhoud kan worden opgeslagen. De [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling hulppagina over schema’s] kan advies geven over het oplossen van deze problemen.", + "smw-schema-error-title-prefix": "Voor dit schematype is vereist dat de titel van het schema begint met het voorvoegsel “$1”.", + "smw-schema-validation-error": "Het type “$1” is niet geregistreerd en kan niet worden gebruikt voor inhoud in de naamruimte [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-validation-schema-title": "JSON-schema", + "smw-schema-summary-title": "Samenvatting", + "smw-schema-title": "Schema", + "smw-schema-usage": "Gebruik", + "smw-schema-type": "Type schema", + "smw-schema-type-description": "Beschrijving type", + "smw-schema-description": "Beschrijving schema", + "smw-schema-description-link-format-schema": "Dit schematype ondersteunt de definitie van kenmerken voor het aanmaken van contextgevoelige koppelingen in verband met een aan een [[Property:Formatter schema|formatteerschema]] toegewezen eigenschap.", + "smw-schema-description-search-form-schema": "Dit schematype ondersteunt de definitie van invoerformulieren en kenmerken voor het profiel [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch uitgebreid zoeken], waar het instructies bevat over het genereren van invoervelden, het definiëren van standaardnaamruimten, of het declareren van voorvoegsel-expressies voor een zoekopdracht.", + "smw-schema-description-property-profile-schema": "Dit schematype ondersteunt de definitie van een profiel om kenmerken te declareren voor de toegewezen eigenschap en de bijbehorende annotatiewaarden.", + "smw-schema-description-facetedsearch-profile-schema": "Dit schematype ondersteunt het definiëren van profielen die worden gebruikt als onderdeel van de omgeving voor [[Special:FacetedSearch|gefacetteerd zoeken]].", + "smw-schema-description-property-group-schema": "Dit schematype ondersteunt de definitie van [https://www.semantic-mediawiki.org/wiki/Help:Property_group eigenschapsgroepen] om de [https://www.semantic-mediawiki.org/wiki/Help:Special:Browse browsing-interface] te helpen structureren", + "smw-schema-description-property-constraint-schema": "Dit ondersteunt de definitie van beperkingsregels voor een eigenschapsinstantie en voor de waarden die eraan zijn toegewezen.", + "smw-schema-description-class-constraint-schema": "Dit schematype ondersteunt de definitie van beperkingsregels voor een klasse-instantie (ook wel categorie genoemd).", + "smw-schema-tag": "{{PLURAL:$1|Tag|Tags}}", + "smw-property-predefined-constraint-schema": "“$1” is een voorgedefinieerde eigenschap die een beperkingsschema definieert. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-desc": "“$1” is een voorgedefinieerde eigenschap waarin een schemabeschrijving wordt opgeslagen. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-def": "“$1” is een voorgedefinieerde eigenschap waarin de schema-inhoud wordt opgeslagen. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-tag": "“$1” is een voorgedefinieerde eigenschap waarmee een verzameling schema’s wordt geïdentificeerd. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-schema-tag": "Een label dat schema’s van vergelijkbare inhoud of kenmerken identificeert.", + "smw-property-predefined-schema-type": "“$1” is een voorgedefinieerde eigenschap die een type beschrijft om een groep schema’s te onderscheiden. Deze eigenschap wordt geleverd door [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-schema-type": "Elk [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type type] biedt zijn eigen interpretatie van syntaxiselementen en toepassingsregels en kan worden uitgedrukt met behulp van een [https://www.semantic-mediawiki.org/wiki/Help:Schema#validation validatieschema].", + "smw-ask-title-keyword-type": "Zoeken op sleutelwoorden", + "smw-ask-message-keyword-type": "Deze zoekopdracht past bij de voorwaarde $1.", + "smw-remote-source-unavailable": "Kan geen verbinding maken met het externe doel “$1”.", + "smw-remote-source-disabled": "De bron '''$1''' heeft de ondersteuning voor verzoeken op afstand uitgeschakeld!", + "smw-remote-source-unmatched-id": "De bron '''$1''' gebruikt een versie van Semantic MediaWiki die geen externe verzoeken kan ondersteunen.", + "smw-remote-request-note": "Het resultaat wordt opgevraagd bij de externe bron '''$1''' en het is waarschijnlijk dat de gegenereerde inhoud informatie bevat die niet beschikbaar is vanuit de huidige wiki.", + "smw-remote-request-note-cached": "Het resultaat is '''in de cache''' van de externe bron '''$1''' opgeslagen en het is waarschijnlijk dat de gegenereerde inhoud informatie bevat die niet beschikbaar is vanuit de huidige wiki.", + "smw-parameter-missing": "Parameter \"$1\" ontbreekt.", + "smw-property-tab-usage": "Gebruik", + "smw-property-tab-profile-schema": "Profielschema", + "smw-property-tab-redirects": "Synoniemen", + "smw-property-tab-subproperties": "Subeigenschappen", + "smw-property-tab-errors": "Onjuiste toewijzingen", + "smw-property-tab-constraint-schema": "Beperkingsschema", + "smw-property-tab-constraint-schema-title": "Gecompileerd beperkingsschema", + "smw-property-tab-specification": "... meer", + "smw-concept-tab-list": "Lijst", + "smw-concept-tab-errors": "Fouten", + "smw-ask-tab-result": "Resultaat", + "smw-ask-tab-extra": "Extra", + "smw-ask-tab-debug": "Foutopsporing", + "smw-ask-tab-code": "Code", + "smw-install-incomplete-tasks-title": "Onvolledige administratieve taken", + "smw-install-incomplete-intro": "Er {{PLURAL:$2|is één|zijn $2}} onvoltooide of [[Special:PendingTaskList|openstaande]] {{PLURAL:$2|taak, die nodig is|taken, die nodig zijn}} om het {{PLURAL:$1|installeren|bijwerken}} van [https://www.semantic-mediawiki.org Semantic MediaWiki] te voltooien. Een beheerder of gebruiker met voldoende rechten kan deze uitvoeren. Dit moet worden gedaan voordat nieuwe gegevens worden toegevoegd om tegenstrijdigheden te voorkomen.", + "smw-install-incomplete-intro-note": "Dit bericht verdwijnt nadat alle relevante taken zijn afgerond.", + "smw-pendingtasks-intro-empty": "Er zijn geen taken geclassificeerd als in behandeling, onvoltooid of openstaand in verband met Semantic MediaWiki.", + "smw-pendingtasks-intro": "Op deze pagina staat informatie over taken die zijn geclassificeerd als in behandeling, onvolledig of openstaand in verband met Semantic MediaWiki.", + "smw-pendingtasks-setup-no-tasks-intro": "De installatie (of het bijwerken) is voltooid. Momenteel zijn er geen lopende of openstaande taken.", + "smw-pendingtasks-tab-setup": "Installatie", + "smw-updateentitycollation-incomplete": "De [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] zetting werd recent gewijzigd en vereist dat het [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php] script uitgevoerd wordt zodat entiteiten geüpdated worden en de juiste sorteerveldwaarde bevatten.", + "smw-updateentitycountmap-incomplete": "Het veld smw_countmap is toegevoegd in een onlangs uitgebrachte versie en vereist dat het script [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php] wordt uitgevoerd zodat functies toegang kunnen krijgen tot de inhoud van dit veld.", + "smw-populatehashfield-incomplete": "Het invullen van het veld smw_hash is overgeslagen tijdens de installatie. Het script [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] moet worden uitgevoerd.", + "smw-install-incomplete-populate-hash-field": "Het invullen van het veld smw_hash is overgeslagen tijdens de installatie. Het script [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] moet worden uitgevoerd.", + "smw-install-incomplete-elasticstore-indexrebuild": "Er is voor ElasticStore gekozen als [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore standaardwinkel], maar de uitbreiding kon geen aanwijzing vinden dat het script [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] is uitgevoerd. Voer dat script uit zoals is aangegeven.", + "smw-elastic-rebuildelasticindex-run-incomplete": "Er is voor ElasticStore gekozen als [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore standaardwinkel], maar de uitbreiding kon geen aanwijzing vinden dat het script [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] is uitgevoerd. Voer dat script uit zoals is aangegeven.", + "smw-pendingtasks-setup-intro": "Na het {{PLURAL:$1|installeren|bijwerken}} van Semantic MediaWiki zijn de volgende taken als [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade onvoltooid] aangemerkt. Een beheerder (of andere gebruiker met voldoende rechten) moet deze taken voltooien voordat gebruikers weer inhoud kunnen aanmaken of bewerken.", + "smw-pendingtasks-setup-tasks": "Taken", + "smw-filter-count": "Aantal filters", + "smw-es-replication-check": "Replicatiecontrole (Elasticsearch)", + "smw-es-replication-error": "Replicatieprobleem Elasticsearch", + "smw-es-replication-file-ingest-error": "Probleem met bestandsinname", + "smw-es-replication-maintenance-mode": "Onderhoud Elasticsearch", + "smw-es-replication-error-missing-id": "Uit de replicatiecontrole is gebleken dat het artikel “$1” (ID: $2) ontbreekt in de Elasticsearch-backend.", + "smw-es-replication-error-divergent-date": "Uit de replicatiecontrole is gebleken dat voor het artikel “$1” (ID: $2) de wijzigingsdatum een discrepantie vertoont.", + "smw-es-replication-error-divergent-date-short": "De volgende datuminformatie is gebruikt voor de vergelijking:", + "smw-es-replication-error-divergent-date-detail": "Wijzigingsdatum waarnaar wordt verwezen:\n*Elasticsearch: $1 \n*Database: $2", + "smw-es-replication-error-divergent-revision": "Uit de replicatiecontrole is gebleken dat voor het artikel “$1” (ID: $2) de bijbehorende versie een discrepantie vertoont.", + "smw-es-replication-error-divergent-revision-short": "De volgende gegevens m.b.t. bijbehorende versies zijn gebruikt voor de vergelijking:", + "smw-es-replication-error-divergent-revision-detail": "Bijbehorende versie waarnaar wordt verwezen:\n*Elasticsearch: $1 \n*Database: $2", + "smw-es-replication-error-maintenance-mode": "De Elasticsearch-replicatie is momenteel beperkt omdat Elasticsearch in een [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode onderhoudsmodus] werkt. Wijzigingen in entiteiten en pagina’s zijn niet meteen zichtbaar en de zoekresultaten kunnen verouderde informatie bevatten.", + "smw-es-replication-error-no-connection": "Er kunnen geen replicatiecontroles worden verricht omdat er geen verbinding met de Elasticsearch-cluster tot stand kan worden gebracht.", + "smw-es-replication-error-bad-request-exception": "Bij het tot stand brengen van een verbinding is van Elasticsearch een fout m.b.t. een ongeldig verzoek uitgegaan (“400 conflict http error”), wat aangeeft dat er een aanhoudend probleem is tijdens replicatie- en zoekaanvragen.", + "smw-es-replication-error-other-exception": "Bij het tot stand brengen van een verbinding is van Elasticsearch een fout uitgegaan: “$1”.", + "smw-es-replication-error-suggestions": "Er wordt voorgesteld om de pagina te bewerken of op te schonen om de discrepantie weg te nemen. Als het probleem zich blijft voordoen, controleer dan de Elasticsearch-cluster zelf (allocator, fouten, schijfruimte, enz.).", + "smw-es-replication-error-suggestions-maintenance-mode": "Er wordt voorgesteld om contact op te nemen met de wikibeheerder om te kijken of het systeem momenteel bezig is met het [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild opnieuw opbouwen van de index] of de refresh_interval niet is ingesteld op de verwachte standaardwaarde.", + "smw-es-replication-error-suggestions-no-connection": "Er wordt voorgesteld om contact op te nemen met de wikibeheerder en het probleem “geen verbinding” te melden.", + "smw-es-replication-error-suggestions-exception": "Kijk in de logboeken voor informatie over de status van Elasticsearch, de indices ervan, en mogelijke problemen met verkeerde instellingen.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "Uit de replicatiecontrole is gebleken dat in “$1” de annotatie [[Property:File attachment|Bestandsbijlage]] ontbreekt, wat aangeeft dat het proces voor bestandsinname niet is gestart of nog niet is voltooid.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "Zorg ervoor dat de taak [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion bestandsinname] wordt gepland en uitgevoerd voordat de annotatie en bestandsindex beschikbaar worden gemaakt.", + "smw-report": "Verslag", + "smw-legend": "Legenda", + "smw-datavalue-constraint-schema-category-invalid-type": "Het geannoteerde schema “$1” is ongeldig voor een categorie. Een type “$2” is vereist.", + "smw-datavalue-constraint-schema-property-invalid-type": "Het geannoteerde schema “$1” is ongeldig voor een eigenschap. Een type “$2” is vereist.", + "smw-entity-examiner-check": "In de achtergrond {{PLURAL:$1|draait momenteel een proces|draaien momenteel $1 processen}} voor entiteitscontrole", + "smw-entity-examiner-indicator": "Paneel voor entiteitsproblemen", + "smw-entity-examiner-deferred-check-awaiting-response": "De controle “$1” wacht momenteel een antwoord af van de backend.", + "smw-entity-examiner-deferred-elastic-replication": "Elasticsearch", + "smw-entity-examiner-deferred-constraint-error": "Beperking", + "smw-entity-examiner-associated-revision-mismatch": "Versie", + "smw-entity-examiner-deferred-fake": "Nep", + "smw-entity-examiner-indicator-suggestions": "Als onderdeel van de entiteitscontrole {{PLURAL:$1|is het volgende probleem|zijn de volgende problemen}} gevonden. Het wordt aanbevolen {{PLURAL:$1|het probleem|de problemen}} nauwkeurig te bekijken en de nodige maatregelen te treffen.", + "smw-indicator-constraint-violation": "Beperking{{PLURAL:$1||en}}", + "smw-indicator-revision-mismatch": "Versie", + "smw-indicator-revision-mismatch-error": "Bij de controle op de [https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner bijbehorende versie] is een discrepantie aangetroffen tussen de versie waarnaar in MediaWiki wordt verwezen en de versie die in Semantic MediaWiki aan deze entiteit is gekoppeld.", + "smw-indicator-revision-mismatch-comment": "Een afwijking duidt er normaal gesproken op dat een of ander proces de opslagbewerking in Semantic MediaWiki heeft onderbroken. Het wordt aanbevolen de serverlogboeken te bekijken en te zoeken naar foutmeldingen of storingen.", + "smw-facetedsearch-intro-text": "Met het [https://www.semantic-mediawiki.org/wiki/Faceted_search gefacetteerd zoeken] in Semantic MediaWiki kunnen gebruikers snel en eenvoudig op basis van een gestelde voorwaarde de zoekresultaten beperken. De weergave wordt daarbij aan de hand van de afhankelijke eigenschappen en categorieën in facetten verdeeld.", + "smw-facetedsearch-intro-tips": "*Met category:?, property:? of concept:? vindt u de beschikbare categorieën, eigenschappen of concepten om een voorwaarde mee samen te stellen\n*Gebruik de syntaxis van #ask om een voorwaarde te beschrijven (bv. [[Category:Foo]])\n*Met “OR” (of), “AND” (en) of andere zoekexpressies maakt u complexe voorwaarden\n*Met expressies zoals in: of phrase: kan in de volledige tekst of ongestructureerd worden gezocht, indien het uitgekozen [https://www.semantic-mediawiki.org/wiki/Query_engine zoekmechanisme] die expressies kan hanteren", + "smw-facetedsearch-profile-label-default": "Standaardprofiel", + "smw-facetedsearch-intro-tab-explore": "Verkennen", + "smw-facetedsearch-intro-tab-search": "Zoeken", + "smw-facetedsearch-explore-intro": "Kies een verzameling en kijk erin rond.", + "smw-facetedsearch-profile-options": "Profielopties", + "smw-facetedsearch-size-options": "Pagineringsopties", + "smw-facetedsearch-order-options": "Volgorde-opties", + "smw-facetedsearch-format-options": "Weergaveopties", + "smw-facetedsearch-format-table": "Tabel", + "smw-facetedsearch-input-filter-placeholder": "Filteren…", + "smw-facetedsearch-no-filters": "Geen filters.", + "smw-facetedsearch-no-filter-range": "Geen filterbereik.", + "smw-facetedsearch-no-output": "Voor het gekozen formaat “$1” is geen uitvoer beschikbaar.", + "smw-facetedsearch-clear-filters": "Filter{{PLURAL:$1||s}} wissen", + "smw-search-placeholder": "Zoeken…", + "smw-listingcontinuesabbrev": "meer", + "smw-showingresults": "Hieronder {{PLURAL:$1|staat '''1''' resultaat|staan '''$1''' resultaten}} vanaf #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/nn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/nn.json new file mode 100644 index 0000000..1199786 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/nn.json @@ -0,0 +1,180 @@ +{ + "@metadata": { + "authors": [ + "Gunnernett", + "Harald Khan", + "Jon Harald Søby", + "Neuraxıs", + "Njardarlogar", + "Ranveig" + ] + }, + "smw_viewasrdf": "RDF-mating", + "smw_finallistconjunct": " og", + "smw_isspecprop": "Denne eigenskapen er ein spesialeigenskap på denne wikien", + "smw_concept_description": "Skildring av konseptet «$1»", + "smw_no_concept_namespace": "Konsept kan berre bli definerte frå sider i Concept:-namnerommet.", + "smw_multiple_concepts": "Kvar konseptsida kan berre ha éin konseptdefinisjon.", + "smw_concept_cache_miss": "Konseptet «$1» kan ikkje bli nytta for augneblinken, då wikikonfigurasjonen krev at det blir sett saman fråkopla.\nOm problemet ikkje går vekk etter noko tid, be sideadministratoren om å gjera dette konseptet tilgjengleg.", + "smw_baduri": "URI-ar på forma «$1» er ikkje tillatne.", + "smw_printername_count": "Tel opp resultata", + "smw_printername_csv": "CSV eksport", + "smw_printername_json": "JSON eksport", + "smw_printername_list": "Liste", + "smw_printername_ol": "Nummerering", + "smw_printername_ul": "Objektisering", + "smw_printername_table": "Tabell", + "smw_printername_broadtable": "Brei tabell", + "smw_printername_template": "Mal", + "smw_printername_category": "Kategori", + "validator-type-class-SMWParamSource": "tekst", + "smw-paramdesc-link": "Vis verdiar som lenkjar", + "smw-paramdesc-default": "Tekst som skal visast dersom det ikkje er nokon resultat for spørjinga", + "smw-paramdesc-embedonly": "Ikkje vis overskrifter", + "smw-paramdesc-table-transpose": "Vis tabelloverskrifter vertikalt og resultat horisontalt", + "smw-paramdesc-dsv-filename": "Namnet på DSV-fila", + "smw-paramdesc-filename": "Namnet på utdatafila", + "smw-paramdesc-sort": "Eigenskap som spørjinga skal sorterast etter", + "smw-paramdesc-order": "Sorteringsrekkjefølgje for spørjinga", + "smw-paramdesc-named_args": "Namngje parametrane for malen", + "smw-paramdesc-export": "Eksportval", + "smw-printername-feed": "RSS- og Atom-straum", + "smw-paramdesc-feedtype": "Straumtype", + "smw_iq_disabled": "Semantiske spørjingar har blitt slegne av på denne wikien.", + "smw_iq_moreresults": "… fleire resultat", + "smw_parseerror": "Den gjevne verdien blei ikkje forstått.", + "smw_decseparator": ",", + "smw_kiloseparator": ".", + "smw_notitle": "«$1» kan ikkje bli nytta som sidenamn på denne wikien.", + "smw_wrong_namespace": "Berre sider i namnerommet «$1» er tillatne her.", + "smw_manytypes": "Meir enn éin type definert for eigenskapen.", + "smw_emptystring": "Tomme strenger blir ikkje godtekne.", + "smw_notinenum": "«$1» er ikkje i lista over moglege verdiar ($2) for denne eigenskapen.", + "smw_noboolean": "«$1» blir ikkje kjend att som ein Boolean-verdi (sant/usant).", + "smw_true_words": "true,t,yes,y,ja,j,sant,s", + "smw_false_words": "false,f,no,n,nei,usant,u", + "smw_nofloat": "«$1» er ikkje eit tal.", + "smw_infinite": "Tal so store som «$1» er ikkje støtta.", + "smw_nodatetime": "Datoen «$1» vart ikkje forstått.", + "smw_toomanyclosing": "«$1» finst for mange gonger i spørjinga.", + "smw_noclosingbrackets": "Nokre klammar i spørjinga di («[[») vart ikkje lukka påfølgjande klammar («]]»).", + "smw_misplacedsymbol": "Symbolet «$1» vart nytta på ein stad der det ikkje er gagnleg.", + "smw_unexpectedpart": "«$1»-delen av spørjinga var uforståeleg.\nResultata kan vera uventa.", + "smw_emptysubquery": "Ei underspørjing har ikkje gyldige føresetnader.", + "smw_misplacedsubquery": "Ei underspørjing vart nytta på ein stad der underspørjingar ikkje er tillatne.", + "smw_valuesubquery": "Underspørjingar er ikkje støtta for verdiar av eigenskapen «$1».", + "smw_badqueryatom": "Ein lut («[[…]]») av spørjinga vart ikkje forstått.", + "smw_propvalueproblem": "Verdien av eigenskapen «$1» vart ikkje forstått.", + "smw_noqueryfeature": "Nokre spørjefunksjonar er ikkje støtta på denne wikien, og luter av spørjinga vart difor hoppa over ($1).", + "smw_noconjunctions": "Konjunksjonar i spørjingar er ikkje støtta på denne wikien, og luter av spørjinga vart difor hoppa over ($1).", + "smw_nodisjunctions": "Disjunksjonar i spørjingar er ikkje støtta på denne wikien, og luter av spørjinga vart difor hoppa over ($1).", + "smw_querytoolarge": "Følgjande spørjeføresetnader kunne ikkje verta teke omsyn til grunna avgrensingane til wikien når det gjeld spørjestorleik eller djupn: $1", + "smw_notemplategiven": "Oppgje ein verdi for parameteren «mal» for at dette spørjeformatet skal verka.", + "smw_type_header": "Eigenskapar av typen «$1»", + "smw_typearticlecount": "Syner {{PLURAL:$1|éin eigenskap|$1 eigenskapar}} som nyttar denne typen.", + "smw_attribute_header": "Sider som nyttar eigenskapen «$1»", + "smw_attributearticlecount": "Syner {{PLURAL:$1|éi sida|$1 sider}} som nyttar denne eigenskapen.", + "exportrdf": "Eksporter sider til RDF", + "smw_exportrdf_docu": "Denne sida lèt deg skaffa data frå ei sida i RDF-format.\nSkriv inn titlar i tekstboksten nedanfor for å eksportera sider, éin tittel per linja.", + "smw_exportrdf_recursive": "Eksporter alle relaterte sider rekursivt.\nMerk at resultatet kan vera stort.", + "smw_exportrdf_backlinks": "Eksporter òg alle sider som refererer til dei eksporterte sidene.\nLagar ein RDF som ein kan gå gjennom.", + "smw_exportrdf_lastdate": "Ikkje eksporter sider som ikkje vart endra sidan det oppgjevne tidspunktet.", + "smw_exportrdf_submit": "Eksport", + "uriresolver": "URI-løysar", + "properties": "Eigenskapar", + "smw-categories": "Kategoriar", + "smw_properties_docu": "Følgjande eigenskapar er nytta på wikien.", + "smw_property_template": "$1 av typen $2 ($3)", + "smw_propertylackspage": "Alle eigenskapar burde vore skildra av ei sida.", + "smw_propertylackstype": "Ingen type blei oppgjeven for denne eigenskapen (reknar med at typen er $1 mellombels)", + "smw_propertyhardlyused": "Denne eigenskapen blir knapt nytta på wikien!", + "smw-sp-property-searchform": "Vis eigenskapar som inneheld:", + "concepts": "Omgrep", + "smw-special-concept-header": "Liste over omgrep", + "unusedproperties": "Unytta eigenskapar", + "smw-unusedproperties-docu": "Dei følgjande eigenskpane finst, sjølv om ingen andre sider nyttar dei.", + "smw-unusedproperty-template": "$1 av typen $2", + "wantedproperties": "Ynskte eigenskapar", + "smw-wantedproperties-docu": "Dei følgjande eigenskapen er nytta på wikien, men har ikkje sider som skildrar dei.", + "smw-wantedproperty-template": "$1 (nytta {{PLURAL:$2|éin gong|$2 gonger}})", + "smw_purge": "Oppfrisk", + "types": "Typar", + "smw_types_docu": "Fylgjande er ei lista over alle datatypar som eigenskapar kan ha.\nKvar datatype har ei sida der ekstra informasjon kan verta oppgjeven.", + "smw-special-types-no-such-type": "Den angjevne datatypen finst ikkje", + "smw_uri_doc": "URI-løysaren implementerer [$1 finning av W3C TAG-ar på «httpRange-14»].\nHan syter for at menneske ikkje vert til nettstader.", + "ask": "Semantisk søk", + "smw_ask_sortby": "Sorter etter kolonne (valfritt)", + "smw_ask_ascorder": "Stigande", + "smw_ask_descorder": "Søkkjande", + "smw_ask_submit": "Finn resultat", + "smw_ask_editquery": "Brigd spørjing", + "smw_add_sortcondition": "[Legg til sorteringsføresetnader]", + "smw_ask_hidequery": "Løyn spørjing", + "smw_ask_help": "Spørjehjelp", + "smw_ask_queryhead": "Spørjing", + "smw_ask_printhead": "Ekstra utskrifter (valfritt)", + "smw_ask_format_as": "Formatér som:", + "smw_ask_defaultformat": "standard", + "smw_ask_otheroptions": "Andre valhøve", + "searchbyproperty": "Søk etter eigenskap", + "smw_sbv_docu": "Søk etter alle sider som har ein viss eigenskap og verdi.", + "smw_sbv_novalue": "Skriv inn ein gyldig verdi for eigenskapen, eller sjå alle eigenskapsverdiar for «$1».", + "smw_sbv_displayresultfuzzy": "Ei lista over alle sider som har eigenskapen «$1» med verdien «$2».\nSidan det berre kom fram nokre få resultat er òg nære verdiar viste.", + "smw_sbv_property": "Eigenskap:", + "smw_sbv_value": "Verdi:", + "smw_sbv_submit": "Finn resultat", + "browse": "Bla gjennom wikien", + "smw_browselink": "Bla gjennom eigenskapar", + "smw_browse_article": "Skriv inn namnet på sida du vil starta å bla frå.", + "smw_browse_go": "Gå", + "smw_browse_show_incoming": "syn eigenskapar som lenkjar hit", + "smw_browse_hide_incoming": "løyn eigenskapar som lenkjar hit", + "smw_browse_no_outgoing": "Denne sida har ingen eigenskapar.", + "smw_browse_no_incoming": "Ingen eigenskapar lenkjar til denne sida.", + "smw_inverse_label_default": "$1 av", + "smw_inverse_label_property": "Vrengd eigenskapsmerke", + "pageproperty": "Sideeigenskapssøk", + "smw_pp_docu": "Søk etter all eigenskapstekst på ei viss side.\nSkriv inn både sidenamn og eigenskap.", + "smw_pp_from": "Frå side", + "smw_pp_type": "Eigenskap", + "smw_pp_submit": "Finn resultat", + "smw_result_prev": "Førre", + "smw_result_next": "Neste", + "smw_result_results": "Resultat", + "smw_result_noresults": "Fann ingen resultat.", + "smwadmin": "Administratorfunksjonar for Semantic MediaWiki", + "smw-admin-setupsuccess": "Lagringseininga blei sett opp.", + "smw_smwadmin_return": "Attende til $1", + "smw_smwadmin_updatestarted": "Ein ny oppdateringsprosses for å oppfriska dei semantiske dataa blei starta.\nAlle lagra data vil bygt om eller reparert der det trengst.\nDu kan fylgja med på framgangen til oppdateringa på denne spesialsida.", + "smw_smwadmin_updatenotstarted": "Ein oppdateringsprosses køyrer frå før.\nStartar ikkje ein ny ein.", + "smw_smwadmin_updatestopped": "Alle eksisterande oppdateringsprosessar har blitt stoppa.", + "smw_smwadmin_updatenotstopped": "For å stoppa oppdateringsprosessen som køyrer, må du markera boksen for å syna at du verkeleg meiner det.", + "smw-admin-docu": "Denne spesialsida hjelper deg under installering og oppgradering av Semantic MediaWiki.\nHugs å ta kopiar av viktige data før du køyrer administrerande funksjonar.", + "smw-admin-db": "Databaseinnstallering og -oppgradering", + "smw-admin-dbdocu": "Semantic MediaWiki krev nokre utvidingar i MediaWiki-databasen for å kunna lagra semantiske data.\nFunksjonen under syter for at databasen din er sett opp rett.\nEndringar gjort i dette steget har ikkje nokon effekt på resten av MediaWiki-databasen og kan enkelt rullast attende om det skulle vera ynskjeleg.\nDenne oppsettsfunksjonen kan køyrast fleire gongen utan at ein gjer nokon skade, men han trengst berre éin gong under installering eller oppgradering.", + "smw-admin-permissionswarn": "Om operasjonen mislukkast med SQL-feil, har sannsynlegvis ikkje databasebrukaren nytta av wikien din dei rette løyva (sjekk LocalSettings.php).\nAnten gje denne brukaren dei rette løyva til å oppretta og sletta tabellar og mellombels skriv inn innloggingsinformasjonen til database-rooten din i LocalSettings.php, eller køyr vedlikehaldsskriptet setupStore.php som kan nytta løyva til AdminSettings.php.", + "smw-admin-dbbutton": "Set i verk eller oppgrader tabellar", + "smw-admin-announce": "Kunngjer wikien din", + "smw-smwadmin-refresh-title": "Datareparasjon- og oppdatering", + "smw_smwadmin_datarefresh": "Dataombygging", + "smw_smwadmin_datarefreshdocu": "Det er mogleg å få attende alle Semantic MediaWiki-dataa basert på det noverande innahaldet til wikien.\nDette kan vera nyttig for å reparera øydelagde data eller for å oppfriska dataa om det interne formatet har blitt endra grunna programvareoppdatering.\nOppdateringa blir utført sida for sida og vil ikkje vera ferdig med ein gong.\nDet fylgjande syner om ei oppdatering er på gong og lèt deg byrja eller stoppa oppdateringar (viss ikkje denne moglegheita er deaktivert av sideadministratoren).", + "smw_smwadmin_datarefreshprogress": "Ei oppdatering held allereie på.\nDet er normalt at oppdateringa går sakte då ho berre oppfriskar data i små bitar kvar gong ein brukar er innom wikien.\nFor å fullføra denne oppdateringa på ein kjappare måte, kan du setja i gang MediaWiki-vedlikehaldsskriptet runJobs.php (nytt valet --maxjobs 1000 for å avgrensa talet på oppdetaringar som blir gjort i eitt stykke).\nEstimert framdrift på den noverande oppdateringa:", + "smw_smwadmin_datarefreshbutton": "Start oppdatering", + "smw_smwadmin_datarefreshstop": "Stopp denne oppdateringa", + "smw_smwadmin_datarefreshstopconfirm": "Ja, eg er sikker.", + "smw-admin-support": "Får støtta", + "smw-admin-supportdocu": "Diverse ressursar kan kanskje hjelpa deg om du skulle få problem:", + "smw-admin-installfile": "Om du møter på problem under installeringa, start med å studera retningslinene i INSTALL-fila.", + "smw-admin-smwhomepage": "Den komplette brukardokumentasjonen for Semantic MediaWiki finn du på semantic-mediawiki.org.", + "smw-admin-bugsreport": "Feil kan bli rapporterte til GitHub.", + "smw-admin-questions": "Om du har fleire spørsmål eller forslag, bli med i diskusjonen på Semantic MediaWiki-brukarforumet.", + "smw-createproperty-isproperty": "Dette er ein eigenskap av typen $1.", + "smw-createproperty-allowedvals": "Dei tillatne verdiane for denne eigenskapen er:", + "smw_unknowntype": "Typen «$1» som er definert for eigenskapen er ikkje støtta.", + "smw_concept_header": "Sider av konseptet «$1»", + "smw_conceptarticlecount": "Syner nedanfor {{PLURAL:$1|éi side|$1 sider}}", + "smw-livepreview-loading": "Lastar inn …", + "smw-type-tab-properties": "Eigenskapar", + "smw-listingcontinuesabbrev": "vidare", + "smw-showingresults": "Nedanfor er opp til {{PLURAL:$1|eitt|$1}} resultat som byrjar med nummer $2 vist{{PLURAL:$1||e}}." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/oc.json b/mediawiki/extensions/SemanticMediaWiki/i18n/oc.json new file mode 100644 index 0000000..6359454 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/oc.json @@ -0,0 +1,229 @@ +{ + "@metadata": { + "authors": [ + "COMISSIONTOPOC", + "Cedric31", + "Guilhelma", + "Kghbln", + "Nemo bis", + "Nicolas Eynaud", + "Unuaiga", + "아라" + ] + }, + "smw-desc": "Rendre lo wiki mai accessible - per las maquinas ''e'' los umans ([https://www.semantic-mediawiki.org/wiki/Help:User_manual documentacion en linha])", + "smw_viewasrdf": "Veire coma RDF", + "smw_finallistconjunct": " e", + "smw_isspecprop": "Aquesta proprietat es una proprietat especiala sus aqueste wiki.", + "smw-concept-no-cache": "Cap de cache pas disponible.", + "smw_concept_description": "Descripcion del concèpte « $1 »", + "smw_no_concept_namespace": "Los concèptes pòt unicament èsser definits dins la pagina dins lo Concèpte : espaci de nom.", + "smw_multiple_concepts": "Cada pagina de concèpte pòt pas aver qu’una sola definicion.", + "smw_concept_cache_miss": "Lo concèpte « $1 » pòt pas èsser utilizat pel moment, perque la configuracion del wiki requerís que siá aviat fòra linha. Se lo problèma persistís aprèp qualques instants, demandatz a vòstre administrator del site de rendre disponible aqueste concèpte.", + "smw_noinvannot": "Las valors pòdon pas èsser allogadas per inversar de proprietats.", + "smw_baduri": "O planhèm. Las URIs del domeni $1 son pas disponiblas a aqueste emplaçament", + "smw_printername_count": "Comptatge dels resultats", + "smw_printername_csv": "expòrt en CSV", + "smw_printername_dsv": "Exportar al format DSV", + "smw_printername_debug": "Requèste de debogatge (pels expèrts)", + "smw_printername_embedded": "Contengut de las paginas incrustadas", + "smw_printername_json": "expòrt en JSON", + "smw_printername_list": "Lista", + "smw_printername_ol": "Enumeracion", + "smw_printername_ul": "Detalh", + "smw_printername_table": "Tablèu", + "smw_printername_broadtable": "Taula larga", + "smw_printername_template": "Modèl", + "smw_printername_rdf": "Exportar al format RDF", + "smw_printername_category": "Categoria", + "validator-type-class-SMWParamSource": "tèxte", + "smw_iq_disabled": "O planhèm. Las recèrcas dins los articles d'aqueste wiki son pas autorizadas.", + "smw_iq_moreresults": "… autres resultats", + "smw_parseerror": "La donada indicada es pas estada compresa.", + "smw_notitle": "“$1” pòt pas èsser utilizat coma nom de pagina sus aqueste wiki.", + "smw_wrong_namespace": "Solas las paginas de l'espaci de noms « $1 » son autorizadas aicí.", + "smw_manytypes": "Maites tipes de donadas son estats assignats a l'atribut.", + "smw_emptystring": "Las cadenas voidas son pas acceptadas.", + "smw_notinenum": "« $1 » es pas dins la lista ($2) de las [[Property:Allows value|valors autorizadas]] per la proprietat « $3 ».", + "smw_noboolean": "\\\"$1\\\" es pas reconegut coma una valor boleana (verai/fals).", + "smw_true_words": "verai,v,òc,true", + "smw_false_words": "fals,f,non,false", + "smw_nofloat": "\"$1\" es pas un nombre.", + "smw_infinite": "Los nombres tant grands coma « $1 » son pas suportats.", + "smw_nodatetime": "La data \"$1\" es pas estada compresa.", + "smw_toomanyclosing": "Sembla que i a tròp d'ocuréncias de “$1” dins la requèsta.", + "smw_noclosingbrackets": "D'unes “[[” dins vòstra requèsta son pas estats clauses per de “]]” correspondents.", + "smw_misplacedsymbol": "Lo simbòl “$1” es estat utilizat a un endrech ont es pas util.", + "smw_unexpectedpart": "La partida “$1” de la requèsta es pas estada compresa. Los resultats pòdon èsser imprevists.", + "smw_emptysubquery": "D'unas sosrequèstas an una condicion invalida.", + "smw_misplacedsubquery": "D'unas sosrequèstas son estadas utilizadas a un endrech ont cap de sosrequèsta es pas permesa.", + "smw_valuesubquery": "Sosrequèsta pas suportada per las valors de la proprietat “$1”.", + "smw_badqueryatom": "Las partidas “[[…]]” de la requèsta son pas estadas compresas.", + "smw_propvalueproblem": "La valor de la proprietat “$1” es pas estada compresa.", + "smw_noqueryfeature": "Qualques foncionalitats de requèstas son pas suportadas sus aqueste wiki e una partida d’entre elas es estada levada ($1).", + "smw_noconjunctions": "Las conjoncions dins las requèstas son pas suportadas sus aqueste wiki e una partida d’entre elas es estada levada ($1).", + "smw_nodisjunctions": "Las disjoncions dins las requèstas son pas suportadas sus aqueste wiki e de partidas de la requèsta son estadas ignoradas($1).", + "smw_querytoolarge": "Las condicions seguentas de la requèsta an pas pogut èsser evaluadas en rason de las restriccions d'aqueste wiki a la talha o a la prigondor de las requèstas : $1.", + "smw_notemplategiven": "Provesissètz una valor pel paramètre « modèl » per aqueste format de requèsta per trabalhar.", + "smw_type_header": "Atributs de tipe “$1”", + "smw_typearticlecount": "Afichar {{PLURAL:$1|la proprietat qu'utiliza|las $1 proprietats qu'utilizan}} aqueste tipe.", + "smw_attribute_header": "Paginas utilizant l'atribut “$1”", + "smw_attributearticlecount": "Afichar {{PLURAL:$1|la pagina qu'utiliza|las $1 paginas qu'utilizan}} aquesta proprietat.", + "exportrdf": "Exportar l'article en RDF", + "smw_exportrdf_docu": "Sus aquesta pagina, de partidas del contengut d'un article pòdon èsser exportadas dins lo format RDF. Picatz lo nom de las paginas desiradas dins la bóstia de tèxte çaijós, un nom per linha .", + "smw_exportrdf_recursive": "Exportar tanben totas las paginas pertinentas d'un biais recursiu. Aquesta possibilitat pòt abotir a un fòrt grand nombre de resultats !", + "smw_exportrdf_backlinks": "Exportar tanben totas las paginas que renvian a de paginas exportadas. Produtz un RDF dins lo qual la navigacion es mai aisida.", + "smw_exportrdf_lastdate": "Exportar pas las paginas pas modificadas dempuèi lo moment indicat.", + "smw_exportrdf_submit": "Exportar", + "uriresolver": "Resolveire d'URI", + "properties": "Proprietats", + "smw-categories": "Categorias", + "smw_properties_docu": "Sus aqueste wiki, son utilizadas las proprietats seguentas.", + "smw_property_template": "$1 del tipe $2 ($3 {{PLURAL:$3|utilizacion|utilizacions}})", + "smw_propertylackspage": "Tota proprietat deuriá èsser descrita per una pagina !", + "smw_propertylackstype": "Cap de tipe es pas estat especificat per aquesta proprietat (tipe actualament supausat : $1).", + "smw_propertyhardlyused": "Aquesta proprietat es fòrça utilizada sus aqueste wiki !", + "concepts": "Concèptes", + "unusedproperties": "Proprietats inutilizadas", + "smw-unusedproperties-docu": "Las proprietats seguentas existisson, quitament se cap de pagina las utiliza pas.", + "smw-unusedproperty-template": "$1 de tipe $2", + "wantedproperties": "Proprietats demandadas", + "smw-wantedproperties-docu": "Las proprietats seguentas son utilizadas sus aqueste wiki mas an pas encara de pagina per las descriure.", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|utilizacion|utilizacions}})", + "smw_purge": "Reactualizar", + "types": "Tipes", + "smw_types_docu": "Aquò es una lista de totes los tipes de donadas que pòdon èsser assignats a las proprietats.", + "smw-statistics-property-instance": "{{PLURAL:$1|Valor|Valors}} de proprietat (total)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Proprietat|Proprietats}}]] (total)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Proprietat|Proprietats}} (total)", + "smw-statistics-property-page": "{{PLURAL:$1|Proprietat|Proprietats}} (enregistradas amb una pagina)", + "smw-statistics-property-type": "{{PLURAL:$1|Proprietat|Proprietats}} (assignadas a un tipe de donadas)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Requèsta|Requèstas}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|requèsta|requèstas}}]]", + "smw-statistics-query-size": "Talha de la requèsta", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Concèpte|Concèptes}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Concèpte|Concèptes}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|Possedís {{PLURAL:$1|un sosobjècte|de sosobjèctes}}]]", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Tipe de donadas|Tipes de donadas}}]]", + "smw_uri_doc": "Lo resolveire d'URI implementa la [$1 conclusion del TAG del W3C a prepaus del httpRange-14]. Se pòt assegurar que los umans vengan pas de sites web.", + "ask": "Recèrca semantica", + "smw_ask_sortby": "Triar per colomnas (opcional)", + "smw_ask_ascorder": "Creissent", + "smw_ask_descorder": "Descreissent", + "smw_ask_submit": "Trobar de resultats", + "smw_ask_editquery": "Editar la requèsta", + "smw_add_sortcondition": "[Apond las condicions de triada]", + "smw_ask_hidequery": "Amagar la requèsta", + "smw_ask_help": "Ajuda a la requèsta", + "smw_ask_queryhead": "Condicion", + "smw_ask_printhead": "Seleccion de las donadas d'imprimir", + "smw_ask_printdesc": "(apondre un nom de proprietat per linha)", + "smw_ask_format_as": "Formatar en :", + "smw_ask_defaultformat": "defaut", + "smw_ask_otheroptions": "Autras opcions", + "smw-ask-otheroptions-collapsed-info": "Utilizatz l'icòna \"plus\" per afichar totas las opcions disponiblas", + "smw_ask_show_embed": "Far veire lo còdi incrustat", + "smw_ask_hide_embed": "Amagar lo còdi incrustat", + "smw_ask_embed_instr": "Per incrustar aquesta requèsta dins una pagina wiki, utilizatz lo còdi çaijós.", + "smw-ask-delete": "Suprimir", + "smw-ask-sorting": "Triada", + "smw-ask-search": "Recercar", + "searchbyproperty": "Recercar per atribut", + "smw_sbv_docu": "Recercar totas las paginas qu'an un atribut donat amb una cèrta valor.", + "smw_sbv_novalue": "Picatz una valor o consultatz totas las valors dels atributs per $1.", + "smw_sbv_displayresultfuzzy": "Una lista de totas las paginas que son la proprietat « $1 » amb la valor « $2 ». Perque i a pas que qualques resultats, las valors pròchas tanben son afichadas.", + "smw_sbv_property": "Proprietat :", + "smw_sbv_value": "Valor :", + "smw_sbv_submit": "Trobar de resultats", + "browse": "Percórrer lo wiki", + "smw_browselink": "Cercar las proprietats", + "smw_browse_article": "Picatz lo nom de la pagina a partir de la quala volètz començar la navigacion.", + "smw_browse_go": "Validar", + "smw_browse_show_incoming": "afichar las proprietats que puntan aicí", + "smw_browse_hide_incoming": "amagar las proprietats que puntan aicí", + "smw_browse_no_outgoing": "Aquesta pagina a pas cap de proprietat.", + "smw_browse_no_incoming": "Cap de proprietat punta pas cap a aquesta pagina.", + "smw_inverse_label_default": "$1 de", + "smw_inverse_label_property": "Inversar lo labèl de proprietat", + "pageproperty": "Recercar dins las proprietats de la pagina", + "smw_pp_docu": "Picatz una pagina e una proprietat o solament una proprietat per recuperar totas las valors assignadas.", + "smw_pp_from": "De la pagina", + "smw_pp_type": "Proprietat :", + "smw_pp_submit": "Afichar los resultats", + "smw_result_prev": "Precedent", + "smw_result_next": "Seguent", + "smw_result_results": "Resultats", + "smw_result_noresults": "O planhèm, i a pas cap de resultats.", + "smwadmin": "Foncions d'administrator", + "smw-admin-setupsuccess": "Lo motor d'emmagazinatge es estat mes en plaça.", + "smw_smwadmin_return": "Tornar cap a $1", + "smw_smwadmin_updatestarted": "Un processús novèl pel refrescament de semantic data a començat.\nTotas las donadas estocadas seràn reconstruchas o quitament reparadas se necessari.\nPodètz seguir la progression de la mesa a jorn sus aquesta pagina especiala.", + "smw_smwadmin_updatenotstarted": "Un processús de mesa a jorn ja es en cors d’execucion.\nNe creetz pas d'autre.", + "smw_smwadmin_updatestopped": "Totes los processús de mesa a jorn son estats arrestats.", + "smw_smwadmin_updatenotstopped": "Per arrestar lo processús en cors de mesa a jorn, vos cal marcar la casa per indicar que ne sètz vertadièrament segur(a).\n\nTornar a $1 .", + "smw-admin-docu": "Aquesta pagina especiala vos ajuda pendent l’installacion, la mesa a jorn, la mantenença e l'utilizacion de Semantic MediaWiki e compòrta d'autras foncions e prètzfaits administratius e tanben d'estatisticas.\nDoblidetz pas de salvar vòstras donadas importantas abans d'executar de foncions d’administracion.", + "smw-admin-db": "Installacion e mesa a nivèl de la basa de donadas", + "smw-admin-dbdocu": "Semantic MediaWiki requerís maitas extensions per la basa de donadas MediaWiki en òrdre per emmagazinar las donadas de semantica.\nLa foncion çaijós verifica que vòstra basa de donadas es estada installada corrèctament.\nLas modificacions faitas al moment d'aquesta etapa afectaràn pas la rèsta de la basa de donadas Mediawiki, e pòt èsser desfaita a volontat.\nAquesta foncion d’installacion pòt èsser aviada mantun còp sens causar lo mendre degalh, mas una sola installacion o mesa e nivèl es necessària.", + "smw-admin-permissionswarn": "Se l’operacion fracassa amb d'errors SQL, l’utilizaire de la basa de donadas utilizada per vòstre wiki (agachatz vòstre LocalSettings.php) a probablament pas los dreits sufisents.\nCal siá permetre a aqueste utilizaire de dispausar de las permissions per crear e suprimir las taulas, siá entrar temporàriament la connexion en root a vòstra basa de donadas dins lo LocalSettings.php, siá utilizar l'escript de mantenença setupStore.php lo qual pòt utilizar las informacions de connexion d'un administrator.", + "smw-admin-dbbutton": "Inicializar o metre a nivèl las taulas", + "smw-admin-announce": "Anonciar vòstre wiki", + "smw_smwadmin_datarefresh": "Reconstruccion de las donadas", + "smw_smwadmin_datarefreshdocu": "Es possible de restablir totas las donadas Semantic MediaWiki basadas suls contenguts corrents d'aqueste wiki.\nAquò pòt èsser util per reparar de donadas rompudas o per refrescar las donadas se lo format intèrne a cambiat al moment de las remesas a nivèl.\nLa mesa a jorn es executada pagina per pagina e se serà pas acabada immediatament.\nLa pagina seguenta aficha se una mesa a jorn es en cors d’execucion e vos permet de començar o d’arrestar aquestas (levat s'aquesta foncionalitat est desactivada per l’administrator del site).", + "smw_smwadmin_datarefreshprogress": "Una mesa a jorn es a s’executar.\nEs normal qu’una mesa a jorn progresse lentament dempuèi que refresque unicament las donadas dins de troces pichons a cada còp qu’un utilizaire accedís al wiki.\nPer acabar aquesta actualizacion pus rapidament, podètz invocar l'escript de mantenença MediaWiki runJobs.php (utilizatz l’opcion --maxjobs 1000 per restrénher lo nombre de las mesas a jorn per escript aviat).\nProgression estimada de l’actualizacion actuala :", + "smw_smwadmin_datarefreshbutton": "Planificar la reconstruccion de las donadas", + "smw_smwadmin_datarefreshstop": "Arrestar aquesta mesa a jorn", + "smw_smwadmin_datarefreshstopconfirm": "Òc, ne soi {{GENDER:$1|segur|segura}}.", + "smw-admin-job-scheduler-note": "La màger part de las activitats dins aquesta seccion son faitas com de tascas per evitar las situacions de camin d'enlòc pendent l'execucion. Lo [https://www.mediawiki.org/wiki/Manual:Job_queue job scheduler] es responsable de l'execucion e es critic que l'escript de mantenença runJobs.php (veire tanben $wgRunJobsAsync) aja una capacitat adaptada.", + "smw-admin-outdateddisposal-active": "Una tasca de supression d'entitats obsoletas es estada planificada.", + "smw-admin-propertystatistics-active": "Una tasca de reconstruccion d'estatisticas de proprietat es estada planificada.", + "smw-admin-fulltext-active": "Una tasca de reconstruccion de la recèrca plen tèxte es estat planificat.", + "smw-admin-support": "Obténer d’ajuda", + "smw-admin-supportdocu": "Divèrsas ressorsas vos poirián ajudar en cas de problèmas :", + "smw-admin-installfile": "S'experimentatz de problèmas amb vòstra installacion, començatz per agachar lo guida en linha dins lo fichièr INSTALL.", + "smw-admin-smwhomepage": "La documentacion completa de l’utilizaire de Semantic MediaWiki se tròba sus semantic-mediawiki.org.", + "smw-admin-bugsreport": "Los bugs pòdon èsser senhalats sus GitHub.", + "smw-admin-questions": "Avètz d’autras questions o de suggestions, rejonhètz la discussion sul forum dels utilizaires de Semantic MediaWiki.", + "smw-admin-supplementary-settings-title": "Paramètres de configuracion", + "smw_adminlinks_datastructure": "Estructura de las donadas", + "smw_adminlinks_displayingdata": "Afichatge de las donadas", + "smw_adminlinks_inlinequerieshelp": "Ajuda sus las requèstas", + "smw-property-indicator-type-info": "Proprietat definida per l{{PLURAL:$1|'utilizaire|o sistèma}}", + "smw-createproperty-isproperty": "Aquò es una proprietat del tipe $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|La valor autorizada per aquesta proprietat es|Las valors autorizadas per aquesta proprietat son}} :", + "smw-paramdesc-category-delim": "Lo delimitador", + "smw-ui-tooltip-title-property": "Proprietat", + "smw-ui-tooltip-title-quantity": "Conversion d'unitat", + "smw-ui-tooltip-title-info": "Informacion", + "smw-ui-tooltip-title-service": "Ligams de servici", + "smw-ui-tooltip-title-warning": "Error", + "smw-ui-tooltip-title-parameter": "Paramètre", + "smw-ui-tooltip-title-event": "Eveniment", + "smw-ui-tooltip-title-note": "Nòta", + "smw-ui-tooltip-title-legend": "Legenda", + "smw-ui-tooltip-title-reference": "Referéncia", + "smw_unknowntype": "Lo tipe d'aquesta proprietat es invalid", + "smw_concept_header": "Paginas del concèpte « $1 »", + "smw_conceptarticlecount": "Afichar çaijós $1 {{PLURAL:$1|pagina|paginas}}.", + "group-smwadministrator": "Administrators (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|administrator|administratritz}} (Semantic MediaWiki)", + "grouppage-smwadministrator": "{{ns:project}}:Administrators (Semantic MediaWiki)", + "group-smwcurator": "Conservadors (MediaWiki Semantica)", + "smw-property-predefined-default": "\"$1\" es una proprietat predefinida.", + "smw-sp-properties-header-label": "Lista de las proprietats", + "smw-sp-admin-settings-button": "Generar la lista dels paramètres", + "smw-admin-objectid": "Id de l’objècte :", + "smw-livepreview-loading": "Cargament…", + "smw-sp-searchbyproperty-resultlist-header": "Lista de resultats", + "smw-datavalue-number-nullnotallowed": "\"$1\" tornat amb \"NULL\" qu'es pas una valor numerica autorizada.", + "log-name-smw": "Semantica del jornal MediaWiki", + "smw-types-list": "Lista dels tipes de donadas", + "smw-special-pageproperty-description": "Aquesta pagina provesís un interfaci de recerca per trobar totas las valors de la proprietat e una pagina especifica. D''autres interfacis de recerca comprenon [[Special:SearchByProperty|property search]] e [[Special:Ask|ask query builder]].", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|segonda|segondas}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|segonda|segondas}}", + "smw-datavalue-external-formatter-invalid-uri": "« $1 » es una URL invalida.", + "smw-datavalue-reference-outputformat": "$1 : $2", + "smw-parser-invalid-json-format": "L’analisador JSON a tornat un « $1 ».", + "smw-no-data-available": "Cap de donada pas disponibla.", + "smw-listingcontinuesabbrev": "(seguida)", + "smw-showingresults": "Afichatge de $1 resultat{{PLURAL:$1||s}} a partir del n°$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/olo.json b/mediawiki/extensions/SemanticMediaWiki/i18n/olo.json new file mode 100644 index 0000000..3bbde56 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/olo.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Mashoi7", + "Ruppijeva" + ] + }, + "smw-categories": "Kategouriet", + "browse": "Kačo wikii", + "smw-listingcontinuesabbrev": "(jatko)" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/om.json b/mediawiki/extensions/SemanticMediaWiki/i18n/om.json new file mode 100644 index 0000000..e6d0f17 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/om.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Maammee", + "Oromoom", + "Tumsaa" + ] + }, + "smw-categories": "Ramaddiiwwan", + "browse": "Wiki abuuri", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:sekondii|$1}}" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/or.json b/mediawiki/extensions/SemanticMediaWiki/i18n/or.json new file mode 100644 index 0000000..db85316 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/or.json @@ -0,0 +1,69 @@ +{ + "@metadata": { + "authors": [ + "Jnanaranjan Sahu", + "Psubhashish", + "Susant purohit" + ] + }, + "smw_finallistconjunct": " ଏବଂ", + "smw_isspecprop": "ଏହି ସମ୍ପତ୍ତି ଏହି ଉଇକି ର ସ୍ଵତନ୍ତ୍ର ସମ୍ପତ୍ତି।", + "smw-concept-cache-header": "ଲୁପ୍ତ ରଖାଯାଇଥିବା ବ୍ୟବହାର ପ୍ରଣାଳୀ", + "smw-concept-no-cache": "ଲୁପ୍ତ ରଖାଯିବା ସ୍ଥାନ ନାହିଁ।", + "smw_concept_description": "\"$1\" ଚିନ୍ତାକଳ୍ପ ର ବର୍ଣନା", + "smw_no_concept_namespace": "ଚିନ୍ତାକଳ୍ପ ଗୁଡିକୁ କେବଳ ଚିନ୍ତାକଳ୍ପ ରହିଥିବା ପ୍ରୁଷ୍ଠା ଗୁଡିକ ରେ ବ୍ୟାଖ୍ୟା କରାଯାଇ ପାରିବ :ନେମସ୍ଵେସ", + "smw_multiple_concepts": "ପ୍ରଟିଟି ଚିନ୍ତାକଳ୍ପ ପ୍ରୁଷ୍ଠା ରେ କେବଳ ଗୋଟିଏ ଚିନ୍ତାକଳ୍ପ ର ବ୍ୟାଖ୍ୟା ରହିବ", + "smw_concept_cache_miss": "ଚିନ୍ତାକଳ୍ପ \"$1\" କୁ ଏହି ମୁହୂର୍ତ ରେ ବ୍ୟବହାର କରାଯାଇ ପାରିବ ନାହିଁ, କାରଣ ଏହାର ଆକଳନ ଅଫ-ଲାଇନ ଭାବରେ ହେବା ଉଇକି ସଜାଣି ରେ ଆବଶ୍ୟକ। ଯଦି ଏହି ସମସ୍ୟା କିଛି ସମୟ ପରେ ଦୁର ହଉନାହିଁ, ଆପଣ ଆପଣଙ୍କ ସାଇଟ ପ୍ରଶାସକ ଙ୍କୁ ଏହି ଚିନ୍ତାକଳ୍ପ ଉପଲଦ୍ଧ କରାଇବା ପାଇଁ କୁହନ୍ତୁ ।", + "smw_noinvannot": "ମୂଲ୍ୟ ଗୁଡିକୁ ବିପରୀତ ସମ୍ପତ୍ତି ଭାବରେ ନିଆଯାଇ ପାରିବନାହିଁ।", + "version-semantic": "ସେମାଣ୍ଟିକ ସମ୍ପ୍ରସାରଣ", + "smw_baduri": "\"$1\" ଆକୃତି ର URI ଗୁଡିକ ସ୍ବୀକାର୍ଜ୍ୟ ନୁହେଁ।", + "smw_printername_count": "ପରିଣାମ ଗୁଡିକ ଗଣନ୍ତୁ", + "smw_printername_csv": "CSV ରପ୍ତାନି", + "smw_printername_dsv": "DSV ରପ୍ତାନି", + "smw_printername_debug": "ଦିବଗ୍ ପ୍ରଶ୍ନ (ନିପୁଣ ଙ୍କ ପାଇଁ )", + "smw_printername_embedded": "ପୃଷ୍ଠାର ବିଷୟବସ୍ତୁ ଏମବେଡ଼", + "smw_printername_json": "JOSN ରପ୍ତାନି", + "smw_printername_list": "ତାଲିକା", + "smw_printername_ol": "ପରିଗଣନା", + "smw_printername_ul": "ତାଲିକାଭୁକ୍ତକରଣ", + "smw_printername_table": "ସାରଣୀ", + "smw_printername_broadtable": "ପ୍ରଶସ୍ତ ସାରଣୀ", + "smw_printername_template": "ଛାଞ୍ଚ", + "smw_printername_rdf": "ଆରଡିଏଫ ରପ୍ତାନି", + "smw_printername_category": "ଶ୍ରେଣୀ", + "validator-type-class-SMWParamSource": "ପାଠ୍ୟ", + "smw-paramdesc-limit": "ସର୍ବାଧିକ ସଂଖ୍ୟକ ପରିଣତି ଫେରସ୍ତ କରିବାକୁ", + "smw-paramdesc-offset": "ପ୍ରଥମ ପରିଣାମ ର ଅଙ୍କୁର", + "smw-paramdesc-headers": "ଶୀର୍ଷକ/ଗୁଣ ର ନାମ ଦର୍ଶାନ୍ତୁ", + "smw-paramdesc-mainlabel": "ମୁଖ୍ୟ ପୃଷ୍ଠା ର ନାମ ଦେବାପାଇଁ ନାମପଟି", + "smw-categories": "ଶ୍ରେଣୀସମୂହ", + "smw-unusedproperty-template": "$2 ର $1 ପ୍ରକାର", + "wantedproperties": "ଦରକାରୀ ଗୁଣସବୁ", + "smw-wantedproperty-template": "$1 ({{PLURAL:$2|ଇଉଜ|ଇଉଜ ଗୁଡିକ}})", + "smw_purge": "ସତେଜ କରନ୍ତୁ", + "types": "ପ୍ରକାର ଗୁଡିକ", + "smw-special-types-no-such-type": "ବିନିର୍ଦ୍ଧିଷ୍ଟ ପ୍ରକାର ର ତଥ୍ୟ ବିଦ୍ୟମାନ ନୁହେଁ", + "smw-statistics": "ସେମାଣ୍ଟିକ ପରିସଙ୍ଖ୍ୟାନ", + "smw-statistics-property-instance": "ସମ୍ପତ୍ତି{{PLURAL:$1|ମୂଲ୍ୟ|ମୂଲ୍ୟସବୁ}}(ସମୁଦାୟ)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Property|Properties}}]] (ସମୁଦାୟ)", + "smw_ask_ascorder": "ଉର୍ଦ୍ଧଗାମୀ", + "smw_ask_descorder": "ନିମ୍ମଗାମୀ", + "smw_ask_submit": "ପରିଣାମ ଖୋଜନ୍ତୁ", + "smw_ask_editquery": "ପ୍ରଶ୍ନ ସମ୍ପାଦନ କରନ୍ତୁ", + "smw_add_sortcondition": "[ବାଛିବା ସର୍ତ୍ତ ଯୋଗକରନ୍ତୁ]", + "smw_ask_hidequery": "ପ୍ରଶ୍ନ ଲୁଚାନ୍ତୁ", + "smw_ask_help": "ପ୍ରଶ୍ନକରିବା ସହାୟତା", + "smw_ask_queryhead": "ପ୍ରଶ୍ନ", + "smw_ask_printhead": "ପ୍ରଦର୍ଶନ କରିବା ପାଇଁ ଅତିରିକ୍ତ ତଥ୍ୟ", + "smw_ask_printdesc": "(ପ୍ରତି ଧାଡି ରେ ଗୋଟିଏ ସମ୍ପତ୍ତି ନାମ ଯୋଗକରନ୍ତୁ)", + "smw_ask_format_as": "ଏହି ଭାବରେ ଗଢନ୍ତୁ", + "smw_ask_defaultformat": "ପୂର୍ବ ବିର୍ଦ୍ଧାରିତ", + "smw_ask_otheroptions": "ଅନ୍ୟ ବିକଳ୍ପ ସବୁ", + "smw-ask-otheroptions-collapsed-info": "ଦୟାକରି ସମସ୍ତ ଉପଲବ୍ଧ ବିକଳ୍ପ ସବୁ ଦେଖିବାକୁ ପ୍ଲସ ସଂକେତ ବ୍ୟବହାର କରନ୍ତୁ", + "smw_ask_show_embed": "ଅନ୍ତଃସ୍ଥାପିତ ସାଙ୍କେତିକ ଚିହ୍ନ ଦେଖାନ୍ତୁ", + "smw_ask_hide_embed": "ଅନ୍ତଃସ୍ଥାପିତ ସାଙ୍କେତିକ ଚିହ୍ନ ଲୁଚାନ୍ତୁ", + "browse": "ଉଇକି ଦେଖିବେ", + "smw-livepreview-loading": "ଖୋଲୁଛି...", + "smw-listingcontinuesabbrev": "ଆହୁରି ଅଛି..", + "smw-showingresults": "ତଳେ {{PLURAL:$1|'''ଗୋଟିଏ''' ଫଳାଫଳ|'''$1'''ଟି ଫଳାଫଳ}} ଦେଖାଉଛୁ ଯାହା #'''$2'''ରେ ଆରମ୍ଭ ହୋଇଅଛି ।" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/os.json b/mediawiki/extensions/SemanticMediaWiki/i18n/os.json new file mode 100644 index 0000000..fba0a3c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/os.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Amikeco" + ] + }, + "smw_printername_template": "Шаблон", + "smw-categories": "Категоритæ", + "smw-livepreview-loading": "Æвгæд цæуы...", + "smw-listingcontinuesabbrev": "(дарддæргонд)" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/pa.json b/mediawiki/extensions/SemanticMediaWiki/i18n/pa.json new file mode 100644 index 0000000..8b4c2cd --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/pa.json @@ -0,0 +1,83 @@ +{ + "@metadata": { + "authors": [ + "Babanwalia", + "Cabal", + "Raj Singh", + "ਗੁਰਪ੍ਰੀਤ ਹੁੰਦਲ" + ] + }, + "smw-error": "ਗ਼ਲਤੀ", + "smw-upgrade-progress": "ਤਰੱਕੀ", + "smw-upgrade-error-why-title": "ਮੈਂਨੂੰ ਇਹ ਸਫ਼ਾ ਕਿਉਂ ਵਿਖਈ ਦਿੰਦਾ ਹੈ?", + "smw-upgrade-error-how-title": "ਮੈਂ ਇਸ ਗਲਤੀ ਨੂੰ ਕਿਵੇਂ ਠੀਕ ਕਰ ਸਕਦਾ ਹਾਂ?", + "smw-extensionload-error-why-title": "ਮੈਂਨੂੰ ਇਹ ਸਫ਼ਾ ਕਿਉਂ ਵਿਖਈ ਦਿੰਦਾ ਹੈ?", + "smw-extensionload-error-how-title": "ਮੈਂ ਇਸ ਗਲਤੀ ਨੂੰ ਕਿਵੇਂ ਠੀਕ ਕਰ ਸਕਦਾ/ਸਕਦੀ ਹਾਂ?", + "smw-upgrade-maintenance-why-title": "ਮੈਂਨੂੰ ਇਹ ਸਫ਼ਾ ਕਿਉਂ ਵਿਖਈ ਦਿੰਦਾ ਹੈ?", + "smw_finallistconjunct": ", ਅਤੇ", + "smw-factbox-head": "... \"$1\" ਬਾਰੇ ਹੋਰ", + "smw-factbox-facts": "ਤੱਥ", + "smw-factbox-attachments": "ਨੱਥੀਆਂ", + "smw-factbox-attachments-value-unknown": "ਲਾਗੂ ਨਹੀਂ ਹੁੰਦਾ", + "smw-factbox-attachments-is-local": "ਸਥਾਨਕ ਹੈ", + "smw_printername_list": "ਸੂਚੀ", + "smw_printername_plainlist": "ਸਧਾਰਨ ਸੂਚੀ", + "smw_printername_ol": "ਗਿਣਤੀਵਾਲੀ ਸੂਚੀ", + "smw_printername_table": "ਸਾਰਨੀ", + "smw_printername_template": "ਫਰਮੇ", + "smw_printername_templatefile": "ਫ਼ਰਮੇ ਦੀ ਫਾਇਲ", + "smw_printername_rdf": "RDF ਬਰਾਮਦ", + "smw_printername_category": "ਸ਼੍ਰੇਣੀ", + "validator-type-class-SMWParamSource": "ਲਿਖਤ", + "smw-paramdesc-embedonly": "ਕੋਈ ਸਿਰਲੇਖ ਨਾ ਵੇਖਾਓ", + "smw-categories": "ਸ਼੍ਰੇਣੀਆਂ", + "smw-special-property-searchform-options": "ਚੋਣਾਂ", + "smw-special-wantedproperties-filter-label": "ਛਾਨਣੀ:", + "smw-special-wantedproperties-filter-none": "ਕੋਈ ਨਹੀਂ", + "smw-special-wantedproperties-filter-unapproved": "ਮਨਜ਼ੂਰ ਨਹੀਂ", + "concepts": "ਧਾਰਨਾਵਾਂ", + "smw-special-concept-header": "ਧਾਰਨਾਵਾਂ ਦੀ ਸੂਚੀ", + "smw_purge": "ਮੁੜ-ਤਾਜ਼ਾ ਕਰੋ", + "types": "ਕਿਸਮਾਂ", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|ਪੁੱਛਗਿੱਛ|ਪੁੱਛਗਿੱਛਾਂ}}", + "smw-statistics-query-size": "ਪੁੱਛਗਿੱਛ ਦਾ ਆਕਾਰ", + "smw_ask_ascorder": "ਚੜ੍ਹਦੀ ਤਰਤੀਬ ਵਿੱਚ", + "smw_ask_descorder": "ਲਹਿੰਦੀ ਤਰਤੀਬ ਵਿੱਚ", + "smw-ask-order-rand": "ਬੇਤਰਤੀਬ", + "smw_ask_submit": "ਨਤੀਜੇ ਲੱਭੋ", + "smw_ask_editquery": "ਪੁੱਛਗਿੱਛ ਸੋਧੋ", + "smw_ask_defaultformat": "ਮੂਲ", + "smw_ask_otheroptions": "ਹੋਰ ਚੋਣਾਂ", + "smw-ask-delete": "ਹਟਾਓ", + "smw-ask-sorting": "ਲਡ਼ੀਬੱਧ", + "smw-ask-options": "ਚੋਣਾਂ", + "smw-ask-parameters": "ਮਾਪਦੰਡ", + "smw-ask-search": "ਖੋਜੋ", + "smw-ask-result": "ਨਤੀਜਾ", + "smw-ask-extra-other": "ਹੋਰ", + "smw_sbv_property": "ਜਾਇਦਾਦਃ", + "smw_sbv_value": "ਮੁੱਲ:", + "smw_sbv_submit": "ਨਤੀਜੇ ਲੱਭੋ", + "browse": "ਵਿਕੀ ਫਰੋਲੋ", + "smw_browse_go": "ਜਾਓ", + "smw-admin-supplementary-elastic-statistics-intro": "$1 ਤਤਕਰਾ ਪੱਧਰ ਦੇ ਅੰਕੜੇ ਵਿਖਾਉਂਦਾ ਹੈ", + "smw-admin-supplementary-elastic-replication-pages": "ਸਫ਼ੇ", + "smw_adminlinks_inlinequerieshelp": "ਲਕੀਰ-ਅੰਦਰ ਪੁੱਛਗਿੱਛ ਮਦਦ", + "smw-ui-tooltip-title-info": "ਜਾਣਕਾਰੀ", + "group-smwadministrator-member": "{{GENDER:$1| ਪ੍ਰਬੰਧਕ (Semantic MediaWiki)}}", + "smw-admin-idlookup-input": "ਲੱਭੋ:", + "smw-livepreview-loading": "ਲੱਦ ਰਿਹਾ ਹੈ...", + "smw-sp-searchbyproperty-resultlist-header": "ਨਤੀਜਿਆਂ ਦੀ ਸੂਚੀ", + "smw-search-syntax": "ਵਾਕ-ਵਿਉਂਤ", + "smw-search-profile-sort-recent": "ਸਭ ਤੋਂ ਤਾਜ਼ਾ", + "smw-search-profile-extended-section-query": "ਪੁੱਛਗਿੱਛ", + "smw-clipboard-copy-link": "ਕੜੀ ਦਾ ਉਤਾਰਾ ਚੂੰਢੀ-ਤਖਤੀ 'ਤੇ ਲਿਖੋ", + "smw-format-datatable-search": "ਖੋਜੋ:", + "smw-api-invalid-parameters": "ਗਲਤ ਮਾਪਦੰਡ, \"$1\"", + "smw-help": "ਮਦਦ", + "smw-copy": "ਰੀਸ ਕਰੋ", + "smw-jsonview-search-label": "ਖੋਜੋ:", + "smw-ask-title-keyword-type": "ਖ਼ਾਸ-ਸ਼ਬਦ ਖੋਜ", + "smw-listingcontinuesabbrev": "ਜਾਰੀ", + "smw-showingresults": "ਹੇਠਾਂ #'''$2''' ਨਾਲ਼ ਸ਼ੁਰੂ ਹੋਣ ਵਾਲ਼ੇ {{PLURAL:\n$1|'''1''' ਨਤੀਜਾ|'''$1''' ਤੱਕ ਨਤੀਜੇ}} ਵਖਾਓ।" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/pag.json b/mediawiki/extensions/SemanticMediaWiki/i18n/pag.json new file mode 100644 index 0000000..027e9a8 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/pag.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Lam-ang" + ] + }, + "smw-categories": "Saray kategorya", + "smw-livepreview-loading": "Ilulugan…", + "smw-listingcontinuesabbrev": "tol." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/pam.json b/mediawiki/extensions/SemanticMediaWiki/i18n/pam.json new file mode 100644 index 0000000..235a660 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/pam.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Katimawan2005" + ] + }, + "smw-categories": "Kategoriya", + "smw-livepreview-loading": "Máglulan…", + "smw-listingcontinuesabbrev": "katuglung.", + "smw-showingresults": "Ing/ding {{PLURAL:$1|'''1''' a resulta|'''$1''' resulta}} manibatan king #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/pdc.json b/mediawiki/extensions/SemanticMediaWiki/i18n/pdc.json new file mode 100644 index 0000000..3c8aa0d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/pdc.json @@ -0,0 +1,22 @@ +{ + "@metadata": { + "authors": [ + "Xqt" + ] + }, + "smw_finallistconjunct": " unn", + "smw_printername_list": "Lischt", + "smw_printername_template": "Moddel", + "smw_true_words": "ya,yes,true", + "smw_false_words": "nee,no,false", + "smw_nofloat": "„$1“ iss ken Zehl.", + "smw-categories": "Abdeelinge", + "smw_browse_go": "Geh los", + "smw_inverse_label_default": "$1 vun", + "smw_pp_from": "Blatt", + "smw_result_prev": "zerick", + "smw_result_next": "vaerschich", + "smw_smwadmin_return": "Zerick zu $1", + "smw-livepreview-loading": "Laade…", + "smw-listingcontinuesabbrev": "(weider)" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/pfl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/pfl.json new file mode 100644 index 0000000..3d7ffee --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/pfl.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "Manuae" + ] + }, + "smw_true_words": "woah,w,ja,j", + "smw_false_words": "falsch,f,nä,n", + "smw-categories": "Sachgrubbe", + "browse": "Guggschd uff die Bedaidung", + "smw_smwadmin_datarefreshstopconfirm": "Ja, isch bin ma sischa", + "smw-listingcontinuesabbrev": "(Waida)" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/pl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/pl.json new file mode 100644 index 0000000..ec11362 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/pl.json @@ -0,0 +1,622 @@ +{ + "@metadata": { + "authors": [ + "Alan ffm", + "BeginaFelicysym", + "Chrumps", + "CiaPan", + "Devwebtel", + "InternerowyGołąb", + "Krottyianock", + "Maikking", + "Nemo bis", + "Odie2", + "Ostrzyciel", + "PanWor", + "Rail", + "Railfail536", + "Rzuwig", + "SemanticPioneer", + "Sociologist", + "Sovq", + "Sp5uhe", + "ToSter", + "Vengir", + "Vuh", + "WTM", + "WaldiSt", + "Wojtas", + "Woytecr", + "Łukasz Bolikowski", + "아라" + ] + }, + "smw-desc": "Poprawia dostępność wiki zarówno dla automatów jak i ludzi ([https://www.semantic-mediawiki.org/wiki/Help:User_manual dokumentacja online])", + "smw-error": "Błąd", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] zostało zainstalowane i włączone, ale brakuje odpowiedniego [https://www.semantic-mediawiki.org/wiki/Help:Upgrade klucza aktualizacji].", + "smw-upgrade-release": "Wydanie", + "smw-upgrade-progress": "Postęp", + "smw-upgrade-error-title": "Błąd » Semantic MediaWiki", + "smw-upgrade-error-why-title": "Dlaczego widzę tę stronę?", + "smw-upgrade-error-how-title": "Jak mogę naprawić ten problem?", + "smw-extensionload-error-why-title": "Dlaczego widzę tę stronę?", + "smw-extensionload-error-how-title": "Jak mogę naprawić ten problem?", + "smw-upgrade-maintenance-why-title": "Dlaczego widzę tę stronę?", + "smw-semantics-not-enabled": "Funkcjonalność Semantycznej MediaWiki dla tej wiki nie została włączona.", + "smw_viewasrdf": "Kanał RDF", + "smw_finallistconjunct": " i", + "smw-factbox-head": "... więcej o „$1”", + "smw-factbox-facts": "Fakty", + "smw-factbox-facts-help": "Wyświetla deklaracje i fakty, które zostały utworzone przez użytkownika", + "smw-factbox-attachments": "Załączniki", + "smw-factbox-attachments-value-unknown": "nd.", + "smw-factbox-facts-derived": "Pochodne fakty", + "smw-factbox-facts-derived-help": "Przedstawia fakty, które zostały wyprowadzone z zasad lub za pomocą innych technik wnioskowania", + "smw_isspecprop": "Ta właściwość jest unikalna dla tej wiki.", + "smw-concept-cache-header": "Użycie pamięci podręcznej", + "smw-concept-no-cache": "Brak dostępnej pamięci podręcznej.", + "smw_concept_description": "Opis koncepcji „$1”", + "smw_no_concept_namespace": "Koncepcje można definiować tylko w przestrzeni nazw Koncepcja:", + "smw_multiple_concepts": "Każda strona konceptu może mieć tylko jedną definicję konceptu.", + "smw_concept_cache_miss": "Koncepcja „$1” w chwili obecnej nie może zostać użyta, ponieważ konfiguracja wiki wymaga aby została ona przeliczona offline. Jeśli problem nie ustąpi po jakimś czasie, skontaktuj się z administratorem witryny.", + "smw_noinvannot": "Nie można przypisać wartości właściwościom odwrotnym.", + "version-semantic": "Rozszerzenia semantyczne", + "smw_baduri": "Niestety, URI z przestrzeni „$1” nie są w tym miejscu dostępne.", + "smw_printername_count": "Wyniki obliczeń", + "smw_printername_csv": "eksport CSV", + "smw_printername_dsv": "Eksport DSV", + "smw_printername_debug": "Śledzenie zapytania (dla specjalistów)", + "smw_printername_embedded": "Zagnieżdżone fragmenty strony", + "smw_printername_json": "eksport JSON", + "smw_printername_list": "Lista", + "smw_printername_plainlist": "Zwykła lista", + "smw_printername_ol": "Lista numerowana", + "smw_printername_ul": "Lista punktowana", + "smw_printername_table": "Tabela", + "smw_printername_broadtable": "Szeroka tabela", + "smw_printername_template": "Szablon", + "smw_printername_templatefile": "Plik szablonu", + "smw_printername_rdf": "Eksport RDF", + "smw_printername_category": "Kategoria", + "validator-type-class-SMWParamSource": "tekst", + "smw-paramdesc-limit": "Maksymalna liczba zwracanych wyników", + "smw-paramdesc-offset": "Przesunięcie pierwszego wyniku", + "smw-paramdesc-headers": "Wyświetlanie nazw nagłówków i właściwości", + "smw-paramdesc-mainlabel": "Etykieta dająca nazwę stronie głównej", + "smw-paramdesc-link": "Pokaż wartości jako linki", + "smw-paramdesc-intro": "Tekst wyświetlany przed wynikami zapytania, jeśli są jakieś", + "smw-paramdesc-outro": "Tekst wyświetlany poniżej wyników zapytania, jeśli są jakieś", + "smw-paramdesc-default": "Tekst wyświetlany jeśli brak jest wyników zapytania", + "smw-paramdesc-sep": "Separator oddzielający wyniki", + "smw-paramdesc-valuesep": "Separator między wartościami właściwości wyniku", + "smw-paramdesc-showsep": "Pokaż separator w górnej części pliku CSV (\"sep=\")", + "smw-paramdesc-distribution": "Zamiast wyświetlania wszystkich wartości, policz ich wystąpienia i pokaż to.", + "smw-paramdesc-distributionsort": "Sortuj rozkład wartości według liczby wystąpień.", + "smw-paramdesc-aggregation": "Określ, do czego powinna się odnosić agregacja", + "smw-paramdesc-template": "Nazwa szablonu, który zostanie wyświetlony na wydrukach", + "smw-paramdesc-columns": "Liczba kolumn, w których zostaną wyświetlone wyniki", + "smw-paramdesc-userparam": "Wartość przekazywana do szablonu przy każdym jego użyciu", + "smw-paramdesc-class": "Dodatkowa klasa CSS do ustawienia dla listy", + "smw-paramdesc-introtemplate": "Nazwa szablonu wyświetlana przed wynikami zapytania, jeśli są jakieś", + "smw-paramdesc-outrotemplate": "Nazwa szablonu wyświetlana poniżej wyników zapytania, jeśli są jakieś", + "smw-paramdesc-embedformat": "Znacznik HTML używany do definiowania nagłówków", + "smw-paramdesc-embedonly": "Nie wyświetlaj nagłówków", + "smw-paramdesc-table-class": "Dodatkowa klasa CSS do ustawienia dla tabeli", + "smw-paramdesc-table-transpose": "Wyświetlaj nagłówki tabeli pionowo, a wyniki poziomo", + "smw-paramdesc-rdfsyntax": "Wykorzystywana składnia RDF", + "smw-paramdesc-csv-sep": "Określa separator kolumn", + "smw-paramdesc-csv-valuesep": "Określa separator wartości", + "smw-paramdesc-csv-bom": "Dodaj BOM (znacznik kolejności bajtów) na początku pliku wynikowego", + "smw-paramdesc-dsv-separator": "Użyty separator", + "smw-paramdesc-dsv-filename": "Nazwa pliku DSV", + "smw-paramdesc-filename": "Nazwa pliku wyjściowego", + "smw-smwdoc-description": "Pokazuje tabelę wszystkich parametrów, które mogą być użyte do formatowania określonego wyniku wraz z wartościami domyślnymi i opisami.", + "smw-smwdoc-par-format": "Formatuj wynik, do wyświetlenia sparametryzowanej dokumentacji.", + "smw-smwdoc-par-parameters": "Które parametry wyświetlić. \"specific\" dla dodanych przez format, \"base\" dla dostępnych we wszystkich formatach oraz \"all\" do obu.", + "smw-paramdesc-sort": "Właściwość do sortowania tabeli przez", + "smw-paramdesc-order": "Kolejność sortowania zapytania", + "smw-paramdesc-searchlabel": "Treść linku do kolejnych wyników", + "smw-paramdesc-named_args": "Nazwa argumentu przekazana do szablonu", + "smw-paramdesc-template-arguments": "Ustawia sposób przekazywania nazwanych argumentów do szablonu", + "smw-paramdesc-export": "Opcje eksportu", + "smw-paramdesc-json-type": "Typ serializacji", + "smw-paramdesc-source": "Alternatywne źródło zapytania", + "smw-paramdesc-jsonsyntax": "Składnia JSON, która będzie używana", + "smw-printername-feed": "kanał RSS i Atom", + "smw_iq_disabled": "Niestety, w tym wiki wyłączono możliwość tworzenia zapytań w artykułach.", + "smw_iq_moreresults": "… dalsze wyniki", + "smw_parseerror": "Podana wartość jest niezrozumiała.", + "smw_decseparator": ",", + "smw_kiloseparator": ".", + "smw_notitle": "„$1” nie może być użyte jako nazwa strony.", + "smw_noproperty": "„$1” nie może być użyte jako nazwa właściwości w tej wiki.", + "smw_wrong_namespace": "Dozwolone są tutaj tylko strony z przestrzeni nazw „$1”.", + "smw_manytypes": "Zdefiniowano więcej niż jeden typ dla atrybutu.", + "smw_emptystring": "Puste łańcuchy znakowe są niedozwolone.", + "smw_notinenum": "„$1” nie znajduje się na liście ($2) [[Property:Allows value|dozwolonych wartości]] dla właściwości „$3”.", + "smw_noboolean": "“$1” nie zostało rozpoznane jako wartość logiczna (prawda/fałsz).", + "smw_true_words": "prawda,t,yes,y,tak,true", + "smw_false_words": "fałsz,f,no,n,nie,false", + "smw_nofloat": "„$1” nie jest liczbą.", + "smw_infinite": "Liczby tak duże jak „$1” nie są obsługiwane.", + "smw_unitnotallowed": "„$1” nie została zadeklarowana jako dopuszczalna jednostka miary dla tej właściwości.", + "smw_nounitsdeclared": "Dla tej właściwości nie zadeklarowano żadnych jednostek miary.", + "smw_novalues": "Nie określono wartości", + "smw_nodatetime": "Data „$1” nie została zrozumiana.", + "smw_toomanyclosing": "W zapytaniu jest zbyt wiele wystąpień „$1”.", + "smw_noclosingbrackets": "W zapytaniu któryś z podwójnych nawiasów „[[” nie został zamknięty nawiasem „]]”.", + "smw_misplacedsymbol": "Symbolu „$1” użyto w niewłaściwym miejscu.", + "smw_unexpectedpart": "Część „$1” zapytania jest niezrozumiała.\nWyniki mogą być inne od oczekiwanych.", + "smw_emptysubquery": "Podzapytanie nie ma prawidłowych warunków do wykonania.", + "smw_misplacedsubquery": "Podzapytanie zostało użyte w niedozwolonym miejscu.", + "smw_valuesubquery": "Podzapytania nie są dozwolone jako wartości właściwości „$1”.", + "smw_badqueryatom": "Część zapytania „[[…]]” nie została zrozumiana.", + "smw_propvalueproblem": "Wartość „$1” nie została rozpoznana.", + "smw_noqueryfeature": "Niektóre elementy zapytania nie są obsługiwane na tej wiki, pominięto część zapytania ($1).", + "smw_noconjunctions": "Koniunkcje w zapytaniach nie są obsługiwane na tej wiki, pominięto część zapytania ($1).", + "smw_nodisjunctions": "Alternatywy w zapytaniach nie są obsługiwane na tej wiki, pominięto część zapytania ($1).", + "smw_querytoolarge": "{{PLURAL:$2|Następujący warunek zapytania nie mógł zostać uwzględniony|Następujące warunki zapytania nie mogły zostać uwzględnione}} ze względu na ograniczenia wiki w wielkości lub głębokości zapytania: $1.", + "smw_notemplategiven": "Należy podać parametr „template”, aby to zapytanie zadziałało.", + "smw_db_sparqlqueryproblem": "Nie można uzyskać wyniku na zapytanie z bazy danych SPARQL. Ten błąd może być tymczasowy lub wskazywać na błąd w oprogramowaniu bazy danych.", + "smw_db_sparqlqueryincomplete": "Odpowiedź na zapytanie okazała się zbyt trudna i została przerwana. Niektórych wyników może brakować. Jeśli to możliwe, spróbuj użyć prostszego zapytania.", + "smw_type_header": "Atrybuty typu “$1”", + "smw_typearticlecount": "Pokazano $1 {{PLURAL:$1|atrybut używający|atrybuty używające|atrybutów używających}} tego typu.", + "smw_attribute_header": "Strony używające atrybutu “$1”", + "smw_attributearticlecount": "Pokazano $1 {{PLURAL:$1|stronę używającą|strony używające|stron używających}} tego atrybutu.", + "smw-propertylist-subproperty-header": "Podwłaściwości", + "smw-propertylist-redirect-header": "Synonimy", + "smw-propertylist-error-header": "Strony z nieprawidłowymi przypisaniami", + "smw-propertylist-count": "Wyświetlanie $1 {{PLURAL:$1|powiązanego|powiązanych}} {{PLURAL:$1|obiektu|obiektów}}.", + "specialpages-group-smw_group": "Semantyczna MediaWiki", + "specialpages-group-smw_group-maintenance": "Konserwacja", + "specialpages-group-smw_group-properties-concepts-types": "Właściwości, koncepty i typy", + "specialpages-group-smw_group-search": "Przeglądanie i wyszukiwanie", + "exportrdf": "Eksport stron do RDF", + "smw_exportrdf_docu": "Ta strona pozwala eksportować fragmenty artykułu w formacie RDF. Aby wyeksportować artykuły, wpisz ich tytuły w poniższym polu tekstowym, po jednym tytule w wierszu.", + "smw_exportrdf_recursive": "Rekursywny eksport wszystkich powiązanych stron. Zwróć uwagę, że wynik może być olbrzymi!", + "smw_exportrdf_backlinks": "Eksportuj także wszystkie strony, które odwołują się do eksportowanych stron. Tworzy przeglądalny RDF.", + "smw_exportrdf_lastdate": "Nie eksportuj stron, które nie były zmieniane od podanego czasu.", + "smw_exportrdf_submit": "Eksport", + "uriresolver": "Przekształcanie URI", + "properties": "Właściwości", + "smw-categories": "Kategorie", + "smw_properties_docu": "Następujące właściwości są wykorzystywane w wiki.", + "smw_property_template": "$1 typu $2 ($3 {{PLURAL:$3|użycie|użycia}})", + "smw_propertylackspage": "Wszystkie właściwości powinny być opisane stroną!", + "smw_propertylackstype": "Nie określono żadnego typu dla tej właściwości (tymczasowo przypisano typ $1).", + "smw_propertyhardlyused": "Ta właściwość jest rzadko używana w przestrzeni wiki!", + "smw-property-name-invalid": "Właściwość $1 nie może być użyta (nieprawidłowa nazwa właściwości).", + "smw-sp-property-searchform": "Pokaż właściwości, które zawierają:", + "smw-special-property-searchform": "Wyświetl właściwości zawierające:", + "smw-special-property-searchform-options": "Opcje", + "smw-special-wantedproperties-filter-label": "Filtr:", + "smw-special-wantedproperties-filter-none": "Brak", + "smw-special-wantedproperties-filter-unapproved": "Niezatwierdzony", + "concepts": "Koncepty", + "smw-special-concept-header": "Lista konceptów", + "smw-special-concept-count": "Znaleziono {{PLURAL:$1|1 koncept|$1 koncepty|$1 konceptów}}.", + "smw-special-concept-empty": "Nie znaleziono konceptów.", + "unusedproperties": "Niewykorzystywane właściwości", + "smw-unusedproperties-docu": "Ta strona wymienia [https://www.semantic-mediawiki.org/wiki/Unused_properties niewykorzystywane właściwości], które są zadeklarowane, choć żadna inna strona z nich nie korzysta. Odmiennego spojrzenia dostarczają wykazy na stronach specjalnych [[Special:Properties|wszystkich]] oraz [[Special:WantedProperties|pożądanych właściwości]].", + "smw-unusedproperty-template": "$1 typu $2", + "wantedproperties": "Pożądane właściwości", + "smw-wantedproperties-docu": "Ta strona wymienia [https://www.semantic-mediawiki.org/wiki/Wanted_properties pożądane właściwości], które są używane w wiki, ale nie mają strony opisującej je. Odmiennego spojrzenia dostarczają wykazy na stronach specjalnych [[Special:Properties|wszystkich]] oraz [[Special:UnusedProperties|niewykorzystywanych właściwości]].", + "smw-wantedproperty-template": "$1 (wykorzystane {{PLURAL:$2|raz|$2 razy}})", + "smw-special-wantedproperties-docu": "Ta strona wymienia [https://www.semantic-mediawiki.org/wiki/Wanted_properties pożądane właściwości], które są używane w wiki, ale nie mają strony opisującej je. Odmiennego spojrzenia dostarczają wykazy na stronach specjalnych [[Special:Properties|wszystkich]] oraz [[Special:UnusedProperties|niewykorzystywanych właściwości]].", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|użycie|użycia|użyć}})", + "smw_purge": "Odśwież", + "smw-purge-failed": "Semantyczna MediaWiki próbowała odświeżyć tę stronę, jednak nie powiodło się", + "types": "Typy", + "smw_types_docu": "Wykaz [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes dostępnych typów danych]. Każdy [https://www.semantic-mediawiki.org/wiki/Help:Datatype typ] reprezentuje unikatowy zbiór atrybutów charakteryzujących wartości poprzez sposób ich składowania w pamięci i wyświetlania. Charakterystyki te są dziedziczone w przypisanych właściwościach.", + "smw-special-types-no-such-type": "\"$1\" jest nieznany lub nie został określony jako poprawny typ danych.", + "smw-statistics": "Statystyka semantyczna", + "smw-statistics-entities-total": "Encje (wszystkie)", + "smw-statistics-property-instance": "{{PLURAL:$1|Wartość|Wartości}} właściwości (łącznie)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Właściwość|Właściwości}}]] (łącznie)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Właściwość|Właściwości}} (łącznie)", + "smw-statistics-property-used": "{{PLURAL:$1|Właściwość|Właściwości}} (użycie z co najmniej jedną wartością)", + "smw-statistics-property-page": "{{PLURAL:$1|Właściwość|Właściwości}} (zarejestrowane jako strona)", + "smw-statistics-property-type": "{{PLURAL:$1|Właściwość (przypisana do typu danych)|Właściwości (przypisane do typu danych)}}", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Zapytanie|Zapytania}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Zapytanie|Zapytania}}]] (osadzone, wszystkie)", + "smw-statistics-query-format": "format $1", + "smw-statistics-query-size": "Wielkość zapytania", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Koncept|Koncepty}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Koncept|Koncepty}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Podobiekt|Podobiekty}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Podobiekt|Podobiekty}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Typ danych|Typy danych}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Wartość|Wartości}} właściwości ([[Special:ProcessingErrorList|{{PLURAL:$1|niewłaściwa adnotacja|niewłaściwe adnotacje}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Wartość|Wartości}} właściwości ({{PLURAL:$1|niewłaściwa adnotacja|niewłaściwe adnotacje}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Nieaktualna encja|Nieaktualne encje}}]", + "smw_uri_doc": "Resolver URI implementuje [$1 W3C TAG finding on httpRange-14]. Dzięki temu ludzie nie zamieniają się w strony WWW.", + "ask": "Wyszukiwanie semantyczne", + "smw_ask_sortby": "Sortuj według kolumny (opcjonalnie)", + "smw_ask_ascorder": "Rosnąco", + "smw_ask_descorder": "Malejąco", + "smw-ask-order-rand": "Losowy", + "smw_ask_submit": "Szukaj wyników", + "smw_ask_editquery": "Edytuj zapytanie", + "smw_add_sortcondition": "[Dodaj warunki sortowania]", + "smw-ask-sort-add-action": "Dodaj warunek sortowania", + "smw_ask_hidequery": "Ukryj zapytanie (widok skrócony)", + "smw_ask_help": "Pomoc dla tworzenia zapytań", + "smw_ask_queryhead": "Warunek", + "smw_ask_printhead": "Instrukcje wydruku", + "smw_ask_printdesc": "(dodaj w linii jedną nazwę właściwości)", + "smw_ask_format_as": "Formatuj jako", + "smw_ask_defaultformat": "domyślny", + "smw_ask_otheroptions": "Inne opcje", + "smw-ask-otheroptions-collapsed-info": "Aby wyświetlić wszystkie dostępne opcje użyj ikony plusa", + "smw_ask_show_embed": "Pokaż kod zagnieżdżony", + "smw_ask_hide_embed": "Ukryj zagnieżdżony kod", + "smw_ask_embed_instr": "Aby zagnieździć to zapytanie na stronie wiki, użyj poniższego kodu.", + "smw-ask-delete": "Usuń", + "smw-ask-sorting": "Sortowanie", + "smw-ask-options": "Opcje", + "smw-ask-options-sort": "Opcje sortowania", + "smw-ask-format-options": "Format i opcje", + "smw-ask-parameters": "Parametry", + "smw-ask-search": "Szukaj", + "smw-ask-debug": "Debugowanie", + "smw-ask-debug-desc": "Tworzy informacje o debugowaniu zapytań", + "smw-ask-no-cache": "Wyłącz pamięć podręczną", + "smw-ask-no-cache-desc": "Wyniki bez pamięci podręcznej zapytań", + "smw-ask-result": "Wynik", + "smw-ask-empty": "Wymaż wszystkie wpisy", + "smw-ask-download-link-desc": "Pobieranie wyników zapytań w formacie $1", + "smw-ask-format": "Format", + "smw-ask-format-selection-help": "Pomoc w wybranym formacie: $1", + "smw-ask-condition-change-info": "Warunek został zmieniony i wyszukiwarka wymaga ponownego uruchomienia zapytania w celu uzyskania wyników odpowiadających nowym wymaganiom.", + "smw-ask-extra-query-log": "Rejestr zapytań", + "smw-ask-extra-other": "Inne", + "searchbyproperty": "Wyszukiwanie po atrybucie", + "processingerrorlist": "Lista błędów przetwarzania", + "constrainterrorlist": "Lista błędów ograniczeń", + "propertylabelsimilarity": "Raport podobieństwa etykiet właściwości", + "smw-missingredirects-list": "Strony z brakującymi adnotacjami", + "smw_sbv_docu": "Wyszukiwanie wszystkich stron, które mają dany atrybut i wartość.", + "smw_sbv_novalue": "Wpisz wartość, lub zobacz wszystkie wartości atrybutów dla $1.", + "smw_sbv_displayresultfuzzy": "Lista wszystkich stron, które posiadają właściwość „$1” o wartości „$2”.\nPonieważ znaleziono tylko kilka wyników, pokazano również wyniki podobne.", + "smw_sbv_property": "Atrybut", + "smw_sbv_value": "Wartość:", + "smw_sbv_submit": "Znajdź wyniki", + "browse": "Przeglądanie artykułów", + "smw_browselink": "Przeglądaj właściwości", + "smw_browse_article": "Wpisz nazwę artykułu, od którego chcesz rozpocząć przeglądanie.", + "smw_browse_go": "Idź", + "smw_browse_show_incoming": "Pokaż właściwości linkujące tutaj", + "smw_browse_hide_incoming": "Ukryj właściwości linkujące tutaj", + "smw_browse_no_outgoing": "Ta strona nie ma żadnych właściwości.", + "smw_browse_no_incoming": "Żadne właściwości nie linkują do tej strony.", + "smw-browse-from-backend": "Informacje są obecnie pobierane z zaplecza.", + "smw-browse-api-subject-serialization-invalid": "Podmiot ma nieprawidłowy format serializacji.", + "smw-browse-js-disabled": "Prawdopodobnie JavaScript jest wyłączony lub niedostępny. Zaleca się korzystanie z przeglądarki, w której jest on obsługiwany. Inne opcje omówione są na stronie parametrów konfiguracyjnych [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Pokaż grupy", + "smw-browse-hide-group": "Ukryj grupy", + "smw_inverse_label_default": "$1 z", + "smw_inverse_label_property": "Etykieta odwrotnej właściwości", + "pageproperty": "Szukanie właściwości stron", + "pendingtasklist": "Lista oczekujących zadań", + "smw_pp_docu": "Wprowadź stronę i właściwość lub po prostu właściwość, aby pobrać wszystkie przypisane wartości.", + "smw_pp_from": "Od strony:", + "smw_pp_type": "Właściwość:", + "smw_pp_submit": "Znajdź wyniki", + "smw-prev": "{{PLURAL:$1|poprzedni|poprzednie $1}}", + "smw-next": "{{PLURAL:$1|następny|następne $1}}", + "smw_result_prev": "Poprzednia", + "smw_result_next": "Następne", + "smw_result_results": "Wyniki", + "smw_result_noresults": "Niestety, brak wyników.", + "smwadmin": "Panel Semantycznej MediaWiki", + "smw-admin-statistics-job-title": "Statystyki zadań", + "smw-admin-statistics-job-docu": "Statystyka zadań wyświetla informacje o zaplanowanych zadaniach Semantic MediaWiki, które nie zostały jeszcze wykonane. Liczba zadań może być trochę niedokładna lub zawierać nieudane próby. Więcej informacji można znaleźć na stronie [Manual:Job_queue/pl podręcznika].", + "smw-admin-statistics-querycache-title": "Pamięć podręczna zapytań", + "smw-admin-statistics-querycache-disabled": "Usługa [https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] nie jest włączona na tej wiki i żadne statystyki nie są dostępne.", + "smw-admin-statistics-semanticdata-overview": "Przegląd", + "smw-admin-permission-missing": "Dostęp do tej strony został zablokowany z powodu braku uprawnień. Na stronie pomocy na temat [https://www.semantic-mediawiki.org/wiki/Help:Permissions uprawnień] znajdziesz szczegółowe informacje o niezbędnych ustawieniach.", + "smw-admin-setupsuccess": "Silnik przestrzeni dyskowej został ustawiony.", + "smw_smwadmin_return": "Powrót do $1", + "smw_smwadmin_updatestarted": "Uruchomiono nowy proces aktualizacji danych semantycznych.\nWszystkie zapisane dane zostaną uporządkowane oraz naprawione w razie potrzeby.\nMożesz śledzić stan procesu aktualizacji na tej stronie specjalnej.", + "smw_smwadmin_updatenotstarted": "Jest już uruchomiony proces aktualizacji.\nKolejny nie zostanie utworzony.", + "smw_smwadmin_updatestopped": "Wszystkie istniejące procesy aktualizacji zostały zatrzymane.", + "smw_smwadmin_updatenotstopped": "W celu zatrzymania uruchomionego procesu aktualizacji należy zaznaczyć pole wyboru, aby potwierdzić decyzję.", + "smw-admin-docu": "Ta strona specjalna pomoże Ci w instalacji, modernizacji, utrzymaniu i użytkowaniu Semantycznego MediaWiki a także udostępnia dalsze funkcje i zadania administracyjne oraz statystyki.\nPamiętaj przed wykonaniem funkcji administracyjnych o utworzeniu kopii zapasowej ważnych danych.", + "smw-admin-db": "Konfiguracja bazy danych", + "smw-admin-db-preparation": "Inicjalizacja tabeli trwa i może chwilę potrwać, zanim wyniki zostaną wyświetlone w oczekiwaniu na rozmiar i możliwe optymalizacje tabeli.", + "smw-admin-dbdocu": "Semantyczne MediaWiki wymaga rozszerzeń do bazy danych MediaWiki, które umożliwiają przechowywanie danych semantycznych.\nPoniższa funkcja zapewnia, że baza danych zostanie poprawnie przygotowana.\nZmiany wykonane w tym kroku nie mają wpływu na pozostałą część bazy danych MediaWiki i mogą łatwo zostać cofnięte w razie potrzeby.\nTa operacja może zostać wykonana wielokrotnie bez wyrządzenia szkód ale konieczna jest tylko raz w trakcie instalacji lub aktualizacji.", + "smw-admin-permissionswarn": "Jeśli operacja nie powiedzie się i wystąpią błędy SQL, najprawdopodobniej użytkownik bazy danych wykorzystywany przez Twoją wiki (sprawdź plik LocalSettings.php) nie ma wystarczających uprawnień.\nNadaj użytkownikowi dodatkowe uprawnienia do tworzenia i usuwania tabel, tymczasowo użyj konta root bazy danych w pliku LocalSettings.php lub użyj skryptu konserwacyjnego setupStore.php, który ma uprawnienia administratora.", + "smw-admin-dbbutton": "Inicjuj lub aktualizuj tabele", + "smw-admin-announce": "Ogłoś swoją wiki", + "smw-admin-deprecation-notice-docu": "Poniższa sekcja zawiera ustawienia, które zostały wycofane lub usunięte, ale zostały wykryte jako aktywne na tej wiki. Oczekuje się, że każda kolejna wersja usunie obsługę tych konfiguracji.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] jest przestarzały i zostanie usunięty w wersji $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] usunie (lub zastąpi) {{PLURAL:$2|następującą opcję|następujące opcje}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 jest przestarzały i zostanie usunięte w $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] został zastąpiony przez [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|opcja|opcje}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 zostaje zastąpiony przez $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] został usunięty w $2", + "smw-admin-deprecation-notice-title-notice": "Nadchodzące zmiany", + "smw-admin-deprecation-notice-title-notice-explanation": "Wykryto w tej wiki następujące ustawienia, które planuje się usunąć lub zmienić w przyszłej wersji.", + "smw-admin-deprecation-notice-title-replacement": "Zastąpione lub zmienione ustawienia", + "smw-admin-deprecation-notice-title-replacement-explanation": "Poniższa sekcja zawiera ustawienia, które zostały zmienione lub zmodyfikowane i zaleca się natychmiast zaktualizować ich nazwy lub format.", + "smw-admin-deprecation-notice-title-removal": "Usunięte ustawienia", + "smw-admin-deprecation-notice-title-removal-explanation": "Wymienione ustawienia zostały usunięte w poprzedniej wersji, ale zostały wykryte na tej wiki.", + "smw-admin-deprecation-notice-section-legend": "Legenda", + "smw-smwadmin-refresh-title": "Naprawa i aktualizacja danych", + "smw_smwadmin_datarefresh": "Odbudowa danych", + "smw_smwadmin_datarefreshdocu": "Istnieje możliwość przywrócenia wszystkich danych Semantic MediaWiki w oparciu o aktualną zawartość wiki.\nMoże to być przydatne do naprawy uszkodzonych danych lub odświeżenia danych, jeśli wewnętrzny format zmienił się z powodu jakichś aktualizacji oprogramowania.\nAktualizacja jest wykonywana strona po stronie i nie zostanie ukończona natychmiast.\nPoniżej przedstawiono, czy aktualizacja jest w toku. Można również uruchomić lub zatrzymać aktualizację (chyba, że ta funkcja została wyłączona przez administratora).", + "smw_smwadmin_datarefreshprogress": "Aktualizacja trwa.\nTo normalne, że aktualizacja postępuje powoli, gdyż odświeżanie danych wykonywane jest w małymi porcjami za każdym razem, gdy użytkownik korzysta z wiki.\nAby szybciej zakończyć aktualizację można uruchomić skrypt MediaWiki runJobs.php (użyj opcji --maxjobs 1000, aby ograniczyć liczbę aktualizacji, które wykonywane są podczas jednego uruchomienia).\nPrzewidywany postęp bieżącej aktualizacji:", + "smw_smwadmin_datarefreshbutton": "Zaplanuj przebudowę danych", + "smw_smwadmin_datarefreshstop": "Zatrzymaj aktualizację danych", + "smw_smwadmin_datarefreshstopconfirm": "Tak, jestem {{GENDER:$1|pewny|pewna}}.", + "smw-admin-outdateddisposal-button": "Zaplanuj usuwanie", + "smw-admin-feature-disabled": "Ta funkcja została wyłączona w tej wiki. Aby uzyskać więcej szczegółów, przeczytaj powiązaną stronę pomocy.", + "smw-admin-support": "Uzyskiwanie wsparcia", + "smw-admin-supportdocu": "Różnorodne źródła informacji mogą okazać się przydatne, jeśli wystąpią problemy:", + "smw-admin-installfile": "Jeśli napotkasz trudności z instalacją, zacznij od sprawdzenia wskazówek w pliku INSTALL /a> i na stronie instalacji.", + "smw-admin-smwhomepage": "Kompletna dokumentacja Semantic MediaWiki znajduje się na stronie semantic-mediawiki.org.", + "smw-admin-bugsreport": "Błędy możesz zgłaszać w GitHub.", + "smw-admin-questions": "Jeśli nadal masz pytania lub sugestie, przyłącz się do dyskusji na forum użytkowników Semantic MediaWiki.", + "smw-admin-other-functions": "Inne funkcje", + "smw-admin-statistics-extra": "Funkcje statystyczne", + "smw-admin-statistics": "Statystyki", + "smw-admin-supplementary-section-title": "Funkcje dodatkowe", + "smw-admin-supplementary-section-subtitle": "Wspierane funkcje", + "smw-admin-supplementary-section-intro": "Niektóre z wymienionych funkcji w tej sekcji mogą być ograniczone i dlatego są niedostępne na tej wiki.", + "smw-admin-supplementary-settings-title": "Ustawienia konfiguracji", + "smw-admin-supplementary-settings-intro": "$1 wyprowadza zbiorczą listę dostępnych ustawień używanych w Semantic MediaWiki", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Statystyki operacyjne", + "smw-admin-supplementary-operational-statistics-short-title": "statystyki operacyjne", + "smw-admin-supplementary-operational-statistics-intro": "$1 pokazuje rozszerzony zestaw statystyk", + "smw-admin-supplementary-operational-statistics-cache-title": "Statystyki pamięci cache", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 wyświetla statystyki dotyczące pamięci cache", + "smw-admin-supplementary-elastic-version-info": "Wersja", + "smw-admin-supplementary-elastic-intro": "$1 informuje o ustawieniach i indeksie statystyk", + "smw-admin-supplementary-elastic-functions": "Wspierane funkcje", + "smw-admin-supplementary-elastic-settings-title": "Ustawienia (indeksy)", + "smw-admin-supplementary-elastic-mappings-title": "Mapowania", + "smw-admin-supplementary-elastic-mappings-summary": "Podsumowanie", + "smw-admin-supplementary-elastic-nodes-title": "Węzły", + "smw-admin-supplementary-elastic-nodes-intro": "$1 pokazuje statystyki węzła", + "smw-admin-supplementary-elastic-indices-title": "Wskaźniki", + "smw-admin-supplementary-elastic-statistics-title": "Statystyki", + "smw-admin-supplementary-elastic-status-replication": "Status replikacji", + "smw-admin-supplementary-elastic-status-last-active-replication": "Ostatnia aktywna replikacja: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Interwał odświeżania: $1", + "smw-admin-supplementary-elastic-replication-header-title": "Stan replikacji", + "smw-admin-supplementary-elastic-replication-function-title": "Replikacja", + "smw-admin-supplementary-elastic-replication-files": "Pliki", + "smw-admin-supplementary-elastic-replication-pages": "Strony", + "smw-admin-supplementary-elastic-endpoints": "Punkty końcowe", + "smw-admin-supplementary-elastic-config": "Konfiguracje", + "smw-list-count": "Lista zawiera $1 {{PLURAL:$1|pozycję|pozycje}}.", + "smw-property-label-similarity-title": "Raport podobieństwa etykiet właściwości", + "smw-property-label-similarity-intro": "$1 oblicza podobieństwa dla istniejących etykiet właściwości", + "smw-property-label-similarity-threshold": "Próg:", + "smw-property-label-similarity-type": "Wyświetl ID typu", + "smw-property-label-similarity-noresult": "Nie znaleziono wyników dla wybranych opcji.", + "smw_adminlinks_datastructure": "Struktura danych", + "smw_adminlinks_displayingdata": "Pokaż dane", + "smw_adminlinks_inlinequerieshelp": "Pomoc dotycząca wewnętrznych zapytań", + "smw-property-indicator-type-info": "Właściwość zdefiniowana przez {{PLURAL:$1|użytkownika|system}}", + "smw-createproperty-isproperty": "To jest właściwość typu $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Dopuszczalna wartość dla tej własności to|Dopuszczalne wartości dla tej własności to:}}", + "smw-paramdesc-category-delim": "Ogranicznik", + "smw-paramdesc-category-template": "Szablon do formatowania elementów z", + "smw-paramdesc-category-userparam": "Parametr do przekazania do szablonu", + "smw-info-par-message": "Wiadomość do wyświetlenia.", + "prefs-smw": "Semantyczna MediaWiki", + "prefs-general-options": "Opcje ogólne", + "prefs-extended-search-options": "Wyszukiwanie zaawansowane", + "prefs-ask-options": "Wyszukiwanie semantyczne", + "smw-prefs-intro-text": "Opcje poniżej są dostarczane przez [https://www.semantic-mediawiki.org/ semantyczną MediaWiki] (lub powiązane rozszerzenia), aby umożliwić indywidualne dostosowanie do wybranych funkcji. Więcej informacji na ten temat można uzyskać w [https://www.semantic-mediawiki.org/wiki/Help:User_preferences sekcji pomocy].", + "smw-prefs-ask-options-tooltip-display": "Wyświetlaj opis parametru za pomocą „dymku” z informacją", + "smw-prefs-general-options-time-correction": "Włącz korekcję czasu dla stron specjalnych, korzystając z lokalnego przesunięcia czasu w preferencjach", + "smw-prefs-general-options-disable-editpage-info": "Wyłącz tekst wprowadzający na stronie edycji", + "smw-prefs-general-options-disable-search-info": "Wyłącz informacje dotyczące obsługi składni na standardowej stronie wyszukiwania", + "smw-prefs-general-options-suggester-textinput": "Włącz wspomaganie wprowadzania dla encji semantycznych", + "smw-prefs-help-general-options-suggester-textinput": "Włączenie tej opcji umożliwia użycie [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance pomocy wejściowej] w celu znalezienia właściwości, pojęć i kategorii z kontekstu wejściowego.", + "smw-ui-tooltip-title-property": "Właściwość", + "smw-ui-tooltip-title-quantity": "Konwersja jednostek", + "smw-ui-tooltip-title-info": "Informacja", + "smw-ui-tooltip-title-service": "Linki usługi", + "smw-ui-tooltip-title-warning": "Ostrzeżenie", + "smw-ui-tooltip-title-error": "Błąd", + "smw-ui-tooltip-title-parameter": "Parametr", + "smw-ui-tooltip-title-event": "Wydarzenie", + "smw-ui-tooltip-title-note": "Notatka", + "smw-ui-tooltip-title-legend": "Legenda", + "smw-ui-tooltip-title-reference": "Przypis", + "smw_unknowntype": "Typ \"$1\" tego atrybutu jest nieprawidłowy.", + "smw_concept_header": "Strony koncepcji „$1”", + "smw_conceptarticlecount": "{{PLURAL:$1|Wyświetlona jest jedna strona |Wyświetlone zostały $1 strony|Wyświetlonych zostało $1 stron}}.", + "smw-qp-empty-data": "Żądane dane nie mogły zostać wyświetlone ze względu na niewystarczające kryteria wyboru.", + "right-smw-admin": "Dostęp do zarządzania (Semantyczna MediaWiki)", + "restriction-level-smw-pageedit": "zabezpieczono (tylko użytkownicy z odpowiednimi uprawnieniami)", + "action-smw-patternedit": "edycji wyrażeń regularnych, używanych w Semantic MediaWiki", + "group-smwadministrator": "Administratorzy (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|administrator|administratorka}} (Semantic MediaWiki)", + "grouppage-smwadministrator": "{{ns:project}}:Administratorzy (Semantic MediaWiki)", + "group-smwcurator": "Kuratorzy (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|kurator (Semantic MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:Kuratorzy (Semantic MediaWiki)", + "action-smw-admin": "dostęp do zarządzania semantycznej MediaWiki", + "action-smw-ruleedit": "edytowania strony reguł (Semantic MediaWiki)", + "smw-property-predefined-default": "„$1” jest właściwością predefiniowaną.", + "smw-property-predefined-common": "Ta właściwość jest wdrożona automatycznie (znana jest także jako [https://www.semantic-mediawiki.org/wiki/Help:Special_properties specjalna właściwość]) i zawiera dodatkowe uprawnienia administracyjne, ale można jej używać tak jak innych [https://www.semantic-mediawiki.org/wiki/Property właściwości zdefiniowanych przez użytkownika].", + "smw-property-predefined-long-askde": "Jest to wartość numeryczna obliczana na podstawie zagnieżdżenia podkwerendy, łańcuchów własności i dostępnych elementów opisu z wykonaniem zapytania ograniczonego przez parametr konfiguracyjny [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-sp-properties-docu": "Ta strona wymienia [https://www.semantic-mediawiki.org/wiki/Property właściwości] dostępne dla tej wiki oraz liczniki ich użycia. Dla utrzymania aktualności statystyk liczników zaleca się regularne uruchamianie skryptu administracyjnego [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics statystyk właściwości]. Odmiennego spojrzenia dostarczają wykazy na stronach specjalnych [[Special:UnusedProperties|właściwości niewykorzystywanych]] oraz [[Special:WantedProperties|pożądanych]].", + "smw-sp-properties-cache-info": "Wymienione dane zostały pobrane z [https://www.semantic-mediawiki.org/wiki/Caching cache] i były ostatnio aktualizowane $1.", + "smw-sp-properties-header-label": "Lista właściwości", + "smw-sp-admin-settings-button": "Utwórz listę ustawień", + "smw-admin-idlookup-title": "Szukaj", + "smw-admin-idlookup-input": "Wyszukiwanie:", + "smw-admin-objectid": "Identyfikator:", + "smw-admin-tab-general": "Przegląd", + "smw-admin-tab-supplement": "Funkcje dodatkowe", + "smw-admin-tab-registry": "Rejestr", + "smw-admin-tab-alerts": "Powiadomienia", + "smw-admin-configutation-tab-settings": "Ustawienia", + "smw-admin-configutation-tab-namespaces": "Przestrzenie nazw", + "smw-admin-configutation-tab-schematypes": "Typy schematów", + "smw-admin-maintenance-tab-tasks": "Zadania", + "smw-admin-maintenance-no-description": "Brak opisu.", + "smw-livepreview-loading": "Trwa ładowanie…", + "smw-sp-searchbyproperty-resultlist-header": "Lista wyników", + "smw-sp-searchbyproperty-nonvaluequery": "Lista wartości, które mają przypisaną właściwość „$1”.", + "smw-sp-searchbyproperty-valuequery": "Lista stron, które mają właściwość „$1” z wartością „$2”.", + "smw-datavalue-number-textnotallowed": "„$1” nie może być przypisane do zadeklarowanego typu liczbowego o wartości $2.", + "smw-datavalue-number-nullnotallowed": "„$1” zwrócił wartość „NULL”, która nie jest dozwolona jako liczba.", + "smw-search-input": "Wprowadź i wyszukaj", + "smw-search-syntax": "Składnia", + "smw-search-profile": "Rozszerzone", + "smw-search-profile-tooltip": "Funkcje wyszukiwania w połączeniu z Semantyczną MediaWiki", + "smw-search-profile-sort-best": "Najlepsze dopasowanie", + "smw-search-profile-sort-recent": "Najnowsze", + "smw-search-profile-sort-title": "Tytuł", + "smw-search-profile-extended-help-namespace": "Pole wyboru przestrzeni nazw zostanie ukryte, gdy tylko zostanie wybrany formularz, ale można je pokazać za pomocą przycisku „pokaż/ukryj”.", + "smw-search-profile-extended-help-query-link": "(Aby uzyskać więcej szczegółów $1).", + "smw-search-profile-extended-section-sort": "Sortuj według", + "smw-search-profile-extended-section-form": "Formularze", + "smw-search-profile-extended-section-namespace": "Przestrzeń nazw", + "smw-search-profile-extended-section-query": "Zapytanie", + "smw-search-profile-link-caption-query": "zobacz", + "smw-search-show": "Pokaż", + "smw-search-hide": "Ukryj", + "log-name-smw": "Rejestr semantycznej MediaWiki", + "log-show-hide-smw": "$1 rejestr semantycznej MediaWiki", + "logeventslist-smw-log": "Rejestr Semantycznej MediaWiki", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|Import $1]]", + "smw-property-predefined-long-errp": "W większości przypadków jest to spowodowane niedopasowaniem lub ograniczeniem [[Property:Allows value|wartości]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value „$1”] jest predefiniowaną właściwością, która może zdefiniować listę dopuszczalnych wartości ograniczających przyporządkowania wartości dla właściwości.", + "smw-datavalue-property-restricted-annotation-use": "Właściwość „$1” ma ograniczony obszar zastosowania i nie może być używana przez użytkownika jako właściwość adnotacji.", + "smw-datavalue-property-restricted-declarative-use": "Właściwość „$1” jest właściwością deklaratywną i może być używana tylko na stronie właściwości lub kategorii.", + "smw-datavalue-property-invalid-character": "Właściwość „$1” zawiera znak „$2”, będący część etykiety właściwości i dlatego została zaklasyfikowana jako nieprawidłowa.", + "smw-datavalue-restricted-use": "Wartość danych „$1” została oznaczona do ograniczonego użytku.", + "smw-datavalue-invalid-number": "„$1” nie może być interpretowane jako liczba.", + "smw-types-list": "Lista typów danych", + "smw-types-default": "„$1” jest wbudowanym typem danych.", + "smw-types-help": "Więcej informacji i przykładów można znaleźć na tej [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 stronie pomocy].", + "smw-type-boo": "„$1” jest podstawowym typem danych opisującym wartość prawda/fałsz.", + "smw-type-tel": "„$1” to specjalny typ danych do opisywania międzynarodowych numerów telefonicznych zgodnie z RFC 3966.", + "smw-type-dat": "„$1” to podstawowy typ danych, reprezentujący punkty w czasie w ujednoliconym formacie.", + "smw-type-ema": "„$1” jest specjalnym typem danych reprezentującym adres e-mail.", + "smw-type-tem": "„$1” jest specjalnym typem danych reprezentującym temperaturę.", + "smw-type-qty": "„$1” jest typem danych opisującym wielkości z reprezentacją numeryczną i jednostką miary.", + "smw-type-tab-properties": "Właściwości", + "smw-type-tab-types": "Typy", + "smw-type-tab-errors": "Błędy", + "smw-type-primitive": "Podstawowe", + "smw-type-contextual": "Zależne od kontekstu", + "smw-type-compound": "Złożone", + "smw-type-container": "Kontenery", + "smw-property-predefined-errt": "„$1” jest predefiniowaną właściwością, zawierającą tekstowy opis błędu i pochodzi z [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantycznej MediaWiki].", + "smw-property-predefined-mdat": "„$1” jest predefiniowaną właściwością, która odpowiada dacie ostatniej modyfikacji strony i pochodzi z [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantycznej MediaWiki].", + "smw-property-predefined-cdat": "„$1” jest predefiniowaną właściwością, która odpowiada dacie pierwszej wersji tematu i pochodzi z [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantycznej MediaWiki].", + "smw-property-predefined-newp": "„$1” jest predefiniowaną właściwością, wskazującą, czy temat jest nowy, czy nie, i pochodzi z [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantycznej MediaWiki].", + "smw-property-predefined-mime": "„$1” jest predefiniowaną właściwością, opisującą typ MIME przesłanego pliku i pochodzi z [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantycznej MediaWiki].", + "smw-property-predefined-prec": "„$1” jest predefiniowaną właściwością, opisującą [https://www.semantic-mediawiki.org/wiki/Help:Display_precision precyzję wyświetlania] (w cyfrach dziesiętnych) dla liczbowych typów danych.", + "smw-datavalue-monolingual-dataitem-missing": "Brak oczekiwanego elementu do budowania jednojęzycznej wartości złożonej.", + "smw-datavalue-languagecode-missing": "W przypadku adnotacji „$1” parser nie był w stanie określić kodu języka (np. „foo@en”).", + "smw-datavalue-languagecode-invalid": "„$1” nie został rozpoznany jako obsługiwany kod języka.", + "smw-property-predefined-lcode": "„$1” to predefiniowana właściwość, reprezentująca kod języka sformatowany w BCP47 i pochodzi z [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-type-mlt-rec": "„$1” to typ danych [https://www.semantic-mediawiki.org/wiki/Help:Container kontener], który wiąże wartość tekstową z określonym [[Property:Language code|kodem języka]].", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|sekunda|sekundy|sekund}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|sekunda|sekundy|sekund}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|sekunda|sekundy|sekund}}", + "smw-datavalue-allows-pattern-mismatch": "Wyrażenie regularne „$2” zaklasyfikowało wartość „$1” jako niepoprawną.", + "smw-datavalue-feature-not-supported": "Funkcja „$1” jest nieobsługiwana lub została wyłączona w tej wiki.", + "smw-property-predefined-boo": "„$1” jest [[Special:Types/Boolean|typem danych]] i predefiniowaną właściwością do reprezentowania wartości logicznych i pochodzi z [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantycznej MediaWiki].", + "smw-property-predefined-num": "„$1” jest [[Special:Types/Number|typem danych]] i predefiniowaną właściwością do reprezentowania wartości liczbowych i pochodzi z [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantycznej MediaWiki].", + "smw-property-predefined-dat": "„$1” jest [[Special:Types/Date|typem danych]] i predefiniowaną właściwością do reprezentowania wartości daty i pochodzi z [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantycznej MediaWiki].", + "smw-property-predefined-uri": "„$1” jest [[Special:Types/URL|typem danych]] i predefiniowaną właściwością do reprezentowania wartości URI/URL i pochodzi z [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantycznej MediaWiki].", + "smw-property-predefined-qty": "„$1” jest [[Special:Types/Quantity|typem danych]] i predefiniowaną właściwością do reprezentowania wartości ilościowych i pochodzi z [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantycznej MediaWiki].", + "smw-datavalue-time-invalid-date-components-common": "„$1” zawiera informacje, które nie jest interpretowalne.", + "smw-datavalue-time-invalid-date-components-dash": "„$1” zawiera zbędny myślnik lub inne znaki, które nie powinny się znaleźć w dacie.", + "smw-datavalue-time-invalid-date-components-empty": "„$1” zawiera puste elementy.", + "smw-datavalue-time-invalid-date-components-three": "„$1” zawiera więcej niż trzy komponenty potrzebne do interpretacji daty.", + "smw-datavalue-time-invalid-date-components-sequence": "„$1” zawiera ciąg, który nie mógł zostać zinterpretowany jako prawidłowy element daty.", + "smw-datavalue-time-invalid-ampm": "„$1” zawiera „$2” jako element godziny, który jest nieprawidłowy dla konwencji 12-godzinnej.", + "smw-datavalue-external-formatter-invalid-uri": "„$1” jest nieprawidłowym adresem URL.", + "smw-datavalue-keyword-maximum-length": "Słowo kluczowe przekroczyło maksymalną długość $1 {{PLURAL:$1|znaku|znaków}}.", + "smw-datavalue-parse-error": "Podana wartość „$1” nie została niezrozumiała.", + "smw-datavalue-propertylist-invalid-property-key": "Lista właściwości „$1” zawiera nieprawidłowy klucz właściwości „$2”.", + "smw-datavalue-type-invalid-typeuri": "Typu „$1” nie można przekształcić w prawidłową reprezentację URI.", + "smw-parser-invalid-json-format": "Parser JSON zwrócił błąd „$1”.", + "smw-property-preferred-label-language-combination-exists": "„$1” nie może być użyty jako preferowana etykieta, ponieważ język „$2” jest już przypisany do etykiety „$3”.", + "smw-clipboard-copy-link": "Kopiuj link do schowka", + "smw-data-lookup": "Pobieranie danych...", + "smw-data-lookup-with-wait": "Żądanie jest przetwarzane i może zająć chwilę.", + "smw-no-data-available": "Brak dostępnych danych.", + "smw-property-req-violation-predefined-type": "Właściwość „$1” jako predefiniowana właściwość zawiera deklarację typu „$2”, która jest niezgodna z domyślnym typem tej właściwości.", + "smw-property-req-violation-type": "Właściwość zawiera konkurencyjne specyfikacje typów, które mogą skutkować adnotacjami o nieprawidłowej wartości, dlatego oczekuje się, że użytkownik przydzieli jeden odpowiedni typ.", + "protect-level-smw-pageedit": "Zezwalaj tylko użytkownikom z uprawnieniami do edycji stron (Semantic MediaWiki)", + "smw-edit-protection": "Ta strona jest [[Property:Is edit protected|zabezpieczona]], aby zapobiec przypadkowej modyfikacji danych i może być edytowana tylko przez użytkowników z odpowiednimi uprawnieniami do edycji („$1”) lub [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups grupę użytkowników].", + "smw-format-datatable-emptytable": "Brak danych dostępnych w tabeli", + "smw-format-datatable-infothousands": " ", + "smw-format-datatable-loadingrecords": "Ładowanie...", + "smw-format-datatable-processing": "Przetwarzanie...", + "smw-format-datatable-search": "Wyszukiwanie:", + "smw-format-datatable-zerorecords": "Nie znaleziono pasujących pozycji", + "smw-format-datatable-first": "Pierwszy", + "smw-format-datatable-last": "Ostatni", + "smw-format-datatable-next": "Następny", + "smw-format-datatable-previous": "Poprzedni", + "smw-format-datatable-toolbar-export": "Eksportuj", + "smw-category-invalid-redirect-target": "Kategoria „$1” zawiera nieprawidłowy cel przekierowania do przestrzeni nazw innej niż kategoria.", + "smw-postproc-queryref": "Semantyczna MediaWiki zainicjuje odświeżanie strony z powodu wymaganego przetwarzania zapytania.", + "apihelp-smwinfo-summary": "Moduł API do pobierania informacji o statystykach Semantic MediaWiki i innych metainformacjach.", + "apihelp-browsebyproperty-summary": "Moduł API do pobierania informacji o właściwości lub liście właściwości.", + "apihelp-browsebysubject-summary": "Moduł API do pobierania informacji o temacie.", + "apihelp-smwtask-summary": "Moduł API do wykonywania zadań związanych z Semantic MediaWiki.", + "smw-api-invalid-parameters": "Nieprawidłowe parametry, „$1”", + "smw-property-page-list-count": "Wyświetlanie $1 {{PLURAL:$1|strony|stron}} przy użyciu tej właściwości.", + "smw-property-page-list-search-count": "Wyświetlanie $1 {{PLURAL:$1|strony|stron}} przy użyciu tej właściwości z dopasowaniem wartości „$2”.", + "smw-property-reserved-category": "Kategoria", + "smw-category": "Kategoria", + "smw-browse-property-group-title": "Grupa właściwości", + "smw-browse-property-group-label": "Etykieta grypy właściwości", + "smw-browse-property-group-description": "Opis grupy właściwości", + "smw-filter": "Filtr", + "smw-section-expand": "Rozwiń sekcję", + "smw-section-collapse": "Zwiń sekcję", + "smw-ask-format-help-link": "format [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Pomoc", + "smw-cheat-sheet": "Ściągawka", + "smw-property-predefined-label-skey": "Klucz sortowania", + "smw-processing": "Przetwarzanie...", + "smw-loading": "Ładowanie...", + "smw-preparing": "Przygotowuję ...", + "smw-copy": "Kopiuj", + "smw-copy-clipboard-title": "Kopiuje zawartość do schowka", + "smw-jsonview-search-label": "Szukaj:", + "smw-redirect-target-unresolvable": "Cel jest nierozwiązalny z powodu „$1”", + "smw-types-title": "Typ: $1", + "smw-schema-error-json": "Błąd JSON: „$1”", + "smw-schema-summary-title": "Podsumowanie", + "smw-schema-title": "Schemat", + "smw-schema-usage": "Wykorzystanie", + "smw-schema-type": "Typ schematu", + "smw-schema-tag": "{{PLURAL:$1|Znacznik|Znaczniki}}", + "smw-ask-title-keyword-type": "Wyszukiwanie słów kluczowych", + "smw-ask-message-keyword-type": "To wyszukiwanie pasuje do warunku $1.", + "smw-remote-source-unavailable": "Nie można połączyć się ze zdalnym celem „$1”.", + "smw-parameter-missing": "Brak parametru „$1”.", + "smw-property-tab-redirects": "Synonimy", + "smw-property-tab-subproperties": "Podwłaściwości", + "smw-property-tab-errors": "Niewłaściwe przypisania", + "smw-property-tab-specification": "... więcej", + "smw-concept-tab-errors": "Błędy", + "smw-ask-tab-result": "Wynik", + "smw-ask-tab-code": "Kod", + "smw-pendingtasks-setup-tasks": "Zadania", + "smw-report": "Raport", + "smw-legend": "Legenda", + "smw-facetedsearch-intro-tab-explore": "Odkrywaj", + "smw-facetedsearch-intro-tab-search": "Szukaj", + "smw-facetedsearch-format-table": "Tabela", + "smw-listingcontinuesabbrev": "cd.", + "smw-showingresults": "Poniżej znajduje się lista {{PLURAL:$1|z '''1''' wynikiem|'''$1''' wyników}}, rozpoczynając od wyniku numer '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/pms.json b/mediawiki/extensions/SemanticMediaWiki/i18n/pms.json new file mode 100644 index 0000000..a40f3fb --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/pms.json @@ -0,0 +1,241 @@ +{ + "@metadata": { + "authors": [ + "Borichèt", + "Dragonòt" + ] + }, + "smw-desc": "Rende soa wiki pì acessìbil - për le màchine ''e'' j'uman ([https://www.semantic-mediawiki.org/wiki/Help:User_manual documentassion an linia])", + "smw_viewasrdf": "Fluss RDF", + "smw_finallistconjunct": "e", + "smw_isspecprop": "Costa propietà a l'é na propietà special ëd costa wiki.", + "smw_concept_description": "Descrission dël concet «$1»", + "smw_no_concept_namespace": "Ij concet a peulo mach esse definì ant le pàgine dlë spassi nominal Concept:.", + "smw_multiple_concepts": "Minca pàgina ëd concet a peul avèj mach na definission.", + "smw_concept_cache_miss": "Ël concet «$1» a peul pa esse dovrà ant ës moment, përchè la configurassion ëd la wiki a ciama ch'a sia calcolà fòra ëd linia.\nSe ël problema a van nen via an chèich moment, ciamé a l'aministrator ëd sò sit ëd rende 's concet disponìbil.", + "smw_noinvannot": "Ij valor a peulo pa esse assignà a le proprietà anverse.", + "version-semantic": "Estension semàntiche", + "smw_baduri": "URI dla forma \"$1\" a son pa përmëttù.", + "smw_printername_count": "Conta dj'arzultà", + "smw_printername_csv": "esportassion an CSV", + "smw_printername_dsv": "esportassion an DSV", + "smw_printername_debug": "Arcesta d'eliminassion dij bigat (për gent pràtica)", + "smw_printername_embedded": "Contù dle pàgine mojà", + "smw_printername_json": "esportassion an JSON", + "smw_printername_list": "Lista", + "smw_printername_ol": "Enumerassion", + "smw_printername_ul": "Detaj", + "smw_printername_table": "Tàula", + "smw_printername_broadtable": "Tàula estèisa", + "smw_printername_template": "Stamp", + "smw_printername_rdf": "Esportassion RDF", + "smw_printername_category": "Categorìa", + "validator-type-class-SMWParamSource": "test", + "smw-paramdesc-limit": "Ël màssim nùmer d'arzultà da smon-e", + "smw-paramdesc-offset": "La diferensa dël prim arzultà", + "smw-paramdesc-headers": "Mostré j'antestassion/ij nòm dle proprietà", + "smw-paramdesc-mainlabel": "L'etichëtta da dé al nòm ëd la pàgina prinsipal", + "smw-paramdesc-link": "Smon-e ij valor com dle liure", + "smw-paramdesc-intro": "Ël test da mostré prima dj'arzultà dl'arcesta, s'a-i na j'é", + "smw-paramdesc-outro": "Ël test da mostré apress a j'arzultà dl'arcesta, s'a-i na j'é", + "smw-paramdesc-default": "Ël test da mostré s'a-i é gnun arzultà a l'arcesta", + "smw-paramdesc-sep": "Ël separator për ij valor", + "smw-paramdesc-showsep": "Smon-e ël separator an testa a l'archivi CSV (\"sep=\")", + "smw-paramdesc-distribution": "Nopà ëd visualisé tùit ij valor, conté soe ocorense, e mostreje.", + "smw-paramdesc-distributionsort": "Ordiné la distribussion dij valor për nùmer d'ocorense.", + "smw-paramdesc-distributionlimit": "Limité la distribussion dij valor al cont ëd mach chèich valor.", + "smw-paramdesc-template": "Ël nòm ëd në stamp con ël qual visualisé j'arzultà", + "smw-paramdesc-columns": "Ël nùmer ëd colòne andoa mostré j'arzultà (lë stàndard a l'é $1)", + "smw-paramdesc-userparam": "Un valor passà an mincadun-a ciamà dë stamp, se në stamp a l'é dovrà", + "smw-paramdesc-introtemplate": "Ël nòm ëd në stamp da mostré prima dj'arzultà dl'arserca, s'a-i në j'é", + "smw-paramdesc-outrotemplate": "Ël nòm ëd në stamp da mostré apress ëd j'arzultà dl'arserca, s'a-i në j'é", + "smw-paramdesc-embedformat": "L'etichëtta HTML dovrà për definì j'antestassion", + "smw-paramdesc-embedonly": "Smon-e nen j'antestassion", + "smw-paramdesc-table-class": "Na classa CSS adissional da amposté për la tàula", + "smw-paramdesc-rdfsyntax": "La sintassi RDF da dovré", + "smw-paramdesc-csv-sep": "Ël separator da dovré", + "smw-paramdesc-dsv-separator": "Ël separator da dovré", + "smw-paramdesc-dsv-filename": "Ël nòm për l'archivi DSV", + "smw-smwdoc-description": "A mostra na tàula ëd tùit ij paràmetr che a peulo esse dovrà për ël formà d'arzultà specificà ansema con dij valor e dle descrission predefinì.", + "smw-smwdoc-par-format": "Ël formà dl'arzultà për mostré la documentassion d'un paràmetr.", + "smw-smwdoc-par-parameters": "Che paràmetr mostré. «specific» për coj giontà dal formà, «base» për coj disponìbij an tùit ij formà, e «all» për tùit doi.", + "smw-paramdesc-sort": "Propietà conforma a la qual ordiné l'arcesta", + "smw-paramdesc-order": "Órdin ëd la selession dl'arcesta", + "smw-paramdesc-searchlabel": "Ël test për continué l'arserca", + "smw-paramdesc-named_args": "Nòmina j'argoment passà a lë stamp", + "smw-paramdesc-export": "Opsion d'esportassion", + "smw-paramdesc-prettyprint": "Na stampa bin fàita che a visualisa ëd neuve righe e andentassion", + "smw-paramdesc-source": "Sorgiss d'arcesta alternativa", + "smw-paramdesc-jsonsyntax": "Sintassi JSON da dovré", + "smw-printername-feed": "Fluss RSS e Atom", + "smw-paramdesc-feedtype": "Sòrt ëd fluss", + "smw-paramdesc-feedtitle": "Ël test da mostré com tìtol dël fluss", + "smw-paramdesc-feeddescription": "Ël test da dovré com descrission dël fluss", + "smw-paramdesc-feedpagecontent": "Contnù ëd la pàgina da smon-e con ël fluss", + "smw-label-feed-description": "$1 $2 fluss", + "smw_iq_disabled": "J'arceste semàntiche a son ëstàite disabilità për sta wiki-sì.", + "smw_iq_moreresults": "... àutri arzultà", + "smw_parseerror": "Ël valor dàit a l'é pa stàit capì.", + "smw_notitle": "''$1'' a peul pa esse dovrà com nòm ëd pàgina an sta wiki-sì.", + "smw_noproperty": "''$1'' a peul pa esse dovrà com nòm ëd propietà an sta wiki-sì.", + "smw_wrong_namespace": "Mach le pàgine ant lë spassi nominal ''$1'' a son possìbij ambelessì.", + "smw_manytypes": "Pi che un tipo definì për proprietà.", + "smw_emptystring": "Stringhe veuide a son pa acetà.", + "smw_notinenum": "''$1'' a l'é pa ant la lista dij valor possìbij ($2) për sta proprietà-sì.", + "smw_noboolean": "''$1'' a l'é pa arconossù 'me valor Boolean (ver/fàuss).", + "smw_true_words": "ver,v,é!,é", + "smw_false_words": "fàuss,f,nò,n", + "smw_nofloat": "''$1'' a l'é pa un nùmer", + "smw_infinite": "Nùmer gròss com ''$1'' a son pa mantnù.", + "smw_unitnotallowed": "\"$1\" a l'é pa diciarà com unità dë mzura bon-a për costa proprietà.", + "smw_nounitsdeclared": "Gnun-e unità dë mzura a son stàite diciarà për costa propietà.", + "smw_novalues": "Pa gnun valor specificà.", + "smw_nodatetime": "La data ''$1'' a l'é pa stàita capìa.", + "smw_toomanyclosing": "A smija ch'a-i sio tròpe ocorense ëd ''$1'' ant l'arcesta.", + "smw_noclosingbrackets": "Chèich usagi ëd \"[[\" an soa arcesta a son pa stàit sarà da un corëspondent \"]]\".", + "smw_misplacedsymbol": "Ël sìmbol \"$1\" a l'era dovrà ant un pòst andoa a l'é pa ùtil.", + "smw_unexpectedpart": "La part \"$1\" ëd l'arcesta a l'é pa stàita capìa.\nJ'arzultà a peulo esse pa coma spetà.", + "smw_emptysubquery": "Chèich sot-arcesta a l'ha ëd condission pa bon-e.", + "smw_misplacedsubquery": "Chèich sot-arcesta a l'era dovrà ant un pòst andoa gnun-e sot-arceste a j'ero përmëttùe.", + "smw_valuesubquery": "Sot-arcesta pa mantnùa për ij valor ëd la proprietà \"$1\".", + "smw_badqueryatom": "Chèich part \"[[…]]\" ëd l'arcesta a l'é pa stàita capìa.", + "smw_propvalueproblem": "Ël valor ëd la proprietà \"$1\" a l'é pa stàit capì.", + "smw_noqueryfeature": "Chèica funsion ëd l'arcesta a l'é pa mantnù su sta wiki-sì e part ëd l'arcesta a l'é stàita sautà ($1).", + "smw_noconjunctions": "Le congiunsion ant j'arcesta a son pa mantnùe su sta wiki-sì e part ëd l'arcesta a l'é stàita sautà ($1).", + "smw_nodisjunctions": "Le disgiunsion ant j'arceste a son pa apogià su sta wiki-sì e part ëd l'arcesta a l'é stàita sautà ($1).", + "smw_querytoolarge": "Le condission ëd l'arcesta sì-sota a son pa stàite considerà an rason dla le restrission ëd la wiki ant la dimension o profondità dj'arceste: $1.", + "smw_notemplategiven": "Dà un valor për ël paràmetr \"stamp\" an manera che sto formà-sì d'arcesta a travaja.", + "smw_db_sparqlqueryproblem": "L'arzultà dl'anterogassion a l'ha pa podù esse otnù da la base ëd dàit SPARQL. S'eror a peul esse temporani o andiché n'eror ant ël programa dla base ëd dàit.", + "smw_db_sparqlqueryincomplete": "Rësponde a l'arcesta a l'é arzultà tròp complicà e a l'é stàit abortì. Chèich arzultà a podrìo manché. Se possìbil, ch'a preuva nopà a dovré n'arcesta pi sempia.", + "smw_type_header": "Proprietà dël tipo \"$1\".", + "smw_typearticlecount": "Mostré $1 {{PLURAL:$1|la proprietà|le proprietà}} ch'a deuvro sto tipo-sì.", + "smw_attribute_header": "Pàgine ch'a deuvro la proprietà \"$1\".", + "smw_attributearticlecount": "Smon-e $1 {{PLURAL:$1|la pàgine|le pàgine}} ch'a deuvro sta proprietà-sì.", + "exportrdf": "Espòrta pàgine an RDF", + "smw_exportrdf_docu": "Sta pàgina-sì a-j përmët d'oten-e dat da na pàgina an formà RDF.\nPër esporté dle pàgine, ch'a anserissa ij tìtoj ant la casela ëd test sì-sota, un tìtol për linia.", + "smw_exportrdf_recursive": "Esporté ricorsivament tute le pàgine corelà.\nNoté che l'arzultà a podrìa esse motobin gròss!", + "smw_exportrdf_backlinks": "Esporté ëdcò tute le pàgine ch'a s'arferisso a le pàgine esportà.\nA génera RDF navigàbij.", + "smw_exportrdf_lastdate": "Espòrta pa pàgine che a son pa stàite cangià dal moment specificà.", + "smw_exportrdf_submit": "Esporté", + "uriresolver": "Arzolvidor d'URI", + "properties": "Proprietà", + "smw-categories": "Categorìe", + "smw_properties_docu": "Le proprietà sì-sota a son dovrà ant la wiki.", + "smw_property_template": "$1 ëd tipo $2 ($3 {{PLURAL:$3|utilisassion}})", + "smw_propertylackspage": "Tute le proprietà a dovrìo esse descrivùe da na pàgina!", + "smw_propertylackstype": "Gnun tipo a l'é stàit specificà për sta proprietà-sì (as fa cont ch'a sia ëd tipo $1, për adess).", + "smw_propertyhardlyused": "Sta proprietà-sì a l'é dovrà apen-a ant la wiki!", + "unusedproperties": "Proprietà pa dovrà", + "smw-unusedproperties-docu": "Le proprietà sì-sota a esisto, bele che gnun-e àutre pàgine a-j deuvro.", + "smw-unusedproperty-template": "$1 ëd tipo $2", + "wantedproperties": "Proprietà vorsùe", + "smw-wantedproperties-docu": "Le proprietà sì-sota a son dovrà ant la wiki ma a l'han ancó pa na pàgina për descrivje.", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|usagi|usagi}})", + "smw_purge": "Rinfrësca", + "types": "Tipo", + "smw_types_docu": "Cola sì-sota a l'é na lista ëd tùit ij tipo ëd dat che a peulo esse assignà a la proprietà.", + "smw_uri_doc": "L'arzolvidor d'URI a realisa la [$1 conclusion dël TAG dël W3C a propòsit ëd httpRange-14].\nA fa an manera che j'uman a dvento pa ëd sit ëd la Ragnà.", + "ask": "Arserca semàntica", + "smw_ask_sortby": "Órdina për colòna (opsional)", + "smw_ask_ascorder": "Chërsent", + "smw_ask_descorder": "Calant", + "smw_ask_submit": "Trové d'arzultà", + "smw_ask_editquery": "Modifiché l'arcesta", + "smw_add_sortcondition": "[Gionta condission d'órdin]", + "smw_ask_hidequery": "Stërmé l'arcesta", + "smw_ask_help": "Agiut an sj'arceste", + "smw_ask_queryhead": "Anterogassion", + "smw_ask_printhead": "Dat adissionaj da smon-e", + "smw_ask_printdesc": "(gionta un nòm ëd proprietà për linia);", + "smw_ask_format_as": "Ampaginé com:", + "smw_ask_defaultformat": "stàndard", + "smw_ask_otheroptions": "Àutre opsion", + "smw-ask-otheroptions-info": "Costa session a conten dj'opsion che a modìfico j'istrussion dë stampa. Le descrission dij paràmetr a peulo esse vëddùe passandje dzora con ël rat.", + "smw-ask-otheroptions-collapsed-info": "Për piasì, ch'a deuvra la plancia «pi» për vëdde tute j'opsion disponìbij", + "smw_ask_show_embed": "Smon-e ël còdes antern", + "smw_ask_hide_embed": "Stërmé ël còdes antern", + "smw_ask_embed_instr": "Për anclude costa anterogassion an linia ant na pàgina wiki, ch'a deuvra ël còdes sì-sota.", + "smw-ask-delete": "[Scancelé]", + "smw-ask-sorting": "Ordiné", + "smw-ask-format-selection-help": "Për na descrission detajà, për piasì ch'a vìsita la pàgina d'agiut $1.", + "searchbyproperty": "Serca për proprietà", + "smw_sbv_docu": "Serca për tute le pàgine che a l'han proprietà e valor dàit.", + "smw_sbv_novalue": "Ch'a anserissa un valor bon për la proprietà, o ch'a varda tùit ij valor ëd le proprietà për \"$1\".", + "smw_sbv_displayresultfuzzy": "Na lista ëd tute le pàgine che a l'han la proprietà \"$1\" con valor \"$2\".\nDagià ch'a-i son ëstàje mach pòchi arzultà, a son smonù ëdcò ij valor davzin.", + "smw_sbv_property": "Propietà:", + "smw_sbv_value": "Valor:", + "smw_sbv_submit": "Trové dj'arzultà", + "browse": "Varda wiki", + "smw_browselink": "Varda propietà", + "smw_browse_article": "Ch'a anseriss ël nòm ëd la pàgina da andoa ancaminé a vardé.", + "smw_browse_go": "Va", + "smw_browse_show_incoming": "smon-e le propietà che a colego ambelessì", + "smw_browse_hide_incoming": "stërmé le propietà ch'a colego ambelessì", + "smw_browse_no_outgoing": "Sta pàgina-sì a l'ha pa ëd propietà.", + "smw_browse_no_incoming": "Gnun-a propietà a colega a sta pàgina-sì.", + "smw_inverse_label_default": "$1 ëd", + "smw_inverse_label_property": "Etichëtta dla propietà anversa", + "pageproperty": "Serca propietà dla pàgina", + "smw_pp_docu": "Serca tùit ij valor ëd na propietà su na pàgina dàita.", + "smw_pp_from": "Da pàgina", + "smw_pp_type": "Propietà", + "smw_pp_submit": "Smon-e j'arzultà", + "smw_result_prev": "Prima", + "smw_result_next": "Apress", + "smw_result_results": "Arzultà", + "smw_result_noresults": "Pa gnun arzultà.", + "smwadmin": "Funsion d'aministrator për Semantic MediaWiki", + "smw-admin-setupsuccess": "Ël motor ëd memorisassion a l'é stàit anstalà për da bin.", + "smw_smwadmin_return": "Torna a $1", + "smw_smwadmin_updatestarted": "Un process neuv për rinfrësché ij dat semàntich a l'é stàit fàit parte.\nTùit ij dat memorisà a saran rifàit o riparà andoa a-i é dabzògn.\nA peul trové l'andament ëd la modìfica an sta pàgina special-sì.\n\nArtorn a $1.", + "smw_smwadmin_updatenotstarted": "A-i é già un process ëd modìfica an camin.\nCreene nen n'àutr.\n\nArtorna a $1.", + "smw_smwadmin_updatestopped": "Tùit ij process ëd modìfica esistent a son ëstàit fërmà.\n\nArtorna a $1.", + "smw_smwadmin_updatenotstopped": "Për fërmé ël process ëd modìfica an cors, a dev ativé la casela për indiché ch'a l'é pròpi sicur.\n\nTorné andré a $1.", + "smw-admin-docu": "Sta pàgina special-sì a lo giuta durant l'instalassion e l'agiornament ëd Semantic MediaWiki.\nCh'as visa ëd salvé ij dat ëd valor prima ëd fé le funsion aministrative.", + "smw-admin-db": "Anstalassion e agiornament dla base ëd dàit", + "smw-admin-dbdocu": "Semantic MediaWiki a l'ha dabzògn ëd chèiche estension a la base ëd dàit ëd MediaWiki për memorisé ij dat semàntich.\nLa funsion sì-sota a assicura che soa base ëd dàit a l'é ampostà për da bin.\nIj cangiament fàit an cost pass-sì a toco pa ël rest dla base ëd dàit ëd MediaWiki, e a l'é bel fé torné andré si un a veul.\nSta funsion d'ampostassion-sì a peul esse fàita marcé vàire vire sensa fé 'd dann, ma a-i n'a j'é dabzògn mach na vira për l'anstalassion o l'agiornament.", + "smw-admin-permissionswarn": "Se l'operassion a faliss con dj'eror SQL, l'utent dla base ëd dàit dovrà da soa wiki (ch'a contròla sò LocalSettings.php) probabilment a l'ha pa basta 'd përmess.\nO bin ch'a-j daga a st'utent dij përmess adissionaj për creé e scancelé 'd tàule, temporaneament ch'a anserissa l'identificativ dël cont rèis ëd soa base ëd dàit an LocalSettings.php, opura ch'a deuvra ël copion ëd manteniment setupStore.php ch'a peul dovré le credensiaj ëd n'aministrator.", + "smw-admin-dbbutton": "Inissialisé o agiorné le tàule", + "smw-admin-announce": "Anonsia toa wiki", + "smw_smwadmin_datarefresh": "Riparassion ëd dat e agiornament", + "smw_smwadmin_datarefreshdocu": "A l'é possìbil ripristiné tùit ij dat Semantic MediaWiki basà dzora al contnù corent ëd la wiki.\nSòn a peul ven-e a taj për riparé dat rot o për rinfrësché dat se ël formà antern a l'é cangià për chèich agiornament dël programa.\nLa modìfica a l'é fàita pàgina për pàgina e a sarà pa completa sùbit.\nLòn ch'a-i é sì-sota a mostra se na modìfica a l'é an cors e a-j përmët ëd fé parte o fërmé le modìfiche (gavà che sta possibilità a sia stàita disabilità da l'aministrator dël sit).", + "smw_smwadmin_datarefreshprogress": "na modìfica a l'é già an cors.\nA l'é normal che la modìfica a von-a anans mach pian përchè a rinfrësca dat an cite partìe minca vira che n'utent a intra ant la wiki.\nPër fé finì sta modìfica pi an pressa, a peul ciamé ël copion ëd manteniment MediaWiki runJobs.php (ch'a deuvra l'opsion --maxjobs 1000 për strenze ël nùmer ëd modìfiche fàite ant un lòt).\nAvansament stimà dla modìfica corenta:", + "smw_smwadmin_datarefreshbutton": "Ancamin-a a agiorné ij dat", + "smw_smwadmin_datarefreshstop": "Ferma sto agiornament-sì", + "smw_smwadmin_datarefreshstopconfirm": "Bò, i son sicur.", + "smw-admin-support": "Oteniment ëd n'agiut", + "smw-admin-supportdocu": "Vàire arsorse a peulo giutelo an cas ëd problema:", + "smw-admin-installfile": "S'a treuva ëd problema con soa anstalassion, ch'a ancamin-a a controlé le linie guida ant l'archivi INSTALL.", + "smw-admin-smwhomepage": "La documentassion utent completa ëd Semantich WikiMedia a l'é a semantic-mediawiki.org.", + "smw-admin-bugsreport": "Ij bigat a peulo esse arportà a GitHub.", + "smw-admin-questions": "S'a l'ha d'àutre chestion o sugeriment, ch'a vada a la discussion dzora a la piassa dj'utent ëd Semantic MediaWiki.", + "smw_adminlinks_datastructure": "Strutura dij dat", + "smw_adminlinks_displayingdata": "Visualisé ij dat", + "smw_adminlinks_inlinequerieshelp": "Agiut an sj'anterogassion an linia", + "smw-createproperty-isproperty": "Costa-sì a l'é na proprietà ëd sòrt $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Ël valor përmëttù për sta proprietà-sì a l'é|Ij valor përmëttù për sta proprietà-sì a son}}:", + "smw-paramdesc-category-delim": "Ël delimitador", + "smw-paramdesc-category-template": "Në stamp për formaté j'element con", + "smw-paramdesc-category-userparam": "Un paràmetr për passé a lë stamp", + "smw-info-par-message": "Mëssagi da visualisé.", + "smw-info-par-icon": "Plancia da mostré, o «info» opura «warning».", + "prefs-smw": "MediaWiki Semàntica", + "prefs-ask-options": "Opsion d'arserca Semàntica", + "smw-prefs-intro-text": "J'opsion sì-sota a son smonùe da [https://www.semantic-mediawiki.org/ Semantic MediaWiki] (o soe estension) për abilité na përsonalisassion andividual ëd funsion selessionà. Për savèjne ëd pi, për piasì ch'a consulta sta [https://www.semantic-mediawiki.org/wiki/Help:User_preferences session d'agiut].", + "smw-prefs-ask-options-tooltip-display": "Smon-e ël test dël paràmetr com na nivolëtta d'anformassion", + "smw-ui-tooltip-title-property": "Propietà", + "smw-ui-tooltip-title-quantity": "Quantità", + "smw-ui-tooltip-title-info": "Anformassion", + "smw-ui-tooltip-title-service": "Colegament ëd servissi", + "smw-ui-tooltip-title-warning": "Eror", + "smw-ui-tooltip-title-parameter": "Paràmetr", + "smw-ui-tooltip-title-event": "Eveniment", + "smw-ui-tooltip-title-note": "Nòta", + "smw-ui-tooltip-title-legend": "Legenda", + "smw_unknowntype": "La sòrt ëd costa propietà a l'é pa bon-a.", + "smw_concept_header": "Pàgine dël concet \"$1\"", + "smw_conceptarticlecount": "Smon-e $1 {{PLURAL:$1|pàgina|pàgine}} che a aparten-o a col concet.", + "smw-livepreview-loading": "Antramentr ch'as caria…", + "smw-listingcontinuesabbrev": "anans", + "smw-showingresults": "Ambelessì-sota a treuva fin a {{PLURAL:$1|'''1'''|'''$1'''}} arzultà, a parte dal nùmer #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/pnb.json b/mediawiki/extensions/SemanticMediaWiki/i18n/pnb.json new file mode 100644 index 0000000..1f046c6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/pnb.json @@ -0,0 +1,29 @@ +{ + "@metadata": { + "authors": [ + "Abbas dhothar", + "Khalid Mahmood" + ] + }, + "smw-categories": "گٹھاں", + "smw-special-wantedproperties-filter-none": "کوئی نئیں", + "smw-ask-query-search-info": "The query $1 was answered by the {{PLURAL:$3|1=$2 (from cache)|$2 (from cache)|$2}} in $4 {{PLURAL:$4|سکنٹ}}.", + "browse": "وکی پھرولو", + "smw-browse-hide-group": "گروہ لُکاؤ", + "smw_pp_from": "صفحے توں:", + "smw-admin-deprecation-notice-section-legend": "کُنجی", + "smw-admin-statistics": "آنکڑے", + "smw_adminlinks_datastructure": "ڈیٹا ساخت", + "smw-ui-tooltip-title-legend": "کُنجی", + "smw-livepreview-loading": "لوڈنگ", + "smw-search-profile-extended-section-sort": "چُنن ترتیب", + "smw-search-hide": "لُکاؤ", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|سکنٹ}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|سکنٹ}}", + "smw-no-data-available": "کوئی ڈیٹا دستیاب نئیں", + "smw-format-datatable-emptytable": "جدول وچ کوئی ڈیٹا دستیاب نئیں", + "smw-property-tab-specification": "... ہور", + "smw-legend": "کُنجی", + "smw-listingcontinuesabbrev": "جاری", + "smw-showingresults": "تھلیوں دسے گۓ {{PLURAL:$1|'''1''' نتیجہ|'''$1''' نتیجے}} شروع #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/prg.json b/mediawiki/extensions/SemanticMediaWiki/i18n/prg.json new file mode 100644 index 0000000..eead151 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/prg.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "Nertiks", + "Nērtiks Jōrgesuns" + ] + }, + "smw-categories": "Kategōrijas", + "browse": "Lasāis artīkelins", + "smw-livepreview-loading": "Krausnā...", + "smw-listingcontinuesabbrev": "ē.s.", + "smw-showingresults": "Zemmais ast listi {{PLURAL:$1|stēisan $1 rezultātan|sen 1 rezultātan|stēisan $1 rezultātan}}, pagaūnintei ezze $2-asmu rezutātan." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ps.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ps.json new file mode 100644 index 0000000..b0821c7 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ps.json @@ -0,0 +1,53 @@ +{ + "@metadata": { + "authors": [ + "Af420", + "Ahmed-Najib-Biabani-Ibrahimkhel", + "Amjad Khan", + "شاه زمان پټان" + ] + }, + "smw_finallistconjunct": "، او", + "smw_printername_list": "لړليک", + "smw_printername_template": "کينډۍ", + "smw_printername_category": "وېشنيزه", + "validator-type-class-SMWParamSource": "متن", + "smw_iq_moreresults": "نورې پايلې ...", + "smw_true_words": "سم، س، هو، هـ", + "smw_false_words": "ناسم، نا، نه، ن", + "smw_nodatetime": "دا \"$1\" نېټه و نه پېژندل شوه.", + "smw_exportrdf_submit": "صادرول", + "properties": "ځانتياوې", + "smw-categories": "وېشنيزې", + "unusedproperties": "ناکارېدلې ځانتياوې", + "wantedproperties": "غوښتل شوې ځانتياوې", + "smw_ask_ascorder": "ختند", + "smw_ask_defaultformat": "تلواليز", + "smw-ask-delete": "غورځول", + "smw_sbv_property": "ځانتيا:", + "smw_sbv_value": "ارزښت:", + "smw_sbv_submit": "پايلې موندل", + "browse": "ويکي سپړل", + "smw_browselink": "د سپړلو ځانتياوې", + "smw_browse_go": "ورځه", + "smw_pp_type": "ځانتيا", + "smw_pp_submit": "پايلې موندل", + "smw_result_prev": "پخواني", + "smw_result_next": "راتلونکي", + "smw_result_results": "پايلې", + "smw_result_noresults": "بې پايلو.", + "smw_smwadmin_return": "$1 ته ورستنېدل", + "smw_smwadmin_datarefreshstopconfirm": "هو، زه {{GENDER:$1|ډاډه}} يم.", + "smw-ui-tooltip-title-info": "مالومات", + "smw-ui-tooltip-title-warning": "گواښنه", + "smw-ui-tooltip-title-reference": "سرچينه", + "smw-livepreview-loading": "رابرسېرېږي...", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|ثانيه|ثانيې}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|ثانیه|ثانيې}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|ثانيه|ثانيې}}", + "smw-format-datatable-infoempty": "ښکارونه له ۰ تر ۰ له ۰ وتلو", + "smw-property-reserved-category": "وېشنيزه", + "smw-category": "وېشنيزه", + "smw-listingcontinuesabbrev": "پرله پسې", + "smw-showingresults": "دلته لاندې تر {{PLURAL:$1|'''1''' پايله|'''$1''' پايلې}} ښکاره شوي پيل له #'''$2''' شوی." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/pt-br.json b/mediawiki/extensions/SemanticMediaWiki/i18n/pt-br.json new file mode 100644 index 0000000..73c7159 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/pt-br.json @@ -0,0 +1,1143 @@ +{ + "@metadata": { + "authors": [ + "555", + "Agripinoduarte", + "Amgauna", + "Athena in Wonderland", + "Cainamarques", + "Dr03ramos", + "Eduardo Addad de Oliveira", + "Eduardo.mps", + "Eduardoaddad", + "Felipe L. Ewald", + "Fitoschido", + "GKnedo", + "Giro720", + "Hamilton Abreu", + "He7d3r", + "Helder.wiki", + "Heldergeovane", + "Jaideraf", + "Kghbln", + "Leonardo.guimaraes", + "Luan", + "Luckas", + "Luckas Blade", + "Luig", + "Macofe", + "McDutchie", + "Nemo bis", + "Opraco", + "Rafael Vargas", + "Re demz", + "Rhcastilhos", + "Robertpontes", + "Smmvinicius", + "Tks4Fish", + "Trigonometria87", + "Waldir", + "Waldyrious", + "Walesson" + ] + }, + "smw-desc": "Tornando seu wiki mais acessível - para máquinas ''e'' humanos ([https://www.semantic-mediawiki.org/wiki/Help:User_manual documentação online])", + "smw-error": "Erro", + "smw-upgrade-error": "O [https://www.semantic-mediawiki.org/ Semantic MediaWiki] foi instalado e ativado, mas falta uma [https://www.semantic-mediawiki.org/wiki/Help:Upgrade chave de atualização] apropriada.", + "smw-upgrade-release": "Versão", + "smw-upgrade-progress": "Progresso", + "smw-upgrade-progress-explain": "É difícil antecipar quando a atualização estará concluída porque depende do tamanho do repositório de dados e do ''hardware'' disponível, e pode demorar algum tempo para concluir a atualização de wikis grandes.\n\nPara obter mais informações acerca do progresso da atualização, contacte o seu administrador local, por favor.", + "smw-upgrade-progress-create-tables": "Criando (ou atualizando) tabelas e índices...", + "smw-upgrade-progress-post-creation": "Executando tarefas de pós-criação...", + "smw-upgrade-progress-table-optimization": "Executando otimização de tabelas...", + "smw-upgrade-progress-supplement-jobs": "Adicionando tarefas suplementares...", + "smw-upgrade-error-title": "Erro » Semantic MediaWiki", + "smw-upgrade-error-why-title": "Por que eu vejo esta página?", + "smw-upgrade-error-why-explain": "A estrutura interna do banco de dados do Semantic MediaWiki foi alterada e necessita alguns ajustes para estar totalmente funcional. Pode haver vários motivos incluindo: \n* Propriedades fixas adicionais (requer configuração de tabelas) foram adicionadas\n* Uma atualização contém algumas mudanças nas tabelas ou índices tornando uma interceptação obrigatória antes de acessar os dados\n* Alterações no mecanismo de armazenamento ou consulta", + "smw-upgrade-error-how-title": "Como corrigir este erro?", + "smw-upgrade-error-how-explain-admin": "Um administrador (ou qualquer pessoa com privilégios de administrador) tem de executar o ''script'' de manutenção [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] do MediaWiki ou o [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] do Semantic MediaWiki.", + "smw-upgrade-error-how-explain-links": "Para obter mais ajuda também pode consultar as seguintes páginas:\n* Instruções de [https://www.semantic-mediawiki.org/wiki/Help:Installation instalação]\n* Página de ajuda sobre [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting resolução de problemas]", + "smw-extensionload-error-why-title": "Por que eu vejo esta página?", + "smw-extensionload-error-why-explain": "A extensão não foi carregado usando enableSemantics e, em vez disso, ativado por outros meios, como usar wfLoadExtension( 'SemanticMediaWiki' ) diretamente.", + "smw-extensionload-error-how-title": "Como corrijo esse erro?", + "smw-extensionload-error-how-explain": "Para ativar a extensão e evitar problemas com declarações de espaços nominais e configurações pendentes, é necessário usar enableSemantics que garantirá que as variáveis necessárias sejam definidas antes de carregar a extensão ExtensionRegistry. \n\nPor favor, dê uma olhada na página de ajuda [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] para obter mais assistência.", + "smw-upgrade-maintenance-title": "Atualizar e manutenção » Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "Por que eu vejo esta página?", + "smw-upgrade-maintenance-note": "Neste momento o sistema está a sofrer uma [https://www.semantic-mediawiki.org/wiki/Help:Upgrade atualização] da extensão [https://www.semantic-mediawiki.org/ Semantic MediaWiki] e do respetivo repositório de dados, e solicitamos a sua paciência de forma a permitir que a manutenção prossiga antes que a wiki seja novamente tornada acessível.", + "smw-upgrade-maintenance-explain": "A extensão tenta minimizar o impacto e o período de indisponibilidade, adiando a maior parte das suas tarefas de manutenção para depois do update.php mas é preciso que algumas alterações relacionadas com a base de dados terminem primeiro para evitar inconsistências de dados. Estas alterações podem incluir: \n* Alteração da estrutura de tabelas, como a adição de campos novos ou a alteração de campos existentes \n* Alteração ou adição de índices sobre tabelas\n* Executar otimizações de tabela (quando ativado)", + "smw-semantics-not-enabled": "A funcionalidade do Semantic MediaWiki não foi ativada neste wiki.", + "smw_viewasrdf": "Feed RDF", + "smw_finallistconjunct": " e", + "smw-factbox-head": "... mais sobre \"$1\"", + "smw-factbox-facts": "Fatos", + "smw-factbox-facts-help": "Mostra declarações e fatos que foram criados por um usuário", + "smw-factbox-attachments": "Anexos", + "smw-factbox-attachments-value-unknown": "N/A", + "smw-factbox-attachments-is-local": "É local", + "smw-factbox-attachments-help": "Mostra anexos disponíveis", + "smw-factbox-facts-derived": "Fatos derivados", + "smw-factbox-facts-derived-help": "Mostra fatos que foram derivados de regras ou com a ajuda de outras técnicas de raciocínio", + "smw_isspecprop": "Esta propriedade é uma propriedade especial neste wiki.", + "smw-concept-cache-header": "Uso do cache", + "smw-concept-cache-count": "O [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count cache do conceito] contém {{PLURAL:$1|'''uma''' entidade|'''$1''' entidades}} ($2).", + "smw-concept-no-cache": "Sem cache disponível.", + "smw_concept_description": "Descrição do conceito \"$1\"", + "smw_no_concept_namespace": "Conceitos só podem ser definidos em páginas no domínio Conceito:.", + "smw_multiple_concepts": "Cada página de conceito pode ter apenas uma definição de conceito.", + "smw_concept_cache_miss": "O conceito \"$1\" não pode ser utilizado neste momento, uma vez que a configuração deste wiki necessita ser refeita off-line.\nCaso o problema não seja resolvido automaticamente dentro de algum tempo, peça a um administrador deste wiki que este conceito seja disponibilizado.", + "smw_noinvannot": "Valores não podem ser atribuídos a propriedades inversas.", + "version-semantic": "Extensões semânticas", + "smw_baduri": "URIs na forma de \"$1\" não são permitidos.", + "smw_printername_count": "Contar resultados", + "smw_printername_csv": "Exportação em CSV", + "smw_printername_dsv": "Exportação em DSV", + "smw_printername_debug": "Depurar consulta (para especialistas)", + "smw_printername_embedded": "Incorporar o conteúdo da página", + "smw_printername_json": "Exportação em JSON", + "smw_printername_list": "Lista", + "smw_printername_plainlist": "Lista simples", + "smw_printername_ol": "Lista numerada", + "smw_printername_ul": "Lista com marcadores", + "smw_printername_table": "Tabela", + "smw_printername_broadtable": "Tabela ampla", + "smw_printername_template": "Predefinição", + "smw_printername_templatefile": "Arquivo da predefinição", + "smw_printername_rdf": "Exportação em RDF", + "smw_printername_category": "Categoria", + "validator-type-class-SMWParamSource": "texto", + "smw-paramdesc-limit": "Número máximo de resultados na exibição", + "smw-paramdesc-offset": "Posição do primeiro resultado", + "smw-paramdesc-headers": "Mostrar os nomes dos cabeçalhos/propriedades", + "smw-paramdesc-mainlabel": "Nome dado a coluna das páginas principais", + "smw-paramdesc-link": "Apresentar os valores na forma de links", + "smw-paramdesc-intro": "Texto a apresentar antes dos resultados da consulta, caso existam", + "smw-paramdesc-outro": "Texto a apresentar após os resultados da consulta, caso existam", + "smw-paramdesc-default": "Texto a apresentar caso não haja resultados para a consulta", + "smw-paramdesc-sep": "O separador entre resultados", + "smw-paramdesc-propsep": "O separador entre as propriedades da entrada de um resultado", + "smw-paramdesc-valuesep": "O separador entre os valores para uma propriedade de um resultado", + "smw-paramdesc-showsep": "Exibir separador no começo do arquivo CSV (\"sep=\")", + "smw-paramdesc-distribution": "Em vez de exibir todos os valores, conte suas ocorrências e mostre-as.", + "smw-paramdesc-distributionsort": "Alfabete a distribuição do valor pela contagem de ocorrência.", + "smw-paramdesc-distributionlimit": "Limite a distribuição do valor para a contagem de apenas alguns valores.", + "smw-paramdesc-aggregation": "Especifique a que a agregação deve se relacionar", + "smw-paramdesc-template": "Nome da predefinição com a qual são exibidos os resultados", + "smw-paramdesc-columns": "O número de colunas nas quais exibir resultados", + "smw-paramdesc-userparam": "Valor fornecido a cada chamada da predefinição, se uma predefinição for utilizada", + "smw-paramdesc-class": "Uma classe CSS adicional para ser definida para a lista", + "smw-paramdesc-introtemplate": "Nome de uma predefinição para apresentar antes dos resultados da consulta, se existirem", + "smw-paramdesc-outrotemplate": "Nome de uma predefinição para apresentar após os resultados da consulta, se existirem", + "smw-paramdesc-embedformat": "Elemento HTML utilizado para definir cabeçalhos", + "smw-paramdesc-embedonly": "Não exibir cabeçalhos", + "smw-paramdesc-table-class": "Uma classe CSS adicional para colocar em uma tabela", + "smw-paramdesc-table-transpose": "Exibe verticalmente os cabeçalhos das tabelas e horizontalmente os resultados.", + "smw-paramdesc-prefix": "Controla a exibição de domínios nos valores de propriedades", + "smw-paramdesc-rdfsyntax": "A sintaxe RDF a ser utilizada", + "smw-paramdesc-csv-sep": "Especifica um separador de colunas", + "smw-paramdesc-csv-valuesep": "Especifica um separador de valores", + "smw-paramdesc-csv-merge": "Fundir os valores de linhas e colunas que têm um identificador de assunto idêntico (aliás, primeira coluna)", + "smw-paramdesc-csv-bom": "Adicionar um BOM (carácter para indicar a \"endianness\") no topo do arquivo de saída", + "smw-paramdesc-dsv-separator": "Separado a ser utilizado", + "smw-paramdesc-dsv-filename": "Nome para o arquivo DSV", + "smw-paramdesc-filename": "O nome para o arquivo de saída", + "smw-smwdoc-description": "Mostra uma tabela com todos os parâmetros que podem ser utilizados para o formato de resultado específico junto aos valores padrão e as descrições.", + "smw-smwdoc-default-no-parameter-list": "Este formato de resultado não fornece parâmetros específicos do formato.", + "smw-smwdoc-par-format": "O formato de resultados para o qual será apresentada a documentação dos parâmetros.", + "smw-smwdoc-par-parameters": "Quais parâmetros mostrar. \"specific\" para aqueles adicionados pelo formato, \"base\" para aqueles disponíveis em todos os formatos e \"all\" para ambos.", + "smw-paramdesc-sort": "Propriedade para classificar a consulta", + "smw-paramdesc-order": "Ordem da classificação da consulta", + "smw-paramdesc-searchlabel": "Texto para continuar a busca", + "smw-paramdesc-named_args": "Nomeie os argumentos passados para a predefinição", + "smw-paramdesc-template-arguments": "Configura como os argumentos nomeados são passados à predefinição", + "smw-paramdesc-import-annotation": "Dados marcados adicionais serão copiados durante o parsing do sujeito.", + "smw-paramdesc-export": "Opção de exportação", + "smw-paramdesc-prettyprint": "Uma saída de pretty-print que exibe indentações e novas linhas adicionais", + "smw-paramdesc-json-unescape": "O resultado conterá barras não escapadas e caracteres Unicode multibyte", + "smw-paramdesc-json-type": "Tipo de serialização", + "smw-paramdesc-source": "Fonte alternativa de consulta", + "smw-paramdesc-jsonsyntax": "Sintaxe JSON para ser utilizada", + "smw-printername-feed": "Feeds RSS e Atom", + "smw-paramdesc-feedtype": "Tipo de feed", + "smw-paramdesc-feedtitle": "Texto a ser utilizado como título do feed", + "smw-paramdesc-feeddescription": "Texto a ser utilizado como descrição do feed", + "smw-paramdesc-feedpagecontent": "Conteúdo da página a ser exibido com o feed", + "smw-label-feed-description": "$1 $2 feed", + "smw-paramdesc-mimetype": "O tipo de mídia (MIME type) para o arquivo de saída.", + "smw_iq_disabled": "As consultas semânticas foram desativadas neste wiki", + "smw_iq_moreresults": "… mais resultados", + "smw_parseerror": "O valor fornecido não foi compreendido.", + "smw_decseparator": ",", + "smw_kiloseparator": ".", + "smw_notitle": "\"$1\" não pode ser utilizado como nome de página neste wiki.", + "smw_noproperty": "\"$1\" não pode ser utilizado como um nome de propriedade neste wiki.", + "smw_wrong_namespace": "Apenas páginas no domínio \"$1\" são permitidas aqui.", + "smw_manytypes": "Mais de um tipo definido para a propriedade.", + "smw_emptystring": "Cadeias de caracteres vazias não são aceitas.", + "smw_notinenum": "\"$1\" não está na lista ($2) dos [[Property:Allows value|valores permitidos]] para a propriedade \"$3\".", + "smw-datavalue-constraint-error-allows-value-list": "\"$1\" não está na lista ($2) dos [[Property:Allows value|valores permitidos]] para a propriedade \"$3\".", + "smw-datavalue-constraint-error-allows-value-range": "\"$1\" não está no intervalo de \"$2\" especificado pela restrição [[Property:Allows value|permite valor]] para a propriedade \"$3\".", + "smw-constraint-error": "Problema de restrição", + "smw-constraint-error-suggestions": "Verifique as violações e propriedades listadas junto com seus valores anotados para garantir que todos os requisitos de restrição sejam atendidos.", + "smw-constraint-error-limit": "A lista conterá no máximo $1 de violações.", + "smw_noboolean": "\"$1\" não é reconhecido como um valor Booleano (verdadeiro/falso).", + "smw_true_words": "verdadeiro,v,sim,s,true,t,yes,y", + "smw_false_words": "falso,f,não,nao,n,false,no", + "smw_nofloat": "\"$1\" não é um número.", + "smw_infinite": "Números tão grandes como \"$1\" não são suportados.", + "smw_unitnotallowed": "\"$1\" não está declarado como unidade de medida válida para esta propriedade.", + "smw_nounitsdeclared": "Não foi declarada nenhuma unidade de medida para esta propriedade.", + "smw_novalues": "Não foram especificados valores.", + "smw_nodatetime": "A data “$1” não foi compreendida.", + "smw_toomanyclosing": "Parece haver muitas ocorrências de \"$1\" na consulta.", + "smw_noclosingbrackets": "Um uso de \"[[\" na sua consulta não foi fechada por um \"]]\" correspondente.", + "smw_misplacedsymbol": "O símbolo \"$1\" foi usado num local onde não é útil.", + "smw_unexpectedpart": "A parte \"$1\" da consulta não foi compreendida.\nOs resultados podem não ser os esperados.", + "smw_emptysubquery": "Alguma subconsulta não tem uma condição válida.", + "smw_misplacedsubquery": "Uma subconsulta foi utilizada em um local onde não são permitidas subconsultas.", + "smw_valuesubquery": "Subconsultas não suportadas para valores da propriedade \"$1\".", + "smw_badqueryatom": "Alguma parte \"[[…]]\" da consulta não foi compreendida.", + "smw_propvalueproblem": "O valor da propriedade \"$1\" não foi compreendido.", + "smw_noqueryfeature": "Uma característica da consulta não foi suportada neste wiki e parte da consulta foi descartada ($1).", + "smw_noconjunctions": "Conjunções em consultas não são suportadas neste wiki e parte da consulta foi descartada ($1).", + "smw_nodisjunctions": "Disjunções em consultas não são suportadas neste wiki e parte da consulta foi descartada ($1).", + "smw_querytoolarge": "Não foi possível considerar {{PLURAL:$2|a seguinte condição|as seguintes $2 condições}} da consulta, devido às restrições do wiki para o tamanho e profundidade das consultas: $1.", + "smw_notemplategiven": "Providencie um valor para o parâmetro \"predefinição\" para o formato desta consulta funcionar.", + "smw_db_sparqlqueryproblem": "O resultado da consulta não pôde ser obtido do banco de dados SPARQL. Este erro pode ser temporário ou indicar um defeito no software de banco de dados.", + "smw_db_sparqlqueryincomplete": "A consulta revelou-se difícil e foi interrompida. Alguns resultados podem estar faltando. Se possível, tente utilizar uma consulta mais simples.", + "smw_type_header": "Propriedades do tipo \"$1\"", + "smw_typearticlecount": "Exibindo $1 {{PLURAL:$1|propriedade que utiliza|propriedades que utilizam}} este tipo.", + "smw_attribute_header": "Páginas que utilizam a propriedade \"$1\"", + "smw_attributearticlecount": "Exibindo $1 {{PLURAL:$1|página que utiliza|páginas que utilizam}} esta propriedade.", + "smw-propertylist-subproperty-header": "Subpropriedades", + "smw-propertylist-redirect-header": "Sinônimos", + "smw-propertylist-error-header": "Páginas com atribuições indevidas", + "smw-propertylist-count": "Exibindo $1 {{PLURAL:$1|entidade relacionada|entidades relacionadas}}.", + "smw-propertylist-count-with-restricted-note": "Exibindo $1 {{PLURAL:$1|entidade relacionada|entidades relacionadas}} (um número maior existe, mas a exibição está restrita à \"$2\").", + "smw-propertylist-count-more-available": "Exibindo $1 {{PLURAL:$1|entidade relacionada|entidades relacionadas}} (há mais disponíveis).", + "specialpages-group-smw_group": "Semantic MediaWiki", + "specialpages-group-smw_group-maintenance": "Manutenção", + "specialpages-group-smw_group-properties-concepts-types": "Propriedades, conceitos e tipos", + "specialpages-group-smw_group-search": "Navegação e pesquisa", + "exportrdf": "Exportar páginas para RDF", + "smw_exportrdf_docu": "Esta página permite que você obtenha dados de uma página no formato RDF.\nPara exportar páginas, introduza os seus títulos na caixa de texto abaixo, um título por linha.", + "smw_exportrdf_recursive": "Exportar recursivamente todas as páginas relacionadas.\nNote que o resultado pode ser volumoso!", + "smw_exportrdf_backlinks": "Também exporta todas as páginas que se referem as páginas exportadas.\nGera RDF navegável.", + "smw_exportrdf_lastdate": "Não exporte páginas que não foram alteradas desde o tempo dado.", + "smw_exportrdf_submit": "Exportar", + "uriresolver": "Resolvedor de URIs", + "properties": "Propriedades", + "smw-categories": "Categorias", + "smw_properties_docu": "As seguintes propriedades são utilizadas neste wiki.", + "smw_property_template": "$1 do tipo $2 ($3 {{PLURAL:$3|uso|usos}})", + "smw_propertylackspage": "Todas as propriedades devem ser descritas por uma página!", + "smw_propertylackstype": "Nenhum tipo foi especificado para esta propriedade (assumindo tipo $1 por enquanto).", + "smw_propertyhardlyused": "Esta propriedade é muito pouco utilizada neste wiki!", + "smw-property-name-invalid": "A propriedade $1 não pode ser utilizada (nome de propriedade inválido).", + "smw-property-name-reserved": "\"$1\" estava listado como sendo um nome reservado e não deve ser usado como propriedade. Talvez a seguinte [https://www.semantic-mediawiki.org/wiki/Help:Property_naming página de ajuda] contenha informação sobre a razão pela qual o nome estava reservado.", + "smw-sp-property-searchform": "Exibir propriedades que contenham:", + "smw-sp-property-searchform-inputinfo": "O texto de entrada é sensível a maiúsculas e, quando utilizado para a filtragem, somente as propriedades que correspondem a condição serão exibidas.", + "smw-special-property-searchform": "Exibir propriedades que contenham:", + "smw-special-property-searchform-inputinfo": "O texto de entrada é sensível a maiúsculas e minúsculas, quando utilizado para a filtragem, somente as propriedades que correspondem a condição serão exibidas.", + "smw-special-property-searchform-options": "Opções", + "smw-special-wantedproperties-filter-label": "Filtro:", + "smw-special-wantedproperties-filter-none": "Nenhuma", + "smw-special-wantedproperties-filter-unapproved": "Não aprovada", + "smw-special-wantedproperties-filter-unapproved-desc": "Opção de filtro utilizada em relação ao modo de autoridade.", + "concepts": "Conceitos", + "smw-special-concept-docu": "Um [https://www.semantic-mediawiki.org/wiki/Help:Concepts conceito] pode ser visto como uma \"categoria dinâmica\", isto é, uma coleção de páginas que não é criada manualmente, mas automaticamente computada pelo Semantic MediaWiki a partir de uma descrição de uma dada consulta.", + "smw-special-concept-header": "Lista de conceitos", + "smw-special-concept-count": "{{PLURAL:$1|O seguinte conceito está sendo listado.|Os seguintes $1 conceitos estão sendo listados.}}", + "smw-special-concept-empty": "Nenhum conceito foi encontrado.", + "unusedproperties": "Propriedades não utilizadas", + "smw-unusedproperties-docu": "Esta página lista [https://www.semantic-mediawiki.org/wiki/Unused_properties propriedades não utilizadas] que foram declaradas, embora nenhuma outra página as utilize. Para uma visão diferenciada, consulte as páginas especiais com [[Special:Properties|todas as propriedades]] ou com as [[Special:WantedProperties|propriedades em falta]].", + "smw-unusedproperty-template": "$1 de tipo $2", + "wantedproperties": "Propriedades pedidas", + "smw-wantedproperties-docu": "Esta página lista [https://www.semantic-mediawiki.org/wiki/Wanted_properties propriedades em falta] que são utilizadas no wiki, mas que não possuem uma página que as descreva. Para uma visão diferenciada, consulte as páginas especiais com [[Special:Properties|todas as propriedades]] ou com as [[Special:UnusedProperties|propriedades não utilizadas]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|uso|usos}})", + "smw-special-wantedproperties-docu": "Esta página lista [https://www.semantic-mediawiki.org/wiki/Wanted_properties propriedades em falta] que são utilizadas no wiki, mas que não possuem uma página que as descreva. Para uma visão diferenciada, consulte as páginas especiais com [[Special:Properties|todas as propriedades]] ou com as [[Special:UnusedProperties|propriedades não utilizadas]].", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|uso|usos}})", + "smw_purge": "Atualizar", + "smw-purge-update-dependencies": "O Semantic MediaWiki está limpando a página atual devido a algumas dependências desatualizadas que ele detectou que requerem uma atualização.", + "smw-purge-failed": "O Semantic MediaWiki tentou limpar a página, mas falhou", + "types": "Tipos", + "smw_types_docu": "Lista de [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes tipos de dados disponíveis] com cada [https://www.semantic-mediawiki.org/wiki/Help:Datatype tipo] representando um conjunto único de atributos para descrever um valor em termos de características de armazenamento e exibição que são hereditários a uma propriedade atribuída.", + "smw-special-types-no-such-type": "\"$1\" é desconhecido ou não foi especificado como tipo de dados válido.", + "smw-statistics": "Estatísticas de semântica", + "smw-statistics-cached": "Estatísticas semânticas (em cache)", + "smw-statistics-entities-total": "Entidades (total)", + "smw-statistics-entities-total-info": "Uma contagem estimada de linhas de entidades. Ela inclui propriedades, conceitos ou qualquer outra representação de objeto registrado que requer uma atribuição de ID.", + "smw-statistics-property-instance": "{{PLURAL:$1|Valor de propriedade|Valores de propriedade}} (total)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Propriedade|Propriedades}}]] (total)", + "smw-statistics-property-total-info": "O total de propriedades registradas.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Propriedade|Propriedades}} (total)", + "smw-statistics-property-used": "{{PLURAL:$1|Propriedade|Propriedades}} (utilizada(s) com pelo menos um valor)", + "smw-statistics-property-page": "{{PLURAL:$1|Propriedade|Propriedades}} (registrada com a página)", + "smw-statistics-property-page-info": "Contagem para propriedades que possuam uma página dedicada e uma descrição.", + "smw-statistics-property-type": "{{PLURAL:$1|Propriedade|Propriedades}} (atribuída ao tipo de dado)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Consulta|Consultas}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Consulta|Consultas}}]] (incorporada(s), total)", + "smw-statistics-query-format": "formato $1", + "smw-statistics-query-size": "Tamanho da consulta", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Conceito|Conceitos}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Conceito|Conceitos}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Subobjeto|Subobjetos}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Subobjeto|Subobjetos}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Tipo de dados|Tipos de dados}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Valor de propriedade|Valores de propriedade}} ([[Special:ProcessingErrorList|{{PLURAL:$1|marcação imprópria|marcações impróprias}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Valor de propriedade|Valores de propriedades}} ({{PLURAL:$1|marcação incorreta|marcações incorretas}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Entidade desatualizada|Entidades desatualizadas}}]", + "smw-statistics-delete-count-info": "Entidades que foram marcadas para remoção e que devem ser eliminadas regularmente usando os scripts de manutenção fornecidos.", + "smw_uri_doc": "O resolvedor de URIs implementa a [$1 descoberta TAG do W3C sobre o httpRange-14].\nEle certifica-se de que uma representação RDF (para máquinas) ou uma página wiki (para humanos) seja entregue dependendo da requisição.", + "ask": "Busca semântica", + "smw-ask-help": "Esta seção contém algumas hiperligações que explicam como usar a sintaxe #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selecionar páginas] descreve como selecionar páginas e construir condições\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Operadores de pesquisa] lista os operadores de pesquisa disponíveis, incluindo os para consultas de intervalos e consultas com caracteres de substituição\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Apresentar informação] descreve o uso de instruções de exibição e de opções de formatação", + "smw_ask_sortby": "Ordenar por coluna (opcional)", + "smw_ask_ascorder": "Ascendente", + "smw_ask_descorder": "Descendente", + "smw-ask-order-rand": "Aleatório", + "smw_ask_submit": "Buscar resultados", + "smw_ask_editquery": "Editar consulta", + "smw_add_sortcondition": "[Adicionar condição de ordenação]", + "smw-ask-sort-add-action": "Adicionar condição de ordenação", + "smw_ask_hidequery": "Esconder consulta (visualização compacta)", + "smw_ask_help": "Ajuda sobre consultas", + "smw_ask_queryhead": "Condição", + "smw_ask_printhead": "Seleção de dados adicionais", + "smw_ask_printdesc": "(adicionar um nome de propriedade por linha)", + "smw_ask_format_as": "Formatar como:", + "smw_ask_defaultformat": "padrão", + "smw_ask_otheroptions": "Outras opções", + "smw-ask-otheroptions-info": "Esta seção contém opções que alteram as declarações de exibição. As descrições dos parâmetros podem ser visualizadas posicionando o cursor sobre elas.", + "smw-ask-otheroptions-collapsed-info": "Por favor, utilize o ícone de adição para visualizar todas as opções disponíveis", + "smw_ask_show_embed": "Mostrar código embutido", + "smw_ask_hide_embed": "Ocultar código embutido", + "smw_ask_embed_instr": "Para embutir esta consulta em uma página wiki, utilize o código abaixo.", + "smw-ask-delete": "Remover", + "smw-ask-sorting": "Alfabetação", + "smw-ask-options": "Opções", + "smw-ask-options-sort": "Opções de ordenação", + "smw-ask-format-options": "Formato e opções", + "smw-ask-parameters": "Parâmetros", + "smw-ask-search": "Busca", + "smw-ask-debug": "Depurar", + "smw-ask-debug-desc": "Gera informação de depuração da consulta", + "smw-ask-no-cache": "Desativar cache de consultas", + "smw-ask-no-cache-desc": "Resultados sem cache de consulta", + "smw-ask-result": "Resultado", + "smw-ask-empty": "Limpar todas as entradas", + "smw-ask-download-link-desc": "Baixar os resultados da consulta no formato $1", + "smw-ask-format": "Formato", + "smw-ask-format-selection-help": "Ajuda com o formato selecionado: $1", + "smw-ask-condition-change-info": "A condição foi alterada e o mecanismo de pesquisa deve executar a consulta novamente para produzir resultados que correspondam aos novos requisitos.", + "smw-ask-input-assistance": "Assistência de preenchimento", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Uma ajuda é fornecida para a introdução dos dados] nos campos de exibição, ordenação e condição. O campo de condição requer o uso de um dos seguintes prefixos:", + "smw-ask-condition-input-assistance-property": "p: para obter as sugestões de propriedades (p. ex.: [[p:Tem ...)", + "smw-ask-condition-input-assistance-category": "c: para obter as sugestões de categorias", + "smw-ask-condition-input-assistance-concept": "con: para obter as sugestões de conceitos", + "smw-ask-format-change-info": "O formato foi modificado e a consulta precisa ser executada novamente para produzir resultados que correspondam aos novos parâmetros e às opções de visualização.", + "smw-ask-format-export-info": "O formato selecionado é um formato de exportação que não tem representação visual, portanto, os resultados só são fornecidos como download.", + "smw-ask-query-search-info": "A consulta $1 foi respondida pelo {{PLURAL:$3|1=$2 (pelo cache)|$2 (pelo cache)|$2}} em $4 {{PLURAL:$4|segundo|segundos}}.", + "smw-ask-extra-query-log": "Registro de consulta", + "smw-ask-extra-other": "Outro", + "searchbyproperty": "Busca por propriedade", + "processingerrorlist": "Lista de erros de processamento", + "constrainterrorlist": "Lista de erros de restrição", + "propertylabelsimilarity": "Relatório de similaridade de nome de propriedade", + "missingredirectannotations": "Anotações de redirecionamento ausentes", + "smw-processingerrorlist-intro": "A seguinte lista fornece uma perspectiva geral dos [https://www.semantic-mediawiki.org/wiki/Processing_errors erros de processamento] relacionadas ao [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. Recomenda-se monitorar esta lista regularmente e corrigir as anotações inválidas de valores.", + "smw-constrainterrorlist-intro": "A seguinte lista fornece uma perspectiva geral dos [https://www.semantic-mediawiki.org/wiki/Constraint_errors erros de restrição] relacionadas ao [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. Recomenda-se monitorar esta lista regularmente e corrigir as anotações inválidas de valores.", + "smw-missingredirects-intro": "A seguinte secção lista as páginas que têm anotações de [https://www.semantic-mediawiki.org/wiki/Redirects redirecionamento] em falta no Semantic MediaWiki (comparando com a informação armazenada no MediaWiki) e permite restaurar essas anotações quer [https://www.semantic-mediawiki.org/wiki/Help:Purge purgando] manualmente a página quer executando o ''script'' de manutenção rebuildData.php (com a opção --redirects).", + "smw-missingredirects-list": "Páginas com anotações ausentes", + "smw-missingredirects-list-intro": "Mostrando $1 {{PLURAL:$1|página|páginas}} com anotações de redirecionamento ausentes.", + "smw-missingredirects-noresult": "Nenhuma anotação de redirecionamento ausente foi encontrada.", + "smw_sbv_docu": "Busca por todas as páginas que possuem uma dada propriedade e um dado valor.", + "smw_sbv_novalue": "Introduza um valor válido para a propriedade, ou veja todos os valores da propriedade \"$1\".", + "smw_sbv_displayresultfuzzy": "Uma lista de todas as páginas que têm a propriedade \"$1\" com valor \"$2\".\nUma vez que houve poucos resultados, também são apresentados valores aproximados.", + "smw_sbv_property": "Propriedade:", + "smw_sbv_value": "Valor:", + "smw_sbv_submit": "Procurar resultados", + "browse": "Navegar pelo wiki", + "smw_browselink": "Navegar pelas propriedades", + "smw_browse_article": "Introduza o nome da página a partir da qual deseja começar a navegar.", + "smw_browse_go": "Ir", + "smw_browse_show_incoming": "Mostrar propriedades recebidas", + "smw_browse_hide_incoming": "Ocultar propriedades recebidas", + "smw_browse_no_outgoing": "Esta página não possui propriedades.", + "smw_browse_no_incoming": "Nenhuma propriedade aponta para esta página.", + "smw-browse-from-backend": "As informações estão sendo carregadas.", + "smw-browse-intro": "Esta página fornece detalhes sobre um sujeito ou entidade, por favor, digite o nome de um objeto a ser inspecionado.", + "smw-browse-invalid-subject": "A validação do sujeito terminou com um erro \"$1\".", + "smw-browse-api-subject-serialization-invalid": "O sujeito tem um formato de serialização inválido.", + "smw-browse-js-disabled": "É provável que o JavaScript esteja desativado ou indisponível. Recomendamos que utilize um navegador com suporte. Outras opções são fornecidas na página de configuração do parâmetro [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Mostrar grupos", + "smw-browse-hide-group": "Ocultar grupos", + "smw-noscript": "Esta página ou ação requer JavaScript para funcionar. Por favor habilite o JavaScript em seu navegador ou utilize um navegador que o suporte para que essa funcionalidade possa ser oferecida conforme requisição. Para mais informações, consulte a página de ajuda [https://www.semantic-mediawiki.org/wiki/Help:Noscript Noscript].", + "smw_inverse_label_default": "$1 de", + "smw_inverse_label_property": "Nome de propriedade inversa", + "pageproperty": "Busca por propriedade de página", + "pendingtasklist": "Lista de tarefas pendentes", + "facetedsearch": "Busca facetada", + "smw_pp_docu": "Introduza uma página e propriedade, ou só uma propriedade, para obter todos os valores atribuídos.", + "smw_pp_from": "Da página:", + "smw_pp_type": "Propriedade:", + "smw_pp_submit": "Buscar resultados", + "smw-prev": "{{PLURAL:$1|anterior|$1 anteriores}}", + "smw-next": "{{PLURAL:$1|próximo|próximos $1}}", + "smw_result_prev": "Anterior", + "smw_result_next": "Próximo", + "smw_result_results": "Resultados", + "smw_result_noresults": "Sem resultados.", + "smwadmin": "Painel de controle do Semantic MediaWiki", + "smw-admin-statistics-job-title": "Estatísticas da fila de execução", + "smw-admin-statistics-job-docu": "As estatísticas de tarefas apresentam informação sobre tarefas agendadas do Semantic MediaWiki que ainda não foram executadas. O número de tarefas pode ter uma pequena imprecisão ou conter tentativas falhadas. Por favor consulte o [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue manual] para mais informações.", + "smw-admin-statistics-querycache-title": "Cache de consultas", + "smw-admin-statistics-querycache-disabled": "O [https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] não está habilitado neste wiki e, portanto, não há estatísticas disponíveis.", + "smw-admin-statistics-querycache-legend": "As estatísticas da ''cache'' irão conter dados acumulados provisórios e derivados, incluindo:\n* \"misses\" (falhas) o número total de tentativas de obter dados da ''cache'' com respostas inatingíveis, forçando a obtenção direta do repositório (base de dados, repositório de triplas, etc.)\n* \"deletes\" (eliminações) o número total de operações de despejo da ''cache'' (por dependências de purga ou de consulta)\n* \"hits\" (acertos) contém o número de obtenções de dados da ''cache'', tendo por fonte quer consultas incorporadas (consultas feitas a partir de uma página da wiki) quer não incorporadas (pedidas por páginas como Special:Ask ou pela API, se permitido)\n* \"medianRetrievalResponseTime\" (mediana do tempo de resposta) um valor indicativo da mediana do tempo de resposta (em segundos) para pedidos de obtenção servidos, ou não, pela ''cache'' durante o período de execução do processo de recolha de dados\n* \"noCache\" (sem ''cache'') indica a quantidade de pedidos sem tentativa de obter dados da ''cache'' (consultas com limite=0, opção 'sem ''cache''', etc.)", + "smw-admin-statistics-section-explain": "A seção fornece estatísticas adicionais para administradores.", + "smw-admin-statistics-semanticdata-overview": "Visão geral", + "smw-admin-permission-missing": "O acesso a esta página está bloqueado devido à falta de permissões. Por favor, consulte a página de ajuda sobre [https://www.semantic-mediawiki.org/wiki/Help:Permissions permissões] para detalhes sobre as configurações necessárias.", + "smw-admin-setupsuccess": "O mecanismo de armazenamento foi configurado.", + "smw_smwadmin_return": "Voltar para $1", + "smw_smwadmin_updatestarted": "Um novo processo de atualização para atualizar os dados semânticos foi iniciado.\nTodos os dados armazenados serão reconstruídos ou reparados quando necessário.\nVocê pode acompanhar o progresso de atualização nesta página especial.", + "smw_smwadmin_updatenotstarted": "Já existe um processo de atualização em execução.\nNão foi criado outro.", + "smw_smwadmin_updatestopped": "Todos os processos de atualização existentes foram parados.", + "smw_smwadmin_updatenotstopped": "Para parar o processo de atualização em execução, você precisa ativar a caixa de seleção para indicar que realmente tem certeza.", + "smw-admin-docu": "Esta página especial te ajuda durante a instalação, atualização ou manutenção do Semantic MediaWiki. Ela também fornece funções administrativas, tarefas e estatísticas. \nLembre-se de efetuar cópias de segurança dos dados importantes antes de executar funções administrativas.", + "smw-admin-environment": "Ambiente de software", + "smw-admin-db": "Configuração do banco de dados", + "smw-admin-db-preparation": "A inicialização da tabela está em curso e pode demorar algum tempo até que os resultados sejam apresentados, dependendo do tamanho e de possíveis otimizações da tabela.", + "smw-admin-dbdocu": "O Semantic MediaWiki requer sua própria estrutura de banco de dados (e é independente do MediaWiki, portanto, não afeta o resto da instalação do MediaWiki), a fim de armazenar os dados semânticos.\nEsta função de instalação pode ser executada várias vezes sem causar quaisquer danos, mas é necessária apenas uma vez na instalação ou na atualização.", + "smw-admin-permissionswarn": "Se a operação falhar com erros de SQL, provavelmente o usuário da base de dados utilizado pelo seu wiki (consulte o seu arquivo LocalSettings.php) não possui permissões suficientes.\nConceda a esse usuário permissões adicionais para criar e eliminar tabelas, introduza temporariamente as credenciais do seu superusuário (root) da base de dados em LocalSettings.php, ou use o ''script'' de manutenção setupStore.php, o qual pode utilizar as credenciais de um administrador.", + "smw-admin-dbbutton": "Inicializar ou atualizar tabelas", + "smw-admin-announce": "Anuncie seu wiki", + "smw-admin-announce-text": "Se seu wiki é público, você pode registrá-lo no WikiApiary, o wiki que acompanha outros wikis.", + "smw-admin-deprecation-notice-title": "Avisos de depreciação", + "smw-admin-deprecation-notice-docu": "A seção seguinte contém configurações que foram depreciadas ou removidas mas foram detectadas como estando ativas neste wiki. É esperado que qualquer versão futura remova o suporte para estas configurações.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] está depreciado e será removido em $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] irá remover (ou substituir) {{PLURAL:$2|a seguinte opção|as seguintes opções}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 foi descontinuado e será removido na versão $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] foi substituído por [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] foi substituído por $2", + "smw-admin-deprecation-notice-config-replacement-option": "{{PLURAL:$2|Opção|Opções}} de [https://www.semantic-mediawiki.org/wiki/Help:$1 $1]:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 está sendo substituído por $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] foi removido em $2", + "smw-admin-deprecation-notice-title-notice": "Configurações obsoletas", + "smw-admin-deprecation-notice-title-notice-explanation": "Configurações obsoletas mostra as configurações que foram detectadas para serem usadas neste wiki e estão planejadas para serem removidas ou alteradas em uma versão futura.", + "smw-admin-deprecation-notice-title-replacement": "Configurações substituídas ou renomeadas", + "smw-admin-deprecation-notice-title-replacement-explanation": "Configurações substituídas ou renomeadas contém configurações que foram renomeadas ou modificadas e é recomendável atualizar imediatamente seu nome ou formato.", + "smw-admin-deprecation-notice-title-removal": "Configurações removidas", + "smw-admin-deprecation-notice-title-removal-explanation": "Configurações removidas identifica as configurações que foram removidas em uma versão anterior, mas foram detectadas para serem usadas nessa wiki.", + "smw-admin-deprecation-notice-section-legend": "Legenda", + "smw-smwadmin-refresh-title": "Reparação e atualização dos dados", + "smw_smwadmin_datarefresh": "Reparação dos dados", + "smw_smwadmin_datarefreshdocu": "É possível restaurar todos os dados do Semantic MediaWiki baseado no conteúdo atual do wiki.\nIsto pode ser útil para reparar dados corrompidos ou para atualizar os dados se o formato interno tiver sido alterado devido a alguma atualização do software.\nA atualização é executada página a página e não ficará completa de imediato.\nAbaixo é mostrado se uma atualização está em processo e permite-lhe iniciar ou parar atualizações (a menos que esta funcionalidade tenha sido desativada por um administrador do site).", + "smw_smwadmin_datarefreshprogress": "Uma atualização já se encontra em progresso.\nÉ normal que a atualização progrida lentamente já que apenas atualiza dados em pequenos blocos de cada vez quando um usuário acessa o wiki.\nPara terminar esta atualização mais rapidamente, você pode executar o script de manutenção do MediaWiki runJobs.php (use a opção --maxjobs 1000 para restringir o número de atualizações feitas em um bloco).\nProgresso estimado da atualização corrente:", + "smw_smwadmin_datarefreshbutton": "Programar reconstrução de dados", + "smw_smwadmin_datarefreshstop": "Parar esta atualização", + "smw_smwadmin_datarefreshstopconfirm": "Sim, tenho {{GENDER:$1|certeza}}.", + "smw-admin-job-scheduler-note": "Tarefas (aquelas habilitadas) nesta seção são executadas via fila de processos para evitar situações de travamento durante a sua execução. A [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue fila de processos] é responsável pelo processamento, assim sendo, é crítico que o script de manutenção runJobs.php tenha uma capacidade adequada (veja também o parâmetro de configuração $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "Eliminação de entidades obsoletas", + "smw-admin-outdateddisposal-intro": "Algumas atividades (a alteração de um tipo de propriedade, a remoção de páginas wiki ou a correção de valores em erro) resultam em [https://www.semantic-mediawiki.org/wiki/Outdated_entities entidades desatualizadas] e é recomendado que estas sejam removidas periodicamente para liberar espaço nas tabelas associadas.", + "smw-admin-outdateddisposal-active": "Foi agendado um processo de eliminação de entidades desatualizadas.", + "smw-admin-outdateddisposal-button": "Agendar eliminação", + "smw-admin-feature-disabled": "Esta funcionalidade foi desativada neste wiki. Consulte a página de ajuda das configurações ou contate o administrador do sistema.", + "smw-admin-propertystatistics-title": "Reparação de estatísticas de propriedades", + "smw-admin-propertystatistics-intro": "Reconstrói todas as estatísticas de utilização de propriedades e nesse processo atualiza e corrige a [https://www.semantic-mediawiki.org/wiki/help:Property_usage_count contagem de uso] das propriedades.", + "smw-admin-propertystatistics-active": "Uma tarefa de reconstrução de estatísticas de propriedade foi agendada.", + "smw-admin-propertystatistics-button": "Agendar reparação de estatísticas", + "smw-admin-fulltext-title": "Reparação de texto completo", + "smw-admin-fulltext-intro": "Reconstrói o índice de pesquisas com base nas tabelas de propriedade, usando um tipo de dados que suporta a [https://www.semantic-mediawiki.org/wiki/full-text pesquisa de texto completo]. Alterações nas normas de indexação (''stopwords'' alteradas, novo ''stemmer'', etc.) ou uma tabela nova ou alterada requerem que este processo volte a ser executado.", + "smw-admin-fulltext-active": "Uma tarefa de reconstrução de pesquisa de texto completo foi agendada.", + "smw-admin-fulltext-button": "Agendar reparação de texto completo", + "smw-admin-support": "Obtendo suporte", + "smw-admin-supportdocu": "Vários recursos estão disponíveis para lhe ajudar em caso de problemas:", + "smw-admin-installfile": "Se tiver problemas com a sua instalação, comece por rever as orientações no arquivo INSTALL e na página de instalação.", + "smw-admin-smwhomepage": "A documentação completa para o usuário do Semantic MediaWiki está em semantic-mediawiki.org.", + "smw-admin-bugsreport": "Bugs podem ser reportados no GitHub, a página para reportar bugs fornece instruções para criar relatórios eficazes.", + "smw-admin-questions": "Se tiver mais questões ou sugestões, junte-se à lista de discussão.", + "smw-admin-other-functions": "Outras funções", + "smw-admin-statistics-extra": "Estatísticas de funções", + "smw-admin-statistics": "Estatísticas", + "smw-admin-supplementary-section-title": "Funções suplementares", + "smw-admin-supplementary-section-subtitle": "Funções centrais suportadas", + "smw-admin-supplementary-section-intro": "Esta seção fornece funções adicionais além do escopo de manutenção e é possível que algumas funções listadas na [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions documentação] estejam restritas ou indisponíveis e, portanto, inacessível neste wiki.", + "smw-admin-supplementary-settings-title": "Definições e configurações", + "smw-admin-supplementary-settings-intro": "$1 mostra parâmetros que definem o comportamento do Semantic MediaWiki", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Estatísticas operacionais", + "smw-admin-supplementary-operational-statistics-short-title": "estatísticas operacionais", + "smw-admin-supplementary-operational-statistics-intro": "Exibe um conjunto estendido de $1", + "smw-admin-supplementary-idlookup-title": "Pesquisa e eliminação de entidades", + "smw-admin-supplementary-idlookup-short-title": "pesquisa e eliminação de entidade", + "smw-admin-supplementary-idlookup-intro": "Suporta uma simples função de $1", + "smw-admin-supplementary-duplookup-title": "Consulta de entidades duplicadas", + "smw-admin-supplementary-duplookup-intro": "$1 para encontrar entidades categorizadas como duplicatas para a matriz de tabelas selecionada", + "smw-admin-supplementary-duplookup-docu": "Esta página lista entradas de tabelas selecionadas que foram categorizadas como duplicadas. Entradas duplicadas devem (se de todo) ocorrer apenas em raras ocasiões potencialmente causadas por uma atualização finalizada ou por uma transação de reversão malsucedida.", + "smw-admin-supplementary-operational-statistics-cache-title": "Estatísticas de Cache", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 mostra um conjunto selecionado de estatísticas relacionadas ao cache", + "smw-admin-supplementary-operational-table-statistics-title": "Estatísticas da tabela", + "smw-admin-supplementary-operational-table-statistics-short-title": "estatísticas da tabela", + "smw-admin-supplementary-operational-table-statistics-intro": "Gera $1 para um conjunto selecionado de tabelas", + "smw-admin-supplementary-operational-table-statistics-explain": "Esta seção contém estatísticas de tabelas selecionadas para ajudar administradores e curadores de dados a tomar decisões informadas sobre esse estado do back-end e do mecanismo de armazenamento.", + "smw-admin-supplementary-operational-table-statistics-legend": "A legenda descreve algumas das chaves usadas para as estatísticas de tabelas e inclui:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count número total de linhas em uma tabela", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id último identificador atualmente em uso\n* duplicate_count número de duplicados encontrados na tabela id_table (ver também [[Special:SemanticMediaWiki/duplicate-lookup|Pesquisa de entidades duplicadas]]) \n* rows.rev_count número de linhas que têm um identificador de revisão (revision_id) atribuído que indica um hiperligação direta para uma página do wiki\n* rows.smw_namespace_group_by_count números de linhas agregadas para espaços nominais usados na tabela\n* rows.smw_proptable_hash.query_match_count número de subobjetos de consulta com uma referência de tabela correspondente \n* rows.smw_proptable_hash.query_null_count número de subobjetos de consulta sem uma referência de tabela (sem hiperligação, referência flutuante)", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent porcentagem dos termos que são únicos (uma taxa de percentagem baixa indica que termos repetidos ocupam a tabela de conteúdo e índice)\n* rows.terms_occurrence.single_occurrence_total_count número de termos que aparecem somente uma vez \n* rows.terms_occurrence.multi_occurrence_total_count número de termos que aparecem mais de uma vez", + "smw-admin-supplementary-elastic-version-info": "Versão", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 exibe detalhes sobre configurações e estatísticas de índice", + "smw-admin-supplementary-elastic-docu": "Esta página contém informações sobre configurações, mapeamentos, situação e estatísticas de índices relacionados ao cluster do Elasticsearch que está conectado ao Semantic MediaWiki e seu [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Funções suportadas", + "smw-admin-supplementary-elastic-settings-title": "Configurações (índices)", + "smw-admin-supplementary-elastic-settings-intro": "$1 utilizado pelo Elasticsearch para gerenciar os índices do Semantic MediaWiki", + "smw-admin-supplementary-elastic-mappings-title": "Mapeamentos", + "smw-admin-supplementary-elastic-mappings-intro": "$1 para listar índices e mapeamentos de campo", + "smw-admin-supplementary-elastic-mappings-docu": "Esta página contém detalhes do mapeamento de campos usados pelo índice atual. É recomendado o monitoramento dos mapeamentos em conjunto com o limite index.mapping.total_fields.limit (especifica o número máximo de campos num índice permitido).", + "smw-admin-supplementary-elastic-mappings-docu-extra": "O property_fields se refere a contagem de campos principais indexados enquanto o nested_fields se refere a uma contagem acumulada de campos adicionais atribuídos a um campo principal para suportar padrões de busca estruturados específicos.", + "smw-admin-supplementary-elastic-mappings-summary": "Resumo", + "smw-admin-supplementary-elastic-mappings-fields": "Mapeamentos de campos", + "smw-admin-supplementary-elastic-nodes-title": "Nodes", + "smw-admin-supplementary-elastic-nodes-intro": "$1 exibe estatísticas dos nodes", + "smw-admin-supplementary-elastic-indices-title": "Índices", + "smw-admin-supplementary-elastic-indices-intro": "$1 fornece uma visão geral dos índices disponíveis e suas estatísticas", + "smw-admin-supplementary-elastic-statistics-title": "Estatísticas", + "smw-admin-supplementary-elastic-statistics-intro": "$1 exibe o nível de estatística dos índices", + "smw-admin-supplementary-elastic-statistics-docu": "Esta página fornece dados sobre estatísticas de índices para diferentes operações que estão acontecendo em um nível de índice, os dados retornados são agrupados com agrupamentos primários e totais. A [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html página de ajuda] contém uma descrição detalhada das estatísticas de índice disponíveis.", + "smw-admin-supplementary-elastic-status-replication": "Status da replicação", + "smw-admin-supplementary-elastic-status-last-active-replication": "Última replicação ativa: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Intervalo de atualização: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Tarefas de recuperação em atraso: $1 (estimativa)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Tarefas de ingestão (de arquivos) em atraso: $1 (estimativa)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Replicação trancada: $1 (recriação em progresso)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Monitoramento de replicação (ativo): $1", + "smw-admin-supplementary-elastic-replication-header-title": "Status de replicação", + "smw-admin-supplementary-elastic-replication-function-title": "Replicação", + "smw-admin-supplementary-elastic-replication-intro": "$1 mostra informações sobre replicações com falha", + "smw-admin-supplementary-elastic-replication-docu": "Esta página fornece informação sobre o [https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring estado de replicação] das entidades reportadas como tendo problemas com o ''cluster'' Elasticsearch. É recomendado rever as entidades listadas e purgar o conteúdo para confirmar que era um problema temporário.", + "smw-admin-supplementary-elastic-replication-files-docu": "Deve ser notado que, para a lista de arquivos, é obrigatório que a tarefa de [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion ingestão de arquivos] seja executada primeiro e conclua o seu processamento.", + "smw-admin-supplementary-elastic-replication-files": "Arquivos", + "smw-admin-supplementary-elastic-replication-pages": "Páginas", + "smw-admin-supplementary-elastic-endpoints": "Pontos de terminação", + "smw-admin-supplementary-elastic-config": "Configurações", + "smw-admin-supplementary-elastic-no-connection": "De momento, a wiki '''não consegue''' estabelecer uma ligação ao ''cluster'' Elasticsearch; contacte o administrador da wiki para investigar o problema, por favor, porque este torna indisponíveis as capacidades de indexação e consulta do sistema.", + "smw-list-count": "A lista contém $1 {{PLURAL:$1|item|itens}}.", + "smw-property-label-uniqueness": "O nome \"$1\" foi correspondido por pelo menos uma outra representação de propriedade. Por favor, consulte a [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness página de ajuda] sobre como resolver este problema.", + "smw-property-label-similarity-title": "Relatório de similaridade de nome de propriedade", + "smw-property-label-similarity-intro": "$1 calcula as semelhanças de nomes de propriedade existentes", + "smw-property-label-similarity-threshold": "Limite:", + "smw-property-label-similarity-type": "Exibir o tipo de ID", + "smw-property-label-similarity-noresult": "Nenhum resultado foi encontrado para as opções selecionadas.", + "smw-property-label-similarity-docu": "Esta página compara a [https://www.semantic-mediawiki.org/wiki/Property_similarity semelhança sintática] (não confundir com uma semelhança semântica ou lexical) entre os nomes das propriedades e reporta-as se excederem o limite. O relatório pode ajudar a filtrar propriedades com erros ortográficos ou propriedades equivalentes que representam o mesmo conceito (ver a página especial [[Special:Properties|propriedades]] para clarificar o conceito e a utilização das propriedades reportadas). O limite pode ser ajustado para aumentar ou reduzir a distância usada para a correspondência por aproximação. [[Property:$1|$1]] é usado para isentar propriedades desta análise.", + "smw-admin-operational-statistics": "Esta página contém estatísticas operacionais coletadas em ou a partir de funções relacionadas ao Semantic MediaWiki. Uma extensa lista de estatísticas específicas do wiki pode ser encontrada [[Special:Statistics|aqui]].", + "smw_adminlinks_datastructure": "Estrutura de dados", + "smw_adminlinks_displayingdata": "Exibição de dados", + "smw_adminlinks_inlinequerieshelp": "Ajuda para consultas inline", + "smw-page-indicator-usage-count": "[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count Número de utilizações] estimado: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "Propriedade definida pelo {{PLURAL:$1|usuário|sistema}}", + "smw-property-indicator-last-count-update": "Contagem estimada de uso\nÚltima atualização: $1", + "smw-concept-indicator-cache-update": "Contagem da cache\nÚltima atualização: $1", + "smw-createproperty-isproperty": "É uma propriedade do tipo $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|O valor permitido para esta propriedade é|Os valores permitidos para esta propriedade são}}:", + "smw-paramdesc-category-delim": "O delimitador", + "smw-paramdesc-category-template": "Uma predefinição para formatar os itens com", + "smw-paramdesc-category-userparam": "Um parâmetro para passar para a predefinição", + "smw-info-par-message": "Mensagem a ser exibida.", + "smw-info-par-icon": "Ícone para mostrar, \"info\" ou \"aviso\".", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Opções gerais", + "prefs-extended-search-options": "Pesquisa avançada", + "prefs-ask-options": "Busca semântica", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ O Semantic MediaWiki] (e extensões associadas) fornece personalização individual para um grupo de funções selecionadas. Uma lista de configurações individuais com suas descrições e características está disponível na seguinte [https://www.semantic-mediawiki.org/wiki/Help:User_preferences página de ajuda].", + "smw-prefs-ask-options-tooltip-display": "Exibir o texto do parâmetro como uma dica no [[Special:Ask|construtor de consultas]] #ask.", + "smw-prefs-ask-options-compact-view-basic": "Ativar visão compacta básica", + "smw-prefs-help-ask-options-compact-view-basic": "Se ativado, apresenta um conjunto reduzido de hiperligações na vista compacta Special:Ask.", + "smw-prefs-general-options-time-correction": "Ativar a correção da hora para páginas especiais utilizando a preferência do [[Special:Preferences#mw-prefsection-rendering|fuso horário]] local", + "smw-prefs-general-options-jobqueue-watchlist": "Mostrar a lista de vigilância da fila de tarefas na minha barra pessoal", + "smw-prefs-help-general-options-jobqueue-watchlist": "Se ativado, mostra uma [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist lista] de tarefas selecionadas pendentes, com os respetivos tamanhos de fila estimados.", + "smw-prefs-general-options-disable-editpage-info": "Desativar o texto introdutório na edição da página", + "smw-prefs-general-options-disable-search-info": "Desativar as informações de suporte da sintaxe na página de pesquisa padrão", + "smw-prefs-general-options-suggester-textinput": "Ativar o auxiliar de preenchimento para as entidades semânticas", + "smw-prefs-help-general-options-suggester-textinput": "Se ativado, permite usar um [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance auxiliar de preenchimento] para encontrar propriedades, conceitos e categorias num contexto de entrada.", + "smw-prefs-general-options-show-entity-issue-panel": "Mostrar o painel de problemas de entidades", + "smw-prefs-help-general-options-show-entity-issue-panel": "Se ativado, executa verificações de integridade em cada página e mostra o [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel painel de problemas de entidades].", + "smw-prefs-factedsearch-profile": "Seleciona um perfil padrão de [[Special:FacetedSearch|busca facetada]]", + "smw-ui-tooltip-title-property": "Propriedade", + "smw-ui-tooltip-title-quantity": "Conversão de unidade", + "smw-ui-tooltip-title-info": "Informação", + "smw-ui-tooltip-title-service": "Links de serviço", + "smw-ui-tooltip-title-warning": "Alerta", + "smw-ui-tooltip-title-error": "Erro", + "smw-ui-tooltip-title-parameter": "Parâmetro", + "smw-ui-tooltip-title-event": "Evento", + "smw-ui-tooltip-title-note": "Nota", + "smw-ui-tooltip-title-legend": "Legenda", + "smw-ui-tooltip-title-reference": "Referência", + "smw_unknowntype": "O tipo \"$1\" desta propriedade é inválido", + "smw-concept-cache-text": "O conceito possui um total de $1 {{PLURAL:$1|página|páginas}} e foi atualizado pela última vez às $3 em $2.", + "smw_concept_header": "Páginas do conceito \"$1\"", + "smw_conceptarticlecount": "Exibindo {{PLURAL:$1|uma página|$1 páginas}}.", + "smw-qp-empty-data": "Os dados requisitados não puderam ser exibidos devido a algum critério de seleção insuficiente.", + "right-smw-admin": "Acesso às tarefas de administração (Semantic MediaWiki)", + "right-smw-patternedit": "Acesso de edição para manter expressões regulares e padrões permitidos (Semantic MediaWiki)", + "right-smw-pageedit": "Acesso de edição para páginas marcadas com Is edit protected (Semantic MediaWiki)", + "right-smw-schemaedit": "Edição de [https://www.semantic-mediawiki.org/wiki/Help:Schema páginas de esquema] (Semantic MediaWiki)", + "right-smw-viewjobqueuewatchlist": "Acesso à [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist lista de vigiados da fila de tarefas] (Semantic MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "Acesso à informações sobre não correspondência entre revisões associadas a uma entidade (Semantic MediaWiki)", + "right-smw-vieweditpageinfo": "Ver [https://www.semantic-mediawiki.org/wiki/Help:Edit_help ajuda de edição] (Semantic MediaWiki)", + "restriction-level-smw-pageedit": "protegida (somente usuários com permissão)", + "action-smw-patternedit": "editar expressões regulares utilizadas pelo Semantic MediaWiki", + "action-smw-pageedit": "editar páginas anotadas com É protegida de edição (Semantic MediaWiki)", + "group-smwadministrator": "Administradores (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|administrador|administradora|administrador(a)}} (Semantic MediaWiki)", + "grouppage-smwadministrator": "{{ns:project}}:Administradores (Semantic MediaWiki)", + "group-smwcurator": "Curadores (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|curador|curadora}} (Semantic MediaWiki)", + "grouppage-smwcurator": "{{ns:project}}:Curators (Semantic MediaWiki)", + "group-smweditor": "Editores (Semantic MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|editor|editora}} (Semantic MediaWiki)", + "grouppage-smweditor": "{{ns:project}}:Editores (Semantic MediaWiki)", + "action-smw-admin": "acessar as tarefas de administração do Semantic MediaWiki", + "action-smw-ruleedit": "editar páginas de regras (Semantic MediaWiki)", + "smw-property-namespace-disabled": "O [https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks domínio] Propriedade está desabilitado, declarar um tipo de dado ou outras características específicas de propriedade para esta propriedade não é possível.", + "smw-property-predefined-default": "\"$1\" é uma propriedade predefinida do tipo $2.", + "smw-property-predefined-common": "Esta propriedade é predefinida (também chamada de [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propriedade especial]) e vem com privilégios administrativos adicionais, mas pode ser usada como qualquer outra [https://www.semantic-mediawiki.org/wiki/Property propriedade definida pelo usuário].", + "smw-property-predefined-ask": "\"$1\" é uma propriedade predefinida que representa metadados (na forma de um [https://www.semantic-mediawiki.org/wiki/Subobject subobjeto]) sobre consultas individuais, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksi": "\"$1\" é uma propriedade predefinida (também conhecida como [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propriedade especial]) que coleta o número de condições utilizadas em uma consulta, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askde": "\"$1\" é uma propriedade predefinida que informa sobre a profundidade de uma consulta, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askde": "É um valor numérico calculado com base nas consultas intercaladas, nas cadeias de propriedades e nos elementos descritivos disponíveis, sendo que a execução de cada consulta está restringida pelo parâmetro de configuração [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-property-predefined-askpa": "\"$1\" é uma propriedade predefinida que descreve parâmetros que influenciam um resultado de consulta, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askpa": "É parte de um conjunto de propriedades que especificam um [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler perfil de consulta].", + "smw-sp-properties-docu": "Esta página lista as [https://www.semantic-mediawiki.org/wiki/Property propriedades] e suas frequências de uso neste wiki. Para uma estatística de contagem atualizada é recomendável que o script de manutenção de [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics estatísticas de propriedades] seja executado frequentemente. Para uma visualização diferenciada, veja a página especial [[Special:UnusedProperties|propriedades não utilizadas]] ou [[Special:WantedProperties|propriedades desejadas]].", + "smw-sp-properties-cache-info": "Os dados listados foram extraídos do [https://www.semantic-mediawiki.org/wiki/Caching cache] e atualizados pela última vez em $1.", + "smw-sp-properties-header-label": "Lista de propriedades", + "smw-admin-settings-docu": "Exibe uma lista contendo todas as configurações padrão e locais que são relevantes ao ambiente do Semantic MediaWiki.\nPara detalhes sobre configurações individuais, por favor, consulte a [https://www.semantic-mediawiki.org/wiki/Help:Configuration página de ajuda sobre configuração].", + "smw-sp-admin-settings-button": "Gerar lista de configurações", + "smw-admin-idlookup-title": "Procurar", + "smw-admin-idlookup-docu": "Esta seção mostra detalhes técnicos sobre uma entidade individual (wikipage, subobjeto, propriedade, etc.) em Semantic MediaWiki. A entrada pode ser um ID numérico ou um valor de cadeia para corresponder ao campo de pesquisa relevante, no entanto, qualquer referência de ID refere-se ao Semântica MediaWiki e não à página do MediaWiki ou ao ID de revisão.", + "smw-admin-iddispose-title": "Eliminação", + "smw-admin-iddispose-docu": "Deve-se observar que a operação de descarte é irrestrita e removerá a entidade do mecanismo de armazenamento juntamente com todas as suas referências nas tabelas pendentes, realize esta operação com '''cuidado''' e somente após consultar a [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal documentação].", + "smw-admin-iddispose-done": "O ID \"$1\" foi removido do mecanismo de armazenamento.", + "smw-admin-iddispose-references": "O identificador \"$1\" {{PLURAL:$2|não tem nenhuma|tem pelo menos uma}} referência ativa.", + "smw-admin-iddispose-references-multiple": "Lista de correspondências com pelo menos um registro de referência ativo.", + "smw-admin-iddispose-no-references": "A pesquisa não conseguiu corresponder \"$1\" a uma entrada na tabela.", + "smw-admin-idlookup-input": "Pesquisar:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Visão geral", + "smw-admin-tab-notices": "Avisos de descontinuação", + "smw-admin-tab-maintenance": "Manutenção", + "smw-admin-tab-supplement": "Funções suplementares", + "smw-admin-tab-registry": "Registro", + "smw-admin-tab-alerts": "Alertas", + "smw-admin-alerts-tab-deprecationnotices": "Avisos de depreciação", + "smw-admin-alerts-tab-maintenancealerts": "Alertas de manutenção", + "smw-admin-alerts-section-intro": "Esta seção mostra alertas e avisos relacionados a configurações, operações e outras atividades que foram classificadas para exigir atenção de um administrador ou usuário com direitos apropriados.", + "smw-admin-maintenancealerts-section-intro": "Os seguintes alertas e avisos devem ser resolvidos e, embora não sejam essenciais, espera-se que ajude a melhorar a manutenção do sistema e operacional.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Otimização de tabela", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "O sistema descobriu que a [https://www.semantic-mediawiki.org/wiki/Table_optimization otimização de tabelas] foi executada $2 dias atrás (recorde de $1) o que excede os $3 dias do limite de manutenção. Como mencionado na documentação, a execução de otimizações permitirá que o planejador de consultas tome decisões melhores sobre consultas. Assim, sugere-se executar a otimização de tabelas de modo regular.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Entidades desatualizadas", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "O sistema encontrou $1 [https://www.semantic-mediawiki.org/wiki/Outdated_entities entidades desatualizadas] e alcançou um nível crítico de manutenções não atendidas, excedendo o limite de $2. É recomendado executar o script de manutenção [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php].", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Entidades inválidas", + "smw-admin-maintenancealerts-invalidentities-alert": "O sistema encontrou $1 [https://www.semantic-mediawiki.org/wiki/Invalid_entities {{PLURAL:$1|entidade|entidades}}] para um [https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace domínio descontinuado], é recomendado executar o script de manutenção [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] or [https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php].", + "smw-admin-deprecation-notice-section": "Semantic MediaWiki", + "smw-admin-configutation-tab-settings": "Configurações", + "smw-admin-configutation-tab-namespaces": "Espaços nominais", + "smw-admin-configutation-tab-schematypes": "Tipos de esquema", + "smw-admin-maintenance-tab-tasks": "Tarefas", + "smw-admin-maintenance-tab-scripts": "Scripts de manutenção", + "smw-admin-maintenance-no-description": "Sem descrição.", + "smw-admin-maintenance-script-section-title": "Lista de scripts de manutenção disponíveis", + "smw-admin-maintenance-script-section-intro": "Os scripts de manutenção a seguir requerem um administrador e acesso à linha de comando para poder executar scripts listados.", + "smw-admin-maintenance-script-description-dumprdf": "Exportação RDF de triplas existentes.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "Este script é usado para gerenciar as ''caches'' de conceitos do Semantic MediaWiki, sendo ele que pode criar, remover e atualizar ''caches'' selecionadas.", + "smw-admin-maintenance-script-description-rebuilddata": "Recria todos os dados semânticos na base de dados, percorrendo todas as páginas que possam ter dados semânticos.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "Reconstrói o índice Elasticsearch (só nas instalações que usam o ElasticStore), percorrendo todas as entidades que têm dados semânticos.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Encontrar as entidades em falta no Elasticsearch (só nas instalações que usam o ElasticStore) e agendar os processos de atualização apropriados.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "Reconstrói o índice de pesquisa de texto completo SQLStore (nas instalações onde a configuração foi ativada).", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Recria as estatísticas de uso para todas as entidades de propriedade.", + "smw-admin-maintenance-script-description-removeduplicateentities": "Remove entidades duplicadas encontradas em tabelas selecionadas que não possuem referências ativas.", + "smw-admin-maintenance-script-description-setupstore": "Configura o modo de armazenamento e consulta definido em LocalSettings.php.", + "smw-admin-maintenance-script-description-updateentitycollation": "Atualiza o campo smw_sort do SQLStore (de acordo com a configuração [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation]).", + "smw-admin-maintenance-script-description-populatehashfield": "Popula o campo smw_hash das linhas em que este não tem um valor.", + "smw-admin-maintenance-script-description-purgeentitycache": "Eliminar entradas de cache para entidades conhecidas e seus dados associados.", + "smw-admin-maintenance-script-description-updatequerydependencies": "Atualizar consultas e dependências das consultas (ver a configuração [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore]).", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "Descarte entidades desatualizadas e links de consulta.", + "smw-admin-maintenance-script-description-runimport": "Importa o conteúdo autodescoberto a partir de [https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs].", + "smw-admin-maintenance-script-section-update": "Scripts de atualização", + "smw-admin-maintenance-script-section-rebuild": "Scripts de reconstrução", + "smw-livepreview-loading": "Carregando...", + "smw-sp-searchbyproperty-description": "Esta página fornece uma simples [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces interface de navegação] para encontrar entidades descritas por uma propriedade e um determinado valor. Outras interfaces de busca disponíveis incluem a página de [[Special:PageProperty|busca por propriedade]] e o [[Special:Ask|construtor de consultas]].", + "smw-sp-searchbyproperty-resultlist-header": "Lista de resultados", + "smw-sp-searchbyproperty-nonvaluequery": "Uma lista de valores que possuem a propriedade \"$1\" atribuída.", + "smw-sp-searchbyproperty-valuequery": "Uma lista de páginas que possuem a propriedade \"$1\" com o valor \"$2\" atribuído.", + "smw-datavalue-number-textnotallowed": "\"$1\" não pode ser atribuído a uma declaração do tipo número com o valor $2.", + "smw-datavalue-number-nullnotallowed": "\"$1\" retornou o valor \"NULL\" (nulo), que não é permitido como um número.", + "smw-editpage-annotation-enabled": "Esta página suporta marcações semânticas no texto (por exemplo, \"[[Is specified as::World Heritage Site]]\") para construir conteúdo estruturado e recuperável por consultas providas pelo Semantic MediaWiki. Para uma descrição completa sobre como utilizar marcações ou a função #ask, por favor, leia as páginas de ajuda: [https://www.semantic-mediawiki.org/wiki/Help:Getting_started primeiros passos], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation marcação no texto] ou [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries consultas embutidas].", + "smw-editpage-annotation-disabled": "Esta página não está habilitada para marcações semânticas no texto devido à restrições de namespace. Detalhes sobre como habilitar um namespace podem ser encontrados na página de ajuda sobre [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuração].", + "smw-editpage-property-annotation-enabled": "Esta propriedade pode ser extendida utilizando marcações semânticas para especificar o tipo de dados (por exemplo \"[[Has type::Page]]\") ou outras declarações suportadas (por exemplo \"[[Subproperty of::dc:date]]\"). Para uma descrição sobre como melhorar esta página, veja a [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration declaração de uma propriedade] ou a página de ajuda que [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes lista os tipos de dados disponíveis].", + "smw-editpage-property-annotation-disabled": "Esta propriedade não pode ser extendida com a marcação de tipo de dados (por exemplo, \"[[Has type::Page]]\") já que ela é predefinida (para mais informações, veja a página de ajuda sobre [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propriedades especiais]).", + "smw-editpage-concept-annotation-enabled": "Este conceito pode ser extendido utilizando a função #concept. Veja a página de ajuda [https://www.semantic-mediawiki.org/wiki/Help:Concepts conceitos].", + "smw-search-syntax-support": "A entrada da pesquisa permite o uso da [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search sintaxe de consulta semântica] para encontrar correspondências usando o Semantic MediaWiki.", + "smw-search-input-assistance": "O [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance ajudante de preenchimento] também é habilitado para facilitar a pré-seleção de propriedades e categorias disponíveis.", + "smw-search-help-intro": "Uma entrada com a forma [[ ... ]] assinala ao processador da entrada que deve usar o motor de pesquisa do Semantic MediaWiki. Note que a combinação de [[ ... ]] com uma pesquisa de texto não estruturado, como [[ ... ]] OR Lorem ipsum, não é suportada.", + "smw-search-help-structured": "Pesquisas estruturadas:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] (como [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context contexto filtrado])\n\n*[[Has text::~*lorem*]] (com um [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context contexto de consulta])", + "smw-search-help-proximity": "Pesquisas aproximidas (uma propriedade ser desconhecida, '''só''' disponível para aqueles motores de pesquisa que fornecem uma integração com a pesquisa de texto completo):\n\n*[[in:lorem ipsum]] (pesquisar em todos os documentos os termos \"lorem\" e \"ipsum\" que tenham sido indexados)\n\n* [[phrase:lorem ipsum]] (pesquisar correspondências com \"lorem ipsum\" como frase)", + "smw-search-help-ask": "As seguintes hiperligações explicam como usar a sintaxe #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selecionar páginas] descreve como selecionar páginas e construir condições\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Operadores de pesquisa] lista os operadores de pesquisa disponíveis, incluindo os para consultas de intervalos e consultas com caracteres de substituição", + "smw-search-input": "Introdução e pesquisa", + "smw-search-help-input-assistance": "É fornecida uma [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance ajuda de introdução] para o campo de entrada e requer que seja usado um dos seguintes prefixos:\n\n*p: para ativar as sugestões de propriedades (p. ex.: [[p:Has ...)\n\n*c: para ativar as sugestões de categorias\n\n*con: para ativar as sugestões de conceitos", + "smw-search-syntax": "Sintaxe", + "smw-search-profile": "Estendida", + "smw-search-profile-tooltip": "Funções de pesquisa em conexão com a Semantic MediaWiki", + "smw-search-profile-sort-best": "Melhor correspondência", + "smw-search-profile-sort-recent": "Mais recente", + "smw-search-profile-sort-title": "Título", + "smw-search-profile-extended-help-intro": "O [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile perfil extendido] da página Special:Search dá acesso a funções de pesquisa específicas da extensão Semantic MediaWiki e do seu servidor de consultas suportado.", + "smw-search-profile-extended-help-sort": "Especifica uma preferência de ordenação para a apresentação do resultado com:", + "smw-search-profile-extended-help-sort-title": "*\"Título\" usando o título da página (ou título de apresentação) como critério de ordenação", + "smw-search-profile-extended-help-sort-recent": "*\"Mais recente\" mostrará primeiro as entidades modificadas mais recentemente (as entidades subobjetos são suprimidas porque essas entidades não estão anotadas com uma [[Property:Modification date|data de modificação]])", + "smw-search-profile-extended-help-sort-best": "*\"Melhor correspondência\" ordenará as entidades por [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy relevância] com base em classificações fornecidas pelo servidor", + "smw-search-profile-extended-help-form": "São disponibilizados formulários (se estes forem mantidos) para certos casos específicos de utilização. Os formulários podem expor diferentes campos de propriedade e de entrada de valor, para limitar o processo de introdução e facilitar a criação de pedidos de pesquisa (ver $1).", + "smw-search-profile-extended-help-namespace": "A caixa de seleção do espaço nominal/domínio será ocultada logo que um formulário for selecionado mas pode ser tornada visível com a ajuda do botão \"exibir/esconder\".", + "smw-search-profile-extended-help-search-syntax": "O campo de entrada da pesquisa permite o uso da sintaxe #ask para definir um contexto de pesquisa específico do Semantic MediaWiki. Algumas expressões úteis:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: para encontrar tudo o que contenha \"...\" e é especialmente útil quando não se conhece o contexto da pesquisa ou as propriedades envolvidas (por exemplo, in:(lorem && ipsum) é equivalente a [[~~*lorem*]] && [[~~*ipsum*]]).", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: para encontrar tudo o que contenha \"...\" exatamente na mesma ordem", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: para corresponder com qualquer entidade com uma propriedade \"...\" (por exemplo, has:(Foo && Bar) é equivalente a [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: para não corresponder com nenhuma entidade que inclui \"...\"", + "smw-search-profile-extended-help-search-syntax-prefix": "* Estão disponíveis e definidos prefixos personalizados adicionais, como: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* Algumas expressões estão reservadas, como: $1", + "smw-search-profile-extended-help-search-syntax-note": "''Algumas das operações listadas só são úteis em ligação com um índice ativado de texto completo ou com o ElasticStore.''", + "smw-search-profile-extended-help-query": "$1 foi usado como consulta.", + "smw-search-profile-extended-help-query-link": "Para mais detalhes, por favor use o $1.", + "smw-search-profile-extended-help-find-forms": "formulários disponíveis", + "smw-search-profile-extended-section-sort": "Ordenar por", + "smw-search-profile-extended-section-form": "Formulários", + "smw-search-profile-extended-section-search-syntax": "Entrada de pesquisa", + "smw-search-profile-extended-section-namespace": "Espaço nominal", + "smw-search-profile-extended-section-query": "Consulta", + "smw-search-profile-link-caption-query": "construtor de consulta", + "smw-search-show": "Exibir", + "smw-search-hide": "Esconder", + "log-name-smw": "Log do Semantic MediaWiki", + "log-show-hide-smw": "$1 o registo do Semantic MediaWiki", + "logeventslist-smw-log": "Registo do Semantic MediaWiki", + "log-description-smw": "Atividades para [https://www.semantic-mediawiki.org/wiki/Help:Logging tipos de eventos habilitados] que são reportados pelo Semantic MediaWiki e seus componentes.", + "logentry-smw-maintenance": "Eventos relacionados à manutenção emitidos pelo Semantic MediaWiki.", + "smw-datavalue-import-unknown-namespace": "O namespace \"$1\" a ser importado é desconhecido. Por favor, tenha certeza de que os detalhes da importação OWL estão disponíveis via [[MediaWiki:Smw import $1]]", + "smw-datavalue-import-missing-namespace-uri": "Não foi possível encontrar um URI de namespace \"$1\" na [[MediaWiki:Smw import $1|página de importação $1]].", + "smw-datavalue-import-missing-type": "Nenhuma definição de tipo foi encontrada para \"$1\" na [[MediaWiki:Smw import $2|página de importação $2]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|importado de $1]]", + "smw-datavalue-import-invalid-value": "\"$1\" não é um formato válido, a formato esperado consiste em \"namespace\":\"identificador\" (por exemplo: \"foaf:name\").", + "smw-datavalue-import-invalid-format": "Era esperado que o texto \"$1\" estivesse dividido em quatro partes, mas o formato não foi compreendido.", + "smw-property-predefined-impo": "\"$1\" é uma propriedade predefinida que descreve uma relação a um [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary vocabulário importado], é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-type": "\"$1\" é uma propriedade predefinida que descreve o [[Special:Types|tipo de dado]] de uma propriedade, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-sobj": "\"$1\" é uma propriedade predefinida que representa um \"[https://www.semantic-mediawiki.org/wiki/Help:Container container]\", é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-sobj": "A estrutura recipiente permite acumular atribuições de valores a propriedades e é semelhante a uma página wiki normal, porém, num espaço de entidades diferente, estando ligada ao sujeito que a incorpora.", + "smw-property-predefined-errp": "\"$1\" é uma propriedade predefinida que registra erros de entrada em anotações de valor irregular e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-errp": "Na maioria dos casos, a causa é uma não correspondência de tipos ou uma restrição do [[Property:Allows value|valor]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value \"$1\"] é uma propriedade predefinida que pode definir uma lista de valores permitidos para restringir a atribuição de valores para uma determinada propriedade. É fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list \"$1\"] é uma propriedade predefinida que pode especificar uma referência a uma lista de valores permitidos para restringir a atribuição de valores a uma propriedade, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-datavalue-property-restricted-annotation-use": "A propriedade \"$1\" tem uma área de aplicação restrita e não pode ser usada como propriedade de anotação por um utilizador.", + "smw-datavalue-property-restricted-declarative-use": "A propriedade \"$1\" é uma propriedade declarativa e só pode ser usada numa propriedade ou página de categoria.", + "smw-datavalue-property-create-restriction": "A propriedade \"$1\" não existe e o usuário não possui a permissão \"$2\" (veja o [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoridade]) para criar ou atribuir valores à uma propriedade não aprovada.", + "smw-datavalue-property-invalid-character": "\"$1\" contém um caractere \"$2\" listado como parte do nome da propriedade e, portanto, foi classificado como inválido.", + "smw-datavalue-property-invalid-chain": "Utilizar \"$1\" como uma sequência de propriedades não é permitido durante o processo de marcação.", + "smw-datavalue-restricted-use": "O valor de dado \"$1\" foi marcado para uso restrito.", + "smw-datavalue-invalid-number": "\"$1\" não pode ser interpretado como um número.", + "smw-query-condition-circular": "Uma possível condição circular foi detectada em \"$1\".", + "smw-query-condition-empty": "A descrição da consulta tem uma condição vazia.", + "smw-types-list": "Lista de tipos de dados", + "smw-types-default": "\"$1\" é um tipo de dado predefinido.", + "smw-types-help": "Mais informações e exemplos podem ser encontrados na [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 página de ajuda].", + "smw-type-anu": "\"$1\" é uma variante do tipo de dados [[Special:Types/URL|URL]] e é utilizada, na maior parte das vezes, para exportar uma declaração ''owl:AnnotationProperty''.", + "smw-type-boo": "\"$1\" é um tipo de dado básico para descrever um valor verdadeiro ou falso.", + "smw-type-cod": "\"$1\" é uma variante do tipo de dados [[Special:Types/Text|Texto]] para ser utilizada com textos técnicos de tamanho arbitrário, tais como listagens de código fonte.", + "smw-type-geo": "«$1» é um tipo de dado que descreve localizações geográficas e requer a extensão [https://www.semantic-mediawiki.org/wiki/Extension:Maps «Mapas»] para fornecer uma funcionalidade estendida.", + "smw-type-tel": "\"$1\" é um tipo de dado especial para descrever números internacionais de telefone de acordo com a RFC 3966.", + "smw-type-txt": "\"$1\" é um tipo de dado básico para descrever textos de tamanho arbitrário.", + "smw-type-dat": "\"$1\" é um tipo de dado básico para representar pontos no tempo em um formato unificado.", + "smw-type-ema": "\"$1\" é um tipo de dados especial para representar um email.", + "smw-type-tem": "\"$1\" é um tipo de dados numérico especial para representar uma temperatura.", + "smw-type-qty": "\"$1\" é um tipo de dados para descrever quantidades com uma representação numérica e uma unidade de medida.", + "smw-type-rec": "\"$1\" é um tipo de dados contêiner que especifica uma lista de propriedades com tipos em uma ordem fixa.", + "smw-type-extra-tem": "O esquema de conversão inclui unidades suportadas, como Kelvin, Celsius, Fahrenheit e Rankine.", + "smw-type-tab-properties": "Propriedades", + "smw-type-tab-types": "Tipos", + "smw-type-tab-type-ids": "Identificadores de tipos", + "smw-type-tab-errors": "Erros", + "smw-type-primitive": "Básico", + "smw-type-contextual": "Contextual", + "smw-type-compound": "Composto", + "smw-type-container": "Container", + "smw-type-no-group": "Não classificado", + "smw-special-pageproperty-description": "Esta página fornece uma interface de navegação para encontrar todos os valores de uma propriedade e uma determinada página. Entre as outras interfaces de pesquisa disponíveis, incluem-se a [[Special:SearchByProperty|pesquisa de propriedades]] e o [[Special:Ask|construtor de consultas ''ask'']].", + "smw-property-predefined-errc": "\"$1\" é uma propriedade predefinida fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] que apresenta os erros que aparecem em relação às marcações impróprias de valores ou de erros de processamento de entrada desses valores.", + "smw-property-predefined-long-errc": "Os erros são coletados em uma [https://www.semantic-mediawiki.org/wiki/Help:Container estrutura recipiente] que pode incluir uma referência à propriedade que causou a discrepância.", + "smw-property-predefined-errt": "\"$1\" é uma propriedade predefinida que contém uma descrição textual de um erro, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-subobject-parser-invalid-naming-scheme": "Um subobjeto definido por um usuário utilizou um esquema de nome inválido. A notação com ponto ($1) nos primeiros cinco caracteres está reservada para o uso exclusivo pelas extensões. Você pode configurar um [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier identificador nomeado].", + "smw-datavalue-record-invalid-property-declaration": "O definição do registro contém a propriedade \"$1\" que está, por sua vez, declarada também como sendo do tipo registro e isso não é permitido.", + "smw-property-predefined-mdat": "\"$1\" é uma propriedade predefinida que corresponde à data da última modificação, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cdat": "\"$1\" é uma propriedade predefinida que corresponde à data da primeira revisão, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-newp": "\"$1\" é uma propriedade predefinida que indica se um sujeito é novo ou não, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-ledt": "\"$1\" é uma propriedade predefinida que contém o nome da página do utilizador que criou a última revisão, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-mime": "\"$1\" é uma propriedade predefinida que descreve o tipo MIME de um arquivo carregado, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-media": "\"$1\" é uma propriedade predefinida que descreve o tipo de mídia de um arquivo carregado, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askfo": "\"$1\" é uma propriedade predefinida que contém o nome do formato de resultado usado em uma consulta, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askst": "\"$1\" é uma propriedade predefinida que descreve as condições da consulta em forma de texto, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askdu": "\"$1\" é uma propriedade predefinida que contém o tempo (em segundos) que a execução da consulta demorou, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksc": "\"$1\" é uma propriedade predefinida, fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki ], que identifica fontes alternativas de consulta (por exemplo, fontes remotas, federadas).", + "smw-property-predefined-askco": "\"$1\" é uma propriedade predefinida fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] para descrever o estado de uma consulta ou dos seus componentes.", + "smw-property-predefined-long-askco": "O número ou números atribuídos representam um estado interno codificado que é explicado na [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler página de ajuda].", + "smw-property-predefined-prec": "\"$1\" é uma propriedade predefinida que descreve a [https://www.semantic-mediawiki.org/wiki/Help:Display_precision precisão de apresentação] (em casas decimais) para os tipos de dados numéricos.", + "smw-property-predefined-attch-link": "\"$1\" é uma propriedade predefinida que coleta links de arquivos e imagens incorporados encontrados em uma página e é fornecida por [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-inst": "\"$1\" é uma propriedade interna predefinida que armazena informações de categoria independentes do MediaWiki, fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-unit": "\"$1\" é uma propriedade declarativa predefinida para definir unidades de exibição para propriedades de tipo numéricas, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-unit": "Uma lista separada por vírgulas permite descrever unidades ou formatos para serem usados para a exibição.", + "smw-property-predefined-conv": "\"$1\" é uma propriedade declarativa predefinida para definir um fator de conversão para alguma unidade de quantidade física, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-serv": "\"$1\" é uma propriedade declarativa predefinida para adicionar links de serviços para uma propriedade, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-redi": "\"$1\" é uma propriedade interna predefinida para registrar redirecionamentos, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-subp": "\"$1\" é uma propriedade declarativa predefinida para definir que uma propriedade é uma [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of subpropriedade de] outra, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-subc": "\"$1\" é uma propriedade predefinida para definir que uma categoria é uma [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of subcategoria de] outra, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-conc": "\"$1\" é uma propriedade interna predefinida para definir um conceito associado, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-err-type": "\"$1\" é uma propriedade predefinida para identificar um grupo ou classe de [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors erros de processamento], é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-skey": "\"$1\" é uma propriedade interna predefinida para armazenar uma referência de ordenação, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pplb": "\"$1\" é uma propriedade declarativa predefinida para especificar um [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label rótulo preferido para a propriedade], é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-chgpro": "\"$1\" é uma propriedade predefinida para armazenar informações de [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation propagação de mudanças], é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-link": ", é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-format-schema": ", é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-profile-schema": ", é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans": ", é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-source": ", é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-trans-group": ", é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cont-len": "\"$1\" é uma propriedade predefinida para armazenar informações de tamanho, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-len": "É usada em conexão com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coletar e armazenar informações de tamanho obtidas a partir de um arquivo submetido (se fornecido).", + "smw-property-predefined-cont-lang": "\"$1\" é uma propriedade predefinida para armazenar informação de idioma, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-lang": "É usada em conexão com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coletar e armazenar informação de idioma obtida a partir de um arquivo submetido (se fornecido).", + "smw-property-predefined-cont-title": "\"$1\" é uma propriedade predefinida para armazenar informação de título, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-title": "É usada em conexão com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coletar e armazenar informação de título obtida a partir de um arquivo submetido (se fornecido).", + "smw-property-predefined-cont-author": "\"$1\" é uma propriedade predefinida para armazenar informação de autoria, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-author": "É usada em conexão com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coletar e armazenar informação de autoria obtida a partir de um arquivo submetido (se fornecido).", + "smw-property-predefined-cont-date": "\"$1\" é uma propriedade predefinida para armazenar informação de data, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-date": "É usada em conexão com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coletar e armazenar informação de data obtida a partir de um arquivo submetido (se fornecido).", + "smw-property-predefined-cont-type": "\"$1\" é uma propriedade predefinida para armazenar informação de tipo de arquivo, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-type": "É usada em conexão com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coletar e armazenar informação de tipo de arquivo obtida a partir de um arquivo submetido (se fornecido).", + "smw-property-predefined-cont-keyw": "\"$1\" é uma propriedade predefinida para representar palavras-chave, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-cont-keyw": "É usada em conexão com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coletar e armazenar palavras-chave obtidas a partir de um arquivo submetido (se fornecido).", + "smw-property-predefined-file-attch": "\"$1\" é uma propriedade predefinida para representar um container que armazena informação de anexo, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-file-attch": "É usada em conexão com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coletar toda informação específica de conteúdo obtidas a partir de um arquivo submetido (se fornecido).", + "smw-types-extra-geo-not-available": "Não foi detetada a extensão [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Mapas\"], portanto, \"$1\" está restringido na sua capacidade operacional.", + "smw-datavalue-monolingual-dataitem-missing": "Um item esperado para construir um valor composto monolíngue está faltando.", + "smw-datavalue-languagecode-missing": "Para a marcação \"$1\" o analisador sintático não conseguiu determinar o código de idioma (exemplo: \"foo@en\").", + "smw-datavalue-languagecode-invalid": "\"$1\" não foi reconhecido como um código de idioma válido.", + "smw-property-predefined-lcode": "\"$1\" é uma propriedade predefinida que representa um código de idioma formatado BCP47, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-type-mlt-rec": "\"$1\" é um tipo de dados [https://www.semantic-mediawiki.org/wiki/Help:Container recipiente] (''container'') que associa um texto a um [[Property:Language code|código de idioma]] específico.", + "smw-types-extra-mlt-lcode": "O tipo de dados {{PLURAL:$2|requer|não requer}} um código de idioma (ou seja, uma marcação de valor sem um código de idioma {{PLURAL:$2|não é|é}} aceito).", + "smw-property-predefined-text": "\"$1\" é uma propriedade predefinida que representa um texto de comprimento arbitrário, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pdesc": "\"$1\" é uma propriedade predefinida que permite descrever uma propriedade no contexto de um idioma, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-list": "\"$1\" é uma propriedade predefinida para definir uma lista de propriedades utilizadas com uma propriedade do tipo [[Special:Types/Record|registro]], é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] In-text annotation parser time", + "smw-limitreport-intext-postproctime": "[SMW] tempo pós-processamento", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|segundo|segundos}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|segundo|segundos}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Store update time (on page purge)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|segundo|segundos}}", + "smw_allows_pattern": "É esperado que esta página contenha uma lista de referências (seguidas por [https://pt.wikipedia.org/wiki/Express%C3%A3o_regular expressões regulares]) que serão disponibilizadas pela propriedade [[Property:Allows pattern|Allows pattern]]. Para editar esta página a permissão smw-patternedit é necessária.", + "smw-datavalue-allows-pattern-mismatch": "\"$1\" foi considerado inválido pela expressão regular \"$2\".", + "smw-datavalue-allows-pattern-reference-unknown": "O padrão de referência \"$1\" não foi encontrado na página [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "A lista de referência \"$1\" não foi correspondida em uma página [[MediaWiki:Smw allows list $1]].", + "smw-datavalue-allows-value-list-missing-marker": "Está faltando itens com o marcador * no conteúdo da lista \"$1\".", + "smw-datavalue-feature-not-supported": "A funcionalidade \"$1\" não é suportada ou foi desativada neste wiki.", + "smw-property-predefined-pvap": "\"$1\" é uma propriedade predefinida que pode especificar uma [[MediaWiki:Smw allows pattern|referência de padrão permitido]] para aplicar uma [https://pt.wikipedia.org/wiki/Express%C3%A3o_regular expressão regular], é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-dtitle": "\"$1\" é uma propriedade predefinida que pode atribuir a uma entidade um título de apresentação distinto, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvuc": "\"$1\" é uma propriedade predefinida, fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para restringir a atribuição de valores a valores únicos (ou a um, no máximo) para cada instância.", + "smw-property-predefined-long-pvuc": "A unicidade é estabelecida quando dois valores não são iguais em suas representações literais e qualquer violação desta restrição será categorizada como erro.", + "smw-datavalue-constraint-uniqueness-violation": "A propriedade \"$1\" só permite a atribuição de valores únicos e \"$2\" já foi atribuído no sujeito \"$3\".", + "smw-datavalue-constraint-uniqueness-violation-isknown": "A propriedade \"$1\" só permite anotações de valores únicos, ''$2'' já contém um valor atribuído. \"$3\" viola a restrição de unicidade.", + "smw-datavalue-constraint-violation-non-negative-integer": "A propriedade \"$1\" tem uma restrição \"inteiro não negativo\" e o valor ''$2'' viola esse requisito.", + "smw-datavalue-constraint-violation-must-exists": "A propriedade \"$1\" tem uma restrição must_exists e um valor ''$2'' que viola aquele requisito.", + "smw-datavalue-constraint-violation-single-value": "A propriedade \"[[Property:$1|$1]]\" tem uma restrição single_value e o valor \"$2\" viola aquele requisito.", + "smw-constraint-violation-uniqueness": "Uma restrição unique_value_constraint está atribuída a propriedade \"[[Property:$1|$1]]\" que somente permite a atribuição de valores únicos. A anotação de valor ''$2'' já foi encontrada no sujeito \"$3\".", + "smw-constraint-violation-uniqueness-isknown": "Uma restrição unique_value_constraint está atribuída a propriedade \"[[Property:$1|$1]]\", assim, ela somente permite a atribuição de valores únicos. ''$2'' já contém um valor anotado com \"$3\", violando a restrição de unicidade para o sujeito atual.", + "smw-constraint-violation-non-negative-integer": "Uma restrição non_negative_integer está atribuída a propriedade \"[[Property:$1|$1]]\" e o valor ''$2'' está violando esse requisito.", + "smw-constraint-violation-must-exists": "Uma limitação must_exists assinada à propriedade \"[[Property:$1|$1]]\" e ao valor de anotação ''$2'' está violando o requisito de restrição.", + "smw-constraint-violation-single-value": "Uma restrição single_value está atribuída a propriedade \"[[Property:$1|$1]]\" e o valor \"$2\" esta violando esse requisito.", + "smw-constraint-violation-class-shape-constraint-missing-property": "Uma shape_constraint está atribuída à categoria \"[[:$1]]\" com uma chave property, a propriedade requerida \"$2\" está faltando.", + "smw-constraint-violation-class-shape-constraint-wrong-type": "Uma shape_constraint está atribuída à categoria \"[[:$1]]\" com uma chave de property_type, a propriedade \"$2\" não corresponde ao tipo de \"$3\".", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "Uma shape_constraint está atribuída à categoria \"[[:$1]]\" com uma chave de max_cardinality, a propriedade \"$2\" não corresponde a cardinalidade de \"$3\".", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "Uma shape_constraint está atribuída à categoria \"[[:$1]]\" com uma chave de min_textlength, a \n propriedade \"$2\" não corresponde ao requisito de tamanho \"$3\".", + "smw-constraint-violation-class-mandatory-properties-constraint": "Uma restrição de mandatory_properties está atribuída à categoria \"[[:$1]]\" e requer as seguintes propriedades obrigatórias: $2", + "smw-constraint-violation-allowed-namespace-no-match": "Uma restrição de allowed_namespaces está atribuída à propriedade \"[[Property:$1|$1]]\" e \"$2\" viola o requisito de namespace, somente os seguintes namespaces são permitidos: \"$3\".", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "A restrição de allowed_namespaces requer um tipo de página.", + "smw-constraint-schema-category-invalid-type": "O esquema anotado \"$1\" é inválido para uma categoria; requer um tipo \"$2\".", + "smw-constraint-schema-property-invalid-type": "O esquema anotado \"$1\" é inválido para uma propriedade; requer um tipo \"$2\".", + "smw-constraint-error-allows-value-list": "\"$1\" não está na lista ($2) de [[Property:Allows value|valores permitidos]] para a propriedade \"$3\".", + "smw-constraint-error-allows-value-range": "\"$1\" não está dentro do intervalo de \"$2\" especificado pela restrição de [[Property:Allows value|permissão de valores]] para a propriedade \"$3\".", + "smw-property-predefined-boo": "\"$1\" é um [[Special:Types/Boolean|tipo]] e uma propriedade predefinida, fornecidos pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] para representar valores booleanos.", + "smw-property-predefined-num": "\"$1\" é um [[Special:Types/Number|tipo]] e uma propriedade predefinida, fornecidos pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para representar valores numéricos.", + "smw-property-predefined-dat": "\"$1\" é um [[Special:Types/Date|tipo]] e uma propriedade predefinida, fornecidos pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para representar valores de datas.", + "smw-property-predefined-uri": "\"$1\" é um [[Special:Types/URL|tipo]] e uma propriedade predefinida, fornecidos pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para representar valores URI/URL.", + "smw-property-predefined-qty": "\"$1\" é um [[Special:Types/Quantity|tipo]] e uma propriedade predefinida, fornecidos pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para representar valores de quantidade.", + "smw-datavalue-time-invalid-offset-zone-usage": "\"$1\" contém um offset e um identificador de zona, o que não é suportado.", + "smw-datavalue-time-invalid-values": "O valor \"$1\" contém uma informação que não pode ser interpretada na forma de \"$2\".", + "smw-datavalue-time-invalid-date-components-common": "\"$1\" contém alguma informação que não pode ser interpretada.", + "smw-datavalue-time-invalid-date-components-dash": "\"$1\" contém um travessão, traço de ligação extrínseco ou outros caracteres que são inválidos para a interpretação de uma data.", + "smw-datavalue-time-invalid-date-components-empty": "\"$1\" contém alguns componentes vazios.", + "smw-datavalue-time-invalid-date-components-three": "\"$1\" contém mais de três componentes necessários para a interpretação de uma data.", + "smw-datavalue-time-invalid-date-components-sequence": "\"$1\" contém uma sequência que não foi possível interpretar contra uma matriz de correspondências disponível para componentes de datas.", + "smw-datavalue-time-invalid-ampm": "\"$1\" contém \"$2\" como elemento de hora, o que é inválido no formato de relógio de 12 horas.", + "smw-datavalue-time-invalid-jd": "Não foi possível interpretar o valor \"$1\" como um dia válido no calendário Juliano, \"$2\" pode apresentar o problema.", + "smw-datavalue-time-invalid-prehistoric": "Não é possível interpretar o valor de entrada pré-histórico \"$1\". Por exemplo, especificar mais do que anos, ou do que um modelo de calendário, poderá produzir resultados inesperados num contexto pré-histórico.", + "smw-datavalue-time-invalid": "Não foi possível interpretar o valor \"$1\" como uma data válida ou como um componente de tempo, \"$2\" pode apresentar o problema.", + "smw-datavalue-external-formatter-uri-missing-placeholder": "O espaço reservado \"$1\" está faltando no formatador do URI.", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\" é um URL inválido.", + "smw-datavalue-external-identifier-formatter-missing": "Falta à propriedade a atribuição de um [[Property:External formatter uri|\"Formatador de URI externo\"]].", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "O identificador externo \"$1\" espera uma substituição de vários campos, mas o valor atual de \"$2\" não possui pelo menos um parâmetro de valor para corresponder ao requisito.", + "smw-datavalue-keyword-maximum-length": "A palavra-chave excedeu o tamanho máximo de $1 {{PLURAL:$1|carácter|caracteres}}.", + "smw-property-predefined-eid": "\"$1\" é um [[Special:Types/External identifier|tipo]] e uma propriedade predefinida, fornecidos pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para representar identificadores externos.", + "smw-property-predefined-peid": "\"$1\" é uma propriedade predefinida que especifica um identificador externo, é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pefu": "\"$1\" é uma propriedade predefinida fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] para especificar um recurso externo com um espaço reservado.", + "smw-property-predefined-long-pefu": "Espera-se que o URI contenha um espaço reservado que será ajustado com um valor de [[Special:Types/External identifier|identificador externo]] para formar uma referência de recurso válida.", + "smw-type-eid": "\"$1\" é uma variante do tipo de dados [[Special:Types/Text|Texto]] para descrever recursos externos (baseados em URI) e requer propriedades atribuídas para declarar um [[Property:External formatter uri|formatador de URI externo]].", + "smw-property-predefined-keyw": "\"$1\" é uma propriedade predefinida e um [[Special:Types/Keyword|tipo]], fornecidas pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], que normalizam um texto e têm um tamanho restrito de caracteres.", + "smw-type-keyw": "\"$1\" é uma variante de tipo de dados [[Special:Types/Text|Texto]] que tem um tamanho restrito de caracteres com uma representação de conteúdo normalizada.", + "smw-datavalue-stripmarker-parse-error": "O valor fornecido, \"$1\", contém [https://en.wikipedia.org/wiki/Help:Strip_markers marcadores do analisador sintático] e, portanto, não pode ser suficientemente analisado.", + "smw-datavalue-parse-error": "O valor fornecido \"$1\" não foi compreendido.", + "smw-datavalue-propertylist-invalid-property-key": "A lista de propriedades \"$1\" continha uma chave de propriedade inválida \"$2\".", + "smw-datavalue-type-invalid-typeuri": "Não foi possível transformar \"$1\" numa representação válida de URI.", + "smw-datavalue-wikipage-missing-fragment-context": "O valor de entrada \"$1\" da página wiki não pode ser usado sem uma página de contexto.", + "smw-datavalue-wikipage-invalid-title": "O valor de entrada \"$1\" da página contém caracteres inválidos ou está incompleto e, portanto, pode causar resultados inesperados durante uma consulta ou processo de anotação.", + "smw-datavalue-wikipage-property-invalid-title": "Propriedade \"$1\" (como tipo de página) com valor de entrada \"$2\" contém caracteres inválidos ou está incompleto e, portanto, pode causar resultados inesperados durante uma consulta ou processo de anotação.", + "smw-datavalue-wikipage-empty": "O valor de entrada de página está vazio (por exemplo, [[SomeProperty::]], [[]]) e, portanto, não pode ser usado como nome ou como parte da condição de uma consulta.", + "smw-type-ref-rec": "\"$1\" é um tipo de dados [https://www.semantic-mediawiki.org/wiki/Container recipiente] (''container'') que permite registrar informação adicional sobre a atribuição de um valor (por exemplo, dados de proveniência).", + "smw-datavalue-reference-invalid-fields-definition": "O tipo [[Special:Types/Reference|Referência]] espera que seja declarada uma lista de propriedades utilizando a propriedade [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields].", + "smw-parser-invalid-json-format": "O analisador JSON terminou com um erro \"$1\".", + "smw-property-preferred-label-language-combination-exists": "\"$1\" não pode ser usado como rótulo preferido porque o idioma \"$2\" já está atribuído ao rótulo \"$3\".", + "smw-clipboard-copy-link": "Copiar link para a área de transferência", + "smw-property-userdefined-fixedtable": "\"$1\" estava configurada como [https://www.semantic-mediawiki.org/wiki/Fixed_properties propriedade fixa] e qualquer modificação em sua [https://www.semantic-mediawiki.org/wiki/Type_declaration declaração de tipo] requer: ou que seja executado setupStore.php, ou que seja completada a tarefa especial [[Special:SemanticMediaWiki|\"Instalação e atualização da base de dados\"]].", + "smw-data-lookup": "Obtendo dados...", + "smw-data-lookup-with-wait": "A requisição está sendo processada e pode levar algum tempo.", + "smw-no-data-available": "Nenhum dado disponível.", + "smw-property-req-violation-missing-fields": "Faltam à propriedade \"$1\" a requerida declaração [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] para o tipo de dados \"$2\".", + "smw-property-req-violation-multiple-fields": "A propriedade \"$1\" contém múltiplas (e, portanto, conflituosas) declarações [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields], apenas uma é esperada para este tipo de dado \"$2\".", + "smw-property-req-violation-missing-formatter-uri": "Faltam à propriedade \"$1\" detalhes de declaração para o tipo de dados porque não foi definida a propriedade External formatter URI.", + "smw-property-req-violation-predefined-type": "A propriedade \"$1\", como propriedade predefinida, contém uma declaração de tipo \"$2\" que é incompatível com o tipo de dados padrão desta propriedade.", + "smw-property-req-violation-import-type": "Uma declaração de tipo de dados foi detectada, o que é incompatível com o tipo de dados predefinido importado pelo vocabulário \"$1\". Em geral, não é necessário declarar um tipo de dados porque essa informação provém da definição de importação.", + "smw-property-req-violation-change-propagation-locked-error": "A propriedade \"$1\" foi alterada e requer que as entidades atribuídas sejam reavaliadas usando um processo de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagação de alterações]. A página da propriedade foi trancada até que a atualização da especificação primária esteja finalizada para impedir interrupções intermediárias ou especificações contraditórias. O processo pode demorar algum tempo até que a página possa ser destrancada porque depende do tamanho e frequência da [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue fila de tarefas].", + "smw-property-req-violation-change-propagation-locked-warning": "A propriedade \"$1\" foi alterada e requer que as entidades atribuídas sejam reavaliadas usando um processo de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagação de alterações]. A atualização pode demorar algum tempo porque depende do tamanho e frequência da [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue fila de tarefas] e é sugerido que as alterações da propriedade sejam adiadas para impedir interrupções intermediárias ou especificações contraditórias.", + "smw-property-req-violation-change-propagation-pending": "Estão pendentes atualizações devidas à [https://www.semantic-mediawiki.org/wiki/Special:MyLanguage/Change_propagation propagação de alterações] ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|tarefa estimada|tarefas estimadas}}]) e é recomendado que propriedades não sejam alteradas até que o processo esteja finalizado para impedir interrupções intermediárias ou especificações contraditórias.", + "smw-property-req-violation-missing-maps-extension": "O Semantic MediaWiki não conseguiu detectar a extensão [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"], que é um pré-requisito e, consequentemente, limita a funcionalidade (isto é, torna incapaz o armazenamento ou o processamento de dados geográficos) desta propriedade.", + "smw-property-req-violation-type": "A propriedade contém especificações do tipo concorrentes que podem resultar em anotações de valor inválido, portanto, é esperado que um usuário atribua um tipo apropriado.", + "smw-property-req-error-list": "A propriedade contém os seguintes erros ou avisos:", + "smw-property-req-violation-parent-type": "A propriedade \"$1\" e a propriedade pai atribuída \"$2\" têm anotações de tipos diferentes.", + "smw-property-req-violation-forced-removal-annotated-type": "A aplicação da [https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance herança obrigatória do tipo da propriedade mãe] está ativada, o tipo anotado para a propriedade \"$1\" não corresponde ao tipo \"$2\" da sua propriedade mãe e foi alterado para refletir aquele requisito. É recomendado ajustar a definição do tipo na página, para que a mensagem de erro e aplicação obrigatória sejam removidas desta propriedade.", + "smw-change-propagation-protection": "Esta página está trancada para evitar modificações acidentais dos dados durante uma atualização devida à [https://www.semantic-mediawiki.org/wiki/change_propagation propagação de alterações]. O processo pode demorar algum tempo a destrancar a página porque depende do tamanho e da frequência do agendador da [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue fila de tarefas].", + "smw-category-change-propagation-locked-error": "A categoria \"$1\" foi alterada e requer que as entidades atribuídas sejam reavaliadas usando um processo de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagação de alterações]. Entretanto, a página da categoria foi trancada até que a atualização da especificação primária esteja finalizada para impedir interrupções intermediárias ou especificações contraditórias. O processo pode demorar algum tempo até que a página possa ser destrancada porque depende do tamanho e frequência da [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue fila de tarefas].", + "smw-category-change-propagation-locked-warning": "A categoria \"$1\" foi alterada e requer que as entidades atribuídas sejam reavaliadas usando um processo de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagação de alterações]. A atualização pode demorar algum tempo porque depende do tamanho e frequência da [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue fila de tarefas] e é sugerido que adie alterações à categoria para impedir interrupções intermediárias ou especificações contraditórias.", + "smw-category-change-propagation-pending": "Estão pendentes atualizações devidas à [https://www.semantic-mediawiki.org/wiki/Change_propagation propagação de alterações] ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|tarefa estimada|tarefas estimadas}}]) e é recomendado que aguarde até que o processo esteja finalizado antes de fazer alterações à categoria, para impedir interrupções intermediárias ou especificações contraditórias.", + "smw-category-invalid-value-assignment": "\"$1\" não é reconhecido como categoria válida ou anotação de valor.", + "protect-level-smw-pageedit": "Permitir somente usuários com a permissão de edição de página (Semantic MediaWiki)", + "smw-create-protection": "A criação da propriedade \"$1\" está restrita aos usuários que possuem a permissão \"$2\" (ou que estão em um [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups grupo de usuário] que possua tal permissão), enquanto o [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoridade] estiver ativo.", + "smw-create-protection-exists": "A alteração da propriedade \"$1\" está restrita aos usuários com a permissão \"$2\" (ou que estão em um [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups grupo de usuário] que possua tal permissão), enquanto o [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoridade] estiver ativo.", + "smw-edit-protection": "Esta página está [[Property:Is edit protected|protegida]] para impedir a modificação acidental de dados e só pode ser editada por usuários com a permissão de edição \"$1\" apropriada ou que esteja em um [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups grupo de usuário] com tal permissão.", + "smw-edit-protection-disabled": "A proteção contra edições foi desativada, portanto, a propriedade \"$1\" não pode ser usada para proteger páginas de entidades contra edições não autorizadas.", + "smw-edit-protection-auto-update": "O Semantic MediaWiki atualizou a situação de proteção de acordo com a propriedade \"Is edit protected\".", + "smw-edit-protection-enabled": "Protegida de edição (Semantic MediaWiki)", + "smw-patternedit-protection": "Esta página está protegida e só pode ser editada pelos usuários com a [https://www.semantic-mediawiki.org/wiki/Help:Permissions permissão] smw-patternedit.", + "smw-property-predefined-edip": "\"$1\" é uma propriedade predefinida, fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki], para indicar se a página está protegida contra edições ou não.", + "smw-property-predefined-long-edip": "Embora qualquer usuário possa adicionar esta propriedade a um sujeito, só um usuário com uma permissão específica pode editar ou revogar a proteção de uma entidade após essa proteção ter sido adicionada.", + "smw-query-reference-link-label": "Referência de consulta", + "smw-format-datatable-emptytable": "Nenhum dado disponível na tabela", + "smw-format-datatable-info": "Exibindo _START_ até _END_ de _TOTAL_ linhas", + "smw-format-datatable-infoempty": "Exibindo 0 até 0 de 0 linhas", + "smw-format-datatable-infofiltered": "(filtrado a partir de _MAX_ linhas totais)", + "smw-format-datatable-infothousands": ".", + "smw-format-datatable-lengthmenu": "Exibir _MENU_ linhas", + "smw-format-datatable-loadingrecords": "Carregando...", + "smw-format-datatable-processing": "Processando…", + "smw-format-datatable-search": "Pesquisar:", + "smw-format-datatable-zerorecords": "Nenhuma correspondência encontrada", + "smw-format-datatable-first": "Primeiro", + "smw-format-datatable-last": "Último", + "smw-format-datatable-next": "Próximo", + "smw-format-datatable-previous": "Anterior", + "smw-format-datatable-sortascending": ": ativar ordenação ascendente da coluna", + "smw-format-datatable-sortdescending": ": ativar ordenação descendente da coluna", + "smw-format-datatable-toolbar-export": "Exportar", + "smw-category-invalid-redirect-target": "A categoria \"$1\" contém um alvo de redirecionamento inválido para um namespace que não é de categoria.", + "smw-parser-function-expensive-execution-limit": "A função do analisador sintático atingiu o limite para execuções de funções exigentes (consulte o parâmetro de configuração [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "O Semantic MediaWiki está atualizando a página atual com base na condição de algum processamento pós-consulta necessário.", + "apihelp-smwinfo-summary": "Módulo da API para obter informação sobre estatísticas e outra meta informação do Semantic MediaWiki.", + "apihelp-ask-summary": "Módulo da API para consultar o Semantic MediaWiki usando a linguagem \"ask\".", + "apihelp-askargs-summary": "Módulo da API para consultar o Semantic MediaWiki usando a linguagem \"ask\" na forma de lista de condições, propriedades a serem mostradas e parâmetros.", + "apihelp-browsebyproperty-summary": "Módulo da API para obter informação sobre uma propriedade ou lista de propriedades.", + "apihelp-browsebysubject-summary": "Módulo da API para obter informação sobre um sujeito.", + "apihelp-smwtask-summary": "Módulo da API para executar tarefas relacionadas ao Semantic MediaWiki (somente para uso interno, não para uso público).", + "apihelp-smwbrowse-summary": "Módulo de API para dar suporte a atividades de navegação para diferentes tipos de entidade na Semantic MediaWiki.", + "apihelp-ask-parameter-api-version": "Formatação da saída:\n;2:Formato compatível com versões anteriores, usando {} para a lista de resultados.\n;3:Formato experimental, usando [] como lista de resultados.", + "apihelp-smwtask-param-task": "Define o tipo de tarefa", + "apihelp-smwtask-param-params": "Parâmetros codificados em JSON que correspondem ao requisito de tipo de tarefa selecionada", + "smw-apihelp-smwtask-example-update": "Exemplo de execução de uma tarefa de atualização para um assunto específico:", + "smw-api-invalid-parameters": "Parâmetros inválidos, \"$1\"", + "smw-parser-recursion-level-exceeded": "O nível de $1 recursões foi excedido durante um processo de análise sintática. Sugere-se que valide a estrutura de predefinições, ou que ajuste o parâmetro de configuração $maxRecursionDepth se necessário.", + "smw-property-page-list-count": "Exibindo $1 {{PLURAL:$1|página que utiliza|páginas que utilizam}} esta propriedade.", + "smw-property-page-list-search-count": "A apresentar {{PLURAL:$1|uma página que usa|$1 páginas que usam}} esta propriedade com uma correspondência de valor \"$2\".", + "smw-property-page-filter-note": "O [https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter filtro de busca] permite a inclusão de [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions expressões de consulta] tais como ~ ou !. O [https://www.semantic-mediawiki.org/wiki/Query_engine mecanismo de consulta] selecionado pode também suportar buscas insensíveis a maiúsculas e minúsculas ou outras pequenas expressões como:\n\n* in: o resultado deve incluir o termo, por exemplo, 'in:Foo'\n\n* not: o resultado não deve incluir o termo, por exemplo, 'not:Bar'", + "smw-property-reserved-category": "Categoria", + "smw-category": "Categoria", + "smw-datavalue-uri-invalid-scheme": " \"$1\" não foi listado como um esquema URI válido.", + "smw-datavalue-uri-invalid-authority-path-component": "\"$1\" foi identificado para conter uma autoridade ou um componente de caminho \"$2\" inválido.", + "smw-browse-property-group-title": "Grupo de propriedades", + "smw-browse-property-group-label": "Nome do grupo de propriedades", + "smw-browse-property-group-description": "Descrição do grupo de propriedades", + "smw-property-predefined-ppgr": "\"$1\" é uma propriedade predefinida que identifica as entidades (principalmente as categorias) que são utilizadas como instâncias de agrupamento para as propriedades, e é fornecida pela extensão [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-filter": "Filtro", + "smw-section-expand": "Expandir a seção", + "smw-section-collapse": "Reduzir a seção", + "smw-ask-format-help-link": "Formato [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Ajuda", + "smw-cheat-sheet": "Auxiliar", + "smw-personal-jobqueue-watchlist": "Listagem de filas de trabalho", + "smw-personal-jobqueue-watchlist-explain": "Os números indicam uma estimativa das entradas da fila de tarefas que aguardam execução.", + "smw-property-predefined-label-skey": "Chave de ordenação", + "smw-processing": "Processando...", + "smw-loading": "Carregando...", + "smw-fetching": "Buscando...", + "smw-preparing": "Preparando...", + "smw-expand": "Expandir", + "smw-collapse": "Recolher", + "smw-copy": "Copiar", + "smw-copy-clipboard-title": "Copia o conteúdo para a área de transferência", + "smw-jsonview-expand-title": "Expande a exibição JSON", + "smw-jsonview-collapse-title": "Recolhe a exibição JSON", + "smw-jsonview-search-label": "Pesquisar:", + "smw-redirect-target-unresolvable": "O destino é irresolúvel pela razão \"$1\"", + "smw-types-title": "Tipo: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "Não é permitido alterar o modelo de conteúdo de uma [https://www.semantic-mediawiki.org/wiki/Help:Schema página de esquema].", + "smw-schema-namespace-edit-protection": "Esta página está protegida e só pode ser editada por utilizadores com a [https://www.semantic-mediawiki.org/wiki/Help:Permissions permissão] smw-schemaedit adequada.", + "smw-schema-namespace-edit-protection-by-import-performer": "Esta página foi importada por um [https://www.semantic-mediawiki.org/wiki/Import_performer usuário de importação] listado e isso significa que a alteração desta página está restrita somente a estes usuários listados.", + "smw-schema-error-title": "{{PLURAL:$1|erro|erros}} de validação", + "smw-schema-error-schema": "O esquema de validação '''$1''' encontrou as seguintes inconsistências:", + "smw-schema-error-miscellaneous": "Erro diverso ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "O validador de JSON \"$1\" não está acessível (ou instalado) e é a razão do porque o arquivo \"$2\" não pode ser examinado, o que evita que a página atual seja alterada ou gravada.", + "smw-schema-error-validation-file-inaccessible": "O arquivo de validação \"$1\" é inacessível.", + "smw-schema-error-type-missing": "Falta um tipo ao conteúdo para este ser reconhecido e utilizável no [https://www.semantic-mediawiki.org/wiki/Help:Schema espaço nominal/domínio do esquema].", + "smw-schema-error-type-unknown": "O tipo \"$1\" não está registado e, portanto, não pode ser usado para conteúdo no espaço nominal do [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema]", + "smw-schema-error-json": "Erro JSON: \"$1\"", + "smw-schema-error-input": "A validação da entrada encontrou os seguintes problemas, que precisam de ser endereçados antes de poder gravar o conteúdo. A página de [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling ajuda sobre esquemas] pode conter alguns conselhos sobre como remover inconsistências ou resolver problemas com o esquema da entrada.", + "smw-schema-error-input-schema": "O esquema de validação '''$1''' encontrou as seguintes inconsistências, e estas precisam de ser endereçadas antes de poder gravar o conteúdo. A página de [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling ajuda sobre esquemas] pode conter alguns conselhos sobre como resolver estes problemas.", + "smw-schema-error-title-prefix": "Esse tipo de esquema requer que o título do esquema comece com um prefixo \"$1\".", + "smw-schema-validation-error": "O tipo \"$1\" não está registado e, portanto, não pode ser usado para conteúdo no espaço nominal do [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema]", + "smw-schema-validation-schema-title": "Esquema JSON", + "smw-schema-summary-title": "Sumário", + "smw-schema-title": "Esquema", + "smw-schema-usage": "Uso", + "smw-schema-type": "Tipo de esquema", + "smw-schema-type-description": "Descrição de tipo", + "smw-schema-description": "Descrição do esquema", + "smw-schema-description-link-format-schema": "Este tipo de esquema permite a definição de características para criar hiperligações dependentes do contexto com relação a uma propriedade atribuída de [[Property:Formatter schema|esquema formatador]].", + "smw-schema-description-search-form-schema": "Este tipo de esquema permite a definição de formulários de entrada, e características para o perfil de [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch pesquisa avançada], onde este contém instruções para gerar campos de introdução de dados, definir espaços nominais/domínios padrão, ou declarar expressões prefixo para um pedido de pesquisa.", + "smw-schema-description-property-profile-schema": "Esse tipo de esquema suporta a definição de um perfil para declarar características para a propriedade atribuída e seus valores de anotação.", + "smw-schema-description-facetedsearch-profile-schema": "Este tipo de esquema suporta a definição de perfis usados como parte do ambiente da [[Special:FacetedSearch|Busca facetada]]", + "smw-schema-description-property-group-schema": "Este tipo de esquema suporta a definição de [https://www.semantic-mediawiki.org/wiki/Help:Property_group grupos de propriedades] para ajudarem a estruturar a interface de [https://www.semantic-mediawiki.org/wiki/Help:Special:Browse navegação].", + "smw-schema-description-property-constraint-schema": "Isso suporta a definição de regras de restrição para uma instância de propriedade, bem como os valores atribuídos a ela.", + "smw-schema-description-class-constraint-schema": "Este tipo de esquema permite a definição de regras de restrição para uma instância de classe (também designada categoria).", + "smw-schema-tag": "{{PLURAL:$1|Etiqueta|Etiquetas}}", + "smw-property-predefined-constraint-schema": "\"$1\" é uma propriedade predefinida que define um esquema de restrição e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-desc": "\"$1\" é uma propriedade predefinida que armazena uma descrição de esquema, fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-def": "\"$1\" é uma propriedade predefinida que que armazena o conteúdo do esquema, fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-tag": "\"$1\" é uma propriedade predefinida fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] para identificar um conjunto de esquemas.", + "smw-property-predefined-long-schema-tag": "Uma etiqueta que identifica esquemas de conteúdos ou características semelhantes.", + "smw-property-predefined-schema-type": "\"$1\" é uma propriedade predefinida que descreve um tipo para distinguir um grupo de esquemas, fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-schema-type": "Cada [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type tipo] fornece a sua própria interpretação dos elementos sintáticos e das regras de aplicação, e pode ser expresso com a ajuda de um [https://www.semantic-mediawiki.org/wiki/Help:Schema#validation esquema de validação].", + "smw-ask-title-keyword-type": "Pesquisa por palavra-chave", + "smw-ask-message-keyword-type": "Esta pesquisa coincide com a condição $1.", + "smw-remote-source-unavailable": "Não foi possível conectar ao alvo remoto \"$1\".", + "smw-remote-source-disabled": "A fonte \"$1\" desabilitou o suporte às solicitações remotas!", + "smw-remote-source-unmatched-id": "A fonte '''$1''' não corresponde a uma versão do Semantic MediaWiki que suporte uma solicitação remota.", + "smw-remote-request-note": "O resultado é buscado a partir da fonte remota '''$1''' e é provável que o conteúdo gerado contenha informações que não estão disponíveis no wiki atual.", + "smw-remote-request-note-cached": "O resultado é '''armazenado em cache''' a partir da fonte remota '''$1''' e é provável que o conteúdo gerado contenha informações que não estão disponíveis no wiki atual.", + "smw-parameter-missing": "O parâmetro \"$1\" está ausente.", + "smw-property-tab-usage": "Uso", + "smw-property-tab-profile-schema": "Esquema de perfil", + "smw-property-tab-redirects": "Sinônimos", + "smw-property-tab-subproperties": "Subpropriedades", + "smw-property-tab-errors": "Atribuições impróprias", + "smw-property-tab-constraint-schema": "Esquema de restrição", + "smw-property-tab-constraint-schema-title": "Esquema de restrição compilado", + "smw-property-tab-specification": "... mais", + "smw-concept-tab-list": "Lista", + "smw-concept-tab-errors": "Erros", + "smw-ask-tab-result": "Resultado", + "smw-ask-tab-extra": "Extra", + "smw-ask-tab-debug": "Depurar", + "smw-ask-tab-code": "Código", + "smw-install-incomplete-tasks-title": "Tarefas de administração incompletas", + "smw-install-incomplete-intro": "Há $2 {{PLURAL:$2|tarefa incompleta ou [[Special:PendingTaskList|pendente]]|tarefas incompletas ou [[Special:PendingTaskList|pendentes]]}} para finalizar a {{PLURAL:$1|instalação|atualização}} do [https://www.semantic-mediawiki.org Semantic MediaWiki]. Um administrador ou usuário com permissões suficientes pode {{PLURAL:$2|completá-la|completá-las}}. Isso deve ser feito antes da adição de novos dados para evitar inconsistências.", + "smw-install-incomplete-intro-note": "Esta mensagem desaparecerá após todas as tarefas relevantes terem sido resolvidas.", + "smw-pendingtasks-intro-empty": "Nenhuma tarefa foi classificada como pendente, incompleta ou pendente em conexão com o Semantic MediaWiki.", + "smw-pendingtasks-intro": "Esta página fornece informações sobre tarefas que foram classificadas como pendentes, incompletas ou pendentes em conexão com o Semantic MediaWiki.", + "smw-pendingtasks-setup-no-tasks-intro": "A instalação (ou atualização) foi concluída, atualmente não há tarefas pendentes ou pendentes.", + "smw-pendingtasks-tab-setup": "Configuração", + "smw-updateentitycollation-incomplete": "A configuração [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] foi alterada recentemente e requer que o script [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php] seja executado para que as entidades sejam atualizadas e contenham o valor do campo de ordenação correto.", + "smw-updateentitycountmap-incomplete": "O campo smw_countmap foi adicionado em uma versão recente e requer que o script [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php] seja executado para que as funções possam acessar o conteúdo deste campo.", + "smw-populatehashfield-incomplete": "O passo de preenchimento do campo smw_hash foi pulado durante a configuração. É necessário executar o ''script'' [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php].", + "smw-install-incomplete-populate-hash-field": "O passo de preenchimento do campo smw_hash foi pulado durante a configuração. É necessário executar o ''script'' [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php].", + "smw-install-incomplete-elasticstore-indexrebuild": "O ElasticStore foi selecionado como [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore armazenamento padrão], no entanto, a extensão foi incapaz de encontrar qualquer registro de que o script [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] foi executado, por favor, execute o script conforme as instruções.", + "smw-elastic-rebuildelasticindex-run-incomplete": "O ElasticStore foi selecionado como [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore armazenamento padrão], no entanto, a extensão foi incapaz de encontrar qualquer registro de que o script [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] foi executado, por favor, execute o script conforme as instruções.", + "smw-pendingtasks-setup-intro": "A {{PLURAL:$1|instalação|atualização}} do Semantic MediaWiki classificou as seguintes tarefas como [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade incompletas] e um administrador (ou usuário com permissões suficientes) é esperado para resolver essas tarefas antes que os usuários continuem a criar ou a alterar o conteúdo.", + "smw-pendingtasks-setup-tasks": "Tarefas", + "smw-filter-count": "Contagem de filtros", + "smw-es-replication-check": "Situação da replicação (Elasticsearch)", + "smw-es-replication-error": "Problema de replicação do Elasticsearch", + "smw-es-replication-file-ingest-error": "Problema na entrada de arquivo", + "smw-es-replication-maintenance-mode": "Manutenção do Elasticsearch", + "smw-es-replication-error-missing-id": "O monitoramento de replicação descobriu que o artigo \"$1\" (ID: $2) está faltando no back-end do Elasticsearch.", + "smw-es-replication-error-divergent-date": "O monitoramento de replicação descobriu que, para o artigo \"$1\" (ID: $2), a data de modificação mostra uma discrepância.", + "smw-es-replication-error-divergent-date-short": "As seguintes informações de data foram usadas para comparação:", + "smw-es-replication-error-divergent-date-detail": "Data de modificação referenciada:\n*Elasticsearch: $1 \n*Database: $2", + "smw-es-replication-error-divergent-revision": "O monitoramento de replicação descobriu que, para o artigo \"$1\" (ID: $2), a data de modificação mostra uma discrepância.", + "smw-es-replication-error-divergent-revision-short": "Os seguintes dados de revisão associados foram usados para comparação:", + "smw-es-replication-error-divergent-revision-detail": "Revisão associada referenciada:\n*Elasticsearch: $1 \n*Database: $2", + "smw-es-replication-error-maintenance-mode": "A replicação do Elasticsearch está atualmente restrita porque está operando em um [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode modo de manutenção], alterações em entidades e páginas não estão imediatamente visíveis e os resultados de consultas podem conter informações desatualizadas.", + "smw-es-replication-error-no-connection": "O monitoramento de replicação não pode executar nenhuma verificação, pois não pode estabelecer uma conexão com o cluster Elasticsearch.", + "smw-es-replication-error-bad-request-exception": "O manipulador de conexão do Elasticsearch lançou uma exceção de solicitação incorreta (\"Erro 400 de conflito HTTP\") indicando um problema contínuo durante solicitações de replicação e pesquisa.", + "smw-es-replication-error-other-exception": "O manipulador de conexões do Elasticsearch lançou uma exceção: \"$1\".", + "smw-es-replication-error-suggestions": "Sugere-se editar ou limpar a página para remover a discrepância. Se o problema persistir, verifique o próprio cluster do Elasticsearch (alocador, exceções, espaço em disco, etc.).", + "smw-es-replication-error-suggestions-maintenance-mode": "Sugere-se entrar em contato com o administrador da wiki para verificar se está a ocorrer uma [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild recriação do índice] ou se o refresh_interval não foi definido com o valor por omissão esperado.", + "smw-es-replication-error-suggestions-no-connection": "É sugerido que contacte o administrador da wiki e reporte o problema \"falta de ligação\".", + "smw-es-replication-error-suggestions-exception": "Por favor, verifique os registros para obter informações sobre o status do Elasticsearch, seus índices e possíveis problemas de configuração incorreta.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "O monitoramento de replicação descobriu que \"$1\" está faltando uma marcação de [[Property:File attachment|carregamento de arquivo]] indicando que o processador de entrada de arquivo não foi iniciado ou não está finalizado.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "Por favor, assegure-se de que a tarefa de [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion submissão de arquivos] esteja programada e seja executada antes que a anotação que e o índice do arquivo estejam disponíveis.", + "smw-report": "Reportar", + "smw-legend": "Legenda", + "smw-datavalue-constraint-schema-category-invalid-type": "O esquema anotado \"$1\" é inválido para uma categoria; requer um tipo \"$2\".", + "smw-datavalue-constraint-schema-property-invalid-type": "O esquema anotado \"$1\" é inválido para uma propriedade; requer um tipo \"$2\".", + "smw-entity-examiner-check": "Executando {{PLURAL:$1|um examinador|examinadores}} em segundo plano", + "smw-entity-examiner-indicator": "Painel de problema da entidade", + "smw-entity-examiner-deferred-check-awaiting-response": "O examinador \"$1\" está aguardando uma resposta do back-end.", + "smw-entity-examiner-deferred-elastic-replication": "Elastic", + "smw-entity-examiner-deferred-constraint-error": "Restrição", + "smw-entity-examiner-associated-revision-mismatch": "Revisão", + "smw-entity-examiner-deferred-fake": "Falso", + "smw-entity-examiner-indicator-suggestions": "Como parte de um exame de entidade, {{PLURAL:$1|o seguinte problema foi encontrado|os seguintes problemas foram encontrados}}, sugere-se uma revisão cuidadosa {{PLURAL:$1|dele|deles}} e {{PLURAL:$1|uma ação apropriada|ações apropriadas}}.", + "smw-indicator-constraint-violation": "{{PLURAL:$1|Restrição|Restrições}}", + "smw-indicator-revision-mismatch": "Revisão", + "smw-indicator-revision-mismatch-error": "A verificação da [https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner revisão associada] encontrou uma incompatibilidade entre a revisão mencionada no MediaWiki e a que está sendo associada no Semantic MediaWiki para esta entidade.", + "smw-indicator-revision-mismatch-comment": "Uma incompatibilidade normalmente indica que algum processo interrompeu a operação de armazenamento do Semantic MediaWiki. É recomendado revisar os logs do servidor e procurar por erros ou outras falhas.", + "smw-facetedsearch-intro-text": "A [https://www.semantic-mediawiki.org/wiki/Faceted_search Busca facetada] do Semantic MediaWiki fornece aos usuários uma simples interface para rapidamente especificar resultados de consultas a partir de uma condição com a ajuda de filtros criados por propriedades e categorias dependentes.", + "smw-facetedsearch-intro-tips": "* Use category:?, property:?, ou concept:? para encontrar categorias, propriedades ou conceitos disponíveis para criar um conjunto de condições\n* Use a sintaxe #ask para descrever uma condição (por exemplo: [[Category:Foo]])\n* Use \"OR\", \"AND\" ou outras expressões de consultas para criar condições complexas\n* Expressões como in: ou phrase: podem ser usadas para correspondências em texto completo ou buscas não estruturadas, se o [https://www.semantic-mediawiki.org/wiki/Query_engine motor de consultas] suportar tais expressões", + "smw-facetedsearch-profile-label-default": "Perfil padrão", + "smw-facetedsearch-intro-tab-explore": "Explorar", + "smw-facetedsearch-intro-tab-search": "Pesquisar", + "smw-facetedsearch-explore-intro": "Selecione uma coleção e comece a navegar.", + "smw-facetedsearch-profile-options": "Opções de perfil", + "smw-facetedsearch-size-options": "Opções de paginação", + "smw-facetedsearch-order-options": "Opções de ordenação", + "smw-facetedsearch-format-options": "Opções de exibição", + "smw-facetedsearch-format-table": "Tabela", + "smw-facetedsearch-input-filter-placeholder": "Filtrar por...", + "smw-facetedsearch-no-filters": "Sem filtros.", + "smw-facetedsearch-no-filter-range": "Sem extensão de filtro.", + "smw-facetedsearch-no-output": "Para o formato selecionado \"$1\", nenhuma saída estava disponível.", + "smw-facetedsearch-clear-filters": "Remover {{PLURAL:$1|filtro|filtros}}", + "smw-search-placeholder": "Pesquisar...", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "A seguir {{PLURAL:$1|é mostrado '''um''' resultado|são mostrados até '''$1''' resultados}}, iniciando no '''$2'''º." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/pt.json b/mediawiki/extensions/SemanticMediaWiki/i18n/pt.json new file mode 100644 index 0000000..4d1ab26 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/pt.json @@ -0,0 +1,1110 @@ +{ + "@metadata": { + "authors": [ + "555", + "Athena in Wonderland", + "CaiusSPQR", + "Crazymadlover", + "Diniscoelho", + "Eduardo Addad de Oliveira", + "Eduardoaddad", + "Fitoschido", + "Fúlvio", + "Hamilton Abreu", + "Imperadeiro98", + "Jaideraf", + "Jkb8", + "Lijealso", + "Luckas", + "Luckas Blade", + "Malafaya", + "Mansil alfalb", + "Mbs262", + "MokaAkashiyaPT", + "Nemo bis", + "Ngl2016", + "SandroHc", + "Vitorvicentevalente", + "Waldir", + "Waldyrious", + "아라" + ] + }, + "smw-desc": "Tornar a sua wiki mais inteligível - para máquinas ''e'' seres humanos ([https://www.semantic-mediawiki.org/wiki/Help:User_manual documentação ''online''])", + "smw-error": "Erro", + "smw-upgrade-error": "O [https://www.semantic-mediawiki.org/ MediaWiki Semântico] foi instalado e ativado, mas falta uma [https://www.semantic-mediawiki.org/wiki/Help:Upgrade chave de atualização] apropriada.", + "smw-upgrade-release": "Versão", + "smw-upgrade-progress": "Progresso", + "smw-upgrade-progress-explain": "É difícil antecipar quando a atualização estará concluída porque depende do tamanho do repositório de dados e do ''hardware'' disponível, e pode demorar algum tempo para concluir a atualização de wikis grandes.\n\nPara obter mais informações acerca do progresso da atualização, contacte o seu administrador local, por favor.", + "smw-upgrade-progress-create-tables": "A criar (ou atualizar) tabelas e índices...", + "smw-upgrade-progress-post-creation": "A executar tarefas pós-criação...", + "smw-upgrade-progress-table-optimization": "A executar otimizações de tabelas...", + "smw-upgrade-progress-supplement-jobs": "A adicionar processos suplementares...", + "smw-upgrade-error-title": "Erro » MediaWiki Semântico", + "smw-upgrade-error-why-title": "Porque estou a ver esta página?", + "smw-upgrade-error-why-explain": "A estrutura interna da base de dados do MediaWiki Semântico mudou e necessita de alguns ajustamentos para ficar completamente funcional. Pode haver vários motivos para a mudança, incluindo: \n* Foram adicionadas propriedades fixas (requer configuração adicional de tabelas)\n* Uma atualização contém algumas mudanças nas tabelas ou índices, tornando obrigatória uma interceção antes de se aceder aos dados\n* Alterações do armazenamento ou do motor de consultas", + "smw-upgrade-error-how-title": "Como corrijo este erro?", + "smw-upgrade-error-how-explain-admin": "Um administrador (ou qualquer pessoa com privilégios de administrador) tem de executar o ''script'' de manutenção [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] do MediaWiki ou o [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] do MediaWiki Semântico.", + "smw-upgrade-error-how-explain-links": "Para obter mais ajuda também pode consultar as seguintes páginas:\n* Instruções de [https://www.semantic-mediawiki.org/wiki/Help:Installation instalação]\n* Página de ajuda sobre [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting resolução de problemas]", + "smw-extensionload-error-why-title": "Porque vejo esta página?", + "smw-extensionload-error-why-explain": "A extensão não foi carregada usando enableSemantics mas, antes, ativada por outros meios, como usar wfLoadExtension( 'SemanticMediaWiki' ) diretamente.", + "smw-extensionload-error-how-title": "Como corrijo este erro?", + "smw-extensionload-error-how-explain": "Para ativar a extensão e evitar problemas com declarações de espaços nominais e configurações pendentes, é necessário usar enableSemantics que garantirá que as variáveis obrigatórias sejam definidas antes de carregar a extensão através de ExtensionRegistry. \n\nConsulte a página de ajuda [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] para mais informações, por favor.", + "smw-upgrade-maintenance-title": "Manutenção » MediaWiki Semântico", + "smw-upgrade-maintenance-why-title": "Porque vejo esta página?", + "smw-upgrade-maintenance-note": "Neste momento o sistema está a sofrer uma [https://www.semantic-mediawiki.org/wiki/Help:Upgrade atualização] da extensão [https://www.semantic-mediawiki.org/ MediaWiki Semântico] e do respetivo repositório de dados, e solicitamos a sua paciência de forma a permitir que a manutenção prossiga antes que a wiki seja novamente tornada acessível.", + "smw-upgrade-maintenance-explain": "A extensão tenta minimizar o impacto e o período de indisponibilidade, adiando a maior parte das suas tarefas de manutenção para depois do update.php mas é preciso que algumas alterações relacionadas com a base de dados terminem primeiro para evitar inconsistências de dados. Estas alterações podem incluir: \n* Alteração da estrutura de tabelas, como a adição de campos novos ou a alteração de campos existentes \n* Alteração ou adição de índices sobre tabelas\n* Executar otimizações das tabelas (quando ativadas)", + "smw-semantics-not-enabled": "A funcionalidade MediaWiki Semântico não foi ativada nesta wiki.", + "smw_viewasrdf": "Feed RDF", + "smw_finallistconjunct": "e", + "smw-factbox-head": "... mais sobre \"$1\"", + "smw-factbox-facts": "Factos", + "smw-factbox-facts-help": "Mostra as declarações e factos que foram criados por um utilizador", + "smw-factbox-attachments": "Anexos", + "smw-factbox-attachments-value-unknown": "N/D", + "smw-factbox-attachments-is-local": "É local", + "smw-factbox-attachments-help": "Mostra os anexos disponíveis", + "smw-factbox-facts-derived": "Factos derivados", + "smw-factbox-facts-derived-help": "Mostra os factos que foram derivados das regras ou com a ajuda de outras técnicas de raciocínio", + "smw_isspecprop": "Esta é uma propriedade especial nesta wiki.", + "smw-concept-cache-header": "Utilização da cache", + "smw-concept-cache-count": "A [https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count cache de conceitos] contém {{PLURAL:$1|'''uma''' entidade|'''$1''' entidades}} ($2).", + "smw-concept-no-cache": "Não há nenhuma cache disponível.", + "smw_concept_description": "Descrição do conceito \"$1\"", + "smw_no_concept_namespace": "Os conceitos só podem ser definidos em páginas do espaço nominal Concept:.", + "smw_multiple_concepts": "Cada página de conceito só pode conter a definição de um conceito.", + "smw_concept_cache_miss": "O conceito \"$1\" não pode ser usado neste momento, porque a configuração da wiki requer que ele seja calculado ''off-line''. Caso o problema não seja resolvido dentro de algum tempo, peça a um administrador da wiki que disponibilize este conceito.", + "smw_noinvannot": "Não podem ser atribuídos valores a propriedades inversas.", + "version-semantic": "Extensões semânticas", + "smw_baduri": "Não são permitidos identificadores URI na forma \"$1\".", + "smw_printername_count": "Contar resultados", + "smw_printername_csv": "Exportação para CSV", + "smw_printername_dsv": "Exportação para DSV", + "smw_printername_debug": "Depurar a consulta (para peritos)", + "smw_printername_embedded": "Incorporar o conteúdo da página", + "smw_printername_json": "Exportação para JSON", + "smw_printername_list": "Lista", + "smw_printername_plainlist": "Lista simples", + "smw_printername_ol": "Lista numerada", + "smw_printername_ul": "Lista com marcadores", + "smw_printername_table": "Tabela", + "smw_printername_broadtable": "Tabela ampla", + "smw_printername_template": "Predefinição", + "smw_printername_templatefile": "Ficheiro da predefinição", + "smw_printername_rdf": "Exportação para RDF", + "smw_printername_category": "Categoria", + "validator-type-class-SMWParamSource": "texto", + "smw-paramdesc-limit": "O número máximo de resultados a serem devolvidos", + "smw-paramdesc-offset": "A posição do primeiro resultado", + "smw-paramdesc-headers": "Apresentar os nomes dos cabeçalhos e propriedades", + "smw-paramdesc-mainlabel": "A etiqueta a atribuir ao nome da página principal", + "smw-paramdesc-link": "Apresentar os valores na forma de hiperligações", + "smw-paramdesc-intro": "O texto a apresentar antes dos resultados da consulta, caso existam", + "smw-paramdesc-outro": "O texto a apresentar após os resultados da consulta, caso existam", + "smw-paramdesc-default": "O texto a apresentar se a consulta não produzir resultados", + "smw-paramdesc-sep": "O separador de resultados", + "smw-paramdesc-propsep": "O separador entre as propriedades da entrada de um resultado", + "smw-paramdesc-valuesep": "O separador entre os valores para uma propriedade de um resultado", + "smw-paramdesc-showsep": "Mostrar separador no topo do ficheiro CSV (\"set=\")", + "smw-paramdesc-distribution": "Em vez de apresentar todos os valores, contar as respetivas ocorrências e apresentá-las.", + "smw-paramdesc-distributionsort": "Ordenar a distribuição de valores pela contagem de ocorrências.", + "smw-paramdesc-distributionlimit": "Limitar a distribuição de valores à contagem de ocorrência de apenas alguns valores.", + "smw-paramdesc-aggregation": "Especifique com que é que a agregação se deve relacionar", + "smw-paramdesc-template": "O nome da predefinição com a qual são apresentadas as impressões", + "smw-paramdesc-columns": "O número de colunas em que os resultados serão apresentados", + "smw-paramdesc-userparam": "Um valor fornecido a cada chamada da predefinição, se for usada uma predefinição", + "smw-paramdesc-class": "Uma classe CSS adicional a ser definida para a lista", + "smw-paramdesc-introtemplate": "O nome de uma predefinição para apresentar antes dos resultados da consulta, se existirem", + "smw-paramdesc-outrotemplate": "O nome de uma predefinição para apresentar após os resultados da consulta, se existirem", + "smw-paramdesc-embedformat": "O elemento HTML usado para definir cabeçalhos", + "smw-paramdesc-embedonly": "Não mostrar cabeçalhos", + "smw-paramdesc-table-class": "Uma classe CSS adicional a definir para a tabela", + "smw-paramdesc-table-transpose": "Apresentar os cabeçalhos das tabelas na vertical e os resultados na horizontal", + "smw-paramdesc-rdfsyntax": "A sintaxe RDF a utilizar", + "smw-paramdesc-csv-sep": "Especifica um separador de colunas", + "smw-paramdesc-csv-valuesep": "Especifica um separador de valores", + "smw-paramdesc-csv-merge": "Fundir os valores de linhas e colunas que têm um identificador de assunto idêntico (aliás, primeira coluna)", + "smw-paramdesc-csv-bom": "Adicionar um BOM (carácter para indicar a \"endianness\") no topo do ficheiro de saída", + "smw-paramdesc-dsv-separator": "O separador a usar", + "smw-paramdesc-dsv-filename": "O nome para o ficheiro DSV", + "smw-paramdesc-filename": "O nome para o ficheiro de saída", + "smw-smwdoc-description": "Apresenta uma tabela de todos os parâmetros que podem ser usados para o formato de resultados especificado, com os respetivos valores por omissão e descrições", + "smw-smwdoc-default-no-parameter-list": "Este formato de resultado não fornece parâmetros específicos do formato.", + "smw-smwdoc-par-format": "O formato de resultados para o qual será apresentada a documentação dos parâmetros.", + "smw-smwdoc-par-parameters": "Os parâmetros a serem apresentados. \"specific\" (específicos) para aqueles adicionados pelo formato, \"base\" para aqueles disponíveis em todos os formatos, e \"all\" (todos) para ambos.", + "smw-paramdesc-sort": "A propriedade pela qual a consulta será ordenada", + "smw-paramdesc-order": "O sentido de ordenação da consulta", + "smw-paramdesc-searchlabel": "Texto para continuação da pesquisa", + "smw-paramdesc-named_args": "Nomear os argumentos passados à predefinição", + "smw-paramdesc-template-arguments": "Define a forma como os argumentos nomeados são passados à predefinição", + "smw-paramdesc-import-annotation": "Serão copiados dados anotados adicionais durante a análise sintática de um assunto", + "smw-paramdesc-export": "Opção de exportação", + "smw-paramdesc-prettyprint": "Um resultado com realce sintático que apresenta indentações e novas linhas adicionais", + "smw-paramdesc-json-unescape": "O resultado irá conter barras sem caracteres de escape, e caracteres Unicode multibytes", + "smw-paramdesc-json-type": "Tipo de seriação", + "smw-paramdesc-source": "Fonte alternativa de consulta", + "smw-paramdesc-jsonsyntax": "Sintaxe JSON a ser utilizada", + "smw-printername-feed": "Feed RSS e Atom", + "smw-paramdesc-feedtype": "Tipo de ''feed''", + "smw-paramdesc-feedtitle": "O texto a ser usado como título de ''feed''", + "smw-paramdesc-feeddescription": "O texto a ser usado como descrição do ''feed''", + "smw-paramdesc-feedpagecontent": "O conteúdo da página a ser apresentado com o ''feed''", + "smw-label-feed-description": "''Feed'' $2 $1", + "smw-paramdesc-mimetype": "O tipo de multimédia (tipo MIME) para o ficheiro de saída.", + "smw_iq_disabled": "As consultas semânticas foram impossibilitadas nesta wiki.", + "smw_iq_moreresults": "… mais resultados", + "smw_parseerror": "O valor fornecido não foi compreendido.", + "smw_decseparator": ",", + "smw_kiloseparator": " ", + "smw_notitle": "“$1” não pode ser usado como nome de uma página nesta wiki.", + "smw_noproperty": "“$1” não pode ser usado como nome de uma propriedade nesta wiki.", + "smw_wrong_namespace": "Só são permitidas aqui páginas do espaço nominal \"$1\".", + "smw_manytypes": "Foi definido mais de um tipo para a propriedade.", + "smw_emptystring": "Não são aceites textos vazios.", + "smw_notinenum": "\"$1\" não está na lista ($2) dos [[Property:Allows value|valores permitidos]] para a propriedade \"$3\".", + "smw-datavalue-constraint-error-allows-value-list": "\"$1\" não está na lista ($2) de [[Property:Allows value|valores permitidos]] para a propriedade \"$3\".", + "smw-datavalue-constraint-error-allows-value-range": "\"$1\" não está no intervalo de \"$2\" especificado pela restrição [[Property:Allows value|permite valor]] para a propriedade \"$3\".", + "smw-constraint-error": "Problema em restrição", + "smw-constraint-error-suggestions": "Verifique as infringências e propriedades listadas, em conjunto com os seus valores anotados, para se certificar de que todos os requisitos das restrições são cumpridos.", + "smw-constraint-error-limit": "A lista irá conter um máximo de $1 violações.", + "smw_noboolean": "\"$1\" não é reconhecido como um valor booliano (verdadeiro/falso).", + "smw_true_words": "verdadeiro,v,sim,s", + "smw_false_words": "falso,f,não,nao,n", + "smw_nofloat": "“$1” não é um número.", + "smw_infinite": "Números da dimensão de “$1” não são suportados.", + "smw_unitnotallowed": "\"$1\" não está declarada como unidade de medida válida para esta propriedade.", + "smw_nounitsdeclared": "Não foi declarada nenhuma unidade de medida para esta propriedade.", + "smw_novalues": "Não foram especificados valores.", + "smw_nodatetime": "A data “$1” não foi compreendida.", + "smw_toomanyclosing": "Parece haver demasiadas ocorrências de \"$1\" na consulta.", + "smw_noclosingbrackets": "Um uso de \"[[\" na sua consulta não foi fechado com o \"]]\" correspondente.", + "smw_misplacedsymbol": "O símbolo “$1” foi usado num sítio onde não tem utilidade.", + "smw_unexpectedpart": "A parte \"$1\" da consulta não foi compreendida.\nOs resultados poderão não ser os esperados.", + "smw_emptysubquery": "Há uma subconsulta que não tem nenhuma condição válida.", + "smw_misplacedsubquery": "Foi usada uma subconsulta num local onde não são permitidas subconsultas.", + "smw_valuesubquery": "Não são suportadas subconsultas para valores da propriedade \"$1\".", + "smw_badqueryatom": "Uma parte \"[[…]]\" da consulta não foi compreendida.", + "smw_propvalueproblem": "O valor da propriedade “$1” não foi compreendido.", + "smw_noqueryfeature": "Uma característica da consulta não é suportada nesta wiki e parte da consulta foi descartada ($1).", + "smw_noconjunctions": "Conjunções em consultas não são suportadas nesta wiki e parte da consulta foi descartada ($1).", + "smw_nodisjunctions": "Disjunções em consultas não são suportadas nesta wiki e parte da consulta foi descartada ($1).", + "smw_querytoolarge": "Não foi possível considerar {{PLURAL:$2|a seguinte condição|as seguintes $2 condições}} da consulta ($1), devido às restrições da wiki para o tamanho e profundidade das consultas.", + "smw_notemplategiven": "Para este formato de consulta funcionar, forneça um valor para o parâmetro \"template\".", + "smw_db_sparqlqueryproblem": "Não foi possível obter da base de dados SPARQL o resultado da consulta. Este erro pode ser temporário ou indicativo de um defeito no ''software'' da base de dados.", + "smw_db_sparqlqueryincomplete": "A consulta revelou-se difícil e foi interrompida. Podem faltar alguns resultados. Se possível, tente usar uma consulta mais simples, por favor.", + "smw_type_header": "Propriedades do tipo “$1”", + "smw_typearticlecount": "A apresentar {{PLURAL:$1|uma propriedade que usa|$1 propriedades que usam}} este tipo.", + "smw_attribute_header": "Páginas que usam a propriedade “$1”", + "smw_attributearticlecount": "A apresentar {{PLURAL:$1|uma página que usa|$1 páginas que usam}} esta propriedade.", + "smw-propertylist-subproperty-header": "Subpropriedades", + "smw-propertylist-redirect-header": "Sinónimos", + "smw-propertylist-error-header": "Páginas com atribuições indevidas", + "smw-propertylist-count": "A mostrar $1 {{PLURAL:$1|entidade relacionada|entidades relacionadas}}.", + "smw-propertylist-count-with-restricted-note": "A mostrar $1 {{PLURAL:$1|entidade relacionada|entidades relacionadas}} (há mais disponíveis mas a apresentação está limitada a \"$2\").", + "smw-propertylist-count-more-available": "A mostrar $1 {{PLURAL:$1|entidade relacionada|entidades relacionadas}} (há mais disponíveis).", + "specialpages-group-smw_group-maintenance": "Manutenção", + "specialpages-group-smw_group-properties-concepts-types": "Propriedades, conceitos e tipos", + "specialpages-group-smw_group-search": "Navegar e pesquisar", + "exportrdf": "Exportar páginas para RDF", + "smw_exportrdf_docu": "Esta página permite-lhe obter dados de uma página com o formato RDF.\nPara exportar páginas, introduza os seus títulos na caixa de texto abaixo, um título por linha.", + "smw_exportrdf_recursive": "Exportar recursivamente todas as páginas relacionadas.\nNote que o resultado pode ser volumoso!", + "smw_exportrdf_backlinks": "Exportar também todas as páginas que referem as páginas exportadas.\nGera um RDF navegável.", + "smw_exportrdf_lastdate": "Não exportar páginas que não tenham sido alteradas desde o ponto no tempo especificado.", + "smw_exportrdf_submit": "Exportar", + "uriresolver": "Resolvedor de identificadores URI", + "properties": "Propriedades", + "smw-categories": "Categorias", + "smw_properties_docu": "As seguintes propriedades são usadas nesta wiki.", + "smw_property_template": "$1 de tipo $2 ($3 {{PLURAL:$3|utilização|utilizações}})", + "smw_propertylackspage": "Todas as propriedades devem ser descritas por uma página!", + "smw_propertylackstype": "Não foi especificado nenhum tipo para esta propriedade (a presumir o tipo $1 por agora).", + "smw_propertyhardlyused": "Esta propriedade é muito pouco usada nesta wiki!", + "smw-property-name-invalid": "A propriedade $1 não pode ser usada (nome inválido).", + "smw-property-name-reserved": "\"$1\" estava listado como sendo um nome reservado e não deve ser usado como propriedade. Talvez a seguinte [https://www.semantic-mediawiki.org/wiki/Help:Property_naming página de ajuda] contenha informação sobre a razão pela qual o nome estava reservado.", + "smw-sp-property-searchform": "Apresentar as propriedades que contêm:", + "smw-sp-property-searchform-inputinfo": "O texto de entrada é sensível a maiúsculas e minúsculas e, quando é usado para a filtragem, só são apresentadas as propriedades que correspondem à condição.", + "smw-special-property-searchform": "Apresentar as propriedades que contêm:", + "smw-special-property-searchform-inputinfo": "O texto de entrada é sensível a maiúsculas e minúsculas e, quando é usado para a filtragem, só são apresentadas as propriedades que correspondem à condição.", + "smw-special-property-searchform-options": "Opções", + "smw-special-wantedproperties-filter-label": "Filtro:", + "smw-special-wantedproperties-filter-none": "Nenhum", + "smw-special-wantedproperties-filter-unapproved": "não aprovadas", + "smw-special-wantedproperties-filter-unapproved-desc": "Opção de filtro usada em relação com o modo de autoridade.", + "concepts": "Conceitos", + "smw-special-concept-docu": "Um [https://www.semantic-mediawiki.org/wiki/Help:Concepts conceito] pode ser considerado uma \"categoria dinâmica\"; por exemplo, um conjunto de páginas que não são criadas manualmente, mas sim calculadas pelo MediaWiki Semântico a partir da descrição de uma determinada consulta.", + "smw-special-concept-header": "Lista de conceitos", + "smw-special-concept-count": "{{PLURAL:$1|O seguinte conceito está a ser incluído|Os $1 conceitos seguintes estão a ser incluídos}} na lista.", + "smw-special-concept-empty": "Não foi encontrado nenhum conceito.", + "unusedproperties": "Propriedades não usadas", + "smw-unusedproperties-docu": "Esta página lista [https://www.semantic-mediawiki.org/wiki/Unused_properties propriedades não utilizadas] que foram declaradas, embora nenhuma outra página as utilize. Para uma visão diferenciada, consulte as páginas especiais com [[Special:Properties|todas as propriedades]] ou com as [[Special:WantedProperties|propriedades em falta]].", + "smw-unusedproperty-template": "$1 do tipo $2", + "wantedproperties": "Propriedades em falta", + "smw-wantedproperties-docu": "Esta página lista [https://www.semantic-mediawiki.org/wiki/Wanted_properties propriedades em falta] que são utilizadas na wiki, mas que não têm uma página a descrevê-las. Para uma visão diferenciada, consulte as páginas especiais com [[Special:Properties|todas as propriedades]] ou com as [[Special:UnusedProperties|propriedades não utilizadas]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|uso|usos}})", + "smw-special-wantedproperties-docu": "Esta página lista [https://www.semantic-mediawiki.org/wiki/Wanted_properties propriedades em falta] que são utilizadas na wiki, mas que não têm uma página a descrevê-las. Para uma visão diferenciada, consulte as páginas especiais com [[Special:Properties|todas as propriedades]] ou com as [[Special:UnusedProperties|propriedades não utilizadas]].", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|uso|usos}})", + "smw_purge": "Atualizar", + "smw-purge-update-dependencies": "O MediaWiki Semântico está a purgar a página atual devido a algumas dependências desatualizadas que detetou e que requerem uma atualização.", + "smw-purge-failed": "O MediaWiki Semântico tentou purgar a página mas falhou", + "types": "Tipos", + "smw_types_docu": "Lista dos [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes tipos de dados disponíveis] em que cada [https://www.semantic-mediawiki.org/wiki/Help:Datatype tipo] representa um conjunto único de atributos, para descrever um valor em termos das características de armazenamento e apresentação que são hereditárias para uma propriedade atribuída.", + "smw-special-types-no-such-type": "\"$1\" é desconhecido ou não foi especificado como tipo de dados válido.", + "smw-statistics": "Estatísticas de semântica", + "smw-statistics-cached": "Estatísticas semânticas (em cache)", + "smw-statistics-entities-total": "Entidades (total)", + "smw-statistics-entities-total-info": "Uma contagem estimada de linhas de entidades. Inclui propriedades, conceitos ou qualquer outra representação de objeto registado que requeira a atribuição de uma identificação.", + "smw-statistics-property-instance": "{{PLURAL:$1|Valor|valores}} de propriedade (total)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Propriedade|Propriedades}}]] (total)", + "smw-statistics-property-total-info": "O total de propriedades registadas.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Propriedade|Propriedades}} (total)", + "smw-statistics-property-used": "{{PLURAL:$1|Propriedade (utilizada com pelo menos um valor)|Propriedades (utilizadas com pelo menos um valor)}}", + "smw-statistics-property-page": "{{PLURAL:$1|Propriedade|Propriedades}} ({{PLURAL:$1|registada|registadas}} com uma página)", + "smw-statistics-property-page-info": "Contagem de propriedades que têm uma página dedicada e uma descrição.", + "smw-statistics-property-type": "{{PLURAL:$1|Propriedade|Propriedades}} ({{PLURAL:$1|atribuída|atribuídas}} a um tipo de dados)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Consulta|Consultas}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Consulta|Consultas}}]] ({{PLURAL:$1|incorporada|incorporadas}}, total)", + "smw-statistics-query-format": "formato $1", + "smw-statistics-query-size": "Tamanho da consulta", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Conceito|Conceitos}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Conceito|Conceitos}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Subobjeto|Subobjetos}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Subobjeto|Subobjetos}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Tipo de dados|Tipos de dados}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Valor de propriedade|Valores de propriedades}} ([[Special:ProcessingErrorList|{{PLURAL:$1|anotação incorreta|anotações incorretas}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Valor de propriedade|Valores de propriedades}} ({{PLURAL:$1|anotação incorreta|anotações incorretas}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Entidade desatualizada|Entidades desatualizadas}}]", + "smw-statistics-delete-count-info": "As entidades que foram marcadas para remoção devem ser eliminadas regularmente usando os ''scripts'' de manutenção fornecidos.", + "smw_uri_doc": "O resolvedor de endereços URI implementa a [$1 descoberta TAG da W3C sobre o httpRange-14].\nCertifica-se de que os seres humanos não se tornem em sítios da Internet.", + "ask": "Pesquisa semântica", + "smw-ask-help": "Esta secção contém algumas hiperligações que explicam como usar a sintaxe #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selecionar páginas] descreve como selecionar páginas e construir condições\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Search_operators Operadores de pesquisa] lista os operadores de pesquisa disponíveis, incluindo os para consultas de intervalos e consultas com caracteres de substituição\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Apresentar informação] descreve o uso de instruções de impressão e de opções de formatação", + "smw_ask_sortby": "Ordenar por coluna (opcional)", + "smw_ask_ascorder": "Ascendente", + "smw_ask_descorder": "Descendente", + "smw-ask-order-rand": "Aleatório", + "smw_ask_submit": "Procurar resultados", + "smw_ask_editquery": "Editar consulta", + "smw_add_sortcondition": "[Adicionar condição de ordenação]", + "smw-ask-sort-add-action": "Adicionar condição de ordenação", + "smw_ask_hidequery": "Esconder consulta (vista compacta)", + "smw_ask_help": "Ajuda sobre consultas", + "smw_ask_queryhead": "Condição", + "smw_ask_printhead": "Seleção de dados adicionais para apresentar", + "smw_ask_printdesc": "(adicionar um nome de propriedade por linha)", + "smw_ask_format_as": "Formatar como:", + "smw_ask_defaultformat": "padrão", + "smw_ask_otheroptions": "Outras opções", + "smw-ask-otheroptions-info": "Esta secção contém opções que alteram as instruções de apresentação. Pode ver as descrições dos parâmetros colocando o ponteiro do rato sobre eles.", + "smw-ask-otheroptions-collapsed-info": "Por favor, use o sinal de mais para ver todas as opções disponíveis", + "smw_ask_show_embed": "Mostrar código para incorporação", + "smw_ask_hide_embed": "Ocultar código de incorporação", + "smw_ask_embed_instr": "Para incorporar esta consulta numa página da wiki, use o código abaixo.", + "smw-ask-delete": "Remover", + "smw-ask-sorting": "Ordenação", + "smw-ask-options": "Opções", + "smw-ask-options-sort": "Opções de ordenação", + "smw-ask-format-options": "Formato e opções", + "smw-ask-parameters": "Parâmetros", + "smw-ask-search": "Pesquisa", + "smw-ask-debug": "Debug", + "smw-ask-debug-desc": "Gera informação para despistagem de erros das consultas", + "smw-ask-no-cache": "Desativar cache de consultas", + "smw-ask-no-cache-desc": "Resultados sem cache de consulta", + "smw-ask-result": "Resultado", + "smw-ask-empty": "Limpar todas as entradas", + "smw-ask-download-link-desc": "Descarregar os resultados da consulta no formato $1", + "smw-ask-format": "Formato", + "smw-ask-format-selection-help": "Ajude com o formato selecionado: $1", + "smw-ask-condition-change-info": "A condição foi alterada e o motor de pesquisa tem de voltar a executar a consulta para produzir resultados que correspondam aos novos requisitos.", + "smw-ask-input-assistance": "Assistência de preenchimento", + "smw-ask-condition-input-assistance": "É fornecida [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance ajuda de introdução] nos campos de impressão, ordenação e condição. O campo condição requer o uso de um dos seguintes prefixos:", + "smw-ask-condition-input-assistance-property": "p: para obter as sugestões de propriedades (p. ex.: [[p:Tem ...)", + "smw-ask-condition-input-assistance-category": "c: para obter as sugestões de categorias", + "smw-ask-condition-input-assistance-concept": "con: para obter as sugestões de conceitos", + "smw-ask-format-change-info": "O formato foi modificado e a consulta tem de voltar a ser executada para produzir resultados que correspondam aos novos parâmetros e opções de visualização.", + "smw-ask-format-export-info": "O formato selecionado é um formato de exportação que não tem representação visual, portanto os resultados só são fornecidos na forma de ficheiro.", + "smw-ask-query-search-info": "A consulta $1 foi realizada pelo servidor {{PLURAL:$3|1=$2 (da cache)|$2 (da cache)|$2}} em $4 {{PLURAL:$4|segundo|segundos}}.", + "smw-ask-extra-query-log": "Registo de consultas", + "smw-ask-extra-other": "Outro", + "searchbyproperty": "Pesquisa por propriedade", + "processingerrorlist": "Lista de erros de processamento", + "constrainterrorlist": "Lista de erros de restrições", + "propertylabelsimilarity": "Relatório de semelhanças das etiquetas de propriedade", + "missingredirectannotations": "Anotações de redirecionamento em falta", + "smw-processingerrorlist-intro": "A seguinte lista dá uma perspetiva geral das [https://www.semantic-mediawiki.org/wiki/Processing_errors falhas de processamento] que surgiram, relacionadas com o [https://www.semantic-mediawiki.org/ MediaWiki Semântico]. Recomenda-se monitorizar esta lista regularmente e corrigir as anotações de valores inválidos.", + "smw-constrainterrorlist-intro": "A seguinte lista dá uma perspetiva geral dos [https://www.semantic-mediawiki.org/wiki/Constraint_errors erros de restrições] que surgiram, relacionados com o [https://www.semantic-mediawiki.org/ MediaWiki Semântico]. Recomenda-se monitorizar esta lista regularmente e corrigir as anotações de valores inválidos.", + "smw-missingredirects-intro": "A seguinte secção lista as páginas que têm anotações de [https://www.semantic-mediawiki.org/wiki/Redirects redirecionamento] em falta no MediaWiki Semântico (comparando com a informação armazenada no MediaWiki) e permite restaurar essas anotações quer [https://www.semantic-mediawiki.org/wiki/Help:Purge purgando] manualmente a página quer executando o ''script'' de manutenção rebuildData.php (com a opção --redirects).", + "smw-missingredirects-list": "Páginas com anotações em falta", + "smw-missingredirects-list-intro": "A mostrar $1 {{PLURAL:$1|página|páginas}} com anotações de redirecionamento em falta.", + "smw-missingredirects-noresult": "Não foi encontrada nenhuma anotação de redirecionamento em falta.", + "smw_sbv_docu": "Procurar todas as páginas que têm uma determinada propriedade e valor.", + "smw_sbv_novalue": "Introduza um valor válido para a propriedade, ou veja todos os valores válidos da propriedade “$1”.", + "smw_sbv_displayresultfuzzy": "Uma lista de todas as páginas que têm a propriedade \"$1\" com o valor \"$2\".\nComo houve poucos resultados, também são apresentados valores próximos.", + "smw_sbv_property": "Propriedade:", + "smw_sbv_value": "Valor:", + "smw_sbv_submit": "Procurar resultados", + "browse": "Navegar pela wiki", + "smw_browselink": "Navegar propriedades", + "smw_browse_article": "Introduza o nome da página a partir da qual deseja começar a navegar.", + "smw_browse_go": "Prosseguir", + "smw_browse_show_incoming": "Mostrar propriedades afluentes", + "smw_browse_hide_incoming": "Ocultar propriedades afluentes", + "smw_browse_no_outgoing": "Esta página não tem propriedades.", + "smw_browse_no_incoming": "Nenhuma das propriedades aponta para esta página.", + "smw-browse-from-backend": "Neste momento está a ser obtida informação do servidor.", + "smw-browse-intro": "Esta página fornece detalhes sobre um assunto ou uma instância de uma entidade. Introduza o nome de um objeto a ser inspecionado, por favor.", + "smw-browse-invalid-subject": "A validação do assunto terminou com um erro \"$1\".", + "smw-browse-api-subject-serialization-invalid": "O assunto tem um formato de seriação inválido.", + "smw-browse-js-disabled": "É provável que o JavaScript esteja desativado ou indisponível, e recomendamos que utilize um ''browser'' que o suporte. Talvez encontre outras opções na página de configuração do parâmetro [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Mostrar grupos", + "smw-browse-hide-group": "Ocultar grupos", + "smw-noscript": "Esta página ou ação requer o JavaScript para funcionar. Ative o JavaScript no seu browser ou utilize um browser que o suporte, para que esta funcionalidade possa ser fornecida como pedido. Para mais informações, consulte a página de ajuda [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript].", + "smw_inverse_label_default": "$1 de", + "smw_inverse_label_property": "Etiqueta da propriedade inversa", + "pageproperty": "Pesquisa das propriedades das páginas", + "pendingtasklist": "Lista de tarefas pendentes", + "smw_pp_docu": "Introduza uma página e propriedade, ou só uma propriedade, para obter todos os valores atribuídos.", + "smw_pp_from": "Da página:", + "smw_pp_type": "Propriedade:", + "smw_pp_submit": "Procurar resultados", + "smw-prev": "{{PLURAL:$1|anterior|$1 anteriores}}", + "smw-next": "{{PLURAL:$1|seguinte|$1 seguintes}}", + "smw_result_prev": "Anteriores", + "smw_result_next": "Seguintes", + "smw_result_results": "Resultados", + "smw_result_noresults": "Não há resultados.", + "smwadmin": "Painel de controlo do MediaWiki Semântico", + "smw-admin-statistics-job-title": "Estatísticas de tarefas", + "smw-admin-statistics-job-docu": "As estatísticas de tarefas apresentam informação sobre tarefas agendadas do MediaWiki Semântico que ainda não foram executadas. O número de tarefas pode ter ligeiras imprecisões ou conter tentativas falhadas; consulte o [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue manual] para mais informações.", + "smw-admin-statistics-querycache-title": "Cache de consultas", + "smw-admin-statistics-querycache-disabled": "A [https://www.semantic-mediawiki.org/wiki/QueryCache ''cache'' de consultas] não foi ativada nesta wiki, portanto não há estatísticas disponíveis.", + "smw-admin-statistics-querycache-legend": "As estatísticas da ''cache'' irão conter dados acumulados provisórios e derivados, incluindo:\n* \"misses\" (falhas) o número total de tentativas de obter dados da ''cache'' com respostas inatingíveis, forçando a obtenção direta do repositório (base de dados, repositório de triplas, etc.)\n* \"deletes\" (eliminações) o número total de operações de despejo da ''cache'' (por dependências de purga ou de consulta)\n* \"hits\" (acertos) contém o número de obtenções de dados da ''cache'', tendo por fonte quer consultas incorporadas (consultas feitas a partir de uma página da wiki) quer não incorporadas (se ativas, pedidas por páginas como Special:Ask ou pela API)\n* \"medianRetrievalResponseTime\" (mediana do tempo de resposta) um valor indicativo da mediana do tempo de resposta (em segundos) para pedidos de obtenção servidos, ou não, pela ''cache'' durante o período de execução do processo de recolha de dados\n* \"noCache\" (sem ''cache'') indica a quantidade de pedidos sem tentativa de obter dados da ''cache'' (consultas com limite=0, opção 'sem ''cache''', etc.)", + "smw-admin-statistics-section-explain": "A secção fornece estatísticas adicionais para administradores.", + "smw-admin-statistics-semanticdata-overview": "Visão geral", + "smw-admin-permission-missing": "O acesso a esta página foi bloqueado devido à falta de permissões. Consulte a página de ajuda sobre [https://www.semantic-mediawiki.org/wiki/Help:Permissions permissões] para detalhes sobre as definições necessárias, por favor.", + "smw-admin-setupsuccess": "O motor de armazenamento foi configurado.", + "smw_smwadmin_return": "Voltar a $1", + "smw_smwadmin_updatestarted": "Foi iniciado um novo processo de atualização para recarregar os dados semânticos.\nTodos os dados armazenados serão reconstruidos ou reparados, conforme for necessário.\nPode seguir o progresso da atualização nesta página especial.", + "smw_smwadmin_updatenotstarted": "Já existe um processo de atualização em curso.\nNão foi criado outro.", + "smw_smwadmin_updatestopped": "Todos os processos de atualização existentes foram parados.", + "smw_smwadmin_updatenotstopped": "Para parar o processo de atualização em curso, deve marcar a caixa de seleção para indicar que tem realmente a certeza.", + "smw-admin-docu": "Esta página especial auxilia-o durante a instalação, atualização, manutenção e utilização do MediaWiki Semântico e fornece outras funções e tarefas administrativas, assim como estatísticas.\nLembre-se de efetuar cópias de segurança dos dados importantes antes de executar funções administrativas.", + "smw-admin-environment": "Ambiente de ''software''", + "smw-admin-db": "Configuração da base de dados", + "smw-admin-db-preparation": "A inicialização da tabela está em curso e pode demorar algum tempo até os resultados serem apresentados, dependendo do tamanho da tabela e de possíveis otimizações da mesma.", + "smw-admin-dbdocu": "O MediaWiki Semântico requer uma estrutura própria de dados (que é independente do MediaWiki e, portanto, não afeta o resto da instalação do MediaWiki), para armazenar os dados semânticos.\nEsta função de preparação pode ser executada várias vezes sem causar quaisquer danos, mas é necessária apenas uma vez, na instalação ou durante uma atualização.", + "smw-admin-permissionswarn": "Se a operação falhar com erros de SQL, é provável que o utilizador da base de dados usado pela sua wiki (consulte o seu ficheiro \"LocalSettings.php\") não tenha as permissões necessárias.\nConceda a este utilizador permissões adicionais para criar e eliminar tabelas, introduza temporariamente as credenciais do seu super-utilizador (''root'') da base de dados no ficheiro \"LocalSettings.php\", ou use o ''script'' de manutenção setupStore.php, o qual pode usar as credenciais de um administrador.", + "smw-admin-dbbutton": "Inicializar ou atualizar tabelas", + "smw-admin-announce": "Anuncie a sua wiki", + "smw-admin-announce-text": "Se a sua wiki é pública, pode registá-la na Wiki Apiário, a wiki que regista wikis.", + "smw-admin-deprecation-notice-title": "Avisos de descontinuação", + "smw-admin-deprecation-notice-docu": "A seguinte secção contém definições que já foram descontinuadas ou removidas mas que se detetou estarem ativadas nesta wiki. É esperado que qualquer atualização futura deixe de suportar estas configurações.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] foi descontinuado e será removido na versão $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] irá remover (ou substituir) {{PLURAL:$2|a seguinte opção|as seguintes opções}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 foi descontinuado e será removido na versão $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] foi substituído por [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] foi substituído por $2", + "smw-admin-deprecation-notice-config-replacement-option": "{{PLURAL:$2|Opção|Opções}} de [https://www.semantic-mediawiki.org/wiki/Help:$1 $1]:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 está a ser substituído por $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] foi removido na versão $2", + "smw-admin-deprecation-notice-title-notice": "Definições descontinuadas", + "smw-admin-deprecation-notice-title-notice-explanation": "Definições descontinuadas mostra definições que foi detetado estarem a ser usadas nesta wiki e que está planeado serem removidas ou alteradas numa versão futura.", + "smw-admin-deprecation-notice-title-replacement": "Definições substituídas ou com nome alterado", + "smw-admin-deprecation-notice-title-replacement-explanation": "Definições substituídas ou cujo nome foi alterado contém definições que sofreram alteração do nome ou outra modificação e é recomendado que seja atualizado de imediato o nome ou o formato das mesmas.", + "smw-admin-deprecation-notice-title-removal": "Definições removidas", + "smw-admin-deprecation-notice-title-removal-explanation": "Definições removidas identifica definições que foram removidas numa versão anterior mas foi detetado que continuam a ser usadas nesta wiki.", + "smw-admin-deprecation-notice-section-legend": "Legenda", + "smw-smwadmin-refresh-title": "Reparação e atualização de dados", + "smw_smwadmin_datarefresh": "Reconstrução de dados", + "smw_smwadmin_datarefreshdocu": "É possível restaurar todos os dados do MediaWiki Semântico baseado no conteúdo atual da wiki.\nIsto pode ser útil para reparar dados corrompidos ou para refrescar os dados se o formato interno tiver sido alterado devido a alguma evolução do ''software''.\nA atualização é executada página a página e não ficará completa de imediato.\nO seguinte mostra se uma atualização está a decorrer e permite-lhe iniciar ou parar atualizações (a menos que esta funcionalidade tenha sido desativada pelo administrador do sítio).", + "smw_smwadmin_datarefreshprogress": "Já se encontra em progresso uma atualização.\nÉ normal que a atualização progrida lentamente, já que apenas refresca dados em pequenos blocos de cada vez que um utilizador acede à wiki.\nPara terminar esta atualização mais rapidamente, pode executar o ''script'' de manutenção do MediaWiki runJobs.php (use a opção --maxjobs 1000 para restringir o número de atualizações feitas em cada bloco).\nProgresso estimado da atualização em curso:", + "smw_smwadmin_datarefreshbutton": "Programar a reconstrução dos dados", + "smw_smwadmin_datarefreshstop": "Parar esta atualização", + "smw_smwadmin_datarefreshstopconfirm": "Sim, {{GENDER:$1|tenho}} a certeza.", + "smw-admin-job-scheduler-note": "As tarefas (ativadas) desta secção são executadas através da fila de tarefas para evitar situações de impasse durante a sua execução. A [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue fila de tarefas] é responsável pelo processamento, pelo que é crítico que o ''script'' de manutenção runJobs.php tenha uma capacidade adequada (ver também o parâmetro de configuração $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "Eliminação de entidades desatualizadas", + "smw-admin-outdateddisposal-intro": "Algumas atividades (a alteração de um tipo de propriedade, a remoção de páginas da wiki, ou a correção de valores em erro) resultam em [https://www.semantic-mediawiki.org/wiki/Outdated_entities entidades desatualizadas] e é recomendado que estas sejam removidas periodicamente para libertar o respetivo espaço nas tabelas.", + "smw-admin-outdateddisposal-active": "Foi agendado um processo de eliminação de entidades desatualizadas.", + "smw-admin-outdateddisposal-button": "Agendar eliminação", + "smw-admin-feature-disabled": "Esta funcionalidade foi desativada nesta wiki. Consulte a página de ajuda das configurações ou contacte o administrador do sistema.", + "smw-admin-propertystatistics-title": "Reconstrução das estatísticas das propriedades", + "smw-admin-propertystatistics-intro": "Reconstrói todas as estatísticas de utilização de propriedades e nesse processo atualiza e corrige a [https://www.semantic-mediawiki.org/wiki/help:Property_usage_count contagem de usos] de propriedades.", + "smw-admin-propertystatistics-active": "Foi agendado um processo de reconstrução das estatísticas de propriedades.", + "smw-admin-propertystatistics-button": "Agendar reconstrução das estatísticas", + "smw-admin-fulltext-title": "Reconstrução da pesquisa de texto completo", + "smw-admin-fulltext-intro": "Reconstrói o índice de pesquisas com base nas tabelas de propriedade, usando um tipo de dados que suporta a [https://www.semantic-mediawiki.org/wiki/full-text pesquisa de texto integral]. Alterações das normas de indexação (''stopwords'' mudadas, novo ''stemmer'', etc.) ou uma tabela nova ou mudada requerem que este processo volte a ser executado.", + "smw-admin-fulltext-active": "Foi agendado um processo de reconstrução de pesquisa de texto integral.", + "smw-admin-fulltext-button": "Agendar reconstrução de pesquisa de texto integral", + "smw-admin-support": "Obter suporte", + "smw-admin-supportdocu": "São fornecidos vários recursos para ajudar em caso de problemas:", + "smw-admin-installfile": "Se tiver problemas com a instalação, comece por verificar as linhas orientadoras no ficheiro INSTALL e a página de instalação.", + "smw-admin-smwhomepage": "A documentação completa para o utilizador do MediaWiki Semântico está em semantic-mediawiki.org.", + "smw-admin-bugsreport": "Pode reportar defeitos no sistema de registo de defeitos, onde a página para reportar defeitos fornece instruções para criar relatórios eficazes.", + "smw-admin-questions": "Se tem mais questões ou sugestões, junte-se à discussão na lista de divulgação do MediaWiki Semântico.", + "smw-admin-other-functions": "Outras funções", + "smw-admin-statistics-extra": "Funções estatísticas", + "smw-admin-statistics": "Estatísticas", + "smw-admin-supplementary-section-title": "Funções suplementares", + "smw-admin-supplementary-section-subtitle": "Funções centrais suportadas", + "smw-admin-supplementary-section-intro": "Esta secção disponibiliza funções adicionais fora do âmbito das atividades de manutenção e é possível que algumas das funções listadas (ver a [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions documentação]) estejam restringidas ou indisponíveis e, portanto, inacessíveis nesta wiki.", + "smw-admin-supplementary-settings-title": "Configuração e definições", + "smw-admin-supplementary-settings-intro": "$1 mostra parâmetros que definem o comportamento do MediaWiki Semântico", + "smw-admin-main-title": "MediaWiki Semântico » $1", + "smw-admin-supplementary-operational-statistics-title": "Estatísticas operacionais", + "smw-admin-supplementary-operational-statistics-short-title": "estatísticas operacionais", + "smw-admin-supplementary-operational-statistics-intro": "Apresenta um conjunto alargado de $1", + "smw-admin-supplementary-idlookup-title": "Pesquisa e eliminação de entidades", + "smw-admin-supplementary-idlookup-short-title": "pesquisa e eliminação de entidades", + "smw-admin-supplementary-idlookup-intro": "Suporta uma função simples de $1", + "smw-admin-supplementary-duplookup-title": "Consulta de entidades duplicadas", + "smw-admin-supplementary-duplookup-intro": "$1 para encontrar entidades que são categorizadas como duplicadas para a matriz de tabelas selecionada", + "smw-admin-supplementary-duplookup-docu": "Esta página lista entradas de tabelas selecionadas que tenham sido categorizadas como [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities duplicadas]. Entradas duplicadas só devem ocorrer (se de todo) em ocasiões raras, possivelmente causadas por uma atualização interrompida por uma transação de rollback não concluída.", + "smw-admin-supplementary-operational-statistics-cache-title": "Estatísticas da cache", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 mostra um conjunto selecionado de estatísticas relacionadas com a cache", + "smw-admin-supplementary-operational-table-statistics-title": "Estatísticas de tabelas", + "smw-admin-supplementary-operational-table-statistics-short-title": "estatísticas de tabelas", + "smw-admin-supplementary-operational-table-statistics-intro": "Gera $1 para um conjunto selecionado de tabelas", + "smw-admin-supplementary-operational-table-statistics-explain": "Esta secção contém estatísticas de tabelas selecionadas para ajudar os administradores e curadores de dados a tomarem decisões informadas sobre o estado do servidor e do motor de armazenamento.", + "smw-admin-supplementary-operational-table-statistics-legend": "Descreve as chaves usadas para as estatísticas de tabelas, incluindo:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count número total de linhas numa tabela", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id último identificador atualmente em uso\n* duplicate_count número de duplicados encontrados na tabela id_table (ver também [[Special:SemanticMediaWiki/duplicate-lookup|Pesquisa de entidades duplicadas]]) \n* rows.rev_count número de linhas que têm um identificador de revisão (revision_id) atribuído que indica um hiperligação direta para uma página da wiki\n* rows.smw_namespace_group_by_count números de linhas agregadas para espaços nominais usados na tabela\n* rows.smw_proptable_hash.query_match_count número de subobjetos de consulta com uma referência de tabela correspondente \n* rows.smw_proptable_hash.query_null_count número de subobjetos de consulta sem uma referência de tabela (sem hiperligação, referência flutuante)", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent percentagem dos termos que são únicos (uma percentagem baixa indica que termos repetitivos ocupam o conteúdo e índice da tabela)\n* rows.terms_occurrence.single_occurrence_total_count número de termos que só aparecem uma vez\n* rows.terms_occurrence.multi_occurrence_total_count número de termos que aparecem mais do que uma vez", + "smw-admin-supplementary-elastic-version-info": "Versão", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 mostra detalhes sobre configurações e estatísticas de indexação", + "smw-admin-supplementary-elastic-docu": "Esta página contém informação sobre as configurações, os mapeamentos, o estado e as estatísticas dos índices, de um ''cluster'' Elasticsearch que está ligado ao MediaWiki Semântico e ao respetivo [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Funções suportadas", + "smw-admin-supplementary-elastic-settings-title": "Definições (índices)", + "smw-admin-supplementary-elastic-settings-intro": "$1 usadas pelo Elasticsearch para gerir os índices do MediaWiki Semântico", + "smw-admin-supplementary-elastic-mappings-title": "Mapeamentos", + "smw-admin-supplementary-elastic-mappings-intro": "$1 para listar índices e mapeamentos de campos", + "smw-admin-supplementary-elastic-mappings-docu": "Esta página contém detalhes do mapeamento de campos usados pelo índice atual. É recomendado que os mapeamentos sejam monitorizados em ligação com o limite index.mapping.total_fields.limit (especifica o número máximo de campos permitidos num índice).", + "smw-admin-supplementary-elastic-mappings-docu-extra": "property_fields refere-se à contagem de campos nucleares indexados, enquanto que nested_fields se refere a uma contagem acumulada de campos adicionais atribuídos a um campo nuclear para apoiar padrões específicos de pesquisa estruturada.", + "smw-admin-supplementary-elastic-mappings-summary": "Resumo", + "smw-admin-supplementary-elastic-mappings-fields": "Mapeamentos de campos", + "smw-admin-supplementary-elastic-nodes-title": "Nós", + "smw-admin-supplementary-elastic-nodes-intro": "$1 mostra estatísticas dos nós", + "smw-admin-supplementary-elastic-indices-title": "Índices", + "smw-admin-supplementary-elastic-indices-intro": "$1 fornece uma visão geral dos índices disponíveis e das suas estatísticas", + "smw-admin-supplementary-elastic-statistics-title": "Estatísticas", + "smw-admin-supplementary-elastic-statistics-intro": "$1 mostra as estatísticas ao nível dos índices", + "smw-admin-supplementary-elastic-statistics-docu": "Esta página fornece uma perspetiva das estatísticas de índices para as diferentes operações que estão a ocorrer ao nível do índice. As estatísticas produzidas estão agrupadas por agregações primárias e totais. A [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html página de ajuda] contém uma descrição detalhada das estatísticas de índices disponíveis.", + "smw-admin-supplementary-elastic-status-replication": "Estado da replicação", + "smw-admin-supplementary-elastic-status-last-active-replication": "Última replicação ativa: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Intervalo de atualização: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Tarefas de recuperação em atraso: $1 (estimativa)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Tarefas de ingestão (de ficheiros) em atraso: $1 (estimativa)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Replicação trancada: $1 (recriação em progresso)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Monitorização de replicação (ativa): $1", + "smw-admin-supplementary-elastic-replication-header-title": "Estado da replicação", + "smw-admin-supplementary-elastic-replication-function-title": "Replicação", + "smw-admin-supplementary-elastic-replication-intro": "$1 mostra informações sobre replicações falhadas", + "smw-admin-supplementary-elastic-replication-docu": "Esta página fornece informação sobre o [https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring estado de replicação] das entidades reportadas como tendo problemas com o ''cluster'' Elasticsearch. É recomendado rever as entidades listadas e purgar o conteúdo para confirmar que era um problema temporário.", + "smw-admin-supplementary-elastic-replication-files-docu": "Deve ser notado que, para a lista de ficheiros, é obrigatório que a tarefa de [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion ingestão de ficheiros] seja executada primeiro e conclua o seu processamento.", + "smw-admin-supplementary-elastic-replication-files": "Ficheiros", + "smw-admin-supplementary-elastic-replication-pages": "Páginas", + "smw-admin-supplementary-elastic-endpoints": "Pontos de terminação", + "smw-admin-supplementary-elastic-config": "Configurações", + "smw-admin-supplementary-elastic-no-connection": "De momento, a wiki '''não consegue''' estabelecer uma ligação ao ''cluster'' Elasticsearch; contacte o administrador da wiki para investigar o problema, por favor, porque este torna indisponíveis as capacidades de indexação e consulta do sistema.", + "smw-list-count": "A lista contém $1 {{PLURAL:$1|entrada|entradas}}.", + "smw-property-label-uniqueness": "Foi encontrada uma correspondência entre a etiqueta \"$1\" e pelo menos uma outra representação de propriedade. Consulte a [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness página de ajuda] sobre a resolução deste problema, por favor.", + "smw-property-label-similarity-title": "Relatório de semelhanças das etiquetas de propriedade", + "smw-property-label-similarity-intro": "$1 calcula as semelhanças das etiquetas de propriedade existentes", + "smw-property-label-similarity-threshold": "Patamar:", + "smw-property-label-similarity-type": "Apresentar o identificador do tipo", + "smw-property-label-similarity-noresult": "Não foram encontrados resultados para as opções selecionadas.", + "smw-property-label-similarity-docu": "Esta página compara a [https://www.semantic-mediawiki.org/wiki/Property_similarity distância da semelhança sintática] (não confundir com uma semelhança semântica ou lexical) entre etiquetas de propriedades e reporta-as se excederem o patamar. O relatório pode ajudar a filtrar propriedades com erros ortográficos ou as propriedades equivalentes que representam o mesmo conceito (ver a página especial [[Special:Properties|Propriedades]] para clarificar o conceito e a utilização das propriedades reportadas). O patamar pode ser ajustado para aumentar ou reduzir a distância usada para a correspondência por aproximação. [[Property:$1|$1]] é usado para isentar propriedades desta análise.", + "smw-admin-operational-statistics": "Esta página contém estatísticas operacionais recolhidas em (ou por) funções relacionadas com o MediaWiki Semântico. Encontra uma lista expandida de estatísticas específicas da wiki [[Special:Statistics|aqui]].", + "smw_adminlinks_datastructure": "Estrutura de dados", + "smw_adminlinks_displayingdata": "Apresentação de dados", + "smw_adminlinks_inlinequerieshelp": "Ajuda para consultas dinâmicas (''inline queries'')", + "smw-page-indicator-usage-count": "[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count Número de utilizações] estimado: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "Propriedade definida pelo {{PLURAL:$1|utilizador|sistema}}", + "smw-property-indicator-last-count-update": "Número estimado de utilizações\nÚltima atualização: $1", + "smw-concept-indicator-cache-update": "Contagem da cache\nÚltima atualização: $1", + "smw-createproperty-isproperty": "É uma propriedade do tipo $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|O valor permitido para esta propriedade é|Os valores permitidos para esta propriedade são}}:", + "smw-paramdesc-category-delim": "O delimitador", + "smw-paramdesc-category-template": "Uma predefinição para formatação dos elementos", + "smw-paramdesc-category-userparam": "Um parâmetro para passar à predefinição", + "smw-info-par-message": "A mensagem a ser apresentada.", + "smw-info-par-icon": "Ícone a ser mostrado, \"informação\" ou \"aviso\".", + "prefs-smw": "MediaWiki Semântico", + "prefs-general-options": "Opções gerais", + "prefs-extended-search-options": "Pesquisa avançada", + "prefs-ask-options": "Pesquisa semântica", + "smw-prefs-intro-text": "O [https://www.semantic-mediawiki.org/ MediaWiki Semântico] e as extensões relacionadas fornecem preferências individuais para um grupo de funcionalidades e funções selecionadas. Está disponível uma lista de definições individuais com as suas descrições e caraterísticas na seguinte [https://www.semantic-mediawiki.org/wiki/Help:User_preferences página de ajuda].", + "smw-prefs-ask-options-tooltip-display": "Mostrar o texto do parâmetro na forma de dica informativa na página especial de [[Special:Ask|construção de consultas]] #ask.", + "smw-prefs-ask-options-compact-view-basic": "Ativar a vista compacta básica", + "smw-prefs-help-ask-options-compact-view-basic": "Se ativado, apresenta um conjunto reduzido de hiperligações na vista compacta Special:Ask.", + "smw-prefs-general-options-time-correction": "Ativar a correção da hora para as páginas especiais, usando a preferência do [[Special:Preferences#mw-prefsection-rendering|fuso horário]].", + "smw-prefs-general-options-jobqueue-watchlist": "Mostrar a lista de vigilância da fila de tarefas na minha barra pessoal", + "smw-prefs-help-general-options-jobqueue-watchlist": "Se ativado, mostra uma [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist lista] de tarefas selecionadas pendentes, com os respetivos tamanhos de fila estimados.", + "smw-prefs-general-options-disable-editpage-info": "Desativar o texto introdutório na página de edição", + "smw-prefs-general-options-disable-search-info": "Desativar as informações de suporte da sintaxe na página de pesquisa padrão", + "smw-prefs-general-options-suggester-textinput": "Ativar o auxiliar de preenchimento para as entidades semânticas", + "smw-prefs-help-general-options-suggester-textinput": "Se ativado, permite usar um [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance auxiliar de preenchimento] para encontrar propriedades, conceitos e categorias num contexto de entrada.", + "smw-prefs-general-options-show-entity-issue-panel": "Mostrar o painel de problemas de entidades", + "smw-prefs-help-general-options-show-entity-issue-panel": "Se ativado, executa verificações de integridade em cada página e mostra o [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel painel de problemas de entidades].", + "smw-ui-tooltip-title-property": "Propriedade", + "smw-ui-tooltip-title-quantity": "Conversão de unidades", + "smw-ui-tooltip-title-info": "Informação", + "smw-ui-tooltip-title-service": "Ligações de serviços", + "smw-ui-tooltip-title-warning": "Aviso", + "smw-ui-tooltip-title-error": "Erro", + "smw-ui-tooltip-title-parameter": "Parâmetro", + "smw-ui-tooltip-title-event": "Evento", + "smw-ui-tooltip-title-note": "Nota", + "smw-ui-tooltip-title-legend": "Legenda", + "smw-ui-tooltip-title-reference": "Referência", + "smw_unknowntype": "O tipo \"$1\" desta propriedade é inválido", + "smw-concept-cache-text": "O conceito tem no total $1 {{PLURAL:$1|página|páginas}}, e foi atualizado pela última vez a $3, às $2.", + "smw_concept_header": "Páginas do conceito \"$1\"", + "smw_conceptarticlecount": "A apresentar $1 {{PLURAL:$1|página|páginas}} abaixo.", + "smw-qp-empty-data": "Não foi possível apresentar os dados pedidos devido a alguns critérios de seleção insuficientes.", + "right-smw-admin": "Acesso às tarefas de administração (MediaWiki Semântico)", + "right-smw-patternedit": "Acesso de edição para manter as expressões regulares e os padrões permitidos (MediaWiki Semântico)", + "right-smw-pageedit": "Acesso para edição de páginas com a anotação Está protegida contra edições (MediaWiki Semântico)", + "right-smw-schemaedit": "Editar [https://www.semantic-mediawiki.org/wiki/Help:Schema páginas de esquema] (MediaWiki Semântico)", + "right-smw-viewjobqueuewatchlist": "Acesso à funcionalidade de [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist páginas vigiadas] da fila de tarefas (MediaWiki Semântico)", + "right-smw-viewentityassociatedrevisionmismatch": "Aceder a informações sobre erros de correspondência de revisões associados a uma entidade (Semantic MediaWiki)", + "right-smw-vieweditpageinfo": "Ver [https://www.semantic-mediawiki.org/wiki/Help:Edit_help ajuda sobre edição] (MediaWiki Semântico)", + "restriction-level-smw-pageedit": "protegida (só utilizadores elegíveis)", + "action-smw-patternedit": "editar expressões regulares usadas pelo MediaWiki Semântico", + "action-smw-pageedit": "editar páginas anotadas com Está protegida contra edições (MediaWiki Semântico)", + "group-smwadministrator": "Administradores (MediaWiki Semântico)", + "group-smwadministrator-member": "{{GENDER:$1|administrador|administradora}} (MediaWiki Semântico)", + "grouppage-smwadministrator": "{{ns:project}}:Administradores (MediaWiki Semântico)", + "group-smwcurator": "Curadores (MediaWiki Semântico)", + "group-smwcurator-member": "{{GENDER:$1|curador|curadora}} (MediaWiki Semântico)", + "grouppage-smwcurator": "{{ns:project}}:Curadores (MediaWiki Semântico)", + "group-smweditor": "Editores (MediaWiki Semântico)", + "group-smweditor-member": "{{GENDER:$1|editor|editora}} (MediaWiki Semântico)", + "grouppage-smweditor": "{{ns:project}}:Editores (MediaWiki Semântico)", + "action-smw-admin": "aceder às tarefas de administração do MediaWiki Semântico", + "action-smw-ruleedit": "editar páginas de regras (MediaWiki Semântico)", + "smw-property-namespace-disabled": "A propriedade [https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks espaço nominal] está desativada; não é possível tentar declarar um tipo para esta propriedade nem outras características específicas da mesma.", + "smw-property-predefined-default": "\"$1\" é uma propriedade predefinida do tipo $2.", + "smw-property-predefined-common": "Esta propriedade é predefinida (também chamada [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propriedade especial]) e vem com privilégios de administração adicionais, mas pode ser usada como qualquer outra [https://www.semantic-mediawiki.org/wiki/Property propriedade definida pelo utilizador].", + "smw-property-predefined-ask": "\"$1\" é uma propriedade predefinida que representa metainformação (na forma de [https://www.semantic-mediawiki.org/wiki/Subobject subobjeto]) acerca de consultas individuais, fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-asksi": "\"$1\" é uma propriedade predefinida que recolhe o número de condições usadas numa consulta, fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-askde": "\"$1\" é uma propriedade predefinida que fornece informação sobre a profundidade de uma consulta, fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-askde": "É um valor numérico calculado com base nas consultas intercaladas, nas cadeias de propriedades e nos elementos descritivos disponíveis, sendo que a execução de cada consulta está restringida pelo parâmetro de configuração [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-property-predefined-askpa": "\"$1\" é uma propriedade predefinida que descreve parâmetros que influenciam um resultado de consulta, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-askpa": "É parte de um conjunto de propriedades que especificam um [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler perfil de consulta].", + "smw-sp-properties-docu": "Esta página lista as [https://www.semantic-mediawiki.org/wiki/Property propriedades] e a respetiva contagem de utilizações nesta wiki. Para ter estatísticas de contagem atualizadas, é recomendado que o [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics ''script'' de manutenção das estatísticas de propriedades] seja executado com regularidade. Para obter uma perspetiva diferente, veja as páginas especiais das [[Special:UnusedProperties|propriedades não utilizadas]] e [[Special:WantedProperties|propriedades desejadas]].", + "smw-sp-properties-cache-info": "Os dados listados foram obtidos da [https://www.semantic-mediawiki.org/wiki/Caching ''cache''] e foram atualizados pela última vez a $1.", + "smw-sp-properties-header-label": "Lista de propriedades", + "smw-admin-settings-docu": "Apresenta uma lista de todas as configurações padrão e localizadas que são relevantes para o ambiente do MediaWiki Semântico. Para mais detalhes sobre as configurações individuais, consulte a página de ajuda da [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuração], por favor.", + "smw-sp-admin-settings-button": "Gerar lista de configurações", + "smw-admin-idlookup-title": "Consulta", + "smw-admin-idlookup-docu": "Esta secção mostra detalhes técnicos de uma entidade individual (página da wiki, subobjeto, propriedade, etc.) no MediaWiki Semântico. Os dados de entrada podem ser um identificador numérico ou um texto que corresponda ao campo de pesquisa relevante, mas qualquer referência a um identificador refere-se ao MediaWiki Semântico e não deve ser confundida com os identificadores de página ou de revisão do MediaWiki.", + "smw-admin-iddispose-title": "Eliminação", + "smw-admin-iddispose-docu": "Note que a operação de eliminação não tem restrições e, se for confirmada, irá remover a entidade do motor de armazenamento e todas as referências à mesma das tabelas pendentes. Realize esta operação com '''cuidado''' e só depois de consultar a [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal documentação], por favor.", + "smw-admin-iddispose-done": "O identificador \"$1\" foi removido do servidor de armazenamento.", + "smw-admin-iddispose-references": "O identificador \"$1\" {{PLURAL:$2|não tem nenhuma|tem pelo menos uma}} referência ativa.", + "smw-admin-iddispose-references-multiple": "Lista de correspondências com pelo menos um registo de referência ativo.", + "smw-admin-iddispose-no-references": "A pesquisa não encontrou correspondência entre \"$1\" e uma entrada da tabela.", + "smw-admin-idlookup-input": "Pesquisar:", + "smw-admin-objectid": "Identificador:", + "smw-admin-tab-general": "Visão geral", + "smw-admin-tab-notices": "Avisos de descontinuação", + "smw-admin-tab-maintenance": "Manutenção", + "smw-admin-tab-supplement": "Funções suplementares", + "smw-admin-tab-registry": "Registo", + "smw-admin-tab-alerts": "Alertas", + "smw-admin-alerts-tab-deprecationnotices": "Avisos de descontinuação", + "smw-admin-alerts-tab-maintenancealerts": "Alertas de manutenção", + "smw-admin-alerts-section-intro": "Esta secção mostra alertas e avisos relacionados com definições, operações e outras atividades que foram classificadas como requerendo a atenção de um administrador ou utilizador com direitos apropriados.", + "smw-admin-maintenancealerts-section-intro": "Os seguintes alertas e avisos devem ser resolvidos e, embora não sejam essenciais, é esperado que ajudem a melhorar a manutenção do sistema e operacional.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Otimização de tabelas", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "O sistema descobriu que a última [https://www.semantic-mediawiki.org/wiki/Table_optimization otimização de tabelas] foi executada há $2 dias (registo de $1), o que excede o patamar de manutenção de $3 dias. Conforme menciona a documentação, a execução de otimizações permitirá que o planeador de consultas tome melhores decisões sobre consultas. Portanto, é sugerido que seja executada a otimização de tabelas com regularidade.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Entidades desatualizadas", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "O sistema contabilizou $1 [https://www.semantic-mediawiki.org/wiki/Outdated_entities entidades desatualizadas] e atingiu um nível crítico de manutenção autónoma ao exceder o patamar de $2. Recomenda-se que seja executado o ''script'' de manutenção [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php].", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Entidades inválidas", + "smw-admin-maintenancealerts-invalidentities-alert": "O sistema detetou que $1 [https://www.semantic-mediawiki.org/wiki/Invalid_entities {{PLURAL:$1| entidade|entidades}}] estão num [https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace espaço nominal que não é mantido] e é recomendado executar o ''script'' de manutenção [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] ou o [https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php].", + "smw-admin-deprecation-notice-section": "MediaWiki Semântico", + "smw-admin-configutation-tab-settings": "Configurações", + "smw-admin-configutation-tab-namespaces": "Espaços nominais", + "smw-admin-configutation-tab-schematypes": "Tipos de esquema", + "smw-admin-maintenance-tab-tasks": "Tarefas", + "smw-admin-maintenance-tab-scripts": "''Scripts'' de manutenção", + "smw-admin-maintenance-no-description": "Sem descrição.", + "smw-admin-maintenance-script-section-title": "Lista dos ''scripts'' de manutenção disponíveis", + "smw-admin-maintenance-script-section-intro": "Os seguintes ''scripts'' de manutenção requerem um administrador e acesso à linha de comandos para poder executar os ''scripts'' listados.", + "smw-admin-maintenance-script-description-dumprdf": "Exportação para RDF das triplas existentes.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "Este ''script'' é usado para gerir as ''caches'' de conceitos do MediaWiki Semântico, sendo que pode criar, remover e atualizar ''caches'' selecionadas.", + "smw-admin-maintenance-script-description-rebuilddata": "Recria todos os dados semânticos na base de dados, percorrendo todas as páginas que possam ter dados semânticos.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "Reconstrói o índice Elasticsearch (só nas instalações que usam o ElasticStore), percorrendo todas as entidades que têm dados semânticos.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Encontrar as entidades em falta no Elasticsearch (só nas instalações que usam o ElasticStore) e agendar os processos de atualização apropriados.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "Recria o índice de pesquisa do texto completo de SQLStore (para as instalações onde a configuração foi ativada).", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Reconstrói as estatísticas de utilização de todas as entidades propriedade.", + "smw-admin-maintenance-script-description-removeduplicateentities": "Remove as entidades duplicadas encontradas em tabelas selecionadas que não tenham referências ativas.", + "smw-admin-maintenance-script-description-setupstore": "Configura o servidor de armazenamento e consulta como definido em LocalSettings.php.", + "smw-admin-maintenance-script-description-updateentitycollation": "Atualiza o campo smw_sort do SQLStore (de acordo com a configuração [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation]).", + "smw-admin-maintenance-script-description-populatehashfield": "Popula o campo smw_hash das linhas em que este não tem um valor.", + "smw-admin-maintenance-script-description-purgeentitycache": "Purgar as entradas da ''cache'' para entidades conhecidas e os dados a elas associados.", + "smw-admin-maintenance-script-description-updatequerydependencies": "Atualizar consultas e dependências das consultas (ver a configuração [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore]).", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "Descartar entidades desatualizadas e hiperligações de consulta.", + "smw-admin-maintenance-script-description-runimport": "Preencher e importar conteúdo descoberto automaticamente de [https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs].", + "smw-admin-maintenance-script-section-update": "Ficheiros de comandos de atualização", + "smw-admin-maintenance-script-section-rebuild": "Ficheiros de comandos de recriação", + "smw-livepreview-loading": "A carregar…", + "smw-sp-searchbyproperty-description": "Esta página fornece uma [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces interface de navegação] simples para encontrar entidades descritas por uma propriedade e pelo nome de um valor. Entre as outras interfaces de pesquisa disponíveis, incluem-se a [[Special:PageProperty|página de pesquisa de propriedades]] e o [[Special:Ask|construtor de consultas ''ask'']].", + "smw-sp-searchbyproperty-resultlist-header": "Lista de resultados", + "smw-sp-searchbyproperty-nonvaluequery": "Uma lista de valores que têm atribuída a propriedade \"$1\".", + "smw-sp-searchbyproperty-valuequery": "Uma lista de páginas que têm a propriedade \"$1\" com o valor \"$2\" anotado.", + "smw-datavalue-number-textnotallowed": "\"$1\" não pode ser atribuído a um tipo de número declarado com o valor $2.", + "smw-datavalue-number-nullnotallowed": "\"$1\" devolveu o valor \"NULL\" (nulo), que não é permitido como número.", + "smw-editpage-annotation-enabled": "Esta página suporta anotações semânticas de texto (por exemplo, \"[[Is specified as::World Heritage Site]]\") para construir conteúdo estruturado e consultável, e é fornecida pelo MediaWiki Semântico. Para uma descrição detalhada do uso de anotações, ou da função #ask do analisador sintático, consulte as páginas de ajuda [https://www.semantic-mediawiki.org/wiki/Help:Getting_started começar], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation anotação de texto], ou [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries consultas em linha (''inline'')].", + "smw-editpage-annotation-disabled": "Não são permitidas anotações semânticas de texto nesta página, devido a restrições do espaço nominal. Para detalhes sobre como ativar o espaço nominal consulte a página de ajuda da [https://www.semantic-mediawiki.org/wiki/Help:Configuration configuração].", + "smw-editpage-property-annotation-enabled": "Esta propriedade pode ser expandida usando anotações semânticas para especificar um tipo de dados (por exemplo, \"[[Has type::Page]]\") ou inserir outras declarações de apoio (por exemplo, \"[[Subproperty of::dc:date]]\"). Para uma descrição das formas de ampliação desta página, consulte as páginas de ajuda [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration declaração de uma propriedade] e [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes lista dos tipos de dados disponíveis].", + "smw-editpage-property-annotation-disabled": "Esta propriedade não pode ser expandida com uma anotação de tipo de dados (por exemplo, \"[[Has type::Page]]\") porque o tipo já está predefinido (para mais informações, consulte a página de ajuda [https://www.semantic-mediawiki.org/wiki/Help:Special_properties propriedades especiais]).", + "smw-editpage-concept-annotation-enabled": "Este conceito pode ser expandido usando a função #concept do analisador sintático. Para uma descrição do uso da função #concept, consulte a página de ajuda [https://www.semantic-mediawiki.org/wiki/Help:Concepts conceitos].", + "smw-search-syntax-support": "A entrada da pesquisa permite o uso da [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search sintaxe de consultas] semânticas para ajudar a encontrar correspondências usando o MediaWiki Semântico.", + "smw-search-input-assistance": "O [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance ajudante de preenchimento] também está ativado para facilitar a pré-seleção das propriedades e categorias disponíveis.", + "smw-search-help-intro": "Uma entrada com a forma [[ ... ]] assinala ao processador da entrada que deve usar o motor de pesquisa do MediaWiki Semântico. Note que a combinação de [[ ... ]] com uma pesquisa de texto não estruturado, como [[ ... ]] OR Lorem ipsum, não é suportada.", + "smw-search-help-structured": "Pesquisas estruturadas:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] (como [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context contexto filtrado])\n\n*[[Has text::~*lorem*]] (com um [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context contexto de consulta])", + "smw-search-help-proximity": "Pesquisas aproximidas (uma propriedade ser desconhecida, '''só''' disponível para aqueles motores de pesquisa que fornecem uma integração com a pesquisa de texto completo):\n\n*[[in:lorem ipsum]] (pesquisar em todos os documentos os termos \"lorem\" e \"ipsum\" que tenham sido indexados)\n\n* [[phrase:lorem ipsum]] (pesquisar correspondências com \"lorem ipsum\" como frase)", + "smw-search-help-ask": "As seguintes hiperligações explicam como usar a sintaxe #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selecionar páginas] descreve como selecionar páginas e construir condições\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Search_operators Operadores de pesquisa] lista os operadores de pesquisa disponíveis, incluindo os para consultas de intervalos e consultas com caracteres de substituição", + "smw-search-input": "Introdução e pesquisa", + "smw-search-help-input-assistance": "É fornecida uma [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance ajuda de introdução] para o campo de entrada e requer que seja usado um dos seguintes prefixos:\n\n*p: para ativar as sugestões de propriedades (p. ex.: [[p:Has ...)\n\n*c: para ativar as sugestões de categorias\n\n*con: para ativar as sugestões de conceitos", + "smw-search-syntax": "Sintaxe", + "smw-search-profile": "Expandida", + "smw-search-profile-tooltip": "Funções de pesquisa relacionadas com o MediaWiki Semântico", + "smw-search-profile-sort-best": "Melhor correspondência", + "smw-search-profile-sort-recent": "Mais recente", + "smw-search-profile-sort-title": "Título", + "smw-search-profile-extended-help-intro": "O [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile perfil alargado] da página Special:Search dá acesso a funções de pesquisa específicas da extensão MediaWiki Semântico e do seu servidor de consultas suportado.", + "smw-search-profile-extended-help-sort": "Especifica uma preferência de ordenação para a apresentação do resultado com:", + "smw-search-profile-extended-help-sort-title": "*\"Título\" usando o título da página (ou título de apresentação) como critério de ordenação", + "smw-search-profile-extended-help-sort-recent": "*\"Mais recente\" mostrará primeiro as entidades modificadas mais recentemente (as entidades subobjetos são suprimidas porque essas entidades não estão anotadas com uma [[Property:Modification date|data de modificação]])", + "smw-search-profile-extended-help-sort-best": "*\"Melhor correspondência\" ordenará as entidades por [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy relevância] com base em classificações fornecidas pelo servidor", + "smw-search-profile-extended-help-form": "São disponibilizados formulários (se estes forem mantidos) para certos casos específicos de utilização. Os formulários podem expor diferentes campos de propriedade e de entrada de valor, para limitar o processo de introdução e facilitar a criação de pedidos de pesquisa (ver $1).", + "smw-search-profile-extended-help-namespace": "A caixa de seleção do espaço nominal/domínio será ocultada logo que um formulário for selecionado mas pode ser tornada visível com a ajuda do botão \"mostrar/esconder\".", + "smw-search-profile-extended-help-search-syntax": "O campo de entrada da pesquisa permite o uso da sintaxe #ask para definir um contexto de pesquisa específico do MediaWiki Semântico. Algumas expressões úteis:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: para encontrar tudo o que contenha \"...\" e é especialmente útil quando não se conhece o contexto da pesquisa ou as propriedades envolvidas (por exemplo, in:(lorem && ipsum) é equivalente a [[~~*lorem*]] && [[~~*ipsum*]]).", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: para encontrar tudo o que contenha \"...\" exatamente na mesma ordem", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: para corresponder com qualquer entidade com uma propriedade \"...\" (por exemplo, has:(Foo && Bar) é equivalente a [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: para não corresponder com nenhuma entidade que inclui \"...\"", + "smw-search-profile-extended-help-search-syntax-prefix": "* Estão disponíveis e definidos prefixos personalizados adicionais, como: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* Algumas expressões estão reservadas, como: $1", + "smw-search-profile-extended-help-search-syntax-note": "''Algumas das operações listadas só são úteis em ligação com um índice ativado de texto completo ou com o ElasticStore.''", + "smw-search-profile-extended-help-query": "$1 foi usado como consulta.", + "smw-search-profile-extended-help-query-link": "(Para mais detalhes use o $1, por favor).", + "smw-search-profile-extended-help-find-forms": "formulários disponíveis", + "smw-search-profile-extended-section-sort": "Ordenar por", + "smw-search-profile-extended-section-form": "Formulários", + "smw-search-profile-extended-section-search-syntax": "Entrada a pesquisar", + "smw-search-profile-extended-section-namespace": "Espaço nominal/domínio", + "smw-search-profile-extended-section-query": "Consulta", + "smw-search-profile-link-caption-query": "criador de consultas", + "smw-search-show": "Mostrar", + "smw-search-hide": "Ocultar", + "log-name-smw": "Registo do MediaWiki Semântico", + "log-show-hide-smw": "$1 o registo do MediaWiki Semântico", + "logeventslist-smw-log": "Registo do MediaWiki Semântico", + "log-description-smw": "Atividades para os [https://www.semantic-mediawiki.org/wiki/Help:Logging tipos de eventos ativados] que foram reportados pelo MediaWiki Semântico e pelos seus componentes.", + "logentry-smw-maintenance": "Ocorrências relacionadas com manutenção, emitidas pelo MediaWiki Semântico", + "smw-datavalue-import-unknown-namespace": "O espaço nominal de importação \"$1\" é desconhecido. Verifique que os detalhes de importação OWL estão disponíveis via [[MediaWiki:Smw import $1]], por favor", + "smw-datavalue-import-missing-namespace-uri": "Não foi possível encontrar um URI do espaço nominal \"$1\" na [[MediaWiki:Smw import $1|importação de $1]].", + "smw-datavalue-import-missing-type": "Não foi encontrada nenhuma definição de tipo para \"$1\" na [[MediaWiki:Smw import $2|importação de $2]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|importação de $1]]", + "smw-datavalue-import-invalid-value": "\"$1\" não é um formato válido e deve ter a forma \"espaço\":\"identificador\" (por exemplo, \"xpto:nome\").", + "smw-datavalue-import-invalid-format": "Era esperado que o texto \"$1\" estivesse dividido em quatro partes, mas o formato não foi compreendido.", + "smw-property-predefined-impo": "\"$1\" é uma propriedade predefinida que descreve uma relação com um [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary vocabulário importado] e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-type": "\"$1\" é uma propriedade predefinida que descreve o [[Special:Types|tipo de dados]] de uma propriedade e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-sobj": "\"$1\" é uma propriedade predefinida que representa uma estrutura [https://www.semantic-mediawiki.org/wiki/Help:Container recipiente] e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-sobj": "A estrutura recipiente permite acumular atribuições de valores a propriedades, e é semelhante a uma página wiki normal mas num espaço de entidades diferente, estando ligada ao assunto que a incorpora.", + "smw-property-predefined-errp": "\"$1\" é uma propriedade predefinida que regista erros de entrada em anotações de valor irregular e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-errp": "Na maioria dos casos, a causa é uma não correspondência de tipos ou uma restrição do [[Property:Allows value|valor]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value \"$1\"] é uma propriedade predefinida que pode definir uma lista de valores permitidos, para restringir a atribuição de valores a uma propriedade, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list \"$1\"] é uma propriedade predefinida que pode especificar uma referência para uma lista de valores permitidos, para restringir a atribuição de valores a uma propriedade, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-datavalue-property-restricted-annotation-use": "A propriedade \"$1\" tem uma área de aplicação restrita e não pode ser usada como propriedade de anotação por um utilizador.", + "smw-datavalue-property-restricted-declarative-use": "A propriedade \"$1\" é uma propriedade declarativa e só pode ser usada numa propriedade ou página de categoria.", + "smw-datavalue-property-create-restriction": "A propriedade \"$1\" não existe e o utilizador não tem a permissão \"$2\" (consulte [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoridade]) para criar ou anotar valores com uma propriedade não aprovada.", + "smw-datavalue-property-invalid-character": "\"$1\" contém um carácter \"$2\" listado como parte da etiqueta de propriedade e portanto foi classificado como inválido.", + "smw-datavalue-property-invalid-chain": "Usar \"$1\" como cadeia de propriedades não é permitido durante o processo de anotação.", + "smw-datavalue-restricted-use": "O valor de dados \"$1\" foi marcado para uso restrito.", + "smw-datavalue-invalid-number": "\"$1\" não pode ser interpretado como um número.", + "smw-query-condition-circular": "Foi detetada uma possível condição circular em \"$1\".", + "smw-query-condition-empty": "A descrição da consulta tem uma condição vazia.", + "smw-types-list": "Lista de tipos de dados", + "smw-types-default": "\"$1\" é um tipo de dados interno.", + "smw-types-help": "Mais informações e exemplos podem ser encontrados nesta [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 página de ajuda].", + "smw-type-anu": "\"$1\" é uma variante do tipo de dados [[Special:Types/URL|URL]], usada sobretudo para uma declaração de exportação ''owl:AnnotationProperty''.", + "smw-type-boo": "\"$1\" é um tipo de dados básico para descrever um valor verdadeiro ou falso.", + "smw-type-cod": "\"$1\" é uma variante do tipo de dados [[Special:Types/Text|Texto]], usado para textos técnicos de comprimento arbitrário, como listagens de código fonte.", + "smw-type-geo": "\"$1\" é um tipo de dados que descreve localizações geográficas e requer a extensão [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Mapas\"] para disponibilizar uma funcionalidade alargada.", + "smw-type-tel": "\"$1\" é um tipo de dados especial para descrever números telefónicos internacionais segundo o RFC 3966.", + "smw-type-txt": "\"$1\" é um tipo de dados básico para descrever textos (''strings'') de comprimento arbitrário.", + "smw-type-dat": "\"$1\" é um tipo de dados básico para representar pontos no tempo num formato unificado.", + "smw-type-ema": "\"$1\" é um tipo de dados especial para representar um correio eletrónico.", + "smw-type-tem": "\"$1\" é um tipo de dados numérico especial para representar uma temperatura.", + "smw-type-qty": "\"$1\" é um tipo de dados para descrever quantidades com uma representação numérica e uma unidade de medida.", + "smw-type-rec": "\"$1\" é um tipo de dados recipiente que especifica uma lista de propriedades com tipos, numa ordem fixa.", + "smw-type-extra-tem": "O esquema de conversão inclui as unidades suportadas, como Kelvin, Celsius, Fahrenheit e Rankine.", + "smw-type-tab-properties": "Propriedades", + "smw-type-tab-types": "Tipos", + "smw-type-tab-type-ids": "Identificadores de tipos", + "smw-type-tab-errors": "Erros", + "smw-type-primitive": "Básico", + "smw-type-contextual": "Contextual", + "smw-type-compound": "Composto", + "smw-type-container": "Recipiente", + "smw-type-no-group": "Não classificados", + "smw-special-pageproperty-description": "Esta página fornece uma interface de navegação para encontrar todos os valores de uma propriedade e uma determinada página. Entre as outras interfaces de pesquisa disponíveis, incluem-se a [[Special:SearchByProperty|pesquisa de propriedades]] e o [[Special:Ask|construtor de consultas ''ask'']].", + "smw-property-predefined-errc": "\"$1\" é uma propriedade predefinida, fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico], e representa erros relacionados com anotações de valor incorretas ou com o processamento de entradas.", + "smw-property-predefined-long-errc": "Os erros são recolhidos numa [https://www.semantic-mediawiki.org/wiki/Help:Container estrutura recipiente] que pode incluir uma referencia à propriedade que causou a discrepância.", + "smw-property-predefined-errt": "\"$1\" é uma propriedade predefinida que contém uma descrição textual de um erro, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-subobject-parser-invalid-naming-scheme": "Um subobjeto definido pelo utilizador continha um nome com formato inválido. O uso de um ponto ($1) nos primeiros cinco caracteres é uma notação reservada a extensões. Pode definir um [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier identificador nomeado].", + "smw-datavalue-record-invalid-property-declaration": "A definição do registo contém a propriedade \"$1\", que está definida como um tipo de registo, e isso não é permitido.", + "smw-property-predefined-mdat": "\"$1\" é uma propriedade predefinida que corresponde à data da última modificação de um assunto, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-cdat": "\"$1\" é uma propriedade predefinida que corresponde à data da primeira revisão de um assunto, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-newp": "\"$1\" é uma propriedade predefinida que indica se um assunto é novo ou não, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-ledt": "\"$1\" é uma propriedade predefinida que contém o nome da página do utilizador que criou a última revisão, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-mime": "\"$1\" é uma propriedade predefinida que descreve o tipo MIME de um ficheiro carregado, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-media": "\"$1\" é uma propriedade predefinida que descreve o tipo de multimédia de um ficheiro carregado, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-askfo": "\"$1\" é uma propriedade predefinida que contém o nome do formato de resultado usado numa consulta, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-askst": "\"$1\" é uma propriedade predefinida que descreve as condições da consulta na forma de texto, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-askdu": "\"$1\" é uma propriedade predefinida que contém o tempo (em segundos) necessário para a execução da consulta, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-asksc": "\"$1\" é uma propriedade predefinida, fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico], que identifica fontes de consulta alternativas (por exemplo, remotas, federadas).", + "smw-property-predefined-askco": "\"$1\" é uma propriedade predefinida fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico] para descrever o estado de uma consulta ou dos seus componentes.", + "smw-property-predefined-long-askco": "O número ou números atribuídos representam um estado interno codificado que é explicado na [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler página de ajuda].", + "smw-property-predefined-prec": "\"$1\" é uma propriedade predefinida que descreve a [https://www.semantic-mediawiki.org/wiki/Help:Display_precision precisão de apresentação] (em casas decimais) para os tipos de dados numéricos.", + "smw-property-predefined-attch-link": "\"$1\" é uma propriedade predefinida que recolhe as hiperligações para ficheiros e imagens encontradas numa página, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-inst": "\"$1\" é uma propriedade predefinida interna que armazena informação sobre categorias independente do MediaWiki, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-unit": "\"$1\" é uma propriedade predefinida declarativa para definir unidades de apresentação para propriedades de tipo numéricas, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-unit": "Uma lista separada por vírgulas permite descrever unidades ou formatos a serem usados para a apresentação.", + "smw-property-predefined-conv": "\"$1\" é uma propriedade predefinida declarativa para definir o fator de conversão para uma unidade de uma quantidade física, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-serv": "\"$1\" é uma propriedade predefinida declarativa para adicionar ligações de serviços a uma propriedade, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-redi": "\"$1\" é uma propriedade predefinida interna para registar redirecionamentos, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-subp": "\"$1\" é uma propriedade predefinida declarativa usada para definir que uma propriedade é uma [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of subpropriedade de] outra, e é fornecida pelo [https://www.semantic- mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-subc": "\"$1\" é uma propriedade predefinida usada para definir que uma categoria é uma [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of subcategoria de] outra, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-conc": "\"$1\" é uma propriedade predefinida interna usada para definir um conceito associado, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-err-type": "\"$1\" é uma propriedade predefinida para identificar um grupo ou classe de [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors erros de processamento], e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-skey": "\"$1\" é uma propriedade predefinida interna para manter uma referência de ordenação, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-pplb": "\"$1\" é uma propriedade predefinida declarativa para especificar uma [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label etiqueta de propriedade preferida], e é fornecida pelo [https://www.semantic- mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-chgpro": "\"$1\" é uma propriedade predefinida para manter informação de [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation propagação de mudanças], e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-schema-link": ", e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-format-schema": ", e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-profile-schema": ", e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-trans": ", e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-trans-source": ", e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-trans-group": ", e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-cont-len": "\"$1\" é uma propriedade predefinida para armazenar informações de tamanho, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-cont-len": "É usada em ligação com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coligir e armazenar informações de tamanho obtidas de um ficheiro ingerido (se fornecidas).", + "smw-property-predefined-cont-lang": "\"$1\" é uma propriedade predefinida para armazenar informação sobre a língua, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-cont-lang": "É usada em ligação com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coligir e armazenar informações sobre a língua obtidas de um ficheiro ingerido (se fornecidas).", + "smw-property-predefined-cont-title": "\"$1\" é uma propriedade predefinida para armazenar informações sobre o título, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-cont-title": "É usada em ligação com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coligir e armazenar informações sobre o título obtidas de um ficheiro ingerido (se fornecidas).", + "smw-property-predefined-cont-author": "\"$1\" é uma propriedade predefinida para armazenar informações sobre o autor, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-cont-author": "É usada em ligação com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coligir e armazenar informações sobre o autor obtidas de um ficheiro ingerido (se fornecidas).", + "smw-property-predefined-cont-date": "\"$1\" é uma propriedade predefinida para armazenar informações sobre a data, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-cont-date": "É usada em ligação com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coligir e armazenar informações sobre a data obtidas de um ficheiro ingerido (se fornecidas).", + "smw-property-predefined-cont-type": "\"$1\" é uma propriedade predefinida para armazenar informações sobre o tipo do ficheiro, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-cont-type": "É usada em ligação com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coligir e armazenar informações sobre o tipo do ficheiro obtidas de um ficheiro ingerido (se fornecidas).", + "smw-property-predefined-cont-keyw": "\"$1\" é uma propriedade predefinida para representar palavras-chave, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-cont-keyw": "É usada em ligação com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coligir e armazenar palavras-chave obtidas de um ficheiro ingerido (se fornecidas).", + "smw-property-predefined-file-attch": "\"$1\" é uma propriedade predefinida para representar um recipiente que armazena informação sobre anexos, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-file-attch": "É usada em ligação com o [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (e o [https://www.semantic-mediawiki.org/Attachment_processor processador de anexos]) para coligir todas as informações específicas do conteúdo que podem ser obtidas de um ficheiro ingerido (se fornecidas).", + "smw-types-extra-geo-not-available": "Não foi detetada a [https://www.semantic-mediawiki.org/wiki/Extension:Maps extensão \"Mapas\"], portanto, \"$1\" está restringido na sua capacidade operacional.", + "smw-datavalue-monolingual-dataitem-missing": "Falta um elemento esperado para construir um valor composto monolingue.", + "smw-datavalue-languagecode-missing": "Para a anotação \"$1\", o analisador sintático não conseguiu determinar o código de língua (isto é, \"algo@pt\").", + "smw-datavalue-languagecode-invalid": "\"$1\" não foi reconhecido como um código de língua suportado.", + "smw-property-predefined-lcode": "\"$1\" é uma propriedade predefinida que representa um código de língua formatado BCP47, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-type-mlt-rec": "\"$1\" é um tipo de dados [https://www.semantic-mediawiki.org/wiki/Help:Container recipiente] (container) que associa um valor em texto a um [[Property:Language code|código de língua]] específico.", + "smw-types-extra-mlt-lcode": "O tipo de dados {{PLURAL:$2|necessita|não necessita}} de um código de língua (ou seja, uma anotação de valor sem um código de língua {{PLURAL:$2|não é|é}} aceite).", + "smw-property-predefined-text": "\"$1\" é uma propriedade predefinida que representa texto de comprimento arbitrário, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-pdesc": "\"$1\" é uma propriedade predefinida que permite descrever uma propriedade no contexto de uma língua, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-list": "\"$1\" é uma propriedade predefinida, para definir uma lista de propriedades usadas com uma propriedade de tipo [[Special:Types/Record|registo]], e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-limitreport-intext-parsertime": "[SMW] Tempo de análise sintática das anotações de texto", + "smw-limitreport-intext-postproctime": "[SMW] tempo pós-processamento", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|segundo|segundos}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|segundo|segundos}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Tempo de atualização de armazenamento (na purga de páginas)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|segundo|segundos}}", + "smw_allows_pattern": "É esperado que esta página contenha uma lista de referências (seguidas por [https://en.wikipedia.org/wiki/Regular_expression expressões regulares]) que serão disponibilizadas pela propriedade [[Property:Allows pattern|Padrão permitido]]. Para editar esta página é necessária a permissão smw-patternedit.", + "smw-datavalue-allows-pattern-mismatch": "\"$1\" foi considerada inválida pela expressão regular \"$2\".", + "smw-datavalue-allows-pattern-reference-unknown": "A referência \"$1\" do padrão permitido não foi encontrada na página [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "A referência de lista \"$1\" não tem correspondência com uma página [[MediaWiki:Smw allows list $1]].", + "smw-datavalue-allows-value-list-missing-marker": "O conteúdo da lista \"$1\" não contém elementos com o marcador de lista *.", + "smw-datavalue-feature-not-supported": "A funcionalidade \"$1\" não é suportada, ou foi desativada, nesta wiki.", + "smw-property-predefined-pvap": "\"$1\" é uma propriedade predefinida, que pode especificar uma [[MediaWiki:Smw allows pattern|referência de padrão permitido]] para aplicar uma [https://en.wikipedia.org/wiki/Regular_expression expressão regular], e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-dtitle": "\"$1\" é uma propriedade predefinida que pode atribuir a uma entidade um título de apresentação distinto, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-pvuc": "\"$1\" é uma propriedade predefinida, fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico], para restringir a valores únicos (ou a um, no máximo) a atribuição de valores para cada instância.", + "smw-property-predefined-long-pvuc": "A unicidade é estabelecida quando as representações literais de dois valores não são iguais e qualquer violação desta restrição será categorizada como erro.", + "smw-datavalue-constraint-uniqueness-violation": "A propriedade \"$1\" só permite a atribuição de valores únicos e ''$2'' já foi anotado no assunto \"$3\".", + "smw-datavalue-constraint-uniqueness-violation-isknown": "A propriedade \"$1\" só permite anotações de valores únicos, ''$2'' já contém um valor atribuído. \"$3\" viola a restrição de unicidade.", + "smw-datavalue-constraint-violation-non-negative-integer": "A propriedade \"$1\" tem uma restrição \"inteiro não negativo\" e o valor ''$2'' viola aquele requisito.", + "smw-datavalue-constraint-violation-must-exists": "A propriedade \"$1\" tem uma restrição must_exists e o valor ''$2'' viola aquele requisito.", + "smw-datavalue-constraint-violation-single-value": "A propriedade \"[[Property:$1|$1]]\" tem uma restrição single_value e o valor \"$2\" viola aquele requisito.", + "smw-constraint-violation-uniqueness": "Está atribuída à propriedade \"[[Property:$1|$1]]\" uma restrição unique_value_constraint, que só permite atribuições de valores exclusivos, e a anotação de valor \"$2\" já foi encontrada no assunto \"$3\".", + "smw-constraint-violation-uniqueness-isknown": "Está atribuída à propriedade \"[[Property:$1|$1]]\" uma restrição unique_value_constraint, que só permite atribuições de valores exclusivos. ''$2'' já contém um valor anotado com \"$3\", o que viola a restrição de unicidade do assunto corrente.", + "smw-constraint-violation-non-negative-integer": "Está atribuída à propriedade \"[[Property:$1|$1]]\" uma restrição non_negative_integer, que só permite atribuições de números inteiros não negativos, e a anotação de valor \"$2\" viola o requisito da restrição.", + "smw-constraint-violation-must-exists": "Está atribuída à propriedade \"[[Property:$1|$1]]\" uma restrição must_exists, e a anotação de valor \"$2\" viola o requisito da restrição.", + "smw-constraint-violation-single-value": "Está atribuída à propriedade \"[[Property:$1|$1]]\" uma restrição single_value, e a anotação de valor \"$2\" viola o requisito da restrição.", + "smw-constraint-violation-class-shape-constraint-missing-property": "Está atribuída à categoria \"[[:$1]]\" uma restrição shape_constraint com uma chave property, e a propriedade \"$2\" exigida está em falta.", + "smw-constraint-violation-class-shape-constraint-wrong-type": "Está atribuída à categoria \"[[:$1]]\" uma restrição shape_constraint com uma chave property_type, e a propriedade \"$2\" não corresponde ao tipo de \"$3\".", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "Está atribuída à categoria \"[[:$1]]\" uma restrição shape_constraint com uma chave max_cardinality, e a propriedade \"$2\" não corresponde à cardinalidade de \"$3\".", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "Está atribuída à categoria \"[[:$1]]\" uma restrição shape_constraint com uma chave min_textlength, e a propriedade \"$2\" não respeita o requisito de comprimento de \"$3\".", + "smw-constraint-violation-class-mandatory-properties-constraint": "Está atribuída à categoria \"[[:$1]]\" uma restrição mandatory_properties que requer as seguintes propriedades obrigatórias: $2", + "smw-constraint-violation-allowed-namespace-no-match": "Está atribuída à propriedade \"[[Property:$1|$1]]\" uma restrição allowed_namespaces, e \"$2\" viola o requisito do espaço nominal, só sendo permitidos os espaços nominais \"$3\".", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "A restrição allowed_namespaces requer um tipo de página.", + "smw-constraint-schema-category-invalid-type": "O esquema anotado \"$1\" é inválido para uma categoria e requer um tipo \"$2\".", + "smw-constraint-schema-property-invalid-type": "O esquema anotado \"$1\" é inválido para uma propriedade e requer um tipo \"$2\".", + "smw-constraint-error-allows-value-list": "\"$1\" não está na lista ($2) dos [[Property:Allows value|valores permitidos]] para a propriedade \"$3\".", + "smw-constraint-error-allows-value-range": "\"$1\" não está no intervalo de \"$2\" especificado pela restrição [[Property:Allows value|permite valor]] da propriedade \"$3\".", + "smw-property-predefined-boo": "\"$1\" é um [[Special:Types/Boolean|tipo]] e uma propriedade predefinida, fornecidos pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico] para representar valores boolianos.", + "smw-property-predefined-num": "\"$1\" é um [[Special:Types/Number|tipo]] e uma propriedade predefinida, fornecidos pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico] para representar valores numéricos.", + "smw-property-predefined-dat": "\"$1\" é um [[Special:Types/Date|tipo]] e uma propriedade predefinida, fornecidos pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico] para representar valores de datas.", + "smw-property-predefined-uri": "\"$1\" é um [[Special:Types/URL|tipo]] e uma propriedade predefinida, fornecidos pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico] para representar valores URI/URL.", + "smw-property-predefined-qty": "\"$1\" é um [[Special:Types/Quantity|tipo]] e uma propriedade predefinida, fornecidos pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico] para representar valores de quantidade.", + "smw-datavalue-time-invalid-offset-zone-usage": "\"$1\" contém um desfasamento e um indicador de zona que não são suportados.", + "smw-datavalue-time-invalid-values": "O valor \"$1\" contém informação que não pode ser interpretada, na forma \"$2\".", + "smw-datavalue-time-invalid-date-components-common": "\"$1\" contém alguma informação que não pode ser interpretada.", + "smw-datavalue-time-invalid-date-components-dash": "\"$1\" contém um travessão ou traço de ligação extrínseco ou outros caracteres que são inválidos na interpretação de uma data.", + "smw-datavalue-time-invalid-date-components-empty": "\"$1\" contém alguns componentes vazios.", + "smw-datavalue-time-invalid-date-components-three": "\"$1\" contém mais de três componentes necessários para a interpretação de uma data.", + "smw-datavalue-time-invalid-date-components-sequence": "\"$1\" contém uma sequência que não foi possível interpretar contra uma matriz de correspondências disponível para componentes de datas.", + "smw-datavalue-time-invalid-ampm": "\"$1\" contém \"$2\" como elemento hora, que é inválido no formato de relógio de 12 horas.", + "smw-datavalue-time-invalid-jd": "Não foi possível interpretar o valor de entrada \"$1\" como um dia válido no calendário Juliano, tendo sido reportado \"$2\".", + "smw-datavalue-time-invalid-prehistoric": "Não é possível interpretar o valor de entrada pré-histórico \"$1\". Por exemplo, especificar mais do que anos, ou do que um modelo de calendário, poderá produzir resultados inesperados num contexto pré-histórico.", + "smw-datavalue-time-invalid": "Não foi possível interpretar o valor de entrada \"$1\" como uma data válida ou como um componente para expressão de tempo, tendo sido reportado \"$2\".", + "smw-datavalue-external-formatter-uri-missing-placeholder": "Falta o espaço reservado \"$1\" no URI do formatador.", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\" é um URL inválido.", + "smw-datavalue-external-identifier-formatter-missing": "Falta à propriedade a atribuição de um [[Property:External formatter uri|\"URI de formatador externo\"]].", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "O identificador externo \"$1\" espera uma substituição de vários campos, mas falta ao valor atual \"$2\" pelo menos um parâmetro de valor para cumprir o requisito.", + "smw-datavalue-keyword-maximum-length": "A palavra-chave excedeu o tamanho máximo de $1 {{PLURAL:$1|carácter|caracteres}}.", + "smw-property-predefined-eid": "\"$1\" é um [[Special:Types/External identifier|tipo]] e uma propriedade predefinida, fornecidos pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico] para representar identificadores externos.", + "smw-property-predefined-peid": "\"$1\" é uma propriedade predefinida que especifica um identificador externo, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-pefu": "\"$1\" é uma propriedade predefinida fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico] para especificar um recurso externo com um espaço reservado.", + "smw-property-predefined-long-pefu": "Espera-se que o URI contenha um espaço reservado que será ajustado com um valor de [[Special:Types/External identifier|identificador externo]] para formar uma referência de recursos válida.", + "smw-type-eid": "\"$1\" é uma variante do tipo de dados [[Special:Types/Text|texto]] para descrever recursos externos (baseados em URI) e requer propriedades atribuídas para declarar um [[Property:External formatter uri|URI de formatador externo]].", + "smw-property-predefined-keyw": "\"$1\" é uma propriedade predefinida e um [[Special:Types/Keyword|tipo]], fornecidas pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico], que normalizam um texto e têm um tamanho restrito de caracteres.", + "smw-type-keyw": "\"$1\" é uma variante do tipo de dados de [[Special:Types/Text|texto]] que tem um tamanho limitado de caracteres com uma representação do conteúdo normalizada.", + "smw-datavalue-stripmarker-parse-error": "O valor fornecido, \"$1\", contém [https://en.wikipedia.org/wiki/Help:Strip_markers marcadores do analisador sintático] e não pode ser suficientemente analisado.", + "smw-datavalue-parse-error": "O valor fornecido, \"$1\", não foi compreendido.", + "smw-datavalue-propertylist-invalid-property-key": "A lista de propriedades \"$1\" continha uma chave de propriedade inválida \"$2\".", + "smw-datavalue-type-invalid-typeuri": "Não foi possível transformar o tipo \"$1\" numa representação URI válida.", + "smw-datavalue-wikipage-missing-fragment-context": "O valor de entrada \"$1\" da página da wiki não pode ser usado sem uma página de contexto.", + "smw-datavalue-wikipage-invalid-title": "O valor de entrada \"$1\" do tipo de página contém caracteres inválidos ou está incompleto e, portanto, pode provocar resultados inesperados numa consulta ou num processo de anotação.", + "smw-datavalue-wikipage-property-invalid-title": "A propriedade \"$1\" (como tipo de página) com o valor de entrada \"$2\" contém caracteres inválidos ou está incompleta e, portanto, pode provocar resultados inesperados numa consulta ou num processo de anotação.", + "smw-datavalue-wikipage-empty": "O valor de entrada da página da wiki está vazio (por exemplo, [[SomeProperty::]], [[]]) e, portanto, não pode ser usado como nome ou como parte da condição de uma consulta.", + "smw-type-ref-rec": "\"$1\" é um tipo de dados [https://www.semantic-mediawiki.org/wiki/Container recipiente] (container) que permite registar informação adicional sobre a atribuição de um valor (por exemplo, dados de proveniência).", + "smw-datavalue-reference-invalid-fields-definition": "O tipo [[Special:Types/Reference|Referência]] espera que seja declarada uma lista de propriedades, usando a propriedade [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Tem campos].", + "smw-parser-invalid-json-format": "O analisador JSON terminou com \"$1\".", + "smw-property-preferred-label-language-combination-exists": "\"$1\" não pode ser usado como etiqueta preferida porque a língua \"$2\" já está atribuída à etiqueta \"$3\".", + "smw-clipboard-copy-link": "Copiar hiperligação para a área de transferência", + "smw-property-userdefined-fixedtable": "\"$1\" estava configurada como [https://www.semantic-mediawiki.org/wiki/Fixed_properties propriedade fixa] e qualquer modificação da sua [https://www.semantic-mediawiki.org/wiki/Type_declaration declaração de tipo] requer: ou que seja executado setupStore.php, ou que seja completada a tarefa especial [[Special:SemanticMediaWiki|\"Instalação e atualização da base de dados\"]].", + "smw-data-lookup": "A obter dados...", + "smw-data-lookup-with-wait": "O pedido está a ser processado e pode levar algum tempo.", + "smw-no-data-available": "Não há dados disponíveis.", + "smw-property-req-violation-missing-fields": "Falta à propriedade \"$1\" uma declaração obrigatória [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] para este tipo de \"$2\".", + "smw-property-req-violation-multiple-fields": "A propriedade \"$1\" contém mais do que uma declaração (neste caso, em concorrência) [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields]; é esperada uma única para este tipo de \"$2\".", + "smw-property-req-violation-missing-formatter-uri": "Faltam, à propriedade \"$1\", detalhes de declaração para o tipo anotado porque não foi definida a propriedade URI do formatador externo.", + "smw-property-req-violation-predefined-type": "A propriedade \"$1\", como propriedade predefinida, contém uma declaração de tipo \"$2\" que é incompatível com o tipo padrão desta propriedade.", + "smw-property-req-violation-import-type": "Foi detetada uma declaração de tipo que é incompatível com o tipo predefinido do vocabulário importado \"$1\". Em geral, não é necessário declarar um tipo porque são obtidas informações da definição da importação.", + "smw-property-req-violation-change-propagation-locked-error": "A propriedade \"$1\" foi alterada e requer que as entidades atribuídas sejam reavaliadas usando um processo de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagação de alterações]. A página da propriedade foi trancada até que a atualização da especificação primária esteja finalizada para impedir interrupções intermédias ou especificações contraditórias. O processo pode demorar algum tempo até que a página possa ser destrancada porque depende do tamanho e frequência da [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue fila de tarefas].", + "smw-property-req-violation-change-propagation-locked-warning": "A propriedade \"$1\" foi alterada e requer que as entidades atribuídas sejam reavaliadas usando um processo de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagação de alterações]. A atualização pode demorar algum tempo porque depende do tamanho e frequência da [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue fila de tarefas] e é sugerido que as alterações da propriedade sejam adiadas para impedir interrupções intermédias ou especificações contraditórias.", + "smw-property-req-violation-change-propagation-pending": "Estão pendentes atualizações devidas à [https://www.semantic-mediawiki.org/wiki/Change_propagation propagação de alterações] ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|tarefa estimada|tarefas estimadas}}]) e é recomendado que não altere propriedades até que o processo esteja finalizado, para impedir interrupções intermédias ou especificações contraditórias.", + "smw-property-req-violation-missing-maps-extension": "O MediaWiki Semântico não conseguiu detetar a extensão [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"], que é um pré-requisito e, em consequência, limita a funcionalidade (isto é, impede de armazenar ou processar dados geográficos) desta propriedade.", + "smw-property-req-violation-type": "A propriedade contém especificações de tipo concorrentes, que podem resultar em anotações de valor inválidas; é, portanto, esperado que um(a) utilizador(a) atribua um tipo adequado.", + "smw-property-req-error-list": "A propriedade contém os seguintes erros ou avisos:", + "smw-property-req-violation-parent-type": "A propriedade \"$1\" e a propriedade mãe atribuída \"$2\" têm anotações de tipos diferentes.", + "smw-property-req-violation-forced-removal-annotated-type": "A aplicação da [https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance herança obrigatória do tipo da propriedade mãe] está ativada, o tipo anotado para a propriedade \"$1\" não corresponde ao tipo \"$2\" da sua propriedade mãe e foi alterado para refletir aquele requisito. É recomendado ajustar a definição do tipo na página, para que a mensagem de erro e aplicação obrigatória sejam removidas desta propriedade.", + "smw-change-propagation-protection": "Esta página está trancada para evitar modificações acidentais dos dados durante uma atualização devida à [https://www.semantic-mediawiki.org/wiki/change_propagation propagação de alterações]. O processo pode demorar algum tempo a destrancar a página porque depende do tamanho e da frequência da gestão da [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue fila de tarefas].", + "smw-category-change-propagation-locked-error": "A categoria \"$1\" foi alterada e requer que as entidades atribuídas sejam reavaliadas usando um processo de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagação de alterações]. Entretanto, a página da categoria foi trancada até que a atualização da especificação primária esteja finalizada para impedir interrupções intermédias ou especificações contraditórias. O processo pode demorar algum tempo até destrancar a página porque depende do tamanho e da frequência da gestão da [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue fila de tarefas].", + "smw-category-change-propagation-locked-warning": "A categoria \"$1\" foi alterada e requer que as entidades atribuídas sejam reavaliadas usando um processo de [https://www.semantic-mediawiki.org/wiki/Change_propagation propagação de alterações]. A atualização pode demorar algum tempo porque depende do tamanho e frequência da [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue fila de tarefas] e é sugerido que adie alterações à categoria para impedir interrupções intermédias ou especificações contraditórias.", + "smw-category-change-propagation-pending": "Estão pendentes atualizações devidas à [https://www.semantic-mediawiki.org/wiki/Change_propagation propagação de alterações] ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|tarefa estimada|tarefas estimadas}}]) e é recomendado que aguarde até que o processo esteja finalizado antes de fazer alterações à categoria, para impedir interrupções intermédias ou especificações contraditórias.", + "smw-category-invalid-value-assignment": "\"$1\" não é reconhecido como categoria válida ou anotação de valor.", + "protect-level-smw-pageedit": "Permitir só utilizadores com permissão de edição de páginas (MediaWiki Semântico)", + "smw-create-protection": "A criação da propriedade \"$1\" está restrita a utilizadores com o direito \"$2\" ou um [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups grupo de utilizadores] apropriado enquanto o [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoridade] está ativado.", + "smw-create-protection-exists": "A alteração da propriedade \"$1\" está restrita a utilizadores com o direito \"$2\" ou um [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups grupo de utilizadores] apropriado enquanto o [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode modo de autoridade] está ativado.", + "smw-edit-protection": "Esta página está [[Property:Is edit protected|protegida]] para impedir a modificação acidental de dados e só pode ser editada por utilizadores com o direito de edição (\"$1\") ou que estão no [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups grupo de utilizadores] apropriado.", + "smw-edit-protection-disabled": "A proteção contra edições foi desativada, portanto, a propriedade \"$1\" não pode ser usada para proteger páginas de entidades contra edições não autorizadas.", + "smw-edit-protection-auto-update": "O MediaWiki Semântico atualizou o estado de proteção de acordo com a propriedade \"Está protegida contra edições\".", + "smw-edit-protection-enabled": "Protegida contra edições (MediaWiki Semântico)", + "smw-patternedit-protection": "Esta página está protegida e só pode ser editada por utilizadores com a smw-patternedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions permissão] apropriada.", + "smw-property-predefined-edip": "\"$1\" é uma propriedade predefinida fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico] para indicar se a página está protegida contra edições ou não.", + "smw-property-predefined-long-edip": "Embora qualquer utilizador possa adicionar esta propriedade a um assunto, só um utilizador com uma permissão específica pode editar ou revogar a proteção de uma entidade após essa proteção ter sido adicionada.", + "smw-query-reference-link-label": "Referência de consulta", + "smw-format-datatable-emptytable": "Não há dados disponíveis na tabela", + "smw-format-datatable-info": "A mostrar entradas _START_ a _END_, de _TOTAL_", + "smw-format-datatable-infoempty": "A mostrar entradas 0 a 0, de 0", + "smw-format-datatable-infofiltered": "(filtradas de _MAX_ entradas no total)", + "smw-format-datatable-infothousands": " ", + "smw-format-datatable-lengthmenu": "Mostrar _MENU_ entradas", + "smw-format-datatable-loadingrecords": "A carregar…", + "smw-format-datatable-processing": "A processar...", + "smw-format-datatable-search": "Pesquisar:", + "smw-format-datatable-zerorecords": "Não foram encontrados registos com correspondências", + "smw-format-datatable-first": "Primeiro", + "smw-format-datatable-last": "Último", + "smw-format-datatable-next": "Próximo", + "smw-format-datatable-previous": "Anterior", + "smw-format-datatable-sortascending": ": ativar para ordenar a coluna por ordem crescente", + "smw-format-datatable-sortdescending": ": ativar para ordenar a coluna por ordem decrescente", + "smw-format-datatable-toolbar-export": "Exportar", + "smw-category-invalid-redirect-target": "A categoria \"$1\" contém um destino inválido de redirecionamento para um espaço nominal que não é de categorias.", + "smw-parser-function-expensive-execution-limit": "A função do analisador sintático atingiu o limite para execuções de funções exigentes (consulte o parâmetro de configuração [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "O MediaWiki Semântico está a recarregar a página atual devido à necessidade de algum processamento após a consulta.", + "apihelp-smwinfo-summary": "Módulo da API para obter informação sobre estatísticas e outra metainformação do MediaWiki Semântico.", + "apihelp-ask-summary": "Módulo da API para consultar o MediaWiki Semântico usando a linguagem \"ask\".", + "apihelp-askargs-summary": "Módulo da API para consultar o MediaWiki Semântico usando a linguagem \"ask\" na forma de lista de condições, propriedades a mostrar e parâmetros.", + "apihelp-browsebyproperty-summary": "Módulo da API para obter informação sobre uma propriedade ou lista de propriedades.", + "apihelp-browsebysubject-summary": "Módulo da API para obter informação sobre um assunto.", + "apihelp-smwtask-summary": "Módulo da API para executar tarefas relacionadas com o MediaWiki Semântico (só para uso interno, não para uso público).", + "apihelp-smwbrowse-summary": "Módulo da API para suportar atividades de navegação para diferentes tipos de entidades no MediaWiki Semântico.", + "apihelp-ask-parameter-api-version": "Formatação da saída:\n;2:Formato compatível com versões anteriores, usando {} para a lista de resultados.\n;3:Formato experimental, usando [] como lista de resultados.", + "apihelp-smwtask-param-task": "Define o tipo de tarefa", + "apihelp-smwtask-param-params": "Parâmetros codificados JSON que correspondem ao requisito do tipo de tarefa selecionado", + "smw-apihelp-smwtask-example-update": "Exemplo da execução de uma tarefa de atualização para um assunto específico:", + "smw-api-invalid-parameters": "Parâmetros inválidos, \"$1\"", + "smw-parser-recursion-level-exceeded": "O nível de $1 recursões foi excedido durante um processo de análise sintática. É sugerido que valide a estrutura de predefinições, ou que ajuste o parâmetro de configuração $maxRecursionDepth se necessário.", + "smw-property-page-list-count": "A apresentar {{PLURAL:$1|uma página que usa|$1 páginas que usam}} esta propriedade.", + "smw-property-page-list-search-count": "A apresentar {{PLURAL:$1|uma página que usa|$1 páginas que usam}} esta propriedade com uma correspondência de valor \"$2\".", + "smw-property-page-filter-note": "O [https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter filtro de pesquisa] permite a inclusão de [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions expressões de consulta] como ~ ou ! . O [https://www.semantic-mediawiki.org/wiki/Query_engine motor de consultas] selecionado também pode oferecer suporte de correspondência que não diferencia maiúsculas de minúsculas ou outras expressões curtas como:\n\n* in: o resultado deve incluir o termo, por exemplo: 'in:Foo'\n\n* not: o resultado não deve incluir o termo, por exemplo: 'not:Bar'", + "smw-property-reserved-category": "Categoria", + "smw-category": "Categoria", + "smw-datavalue-uri-invalid-scheme": " \"$1\" não foi listado como um esquema URI válido.", + "smw-datavalue-uri-invalid-authority-path-component": "Foi identificado que \"$1\" contém uma autoridade ou um componente de caminho \"$2\" inválido.", + "smw-browse-property-group-title": "Grupo de propriedades", + "smw-browse-property-group-label": "Etiqueta do grupo de propriedades", + "smw-browse-property-group-description": "Descrição do grupo de propriedades", + "smw-property-predefined-ppgr": "\"$1\" é uma propriedade predefinida que identifica as entidades (principalmente as categorias) que são utilizadas como instâncias de agrupamento para as propriedades, e é fornecida pela extensão [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-filter": "Filtro", + "smw-section-expand": "Expandir a secção", + "smw-section-collapse": "Recolher a secção", + "smw-ask-format-help-link": "Formato [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Ajuda", + "smw-cheat-sheet": "Auxiliar", + "smw-personal-jobqueue-watchlist": "Lista de vigilância da fila de tarefas", + "smw-personal-jobqueue-watchlist-explain": "Os números indicam uma estimativa das entradas da fila de tarefas que aguardam execução.", + "smw-property-predefined-label-skey": "Chave de ordenação", + "smw-processing": "A processar...", + "smw-loading": "A carregar...", + "smw-fetching": "A procurar...", + "smw-preparing": "A preparar...", + "smw-expand": "Expandir", + "smw-collapse": "Recolher", + "smw-copy": "Copiar", + "smw-copy-clipboard-title": "Copia o conteúdo para a área de transferência", + "smw-jsonview-expand-title": "Expande a vista JSON", + "smw-jsonview-collapse-title": "Recolhe a vista JSON", + "smw-jsonview-search-label": "Pesquisar:", + "smw-redirect-target-unresolvable": "O destino é irresolúvel pela razão \"$1\"", + "smw-types-title": "Tipo: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "Não é permitido alterar o modelo de conteúdo de uma [https://www.semantic-mediawiki.org/wiki/Help:Schema página de esquema].", + "smw-schema-namespace-edit-protection": "Esta página está protegida e só pode ser editada por utilizadores com a [https://www.semantic-mediawiki.org/wiki/Help:Permissions permissão] smw-schemaedit adequada.", + "smw-schema-namespace-edit-protection-by-import-performer": "Esta página foi importada por um [https://www.semantic-mediawiki.org/wiki/Import_performer realizador de importações] listado e isso significa que alterar o conteúdo desta página está restringido somente aos utilizadores listados.", + "smw-schema-error-title": "{{PLURAL:$1|Erro|Erros}} de validação", + "smw-schema-error-schema": "O esquema de validação '''$1''' identificou as seguintes inconsistências:", + "smw-schema-error-miscellaneous": "Erro variado ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "O validador JSON \"$1\" não está acessível (ou não foi instalado) e por este motivo o ficheiro \"$2\" não pode ser examinado, o que impede que a página corrente seja gravada ou alterada.", + "smw-schema-error-validation-file-inaccessible": "O ficheiro de validação \"$1\" não está acessível.", + "smw-schema-error-type-missing": "Falta um tipo ao conteúdo para este ser reconhecido e utilizável no [https://www.semantic-mediawiki.org/wiki/Help:Schema espaço nominal/domínio do esquema].", + "smw-schema-error-type-unknown": "O tipo \"$1\" não está registado e não pode ser usado para conteúdo no espaço nominal/domínio [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-error-json": "Erro JSON: \"$1\"", + "smw-schema-error-input": "A validação da entrada encontrou os seguintes problemas, que precisam de ser endereçados antes de poder guardar o conteúdo. A página de [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling ajuda sobre esquemas] pode conter alguns conselhos sobre como remover inconsistências ou resolver problemas com o esquema da entrada.", + "smw-schema-error-input-schema": "O esquema de validação '''$1''' encontrou as seguintes inconsistências, e estas precisam de ser endereçadas antes de poder guardar o conteúdo. A página de [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling ajuda sobre esquemas] pode conter alguns conselhos sobre como resolver estes problemas.", + "smw-schema-error-title-prefix": "Este tipo de esquema requer que o título do esquema comece com um prefixo \"$1\".", + "smw-schema-validation-error": "O tipo \"$1\" não está registado e não pode ser usado para conteúdo no espaço nominal/domínio [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-validation-schema-title": "Esquema JSON", + "smw-schema-summary-title": "Resumo", + "smw-schema-title": "Esquema", + "smw-schema-usage": "Uso", + "smw-schema-type": "Tipo de esquema", + "smw-schema-type-description": "Descrição do tipo", + "smw-schema-description": "Descrição do esquema", + "smw-schema-description-link-format-schema": "Este tipo de esquema permite a definição de características para criar hiperligações dependentes do contexto com relação a uma propriedade atribuída de [[Property:Formatter schema|esquema formatador]].", + "smw-schema-description-search-form-schema": "Este tipo de esquema permite a definição de formulários de entrada, e características para o perfil de [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch pesquisa avançada], onde este contém instruções para gerar campos de introdução de dados, definir espaços nominais/domínios padrão, ou declarar expressões prefixo para um pedido de pesquisa.", + "smw-schema-description-property-profile-schema": "Este tipo de esquema suporta a definição de um perfil para declarar características à propriedade atribuída e seus valores de anotação.", + "smw-schema-description-property-group-schema": "Este tipo de esquema permite a definição de [https://www.semantic-mediawiki.org/wiki/Help:Property_group grupos de propriedades] para ajudarem a estruturar a interface de [https://www.semantic-mediawiki.org/wiki/Help:Special:Browse navegação].", + "smw-schema-description-property-constraint-schema": "Isto permite a definição de regras de restrição para uma instância de propriedade, assim como os valores que lhe sejam atribuídos.", + "smw-schema-description-class-constraint-schema": "Este tipo de esquema permite a definição de regras de restrição para uma instância de classe (também designada categoria).", + "smw-schema-tag": "{{PLURAL:$1|Etiqueta|Etiquetas}}", + "smw-property-predefined-constraint-schema": "\"$1\" é uma propriedade predefinida que define um esquema de restrição, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-schema-desc": "\"$1\" é uma propriedade predefinida que armazena uma descrição de esquema, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-schema-def": "\"$1\" é uma propriedade predefinida que armazena o conteúdo do esquema, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-schema-tag": "\"$1\" é uma propriedade predefinida fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico] para identificar um conjunto de esquemas.", + "smw-property-predefined-long-schema-tag": "Uma etiqueta que identifica esquemas de conteúdos ou características semelhantes.", + "smw-property-predefined-schema-type": "\"$1\" é uma propriedade predefinida que descreve um tipo para distinguir um grupo de esquemas, e é fornecida pelo [https://www.semantic-mediawiki.org/wiki/Help:Special_properties MediaWiki Semântico].", + "smw-property-predefined-long-schema-type": "Cada [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type tipo] fornece a sua própria interpretação dos elementos sintáticos e das regras de aplicação, e pode ser expresso com a ajuda de um [https://www.semantic-mediawiki.org/wiki/Help:Schema#validation esquema de validação].", + "smw-ask-title-keyword-type": "Procurar palavra-chave", + "smw-ask-message-keyword-type": "Esta pesquisa coincide com a condição $1.", + "smw-remote-source-unavailable": "Não foi possível estabelecer ligação ao destino \"$1\" remoto.", + "smw-remote-source-disabled": "A fonte '''$1''' desativou o suporte de pedidos remotos!", + "smw-remote-source-unmatched-id": "A fonte '''$1''' não corresponde a nenhuma versão do MediaWiki Semântico que possa suportar um pedido remoto.", + "smw-remote-request-note": "O resultado é obtido da fonte remota '''$1''' e é provável que o conteúdo gerado contenha informação que não está disponível na wiki corrente.", + "smw-remote-request-note-cached": "O resultado é '''armazenado em cache''' a partir da fonte remota '''$1''' e é provável que o conteúdo gerado contenha informação que não está disponível na wiki corrente.", + "smw-parameter-missing": "O parâmetro \"$1\" está em falta.", + "smw-property-tab-usage": "Uso", + "smw-property-tab-profile-schema": "Esquema de perfil", + "smw-property-tab-redirects": "Sinónimos", + "smw-property-tab-subproperties": "Subpropriedades", + "smw-property-tab-errors": "Atribuições indevidas", + "smw-property-tab-constraint-schema": "Esquema de restrição", + "smw-property-tab-constraint-schema-title": "Esquema de restrição compilado", + "smw-property-tab-specification": "... mais", + "smw-concept-tab-list": "Lista", + "smw-concept-tab-errors": "Erros", + "smw-ask-tab-result": "Resultado", + "smw-ask-tab-extra": "Extra", + "smw-ask-tab-debug": "Despistagem de defeitos", + "smw-ask-tab-code": "Código", + "smw-install-incomplete-tasks-title": "Tarefas de administração incompletas", + "smw-install-incomplete-intro": "Há $2 {{PLURAL:$2|tarefa incompleta|tarefas incompletas}} ou [[Special:PendingTaskList|{{PLURAL:$2|pendente|pendentes}}]] para terminar a {{PLURAL:$1| instalação|atualização}} do [https://www.semantic-mediawiki.org MediaWiki Semântico]. Um administrador ou outro utilizador com direitos suficientes pode {{PLURAL:$2|completá-la|completá-las}}. Isto deve ser feito antes de adicionar dados novos, para evitar inconsistências.", + "smw-install-incomplete-intro-note": "Esta mensagem desaparecerá depois de todas as tarefas relevantes terem sido concluídas.", + "smw-pendingtasks-intro-empty": "Nenhuma tarefa relacionada com o MediaWiki Semântico foi classificada como pendente, incompleta ou por executar.", + "smw-pendingtasks-intro": "Esta página fornece informações sobre tarefas relacionadas com o MediaWiki Semântico que foram classificadas como pendentes, incompletas ou por executar.", + "smw-pendingtasks-setup-no-tasks-intro": "A instalação (ou atualização) foi concluída, não existindo neste momento tarefas pendentes ou por executar.", + "smw-pendingtasks-tab-setup": "Configuração", + "smw-updateentitycollation-incomplete": "A definição [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] foi alterada recentemente e requer que seja executado o ''script'' [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php] para que as entidades sejam atualizadas e contenham o valor correto no campo de ordenação.", + "smw-updateentitycountmap-incomplete": "O campo smw_countmap foi acrescentado numa versão recente e requer que seja executado o ''script'' [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php] para que as funções possam aceder ao conteúdo deste campo.", + "smw-populatehashfield-incomplete": "O preenchimento do campo smw_hash foi saltado durante a configuração, por isso é necessário executar o ''script'' [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php].", + "smw-install-incomplete-populate-hash-field": "O preenchimento do campo smw_hash foi saltado durante a configuração, por isso é necessário executar o ''script'' [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php].", + "smw-install-incomplete-elasticstore-indexrebuild": "O ElasticStore foi selecionado como [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore armazenamento padrão], mas a extensão não encontrou nenhum registo de execução do ''script'' [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php]; execute-o como indicado, por favor.", + "smw-elastic-rebuildelasticindex-run-incomplete": "O ElasticStore foi selecionado como [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore armazenamento padrão], mas a extensão não encontrou nenhum registo de execução do ''script'' [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php]; execute-o como indicado, por favor.", + "smw-pendingtasks-setup-intro": "A {{PLURAL:$1|instalação|atualização}} do MediaWiki Semântico classificou as seguintes tarefas como [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade incompletas] e é esperado que um administrador (ou outro utilizador com direitos suficientes) conclua essas tarefas antes de os utilizadores voltarem a criar ou alterar conteúdo.", + "smw-pendingtasks-setup-tasks": "Tarefas", + "smw-filter-count": "N.º de filtros", + "smw-es-replication-check": "Verificação da replicação (Elasticsearch)", + "smw-es-replication-error": "Problema de replicação do Elasticsearch", + "smw-es-replication-file-ingest-error": "Problema de ingestão de ficheiro", + "smw-es-replication-maintenance-mode": "Manutenção do Elasticsearch", + "smw-es-replication-error-missing-id": "A monitorização da replicação identificou que o artigo \"$1\" (Identificador: $2) está em falta no servidor Elasticsearch.", + "smw-es-replication-error-divergent-date": "A monitorização da replicação identificou que, para o artigo \"$1\" (Identificador: $2), a data de modificação apresenta uma discrepância.", + "smw-es-replication-error-divergent-date-short": "As seguintes informações de data foram usadas para comparação:", + "smw-es-replication-error-divergent-date-detail": "Data de modificação de referência:\n*Elasticsearch: $1 \n*Base de dados: $2", + "smw-es-replication-error-divergent-revision": "A monitorização da replicação identificou que, para o artigo \"$1\" (Identificador: $2), a revisão associada apresenta uma discrepância.", + "smw-es-replication-error-divergent-revision-short": "Os seguintes dados de revisão associados foram usados para comparação:", + "smw-es-replication-error-divergent-revision-detail": "Revisão associada de referência:\n*Elasticsearch: $1 \n*Base de dados: $2", + "smw-es-replication-error-maintenance-mode": "A replicação do Elasticsearch está de momento limitada porque opera num [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode modo de manutenção], as alterações das entidades e páginas não são imediatamente visíveis e os resultados das consultas podem conter informação desatualizada.", + "smw-es-replication-error-no-connection": "A monitorização da replicação não consegue efetuar verificações, dado que não consegue estabelecer uma ligação ao ''cluster'' Elasticsearch.", + "smw-es-replication-error-bad-request-exception": "O gestor da ligação Elasticsearch gerou uma exceção por pedido incorreto (\"Erro HTTP de conflito 400\") que indica um erro persistente durante pedidos de replicação e pesquisa.", + "smw-es-replication-error-other-exception": "O gestor da ligação Elasticsearch gerou uma exceção: \"$1\".", + "smw-es-replication-error-suggestions": "É sugerido que edite ou purgue a página para remover a discrepância. Se o problema permanecer, então verifique o próprio ''cluster'' Elasticsearch (atribuidor, exceções, espaço em disco, etc.).", + "smw-es-replication-error-suggestions-maintenance-mode": "É sugerido que contacte o administrador da wiki para verificar se está a ocorrer uma [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild recriação do índice] ou se o refresh_interval não foi definido com o valor por omissão esperado.", + "smw-es-replication-error-suggestions-no-connection": "É sugerido que contacte o administrador da wiki e reporte o problema \"falta de ligação\".", + "smw-es-replication-error-suggestions-exception": "Verifique os registos para informação sobre o estado do Elasticsearch, os índices do mesmo, e possíveis problemas de configuração.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "A monitorização da replicação identificou que \"$1\" tem em falta uma anotação de [[Property:File attachment|Ficheiro anexo]] o que indica que o processador de ingestão de ficheiros não começou ou ainda não acabou.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "Assegure-se de que a tarefa de [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion ingestão de ficheiros] é programada e executada antes de a anotação e o índice do ficheiro serem disponibilizados, por favor.", + "smw-report": "Relatório", + "smw-legend": "Legenda", + "smw-datavalue-constraint-schema-category-invalid-type": "O esquema anotado \"$1\" é inválido para uma categoria; requer um tipo \"$2\".", + "smw-datavalue-constraint-schema-property-invalid-type": "O esquema anotado \"$1\" é inválido para uma propriedade; requer um tipo \"$2\".", + "smw-entity-examiner-check": "Execução de {{PLURAL:$1|um examinador|examinadores}} em segundo plano", + "smw-entity-examiner-indicator": "Painel de problemas de entidades", + "smw-entity-examiner-deferred-check-awaiting-response": "O examinador \"$1\" está neste momento a aguardar uma resposta do servidor.", + "smw-entity-examiner-deferred-elastic-replication": "Elastic", + "smw-entity-examiner-deferred-constraint-error": "Restrição", + "smw-entity-examiner-associated-revision-mismatch": "Revisão", + "smw-entity-examiner-deferred-fake": "Falso", + "smw-entity-examiner-indicator-suggestions": "Como parte do exame da entidade {{PLURAL:$1|foi encontrado o seguinte problema|foram encontrados os seguintes problemas}} e é sugerido {{PLURAL:$1|que este seja cuidadosamente analisado|que estes sejam cuidadosamente analisados}} e tomadas as medidas devidas.", + "smw-indicator-constraint-violation": "{{PLURAL:$1|Restrição|Restrições}}", + "smw-indicator-revision-mismatch": "Revisão", + "smw-indicator-revision-mismatch-error": "A verificação [https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner revisão associada] encontrou uma falta de correspondência para esta entidade entre a revisão referenciada no MediaWiki e a que está a ser associada no MediaWiki Semântico.", + "smw-indicator-revision-mismatch-comment": "Uma falta de correspondência normalmente indica que um qualquer processo interrompeu a operação de armazenamento no MediaWiki Semântico. É recomendado rever os registos do servidor e procurar exceções ou outras falhas.", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "{{PLURAL:$1|É apresentado um resultado|São apresentados até $1 resultados}} abaixo{{PLURAL:$1||, começando pelo $2º}}." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/qqq.json b/mediawiki/extensions/SemanticMediaWiki/i18n/qqq.json new file mode 100644 index 0000000..ef57f59 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/qqq.json @@ -0,0 +1,1069 @@ +{ + "@metadata": { + "authors": [ + "Abijeet Patro", + "Amire80", + "Avatar6", + "BaRaN6161 TURK", + "Felipe95a", + "H78c67c", + "Hamilton Abreu", + "Hello903hello", + "Kghbln", + "Kizule", + "Liuxinyu970226", + "Macofe", + "McDutchie", + "Nemo bis", + "Nike", + "Ochaochaocha3", + "Omotecho", + "Purodha", + "Raymond", + "Robby", + "Shirayuki", + "Siebrand", + "Umherirrender", + "Verdy p", + "Vlad5250", + "Zoranzoki21" + ] + }, + "smw-desc": "{{desc|name=Semantic MediaWiki|url=https://www.mediawiki.org/wiki/Extension:Semantic_MediaWiki}}", + "smw-title": "{{notranslate}}\n\nName of the extension as it should be displayed.\n\n{{Identical|Semantic MediaWiki}}", + "smw-error": "{{Identical|Error}}", + "smw-upgrade-error": "This is an error message.\n\nParameter:\n* $1 - holds the upgrade key", + "smw-upgrade-release": "This is a section header on the software status page. Translate as a noun.", + "smw-upgrade-progress": "This is a section header on the software status page. Translate as a noun.", + "smw-upgrade-progress-explain": "This is a section header on the software status page.", + "smw-upgrade-progress-create-tables": "This is a status information on the software status page.", + "smw-upgrade-progress-post-creation": "This is a status information on the software status page.", + "smw-upgrade-progress-table-optimization": "This is a status information on the software status page.", + "smw-upgrade-progress-supplement-jobs": "This is a status information on the software status page.", + "smw-upgrade-error-title": "This is the title of a section header on the update status page. Semantic MediaWiki is a given name.\n{{Identical|Error}}", + "smw-upgrade-error-why-title": "This is a section header.", + "smw-upgrade-error-why-explain": "This is a information on the software status page.", + "smw-upgrade-error-how-title": "This is a section header.", + "smw-upgrade-error-how-explain-admin": "This is an error message.", + "smw-upgrade-error-how-explain-links": "This is an informatory message.", + "smw-extensionload-error-why-title": "This is a section header on the software status page.", + "smw-extensionload-error-why-explain": "This is a information on the software status page.", + "smw-extensionload-error-how-title": "This is a section header on the software status page.", + "smw-extensionload-error-how-explain": "This is an information on the software status page.", + "smw-upgrade-maintenance-title": "This is a section header.", + "smw-upgrade-maintenance-why-title": "This is an informatory message.", + "smw-upgrade-maintenance-note": "This is an informatory message.", + "smw-upgrade-maintenance-explain": "This is a information on the software status page.", + "smw-semantics-not-enabled": "This is an informatory message.", + "smw_viewasrdf": "This is the text of the link that is triggering the results export when clicked. It appears on pages in namespace Concept: or within the [https://semantic-mediawiki.org/wiki/Help:Browsing_interfaces#The_factbox factbox].", + "smw_finallistconjunct": "The last separator in a list. For example a list could look like this: \"A, B, and C\". The comma might not be appropriate in your language.\n\t{{Identical|And}}", + "smw-factbox-head": "This is the intro of tab.\n\nParameter:\n* $1 - holds the name of a page", + "smw-factbox-facts": "This is the title of a tab.\n{{Identical|Fact}}", + "smw-factbox-facts-help": "This is a information shown as a tooltip when hovering over a tab.", + "smw-factbox-attachments": "This is the label of a tab. Attachements as in file attachments.", + "smw-factbox-attachments-value-unknown": "This is a status information for file attachements within the factbox.", + "smw-factbox-attachments-is-local": "This is a status information for file attachements within the factbox indicating that the respective file was uploaded locally.", + "smw-factbox-attachments-help": "This is a information shown as a tooltip when hovering over a tab. Attachments as in file attachments.", + "smw-factbox-facts-derived": "This is the title of a tab.", + "smw-factbox-facts-derived-help": "This is a information shown as a tooltip when hovering over a tab.", + "smw_isspecprop": "Used on [[Special:Properties]] to identify a special (build in) property.", + "smw-concept-cache-header": "This is a section header on a page containing a concept.", + "smw-concept-cache-count": "This is an informatory message shown on the page containing a concept.\n\nParameter:\n* $1 holds the number of cached objects.\n* $2 holds the timestamp the cache was generated.", + "smw-concept-no-cache": "This is an informatory message.", + "smw_concept_description": "Title of the section containing the code of a [https://semantic-mediawiki.org/wiki/Help:Concepts concept] (special precomputable query).\n\nParameters:\n* $1 - the name of the concept", + "smw_no_concept_namespace": "This is an error/warning message that appears when a concept is added to a page in namespaces other than Concept:.", + "smw_multiple_concepts": "This is an error/warning message that appears when more than concept is added to a page in namespaces Concept:.", + "smw_concept_cache_miss": "This is an information message. Parameters:\n* $1 holds the name of the [https://semantic-mediawiki.org/wiki/Help:Concepts concept] (special precomputable query)", + "smw_noinvannot": "This is an information message.", + "version-semantic": "This is the name of the extension group on special page [[Special:Version|\"Version\"]].", + "smw_uri_blacklist": "{{notranslate}}", + "smw_baduri": "This is an information message. Parameters:\n* $1 holds the malformed URI.", + "smw_csv_link": "This is the text of the link that is triggering the results export to a CSV-file when clicked.\n\n{{optional}}", + "smw_dsv_link": "This is the text of the link that is triggering the results export to a DSV-file when clicked.\n\n{{optional}}", + "smw_json_link": "This is the text of the link that is triggering the results export to a JSON-file when clicked.\n\n{{optional}}", + "smw_rdf_link": "This is the text of the link that is triggering the results export to a RDF-file when clicked.\n\n{{optional}}", + "smw_printername_count": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:Count_format count].", + "smw_printername_csv": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:CSV_format CSV].", + "smw_printername_dsv": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:DSV_format DSV].", + "smw_printername_debug": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:Debug_format Debug].", + "smw_printername_embedded": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:Embedded_format Embedded].", + "smw_printername_json": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:JSON_format JSON].", + "smw_printername_list": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:List_format List].\n{{Identical|List}}", + "smw_printername_plainlist": "This is the name of a result format.", + "smw_printername_ol": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:Ol_format Numbered list].", + "smw_printername_ul": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:Ul_format Bulleted list].", + "smw_printername_table": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:Table_format Table].\n\n{{Identical|Table}}", + "smw_printername_broadtable": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:Broadtable_format Broadtable].", + "smw_printername_template": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:Template_format Template].\n\n{{Identical|Template}}", + "smw_printername_templatefile": "This is the name of the result format [https://www.semantic-mediawiki.org/wiki/Help:Templatefile_format templatefile].", + "smw_printername_rdf": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:RDF_format RDF].", + "smw_printername_category": "This is the name of the result format [https://semantic-mediawiki.org/wiki/Help:Category_format Category].\n\n{{Identical|Category}}", + "validator-type-class-SMWParamSource": "This is the description of the \"source\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].\n{{Identical|Text}}", + "smw-paramdesc-limit": "This is the description of the \"limit\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-offset": "This is the description of the \"offset\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-headers": "This is the description of the \"headers\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-mainlabel": "This is the description of the \"mainlabel\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-link": "This is the description of the \"link\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-intro": "This is the description of the \"intro\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-outro": "This is the description of the \"outro\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-default": "This is the description of the \"default\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-sep": "This is the description of the \"sep\" (result separator) parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-propsep": "This is the description of the \"propsep\" (property separator) parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-valuesep": "This is the description of the \"valuesep\" (value separator) parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-showsep": "This is the description of the \"showsep\" (show value separator at top of csv file) parameter for the \"csv\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].\n{{doc-important|Do not translate the parameter name \"sep\". However may be translated.}}", + "smw-paramdesc-distribution": "This is the description of the \"distribution\" parameter for the \"jqplotbar\" and \"jqplotpie\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-distributionsort": "This is the description of the \"distributionsort\" parameter for the \"jqplotbar\" and \"jqplotpie\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-distributionlimit": "This is the description of the \"distributionlimit\" parameter for the \"jqplotbar\" and \"jqplotpie\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-aggregation": "This is the description of the \"aggregation\" parameter for the \"jqplotchart\" and \"sparkline\" [https://www.semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-template": "This is the description of the \"introtemplate\" parameter of the \"template\", \"list\", \"ol\" and \"ul\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-columns": "This is the description of the \"columns\" parameter of the \"category\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].\n\nParameters:\n* $1 - default value", + "smw-paramdesc-userparam": "This is the description of the \"userparam\" parameter for the \"template\", \"list\", \"ol\" and \"ul\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-class": "This is the description of the \"css\" parameter of the \"list\"/\"ul\"/\"ol\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-introtemplate": "This is the description of the \"introtemplate\" parameter of the \"template\", \"list\", \"ol\" and \"ul\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-outrotemplate": "This is the description of the \"outrotemplate\" parameter of the \"template\", \"list\", \"ol\" and \"ul\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-embedformat": "This is the description of the \"embedformat\" parameter of the \"embedded\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-embedonly": "This is the description of the \"embedonly\" parameter of the \"embedded\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-table-class": "This is the description of the \"css\" parameter of the \"table\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-table-transpose": "This is the description of the \"transpose\" parameter of the \"table\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-prefix": "This is the description of the \"prefix\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-rdfsyntax": "This is the description of the \"syntax\" parameter for the \"rdf\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-csv-sep": "This is the description of the \"separator\" parameter for the \"csv\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-csv-valuesep": "This is the description of the \"valuesseparator\" parameter for the \"csv\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-csv-merge": "This is the description of the \"merge\" parameter for the \"csv\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-csv-bom": "This is the description of the \"bom\" parameter for the \"csv\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries]. BOM as in [https://en.wikipedia.org/wiki/Byte_order_mark BOM].", + "smw-paramdesc-dsv-separator": "This is the description of the \"separator\" parameter for the \"dsv\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-dsv-filename": "This is the description of the \"filename\" parameter for the \"dsv\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-filename": "This is the description of the \"filename\" parameter for the [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-smwdoc-description": "This is the short description of the [https://semantic-mediawiki.org/wiki/Help:Generating_documentation smwdoc parser function].", + "smw-smwdoc-default-no-parameter-list": "This is an informatory message.", + "smw-smwdoc-par-format": "This is the description of the parameter \"format\" of the [https://semantic-mediawiki.org/wiki/Help:Generating_documentation smwdoc parser function].", + "smw-smwdoc-par-parameters": "This is the description of the parameter \"parameters\" of the [https://semantic-mediawiki.org/wiki/Help:Generating_documentation smwdoc parser function]. {{doc-important|Do not translate the possible parameter values \"specific\", \"base\" and \"all\".}}", + "smw-paramdesc-sort": "This is the description of the \"sort\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-order": "This is the description of the \"order\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-searchlabel": "This is the description of the \"searchlabel\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries]. \"… further results\" must be identical to message {{msg-mw|Smw iq moreresults}}.", + "smw-paramdesc-named_args": "This is the description of the \"named args\" parameter of the \"template\", \"list\", \"ol\" and \"ul\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-template-arguments": "This is the description of the \"template arguments\" parameter of the \"template\", \"list\", \"ol\" and \"ul\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-import-annotation": "This is the description of the \"import-annotation\" parameter of the \"template\" and \"list\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-export": "This is the description of the \"export\" parameter of the \"json\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-prettyprint": "This is the description of the \"[[wikipedia:prettyprint|prettyprint]]\" parameter of the \"JSON\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-json-unescape": "This is the description of the \"unescaped\" parameter of the \"json\" [https://www.semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-json-type": "This is the description of the \"type\" parameter for the \"json\" [https://www.semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-source": "This is the description of the \"source\" parameter for [https://semantic-mediawiki.org/wiki/Help:Inline_queries#Standard_parameters_for_inline_queries inline queries].", + "smw-paramdesc-jsonsyntax": "This is the description of the \"syntax\" parameter used by [http://www.semantic-mediawiki.org/wiki/Help:JSON_format].", + "smw-printername-feed": "This is the name of the [https://semantic-mediawiki.org/wiki/Help:Feed_format Feed result format].", + "smw-paramdesc-feedtype": "This is the description of the feed type", + "smw-paramdesc-feedtitle": "This is the description of the \"title\" parameter of the \"feed\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-feeddescription": "This is the description of the \"description\" parameter for the \"feed\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-feedpagecontent": "This option allows to enable page content to be generated with the feed", + "smw-label-feed-link": "This is the text of the link that is triggering the results export to a RSS-file when clicked. {{optional}}", + "smw-label-feed-description": "This message is displayed as the feed description, e.g. \"News on translatewiki.net rss feed\".\n\nParameters:\n* $1 - a feed description, e.g. \"News on translatewiki.net\"\n* $2 - a feed type. either \"rss\" or \"atom\"\n{{Identical|Feed}}", + "smw-paramdesc-mimetype": "This is the description of the \"mimetype\" parameter of the \"templatefile\" [https://www.semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw_iq_disabled": "This is an information message.", + "smw_iq_moreresults": "This is the text of the link that points to further results in case the [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline query] has more than currently displayed on the page. See also message {{msg-mw|Smw-paramdesc-searchlabel}}.", + "smw_parseerror": "This is an error/warning message.", + "smw_decseparator": "{{Callout|Please also translate even if your translation will be identical to the source.|error}}\n{{Doc-important|In case you add a separator symbol here, make sure that you also add the corresponding symbol to {{Msg-mw|smw_kiloseparator}} or add an empty translation if no matching symbol is used in your language!!!}}\nThis message is as a separator symbol for decimal digits in numbers, like \".\" in English 1,234.23. It is used for formatting number output '''and''' for reading user input. Therefore it should be carefully considered whether to change an existing value, since existing installations may depend on this value for their content to be read properly.\n\nNote that spaces and space-like HTML entities are always ignored when reading numbers.", + "smw_kiloseparator": "{{Callout|Please also translate even if your translation will be identical to the source.|error}}\n{{Doc-important|In case you add a separator symbol here, make sure that you also add the corresponding symbol to {{Msg-mw|smw_decseparator}} or add an empty translation if no matching symbol is used in your language!!!}}\nThis message is as a separator symbol for thousands in numbers, like \",\" in English 1,234.23. It is used for formatting number output '''and''' for reading user input. Therefore it should be carefully considered whether to change an existing value, since existing installations may depend on this value for their content to be read properly.\n\nNote that spaces and space-like HTML entities are always ignored when reading numbers, whether or not a space symbol is used here.", + "smw_notitle": "This is an error/warning message. Parameters:\n* $1 holds the property value causing the error/warning.", + "smw_noproperty": "This is an error/warning message. Parameters:\n* $1 holds the property value causing the error/warning.", + "smw_wrong_namespace": "This is an error/warning message. Parameters:\n* $1 holds the name of the namespace that may be used.", + "smw_manytypes": "This is an error/warning message.", + "smw_emptystring": "This is an error/warning message.", + "smw_notinenum": "This is an error/warning message.\n\nParameters:\n* $1 holds the property value causing the error/warning.\n* $2 holds the property values that may be used.\n* $3 holds the property name.", + "smw-datavalue-constraint-error-allows-value-list": "This is an error message.\n\nParameters:\n* $1 - holds the property value\n* $2 - holds the name of the list containing property values\n* $3 - holds the name of the property", + "smw-datavalue-constraint-error-allows-value-range": "This is an error message.\n\nParameters:\n* $1 - holds the property value\n* $2 - holds the name of the range for property values\n* $3 - holds the name of the property", + "smw-constraint-error": "This is the header within a tooltip.", + "smw-constraint-error-suggestions": "This is an informatory message on special page \"ConstraintErrorList\".", + "smw-constraint-error-limit": "This is a message on special page \"ConstraintErrorList\".\n\nParameter:\n* $1 - Holds the number of violations.", + "smw_noboolean": "This is an error/warning message. Parameters:\n* $1 holds the property value causing the error/warning.", + "smw_true_words": "These are the boolean values for \"true\" which may be assigned to properties of data type [https://semantic-mediawiki.org/wiki/Help:Type_Boolean Boolean], given as a comma-separated list.\n\nSee also:\n* {{msg-mw|Smw false words}}", + "smw_false_words": "These are the boolean values for \"false\" which may be assigned to properties of data type [https://semantic-mediawiki.org/wiki/Help:Type_Boolean Boolean], given as a comma-separated list.\n\nSee also:\n* {{msg-mw|Smw true words}}", + "smw_nofloat": "This is an error/warning message. Parameters:\n* $1 holds the property value causing the error/warning.", + "smw_infinite": "This is an error/warning message. Parameters:\n* $1 holds the property value causing the error/warning.", + "smw_unitnotallowed": "This is an error/warning message. Parameters:\n* $1 holds the unit causing the error/warning.", + "smw_nounitsdeclared": "This is an error/warning message.", + "smw_novalues": "This is an error/warning message.", + "smw_nodatetime": "This is an error/warning message. Parameters:\n* $1 holds the property value causing the error/warning.", + "smw_toomanyclosing": "This is an error/warning message. Parameters:\n* $1 holds the string causing the error/warning.", + "smw_noclosingbrackets": "This is an error/warning message.", + "smw_misplacedsymbol": "This is an error/warning message. Parameters:\n* $1 holds the string causing the error/warning.", + "smw_unexpectedpart": "This is an error/warning message. Parameters:\n* $1 holds the string causing the error/warning.", + "smw_emptysubquery": "This is an error/warning message.", + "smw_misplacedsubquery": "This is an error/warning message.", + "smw_valuesubquery": "This is an error/warning message. Parameters:\n* $1 holds the property value causing the error/warning.", + "smw_badqueryatom": "This is an error/warning message.", + "smw_propvalueproblem": "This is an error/warning message. Parameters:\n* $1 holds the property value causing the error/warning.", + "smw_noqueryfeature": "This is an error/warning message. Parameters:\n* $1 holds the part(s) of the query which were dropped.", + "smw_noconjunctions": "This is an error/warning message. Parameters:\n* $1 holds the part(s) of the query which were dropped.", + "smw_nodisjunctions": "This is an error/warning message. Parameters:\n* $1 holds the part(s) of the query which were dropped.", + "smw_querytoolarge": "This is an error/warning message.\n\nParameters:\n* $1 holds the part(s) of the query which were dropped.\n* $2 holds the number of parts of the query which were dropped.", + "smw_notemplategiven": "{{doc-important|Do not translate the \"template\" parameter.}}\n\nThis is an error/warning message.", + "smw_db_sparqlqueryproblem": "This is an error message.", + "smw_db_sparqlqueryincomplete": "This is an error message.", + "smw_type_header": "This is the header on [[Special:Types]]. Parameters:\n* $1 holds the name of the respective data type.", + "smw_typearticlecount": "This is the introductory message below the header on [[Special:Types]]. Parameters:\n* $1 holds the number of property pages displayed in the current view.", + "smw_attribute_header": "This is the header on a page in namespace \"Property\". Parameters:\n* $1 holds the name of the respective property.", + "smw_attributearticlecount": "This is the introductory message below the header on a page in namespace \"Property\". Parameters:\n* $1 holds the number of property pages displayed in the current view.", + "smw-propertylist-subproperty-header": "This is a section header on a page.", + "smw-propertylist-redirect-header": "This is a section header on a page.", + "smw-propertylist-error-header": "This is a section header of a property page.", + "smw-propertylist-count": "This is an informatory message.\n\nParameter:\n\n* $1 Number of related entities", + "smw-propertylist-count-with-restricted-note": "This is an informatory message.\n\nParameters:\n\n* $1 - Number of related entities\n* $2 - Maximum number of related entities that can be shown.", + "smw-propertylist-count-more-available": "This is an informatory message.\n\nParameter:\n\n* $1 Number of related entities", + "specialpages-group-smw_group": "{{optional}}\n{{doc-special-group|that=are related to (or depend on) Semantic MediaWiki|like=[[Special:OfflineImportLexicon]], [[Special:Ask]], [[Special:QueryCreator]], [[Special:Browse]], [[Special:PageProperty]], [[Special:SearchByProperty]], [[Special:SMWAdmin]], [[Special:ExportRDF]], [[Special:ObjectEditor]], [[Special:WidgetAssembler]], [[Special:WidgetClone]], [[Special:BrowseWiki]], [[Special:SolrSearch]]}}\n{{Identical|Semantic MediaWiki}}", + "specialpages-group-smw_group-maintenance": "This is a section header on special page \"SpecialPages\"", + "specialpages-group-smw_group-properties-concepts-types": "This is a section header on special page \"SpecialPages\". Translate types as in datatypes.", + "specialpages-group-smw_group-search": "This is a section header on special page \"SpecialPages\"", + "exportrdf": "{{doc-special|ExportRDF}}", + "smw_exportrdf_docu": "This is the introductory message at the top of [[Special:ExportRDF]].", + "smw_exportrdf_recursive": "This is the text describing an option available to choose from on [[Special:ExportRDF]].", + "smw_exportrdf_backlinks": "This is the text describing an option available to choose from on [[Special:ExportRDF]].", + "smw_exportrdf_lastdate": "This is the text describing an optional input field available on [[Special:ExportRDF]].", + "smw_exportrdf_submit": "This is the name of the submit button on [[Special:ExportRDF]] to trigger the export.\n\n{{Identical|Export}}", + "uriresolver": "This is the name of [[Special:URIResolver]].", + "properties": "{{doc-special|Properties}}\n{{Identical|Property}}", + "smw-categories": "A label.\n{{Identical|Category}}", + "smw_properties_docu": "This is the introductory message at the top of [[Special:Properties]].", + "smw_property_template": "This message is used on [[Special:Properties]] to display each property listed. It holds the following parameters:\n* $1 link to the property's page\n* $2 link to the property's data type page\n* $3 number of times the property is used", + "smw_property_template_notype": "{{optional}}\nThis is used on [[Special:Properties]].\n*$1 holds the link to the property page.\n*$2 holds the number of times the property is used within the wiki.", + "smw_propertylackspage": "This is an error/warning message.", + "smw_propertylackstype": "This is an error/warning message. Parameters:\n* $1 holds the name of the assumed data type which is in fact always data type Page.", + "smw_propertyhardlyused": "This is an error/warning message.", + "smw-property-name-invalid": "This is an information message. Parameters:\n* $1 - property name", + "smw-property-name-reserved": "This is an error message.\n\nParameter:\n* $1 - holds the reserved name", + "smw-sp-property-searchform": "Introductory text for the property search form", + "smw-sp-property-searchform-inputinfo": "Additional explanatory text about the filtering condition.", + "smw-special-property-searchform": "Introductory text for the property search form", + "smw-special-property-searchform-inputinfo": "Additional explanatory text about the filtering condition.", + "smw-special-property-searchform-options": "This is a section header on special page \"Ask\".\n\n{{Identical|Options}}", + "smw-special-wantedproperties-filter-label": "This is a field label on special page \"WantedProperties\".\n\n{{Identical|Filter}}", + "smw-special-wantedproperties-filter-none": "This is an option selectable via a drop-down menu for filtering options on special page \"WantedProperties\". Translate in a sense: Apply no filter.\n\n{{Identical|None}}", + "smw-special-wantedproperties-filter-unapproved": "This is an option selectable via a drop-down menu on special page \"WantedProperties\".\nTranslate in a sense: Apply filter for Unapproved.\n\n{{Identical|Unapproved}}", + "smw-special-wantedproperties-filter-unapproved-desc": "This is an informative message.", + "concepts": "{{doc-special|Concepts}}\n{{Identical|Concept}}", + "smw-special-concept-docu": "This is an introductory message at the top of [[Special:Concepts]].", + "smw-special-concept-header": "This is a header used on [[Special:Concepts]].", + "smw-special-concept-count": "Used on [[Special:Concepts]] and to display available concepts.\n\nIf there are no concepts, {{msg-mw|Smw-special-concept-empty}} is used.\n\nParameters:\n* $1 - number of concepts", + "smw-special-concept-empty": "This is used on [[Special:Concepts]] and to display that no concepts are available.\n\nSee also:\n* {{msg-mw|Smw-sp-concept-count}} - if there are concepts", + "unusedproperties": "{{doc-special|UnusedProperties}}", + "smw-unusedproperties-docu": "This is the introductory message at the top of [[Special:UnusedProperties]].", + "smw-unusedproperty-template": "This message is used on [[Special:UnusedProperties]] to display each property listed. It holds the following parameters:\n* $1 link to the property's page\n* $2 link to the property's data type page", + "wantedproperties": "{{doc-special|WantedProperties}}", + "smw-wantedproperties-docu": "This is the introductory message at the top of [[Special:WantedProperties]]. Contrast with wanted but [https://translatewiki.net/w/i.php?title=Special:Translate&showMessage=smw-unusedproperties-docu&group=mwgithub-semanticmediawiki&language=en unused properties]. Compare with [[mediawiki:Smw-wantedproperties-docu/en|same context]].", + "smw-wantedproperty-template": "This is the message on [[Special:WantedProperties]] showing the name of the property without an assigned data type and how often it is used in the wiki.\n\nParameters:\n* $1 holds the name of the wanted property.\n* $2 holds the number of values annotated with the wanted property.", + "smw-special-wantedproperties-docu": "This is the introductory message at the top of special page \"WantedProperties\". Compare with those used in wikis but [[mediawiki:Smw-wantedproperties-docu/jen|without description page]]. Contrast with wanted but [https://translatewiki.net/w/i.php?title=Special:Translate&showMessage=smw-unusedproperties-docu&group=mwgithub-semanticmediawiki&language=en unused properties].", + "smw-special-wantedproperties-template": "This is the message on [[Special:WantedProperties]] showing the name of the property without an assigned data type and how often it is used in the wiki.\n\nParameters:\n* $1 holds the name of the wanted property.\n* $2 holds the number of values annotated with the wanted property.", + "smw_purge": "{{doc-actionlink}}\nThis is the label of a tab of an action item for the content area.\n{{Identical|Refresh}}", + "smw-purge-update-dependencies": "This is an informatory message in a balloon informing about the automatic purge of the page triggered by the annotation query marker.", + "smw-purge-failed": "This is an error/warning message. Please translate consistent to {{msg-mw|smw_purge}}.", + "types": "{{doc-special|Types}}\n{{Identical|Type}}", + "smw_types_docu": "This is the introductory message at the top of [[Special:Types]].", + "smw-special-types-no-such-type": "Error message shown on [[Special:Types]] when specifying an invalid data type.\n\nParameter:\n* $1 - holds the constant of the specified datatype", + "smw-statistics": "Is a label that is displayed on the [[Special:Statistics|Statistics]] page.\n{{Identical|Semantic statistics}}", + "smw-statistics-cached": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.", + "smw-statistics-entities-total": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.", + "smw-statistics-entities-total-info": "This is a information shown as a tooltip when hovering over an icon.", + "smw-statistics-property-instance": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameters:\n* $1 - number of property values", + "smw-statistics-property-total": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameters:\n* $1 - number of properties", + "smw-statistics-property-total-info": "This is a information shown as a tooltip when hovering over an icon.", + "smw-statistics-property-total-legacy": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameters:\n* $1 - number of properties", + "smw-statistics-property-used": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameter:\n* $1 - number of properties", + "smw-statistics-property-page": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameters:\n* $1 - number of properties", + "smw-statistics-property-page-info": "This is a information shown as a tooltip when hovering over an icon.", + "smw-statistics-property-type": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameters:\n* $1 - number of properties", + "smw-statistics-query-inline-legacy": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page. See also message {{msg-mw|Smw-statistics-query-inline}}.\n\nParameters:\n* $1 - number of queries\n{{Identical|Query}}", + "smw-statistics-query-inline": "Used as a label linking to the respective property that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameters:\n* $1 - number of queries\n{{Identical|Query}}", + "smw-statistics-query-format": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameter:\n* $1 - name of the format", + "smw-statistics-query-size": "Is a label that is displayed on the [[Special:Statistics|Statistics]] page", + "smw-statistics-concept-count-legacy": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameters:\n* $1 - concepts\n{{Identical|Concept}}", + "smw-statistics-concept-count": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameters:\n* $1 - number of concepts\n{{Identical|Concept}}", + "smw-statistics-subobject-count": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameters:\n* $1 - number of subobjects", + "smw-statistics-subobject-count-legacy": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameters:\n* $1 - number of subobjects", + "smw-statistics-datatype-count": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameters:\n* $1 - number of datatypes", + "smw-statistics-error-count": "Used as a label linking to the respective property that is displayed on the [[Special:Statistics|Statistics]] page. See also message {{msg-mw|smw-statistics-property-instance}}.\n\nParameters:\n* $1 - number of property values", + "smw-statistics-error-count-legacy": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameters:\n* $1 - number of property values and improper annotations respectively", + "smw-statistics-delete-count": "Used as a label that is displayed on the [[Special:Statistics|Statistics]] page.\n\nParameters:\n* $1 - number of marked entities", + "smw-statistics-delete-count-info": "This is a information shown as a tooltip when hovering over an icon.", + "smw_uri_doc": "{{doc-important|Do not alter or translate link targets!}}\nThis message sketches the (very technical) function of this unlisted special page.\nIt probably does not need translation in most cases. The special page as such is used in all URIs used by Semantic MediaWiki.\nWhen somebody resolves such a URI, the special page will redirect to the according wiki page or to the according metadata export (OWL/RDF/XML).\nThis is controlled by the HTTP request header. Semantic Web crawlers and browsers can thus request more metadata on a particular subject, while humans are referred to readable pages.\nThis method is called ''content negotiation''.\n\nParameters:\n* $1 - the URL http://www.w3.org/2001/tag/issues.html#httpRange-14 (hard-coded)", + "ask": "{{doc-special|Ask}}", + "smw_ask_doculink": "{{notranslate}}\nThis message should be the URL of the semantic query documentation for that language. For English, this is https://semantic-mediawiki.org/wiki/Help:Semantic_search. For other languages, it should be an ''existing'' page on semantic-mediawiki.org. Note that only some languages have own documentations yet.\n\nThe SMW Project welcomes documentation translators! Please contact Markus Krötzsch (https://semantic-mediawiki.org/wiki/Markus) for getting a login at semantic-mediawiki.org if you wish to create SMW handbooks in another language.", + "smw-ask-help": "This is an informatory message.", + "smw_ask_sortby": "This is the text describing the textbox on [[Special:Ask]] available for optionally entering a printout statement for a query.", + "smw_ask_ascorder": "This is the value in a dropdown menu on [[Special:Ask]] available for selecting a printout statement for a query.\n{{Identical|Ascending}}", + "smw_ask_descorder": "This is the value in a dropdown menu on [[Special:Ask]] available for selecting a printout statement for a query.\n{{Identical|Descending}}", + "smw-ask-order-rand": "This is an option selectable via a drop-down menu on special page \"Ask\".\n\n{{Identical|Random}}", + "smw_ask_submit": "This is the name of the submit button on [[Special:Ask]] to start the semantic search.\n\n{{Identical|Find results}}", + "smw_ask_editquery": "This is the text of the action link on [[Special:Ask]] to edit a query.", + "smw_add_sortcondition": "{{doc-actionlink}}\nThis is the text of the action link on [[Special:Ask]] to add a printout statement to a query.", + "smw-ask-sort-add-action": "This is the label of a link on special page \"Ask\".", + "smw_ask_hidequery": "This is the text of the action link on [[Special:Ask]] to abandon a query.", + "smw_ask_help": "This is the text of a link on [[Special:Ask]] pointing to the help page on [https://semantic-mediawiki.org/wiki/Help:Semantic_search semantic search].", + "smw_ask_queryhead": "This is the header of the edit field available on [[Special:Ask]] to enter the [https://semantic-mediawiki.org/wiki/Help:Selecting_pages query conditions] of the query.\n{{Identical|Condition}}", + "smw_ask_printhead": "This is the header of the edit field available on [[Special:Ask]] to enter the [https://semantic-mediawiki.org/wiki/Help:Displaying_information printout statements] of the query.", + "smw_ask_printdesc": "This is an additional information message for the header of the edit field available on [[Special:Ask]] to enter the [https://semantic-mediawiki.org/wiki/Help:Displaying_information printout statements] of the query.", + "smw_ask_format_as": "This is the text describing a dropdown box on [[Special:Ask]] available for choosing the [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for a query.", + "smw_ask_defaultformat": "This is the label used for indicating the default [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] within a dropdown field.\n\n{{Identical|Default}}", + "smw_ask_otheroptions": "This is the text for the header of a section on [[Special:Ask]] that is containing various different options to choose or enter in order to specify printout statements of a query.", + "smw-ask-otheroptions-info": "This is the text describing the section ''Other options'' on [[Special:Ask]] that is containing various different options to choose or enter in order to specify printout statements of a query.", + "smw-ask-otheroptions-collapsed-info": "Please use the plus icon to view all available options", + "smw_ask_show_embed": "{{doc-actionlink}}\nThis is the text of the action link on [[Special:Ask]] to show the code of a query.", + "smw_ask_hide_embed": "{{doc-actionlink}}\nThis is the text of the action link on [[Special:Ask]] to hide the code of a query.", + "smw_ask_embed_instr": "This is an information message for the field on [[Special:Ask]] that contains the code of a query that may be copied and when pasted into a regular page on the wiki..", + "smw-ask-delete": "This is the text of the action link on [[Special:Ask]] to delete a printout statement from a query.\n{{Identical|Remove}}", + "smw-ask-sorting": "This is the text for the header of the section on [[Special:Ask]] that allows to specify sorting options for specific properties that are queried for.", + "smw-ask-options": "This is a link label on special page \"Ask\".\n\n{{Identical|Options}}", + "smw-ask-options-sort": "This is a section header on special page \"Ask\".", + "smw-ask-format-options": "This is the header of a section in a tooltip.", + "smw-ask-parameters": "This is the header of a section in a tooltip.\n{{Identical|Parameter}}", + "smw-ask-search": "This is the label of an info box on \"Special:Ask\". Translate as a noun.\n\n{{Identical|Search}}", + "smw-ask-debug": "This is the label of a link on special page \"Ask\".\nTranslate in a sense of \"start debugging the issue\".\n\n{{Identical|Debug}}", + "smw-ask-debug-desc": "This is an explanatory message shown in a tooltip.", + "smw-ask-no-cache": "This is the label of a link. Translate in a sense that the cache should be cleared when clicking.", + "smw-ask-no-cache-desc": "This is an explanatory message shown in a tooltip.", + "smw-ask-result": "This is a link label on special page \"Ask\".\n\n{{Identical|Result}}", + "smw-ask-empty": "This is a link label on special page \"Ask\". Translate as an action: to empty something.", + "smw-ask-download-link-desc": "This is an explanatory message shown in a tooltip.", + "smw-ask-format": "This is a link label on special page \"Ask\".\n\n{{Identical|Format}}", + "smw-ask-format-selection-help": "This is a text displayed on [[Special:Ask]] to inform about a help page on [https://semantic-mediawiki.org/wiki/ Semantic MediaWiki].\n\nParameters:\n* $1 - a link which points to Help: page on semantic-mediawiki.org displaying the name of the format.", + "smw-ask-condition-change-info": "This is an informatory message shown at the top of special page \"Ask\".", + "smw-ask-input-assistance": "This is the header of a section in a tooltip.", + "smw-ask-condition-input-assistance": "This is an informatory message shown in a tooltip.", + "smw-ask-condition-input-assistance-property": "This is an informatory message shown in a tooltip.\n\n{{Doc-important|Do not change the prefix p:}}", + "smw-ask-condition-input-assistance-category": "This is an informatory message shown in a tooltip.\n\n{{Doc-important|Do not change the prefix c:}}", + "smw-ask-condition-input-assistance-concept": "This is an informatory message shown in a tooltip.\n\n{{Doc-important|Do not change the prefix con:}}", + "smw-ask-format-change-info": "This is an informatory message shown at the top of special page \"Ask\".", + "smw-ask-format-export-info": "This is an informatory message shown at the top of special page \"Ask\".", + "smw-ask-query-search-info": "An informatory message shown on \"Special:Ask\":\n\nParameters:\n* $1 shows the code of the query, e.g. [[Has number::+]]\n* $2 shows the name of the database backend that returned the answer, e.g. \"SMW\\SQLStore\\SQLStore\"\n* $3 indicates whether it is retrieved from cache or not \n* $4 shows the elapsed time needed to return the answer, e.g. 0.00635", + "smw-ask-extra-query-log": "A tab on special page \"Ask\".", + "smw-ask-extra-other": "A tab on special page \"Ask\".", + "searchbyproperty": "{{doc-special|SearchByProperty}}", + "processingerrorlist": "This is a header used on [[Special:ProcessingErrorList]].\n{{doc-important|This should be translated as \"List of processing errors\", and NOT as \"Processing the list of errors\".}}", + "constrainterrorlist": "Name of special page \"ConstraintErrorList\".", + "propertylabelsimilarity": "This is the title of a special page.\n\n{{Identical|Property label similarity report}}", + "missingredirectannotations": "This is the label of a special page.", + "smw-processingerrorlist-intro": "This is an introductory message at the top of [[Special:ProcessingErrorList]].", + "smw-processingerrorlist-helplink": "{{Optional}}\n\nOnly change the link if a dedicated landing page for your language exists on semantic-mediawiki.org.", + "smw-constrainterrorlist-intro": "This is a message on special page \"ConstraintErrorList\".", + "smw-constrainterrorlist-helplink": "{{Optional}}\n\nOnly change the link if a dedicated landing page for your language exists on semantic-mediawiki.org.", + "smw-missingredirects-intro": "This is an informatory message explaining the purpose of the special page and how to work with it.", + "smw-missingredirects-list": "This is a section header on special page \"MissingRedirectAnnotations\".", + "smw-missingredirects-list-intro": "This is an informatory message on special page \"MissingRedirectAnnotations\".\n\nParameter:\n\n* $1 - holds the number of pages found", + "smw-missingredirects-noresult": "This is an informatory message on special page \"MissingRedirectAnnotations\".", + "smw_sbv_docu": "This is the information message shown on [[Special:SearchByProperty]] in case no property and no property value were not yet provided to search for.", + "smw_sbv_novalue": "This is an information message shown on [[Special:SearchByProperty]] in case no property value was provided.\n\nParameters:\n* $1 - the name of the property", + "smw_sbv_displayresultfuzzy": "This is an information message shown on [[Special:SearchByProperty]] in case less than 20 results were found.\n\nParameters:\n* $1 - the name of the property\n* $2 - the value of the property one searched for", + "smw_sbv_property": "This is the text describing a textbox on [[Special:SearchByProperty]] where the name of a property is expected to be typed in.\n\n{{Identical|Property}}", + "smw_sbv_value": "This is the text describing a textbox on [[Special:SearchByProperty]] where the value of a property is expected to be typed in.\n\n{{Identical|Value}}", + "smw_sbv_submit": "This is the name of the submit button on [[Special:SearchByProperty]] to trigger the search.\n\n{{Identical|Find results}}", + "browse": "{{doc-special|Browse}}", + "smw_browselink": "This is the text of the link shown within the toolbox in the sidebar pointing to [[Special:Browse]]", + "smw_browse_article": "This is the text describing a textbox on [[Special:Browse]] where the name of a page is expected to be typed in.", + "smw_browse_go": "This is the name of the submit button on [[Special:Browse]] to trigger the browsing of pages.\n\n{{Identical|Go}}", + "smw_browse_more": "{{optional}}", + "smw_browse_show_incoming": "{{doc-actionlink}}\nThis is the text of the link on [[Special:Browse]] that shows the properties linking to a page when clicked.\n\nSee also:\n* {{msg-mw|Smw browse hide incoming}}", + "smw_browse_hide_incoming": "{{doc-actionlink}}\nThis is the text of the link on [[Special:Browse]] that hides the properties linking to a page when clicked.\n\nSee also:\n* {{msg-mw|Smw browse show incoming}}", + "smw_browse_no_outgoing": "This is the information message shown on [[Special:Browse]] in case the browsed page does not contain any properties.", + "smw_browse_no_incoming": "This is the information message shown on [[Special:Browse]] in case no properties link to the browsed page.", + "smw-browse-from-backend": "This is an informatory message shown while the data are being retrieved for display on this special page.", + "smw-browse-intro": "This is an informatory message explaining the purpose of the special page.", + "smw-browse-invalid-subject": "This is an error/warning message.\n\nParameters:\n* $1 holds the error/warning", + "smw-browse-api-subject-serialization-invalid": "This is an error message.", + "smw-browse-js-disabled": "This is an error message.", + "smw-browse-show-group": "{{doc-actionlink}}\nThis is the text of the link on [[Special:Browse]] that shows the property groups defined for certain properties.\n\nSee also:\n* {{msg-mw|Smw-browse-hide-group}}", + "smw-browse-hide-group": "{{doc-actionlink}}\nThis is the text of the link on [[Special:Browse]] that hides the property groups defined for certain properties.\n\nSee also:\n* {{msg-mw|Smw-browse-show-group}}", + "smw-noscript": "This is an informatory message.", + "smw_inverse_label_default": "Inverse label default. Parameters:\n* $1 - a place marker\n{{Identical|Of}}", + "smw_inverse_label_property": "Can as well be translated as \"Name of\", or \"Denomination of the inverse propery\". The inverse property is one having both its direction, and its source/target sets inverted. For example, the property \"is child of\" is the inverse propery of \"is parent of\".", + "pageproperty": "This is the name of [[Special:PageProperty]].", + "pendingtasklist": "This is the title of special page \"PendingTaskList\".", + "facetedsearch": "{{doc-special|Facetedsearch}}", + "smw_pp_docu": "This is the introductory message at the top of [[Special:PageProperty]].", + "smw_pp_from": "This is the text describing a textbox on [[Special:PageProperty]] where the name of a page is expected to be typed in.\n{{Identical|From page}}", + "smw_pp_type": "This is the text describing a textbox on [[Special:PageProperty]] where the name of a property is expected to be typed in.\n\n{{Identical|Property}}", + "smw_pp_submit": "This is the name of the submit button on [[Special:PageProperty]] to trigger the search.\n\n{{Identical|Find results}}", + "smw-prev": "This is the text of the link on property and concept pages that allows to return to the previous page with listings. Similar to {{Msg-mw|Prevn}} however never preceeded with 'show'.", + "smw-next": "This is the text of the link on property and concept pages that allows to proceed to the next page with listings. Similar to {{Msg-mw|Nextn}} however never preceeded with 'show'.", + "smw_result_prev": "This is the text of the link on [[Special:Ask]] or [[Special:SearchByProperty]] that allows to return to the previous page containing results for the query.\n\n{{Identical|Previous}}", + "smw_result_next": "This is the text of the link on [[Special:Ask]] or [[Special:SearchByProperty]] that allows to proceed to the next page containing results for the query.\n\n{{Identical|Next}}", + "smw_result_results": "This is the text on [[Special:Ask]] or [[Special:SearchByProperty]] preceding the shown range of results which were returned by the query, e.g. '''Results 1 - 50'''.\n\n{{Identical|Result}}", + "smw_result_noresults": "This is the text on [[Special:Ask]] or [[Special:SearchByProperty]] shown in case a query does not return any results.\n{{Identical|No result}}", + "smwadmin": "{{doc-special|SMWAdmin}}", + "smw-admin-statistics-job-title": "This is a header.", + "smw-admin-statistics-job-docu": "This is an informatory message.", + "smw-admin-statistics-querycache-title": "This is a section header on special page \"Semantic MediaWiki\".", + "smw-admin-statistics-querycache-disabled": "This is an informatory message.", + "smw-admin-statistics-querycache-legend": "This is an explanatory message used on a subpage to special page \"Semantic MediaWiki\".", + "smw-admin-statistics-section-explain": "This is a message on special page \"SemanticMediaWiki\".", + "smw-admin-statistics-semanticdata-overview": "This is a tab label on a subpage to special page \"SemanticMediaWiki\". \n\n{{Identical|Overview}}", + "smw-admin-permission-missing": "This is an informatory message.", + "smw-admin-setupsuccess": "This is the confirmation message at the bottom of the script's report concerning setup or update of the SMW database tables (process triggered from [[Special:SMWAdmin]]).", + "smw_smwadmin_return": "This is the text of the link at the bottom of the report concerning setup or update of the SMW database tables pointing to [[Special:SMWAdmin]].\n\nParameters:\n* $1 - the link back to Special:SMWAdmin\n{{Identical|Return to $1}}", + "smw_smwadmin_updatestarted": "This is the message at the top of [[Special:SMWAdmin]] confirming that the update process has been started.\n\nParameters:\n* $1 - the link back to Special:SMWAdmin", + "smw_smwadmin_updatenotstarted": "This is the message at the top of [[Special:SMWAdmin]] informing that a new update process will not be started.\n\nParameters:\n* $1 - the link back to Special:SMWAdmin", + "smw_smwadmin_updatestopped": "This is the message at the top of [[Special:SMWAdmin]] confirming that the update process has been stopped.\n\nParameters:\n* $1 - the link back to Special:SMWAdmin", + "smw_smwadmin_updatenotstopped": "This is the message at the top of [[Special:SMWAdmin]] asking for reassurance concerning the termination of the current update process.\n\nParameters:\n* $1 - the link back to Special:SMWAdmin", + "smw-admin-docu": "This is the introductory message at the top of [[Special:SMWAdmin]].", + "smw-admin-environment": "This is a section header on special page \"Semantic MediaWiki\".", + "smw-admin-db": "This is a section header on special page \"Semantic MediaWiki\".", + "smw-admin-db-preparation": "This is an informatory message.", + "smw-admin-dbdocu": "This is the text describing an available administrative option on [[Special:SMWAdmin]].", + "smw-admin-permissionswarn": "This is the text describing a problem (including a solution) that may arise when using an available administrative option on [[Special:SMWAdmin]].", + "smw-admin-dbbutton": "This is the text of the submit button on special page \"Semantic MediaWiki\" to trigger the respective process.", + "smw-admin-announce": "This is the section header on special page \"Semantic MediaWiki\" as well as the name of the submit button to register the wiki at [https://www.wikiapiary.com wikiapiary.com].", + "smw-admin-announce-text": "Short description of what wiki registration on [[Special:SMWAdmin]] means.", + "smw-admin-deprecation-notice-title": "This is a section header on Special:SemanticMediaWiki.", + "smw-admin-deprecation-notice-docu": "This is an informatory message explaining the purpose of some information provided.", + "smw-admin-deprecation-notice-config-notice": "This is an informatory message.\n\nParameter:\n* $1 - holds the name of the depreciated configuration parameter\n* $2 - holds a version number", + "smw-admin-deprecation-notice-config-notice-option": "This is an informatory message on special page \"SemanticMediaWiki\".\n\nParameter:\n* $1 - holds the name of the configuration parameter\n* $2 - counts the number of options", + "smw-admin-deprecation-notice-config-notice-option-list": "This is an informatory message on special page \"SemanticMediaWiki\".\n\nParameter:\n* $1 - holds the name of the configuration parameter\n* $2 - holds the version number", + "smw-admin-deprecation-notice-config-replacement": "This is an informatory message.\n\nParameters:\n* $1 - holds the name of the depreciated configuration parameter\n* $2 - holds the name of the replacing configuration parameter", + "smw-admin-deprecation-notice-config-replacement-option": "This is an informatory message on special page \"SemanticMediaWiki\".\n\nParameter:\n* $1 - holds the name of the configuration parameter\n* $2 - counts the number of options\n{{Identical|Option}}", + "smw-admin-deprecation-notice-config-replacement-option-list": "This is an informatory message on special page \"SemanticMediaWiki\".\n\nParameter:\n* $1 - holds the name of the current configuration parameter\n* $2 - holds the name of the future configuration parameter", + "smw-admin-deprecation-notice-config-removal": "This is an informatory message.\n\nParameter:\n* $1 - holds the name of the removed configuration parameter\n* $2 - holds a version number", + "smw-admin-deprecation-notice-title-notice": "This is a section header on special page \"Semantic MediaWiki\" informing about configuration parameters.", + "smw-admin-deprecation-notice-title-notice-explanation": "This is an informatory message on special page \"Semantic MediaWiki\".", + "smw-admin-deprecation-notice-title-replacement": "This is a section header on special page \"Semantic MediaWiki\" informing about configuration parameters.", + "smw-admin-deprecation-notice-title-replacement-explanation": "\"Replaced or renamed settings\" is {{msg-mw|Smw-admin-deprecation-notice-title-replacement}}", + "smw-admin-deprecation-notice-title-removal": "This is a section header on special page \"Semantic MediaWiki\" informing about configuration parameters.", + "smw-admin-deprecation-notice-title-removal-explanation": "\"Removed settings\" is {{msg-mw|Smw-admin-deprecation-notice-title-removal}}", + "smw-admin-deprecation-notice-section-legend": "This is a label.", + "smw-smwadmin-refresh-title": "This is a section header on special page \"SemanticMediaWiki\".", + "smw_smwadmin_datarefresh": "This is a section header on special page \"SemanticMediaWiki\".", + "smw_smwadmin_datarefreshdocu": "This is the text describing an available administrative option on [[Special:SMWAdmin]].", + "smw_smwadmin_datarefreshprogress": "This is an information message on [[Special:SMWAdmin]].", + "smw_smwadmin_datarefreshbutton": "This is the name of the submit button on [[Special:SMWAdmin]] to trigger the respective process.", + "smw_smwadmin_datarefreshstop": "This is the name of the submit button on [[Special:SMWAdmin]] to abort the respective process.", + "smw_smwadmin_datarefreshstopconfirm": "This is the text next to the checkbox on [[Special:SMWAdmin]] reassuring that the respective process should indeed be cancelled.\nParameter:\n$1 - unused, or user who performed the action (to be used with GENDER)", + "smw-admin-helplink": "{{Optional}}\n\nOnly change the URL if a dedicated page with translations into your language exist.", + "smw-admin-job-scheduler-note": "This is an informatory message.", + "smw-admin-outdateddisposal-title": "This is a section header on special page \"SemanticMediaWiki\".", + "smw-admin-outdateddisposal-intro": "This is an informatory message shown on a special page explaining an administrative function. The last sentence refers to the scheduled interval of the cron job dealing with the MediaWiki job queue.", + "smw-admin-outdateddisposal-active": "This is an informatory message on special page \"Semantic MediaWiki.", + "smw-admin-outdateddisposal-button": "This is the text of the submit button on special page \"Semantic MediaWiki\" to trigger the respective process.", + "smw-admin-feature-disabled": "This is an informatory text on special page \"Semantic MediaWiki\".", + "smw-admin-propertystatistics-title": "This is a header.", + "smw-admin-propertystatistics-intro": "This is an informatory message.", + "smw-admin-propertystatistics-active": "This is an informatory message on special page \"Semantic MediaWiki.", + "smw-admin-propertystatistics-button": "This is the text of the submit button on special page \"Semantic MediaWiki\" to trigger the respective process.", + "smw-admin-fulltext-title": "This is a header.", + "smw-admin-fulltext-intro": "This is an informatory message.", + "smw-admin-fulltext-active": "This is an informatory message on special page \"Semantic MediaWiki.", + "smw-admin-fulltext-button": "This is the text of the submit button on special page \"Semantic MediaWiki\" to trigger the respective process.", + "smw-admin-support": "This is a section header on [[Special:SMWAdmin]].", + "smw-admin-supportdocu": "This is the introductory text on [[Special:SMWAdmin]] followed by a list of resources.", + "smw-admin-installfile": "This text on [[Special:SMWAdmin]] describes a resource for help.\n\n{{doc-important|Do not alter or translate link targets!}}", + "smw-admin-smwhomepage": "This text on [[Special:SMWAdmin]] describes a resource for help.\n\n{{doc-important|Do not alter or translate link targets!}}", + "smw-admin-bugsreport": "This text on [[Special:SMWAdmin]] describes where to report bugs.\n\n{{doc-important|Do not alter or translate link targets!}}", + "smw-admin-questions": "This text on [[Special:SMWAdmin]] describes a resource for help.\n\n{{doc-important|Do not alter or translate link targets!}}", + "smw-admin-other-functions": "This is a section header on special page \"SemanticMediaWiki.", + "smw-admin-statistics-extra": "This is a section header on a subpage to special page \"SemanticMediaWiki\". Translate in the sense of further statistics.", + "smw-admin-statistics": "This is a tab label on a subpage to special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-section-title": "This is a section header on special page \"Semantic MediaWiki\".", + "smw-admin-supplementary-section-subtitle": "This is a section header on special page \"Semantic MediaWiki\".", + "smw-admin-supplementary-section-intro": "This is an informatory message.", + "smw-admin-supplementary-settings-title": "This is a label of a link.", + "smw-admin-supplementary-settings-intro": "A message explaining a link.\n\nParameter:\n* $1 - Holds {{msg-mw|Smw-admin-supplementary-settings-title}}", + "smw-admin-main-title": "This is a section header on special page \"Semantic MediaWiki\".\n\nParameter:\n* $1 - Holds the name of the subpages this message is used on.", + "smw-admin-supplementary-operational-statistics-title": "This is a label of a link.", + "smw-admin-supplementary-operational-statistics-short-title": "This is a section header on special page \"Semantic MediaWiki\".", + "smw-admin-supplementary-operational-statistics-intro": "A message explaining a link.\n\nParameter:\n* $1 - Holds {{msg-mw|Smw-admin-supplementary-operational-statistics-title}}", + "smw-admin-supplementary-idlookup-title": "This is a label of a link.", + "smw-admin-supplementary-idlookup-short-title": "This is a section header on special page \"Semantic MediaWiki\".", + "smw-admin-supplementary-idlookup-intro": "A message explaining a link.\n\nParameter:\n* $1 - Holds {{msg-mw|Smw-admin-supplementary-idlookup-title}}", + "smw-admin-supplementary-duplookup-title": "This is a label of a link.", + "smw-admin-supplementary-duplookup-intro": "A message explaining a link.\n\nParameter:\n* $1 - Holds {{msg-mw|Smw-admin-supplementary-duplookup-title}}", + "smw-admin-supplementary-duplookup-docu": "This is an informatory message explaining the content of a special page.", + "smw-admin-supplementary-duplookup-helplink": "{{Optional}}\n\nThis is a link in a tooltip pointing to a help page. Only change the link in case a dedicated page in your language exists on website.", + "smw-admin-supplementary-operational-statistics-cache-title": "This is the label of a link on special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-operational-statistics-cache-intro": "This is an item shown on special page \"Semantic MediaWiki\"\n\nParameters:\n* Holds a link to a subpage. The lable of the link is defined with {{Msg-mw|Smw-admin-supplementary-operational-statistics-cache-title}}", + "smw-admin-supplementary-operational-table-statistics-title": "This is the title of a subpage to special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-operational-table-statistics-short-title": "This is a section header on special page \"Semantic MediaWiki\". Translate table in the sense of a datatable in a database.", + "smw-admin-supplementary-operational-table-statistics-intro": "This message explains a supbage to special page \"SemanticMediaWiki\".\n\nParamters:\n* $1 - Holds the name of the subpage as translated with {{Msg-mw|Smw-admin-supplementary-operational-table-statistics-title}}", + "smw-admin-supplementary-operational-table-statistics-explain": "This is an explanatory message informing about the purpose of the resprective subpage to special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-operational-table-statistics-legend": "This is an explanatory message used on a subpage to special page \"Semantic MediaWiki\".", + "smw-admin-supplementary-operational-table-statistics-legend-general": "This is an explanatory message used on a subpage to special page \"Semantic MediaWiki\".", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "This is an informatory message explaining statistics shown.", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "This is an explanatory message used on a subpage to special page \"Semantic MediaWiki\".", + "smw-admin-supplementary-elastic-title": "{{Optional}}\nThis is the label of a link on special page \"SemanticMediaWiki\".\n\nElasticsearch is the name of a [https://www.elastic.co/elasticsearch back-end search engine]. It does ''not'' use “CamelCase”.", + "smw-admin-supplementary-elastic-section-subtitle": "This is a section header on special page \"Semantic MediaWiki\".\n\nElasticsearch is the name of a [https://www.elastic.co/elasticsearch back-end search engine]. It does ''not'' use “CamelCase”.", + "smw-admin-supplementary-elastic-intro": "This is an informatory message that describes the link accessible via $1.\n\nParameters:\n* $1 - holds the name specified in {{Msg-mw|Smw-admin-supplementary-elastic-title}}", + "smw-admin-supplementary-elastic-docu": "This is an informatory message describing a section on special page \"SemanticMediawiki\"\n\nElasticsearch is the name of a [https://www.elastic.co/elasticsearch back-end search engine]. It does ''not'' use “CamelCase”.", + "smw-admin-supplementary-elastic-functions": "This is a section header on special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-elastic-settings-title": "This is the label of a link on special page \"SemanticMediaWiki\".\n\n{{Identical|Settings}}", + "smw-admin-supplementary-elastic-settings-intro": "This is an informatory message that describes the link accessible via $1.\n\nParameters:\n* $1 - holds the name specified in {{Msg-mw|Smw-admin-supplementary-elastic-settings-title}}", + "smw-admin-supplementary-elastic-mappings-title": "This is the label of a link on special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-elastic-mappings-intro": "This is an informatory message that describes the link accessible via $1.\n\nParameters:\n* $1 - holds the name specified in {{Msg-mw|Smw-admin-supplementary-elastic-mappings-title}}", + "smw-admin-supplementary-elastic-mappings-docu": "This is an informatory message on special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-elastic-mappings-docu-extra": "This is an informatory message on special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-elastic-mappings-summary": "This is a section header on special page \"SemanticMediaWiki\".\n\n{{Identical|Summary}}", + "smw-admin-supplementary-elastic-mappings-fields": "This is a section header on special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-elastic-nodes-title": "This is the label of a link on special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-elastic-nodes-intro": "This is an informatory message that describes the link accessible via $1.\n\nParameters:\n* $1 - holds the name specified in {{Msg-mw|Smw-admin-supplementary-elastic-nodes-title}}", + "smw-admin-supplementary-elastic-indices-title": "This is the label of a link on special page \"SemanticMediaWiki\".\n\n{{Identical/Index}}", + "smw-admin-supplementary-elastic-indices-intro": "This is an informatory message that describes the link accessible via $1.\n\nParameters:\n* $1 - holds the name specified in {{Msg-mw|Smw-admin-supplementary-elastic-indices-title}}", + "smw-admin-supplementary-elastic-statistics-title": "This is the label of a link on special page \"SemanticMediaWiki\".\n\n{{Identical|Statistics}}", + "smw-admin-supplementary-elastic-statistics-intro": "This is an informatory message that describes the link accessible via $1.\n\nParameters:\n* $1 - holds the name specified in {{Msg-mw|Smw-admin-supplementary-elastic-statistics-title}}", + "smw-admin-supplementary-elastic-statistics-docu": "This is an informatory message describing a subpage on special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-elastic-status-replication": "This is a section header on special page \"Semantic MediaWiki\".", + "smw-admin-supplementary-elastic-status-last-active-replication": "This is a label.\n\nParameter:\n* $1 - holds a timestamp", + "smw-admin-supplementary-elastic-status-refresh-interval": "This is a label.\n\nParameter:\n* $1 - holds a timestamp", + "smw-admin-supplementary-elastic-status-recovery-job-count": "This is an item label. \n\nParameter:\n* $1 - holds the number of jobs", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "This is an item label.\n\nParameters:\n* $1 - holds the number of jobs", + "smw-admin-supplementary-elastic-status-rebuild-lock": "This is an item message. \n\nParameter:\n* $1 - holds the number of jobs", + "smw-admin-supplementary-elastic-status-replication-monitoring": "This is a label.\n\nParameter:\n\n* $1 - holds a status incicator", + "smw-admin-supplementary-elastic-replication-header-title": "This is the label of a subpage to special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-elastic-replication-function-title": "This is the label of a link on special page \"SemanticMediaWiki\". See {{Msg-mw|Smw-admin-supplementary-elastic-replication-intro}}", + "smw-admin-supplementary-elastic-replication-intro": "This is a message on special page \"SemanticMediaWiki\" describing the purpose of a linked page.\n\nParameter:\n* $1 - holds the label of the link. See {{Msg-mw|Smw-admin-supplementary-elastic-replication-function-title}}", + "smw-admin-supplementary-elastic-replication-docu": "This is an infomatory message on special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-elastic-replication-files-docu": "This is an informatory message.", + "smw-admin-supplementary-elastic-replication-files": "This is a section label on a subpage to special page \"SemanticMediaWiki\".", + "smw-admin-supplementary-elastic-replication-pages": "This is a section label on a subpage to special page \"SemanticMediaWiki\".\n\n{{Identical|Page}}", + "smw-admin-supplementary-elastic-endpoints": "This is a section header on special page \"Semantic MediaWiki\".", + "smw-admin-supplementary-elastic-no-connection": "This is an error message.", + "smw-list-count": "This is an informatory message.\n\nParameter:\n* $1 - holds the number of entries", + "smw-property-label-uniqueness": "This is an informatory message.\n\nParameters:\n* $1 - Holds the name of the property label", + "smw-property-label-similarity-title": "This is the section title on a special page.", + "smw-property-label-similarity-intro": "This is an link desctiption.\n\nParameter:\n* $1 - Holds the lable of a page and links to it", + "smw-property-label-similarity-threshold": "This is the label of an input field.\n{{Identical|Threshold}}", + "smw-property-label-similarity-type": "This is the label of a checkbox input field.", + "smw-property-label-similarity-noresult": "This is an informatory message shown if the report shows no results.", + "smw-property-label-similarity-docu": "This is the informatory message explaining the purpose of the special page reporing on the similarity of property labels.\n\nParameter:\n* $1 - holds the name of a property", + "smw-admin-operational-statistics": "This is an informatory message.", + "smw_adminlinks_datastructure": "This is a section header on [[Special:AdminLinks]] which is needed for the integration of the [[mw:Extension:Admin_Links|Admin Links extension]] into this extension.", + "smw_adminlinks_displayingdata": "This is a section header on [[Special:AdminLinks]] which is needed for the integration of the [[mw:Extension:Admin_Links|Admin Links extension]] into this extension.", + "smw_adminlinks_inlinequerieshelp": "This is the link text for a link on [[Special:AdminLinks]] which is needed for the integration of the [[mw:Extension:Admin_Links|Admin Links extension]] into this extension.", + "smw-page-indicator-usage-count": "This is an informatory message shown on property pages.\n\nParameter:\n* $2 holds the number from the usage count", + "smw-property-indicator-type-info": "This informatory message is shown on property pages. It informs if the property is either user defined (=User) or provided by the software (=System).", + "smw-property-indicator-last-count-update": "This informatory message is shown in a tooltip incicating the number of data values assigned to a property.\n\nParameter:\n* $1 - Holds the timestamp of the last update", + "smw-concept-indicator-cache-update": "This is the content of a tooltip on a concept page.\n\nParameter:\n* $1 - holds the timestamp of the update", + "smw-createproperty-isproperty": "This an information message at the top on a page in namespace \"Property\". Parameters:\n* $1 holds the name of the data type which was assigned to the respective property.", + "smw-createproperty-allowedvals": "This an information message at the top on a page in namespace \"Property\" which gets inserted in case only certain property values are [https://semantic-mediawiki.org/wiki/Help:Special_property_Allows_value allowed to be used] for the respective property.\n\nParameters:\n* $1 - number of allowed values", + "smw-paramdesc-category-delim": "This is the description of the \"delim\" parameter of the \"category\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-category-template": "This is the description of the \"template\" parameter of the \"category\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-paramdesc-category-userparam": "This is the description of the \"userparam\" parameter of the \"category\" [https://semantic-mediawiki.org/wiki/Help:Result_formats result format] for [https://semantic-mediawiki.org/wiki/Help:Inline_queries inline queries].", + "smw-info-par-message": "This is the description of the \"message\" parameter of the parser function \"[https://semantic-mediawiki.org/wiki/Help:Adding_tooltips #info]\".", + "smw-info-par-icon": "This is the description of the \"icon\" parameter of the parser function \"[https://semantic-mediawiki.org/wiki/Help:Adding_tooltips #info]\".\n\n{{doc-important|Do not translate the possible parameter values \"info\" and \"warning\".}}", + "prefs-smw": "This is the text of a section header on [[Special:Preferences#mw-prefsection-smw|Special:Preferences]].\n{{Identical|Semantic MediaWiki}}", + "prefs-general-options": "This is a section header so special page \"Preferences\".", + "prefs-ask-options": "This is the text of a header within a section on [[Special:Preferences#mw-prefsection-smw|Special:Preferences]].", + "smw-prefs-intro-text": "This is a user preference intro text on special page \"Preferences\".", + "smw-prefs-ask-options-tooltip-display": "This is the text describing a user option on [[Special:Preferences#mw-prefsection-smw|Special:Preferences]].", + "smw-prefs-ask-options-compact-view-basic": "This is a preference option on special page \"Preferences\"", + "smw-prefs-help-ask-options-compact-view-basic": "This is an informative message explaining a preference option on special page \"Preferences\"", + "smw-prefs-general-options-time-correction": "This is a message describing a user preference option selectable via special page \"Preferences\".\n\n“Time offset” should be translated as in {{msg-mw|Prefs-timeoffset}}.", + "smw-prefs-general-options-jobqueue-watchlist": "This is a message describing a user preference option selectable via special page \"Preferences\".", + "smw-prefs-help-general-options-jobqueue-watchlist": "This is an informative message explaining a preference option on special page \"Preferences\".", + "smw-prefs-general-options-disable-editpage-info": "This is a message describing a user preference option selectable via special page \"Preferences\". Relates to information shown only when editing a page.", + "smw-prefs-general-options-disable-search-info": "This message describes a user preference option on special page \"Preferences\".", + "smw-prefs-general-options-suggester-textinput": "This is the description of a user preference option selectable on special page \"Preferences\".", + "smw-prefs-help-general-options-suggester-textinput": "This is an informative message explaining a preference option on special page \"Preferences\". Input context means accessible from respective input fields.", + "smw-prefs-general-options-show-entity-issue-panel": "This message describes a user preference option on special page \"Preferences\".\n\n{{Msg-mw|Smw-entity-examiner-indicator}}", + "smw-prefs-help-general-options-show-entity-issue-panel": "This is a message describing a user preference option selectable via special page \"Preferences\". Relates to checks and information shown when viewing a page.\n\n{{Msg-mw|Smw-entity-examiner-indicator}}", + "smw-prefs-factedsearch-profile": "This is a message describing a user preference option selectable via special page \"Preferences\"", + "smw-ui-tooltip-title-property": "A label that is displayed on the info tooltip.\n{{Identical|Property}}", + "smw-ui-tooltip-title-quantity": "A label that is displayed on the info tooltip.", + "smw-ui-tooltip-title-info": "A label that is displayed on the info tooltip.\n{{Identical|Information}}", + "smw-ui-tooltip-title-service": "A label that is displayed on the info tooltip.", + "smw-ui-tooltip-title-warning": "A label that is displayed on the info tooltip.\n{{Identical|Warning}}", + "smw-ui-tooltip-title-error": "A label that is displayed on the info tooltip.\n\n{{Identical|Error}}", + "smw-ui-tooltip-title-parameter": "A label that is displayed on the info tooltip.\n{{Identical|Parameter}}", + "smw-ui-tooltip-title-event": "A label that is displayed on the info tooltip.\n{{Identical|Event}}", + "smw-ui-tooltip-title-note": "A label that is displayed on the info tooltip.\n{{Identical|Note}}", + "smw-ui-tooltip-title-legend": "This is the name of a label.\n{{Identical|Legend}}", + "smw-ui-tooltip-title-reference": "{{Identical|Reference}}", + "smw_unknowntype": "Error message shown for properties that have a type unknown to the system.\n\nParameter:\n* $1 - holds the name of the datatype", + "smw-concept-cache-text": "This is the message displays information about the cache status.\n\nParameters:\n* $1 - number of pages\n* $2 - date\n* $3 - time", + "smw_concept_header": "This is the header on a page in namespace \"Concept\". Parameters:\n* $1 holds the name of the respective concept.", + "smw_conceptarticlecount": "This is the introductory message below the header on pages in namespace \"Concept\". Parameters:\n* $1 holds the number of pages displayed in the current view.", + "smw-qp-empty-data": "An error message shown for insufficient data.", + "right-smw-admin": "{{doc-right|smw-admin}}", + "right-smw-patternedit": "{{doc-right|smw-patternedit}}", + "right-smw-pageedit": "{{doc-right|smw-pageedit}}", + "right-smw-viewjobqueuewatchlist": "{{doc-right|smw-viewjobqueuewatchlist}}", + "restriction-level-smw-pageedit": "This is an informatory message displaying the protection parameters on \"Special:ProtectedPages\". It is not possible to know the exact number of eligible users.", + "action-smw-patternedit": "{{doc-action|smw-patternedit}}", + "action-smw-pageedit": "{{doc-action|smw-pageedit}}", + "group-smwadministrator": "{{doc-group|smwadministrator|group}}", + "group-smwadministrator-member": "{{doc-group|smwadministrator|member}}", + "grouppage-smwadministrator": "{{doc-group|smwadministrator|page}}", + "group-smwcurator": "{{doc-group|smwcurator|group}}", + "group-smwcurator-member": "{{doc-group|smwcurator|member}}", + "grouppage-smwcurator": "{{doc-group|smwcurator|page}}", + "action-smw-admin": "{{doc-action|smw-admin}}", + "action-smw-ruleedit": "{{doc-action|smw-ruleedit}}", + "smw-property-predefined-default": "This message is the default introductory text for [https://semantic-mediawiki.org/wiki/Help:Special_properties special (predefined) properties].\n\nParameter:\n* $1 - Name of the invoked predefined property\n* $2 - Name of the datatype of predefined property", + "smw-property-predefined-common": "This informatory message explains what [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] is.", + "smw-property-predefined-ask": "This informatory message describes a [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\nParameter:\n* $1 - name of predefined property", + "smw-property-predefined-asksi": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] holding the [https://semantic-mediawiki.org/wiki/Help:Special_property_Query_size size] of a query.\n\nParameter:\n* $1 - name of predefined property", + "smw-property-predefined-askde": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] holding the [https://semantic-mediawiki.org/wiki/Help:Special_property_Query_depth depth] of a query.\n\nParameter:\n* $1 - name of predefined property", + "smw-property-predefined-long-askde": "This informatory message describes the value added to a [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].", + "smw-property-predefined-askpa": "This informatory message describes a [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\nParameter:\n* $1 - name of predefined property", + "smw-property-predefined-long-askpa": "This is an informatory message.", + "smw-sp-properties-docu": "Extended introductory text for the [[Special:Properties]] page.", + "smw-sp-properties-cache-info": "Information about the current cache status on a special page\n\nParameters:\n* $1 - Accommodates a user formatted date", + "smw-sp-properties-header-label": "A header label", + "smw-admin-settings-docu": "This is an informatory message used as an introductory text for an action that may be performed via special page \"[[Special:SMWAdmin]]\".\n\nPreceded by the heading {{msg-mw|Smw-sp-admin-settings-title}}.", + "smw-sp-admin-settings-button": "A button text.\n\nPreceded by introduction:\n* {{msg-mw|Smw-sp-admin-settings-docu}}", + "smw-admin-idlookup-title": "A header title", + "smw-admin-idlookup-docu": "This is an informatory message used as an introductory text for an action that may be performed via special page \"[[Special:SMWAdmin]]\".\n\nPreceded by the heading {{msg-mw|Smw-sp-admin-idlookup-title}}.", + "smw-admin-iddispose-title": "This is a section header on special page \"Special:SMWAdmin\"", + "smw-admin-iddispose-docu": "This is an informatory message used as an introductory text for an action that may be performed via special page \"[[Special:SMWAdmin]]\".\n\nPreceded by the heading {{msg-mw|Smw-admin-iddispose-title}}.", + "smw-admin-iddispose-done": "This is an informatory message after an action was performed.\n\nParameter.:\n* $1 holds the ID of an object", + "smw-admin-iddispose-references": "This is an informatory message.\n\nParameters:\n* $1 holds the ID of an object\n* $2 holds the number of references", + "smw-admin-iddispose-references-multiple": "This is an introductiory message preceeding a table of results.", + "smw-admin-iddispose-no-references": "This is an informatory message on special page \"SemanticMediaWiki\".\n\nParameter:\n* $1 holds the ID of an object", + "smw-admin-idlookup-input": "This is a field label. Please translate as a noun.\n{{Identical|Search}}", + "smw-admin-objectid": "A label\n{{Identical|ID}}", + "smw-admin-tab-general": "This is the label of a tab.\n{{Identical|Overview}}", + "smw-admin-tab-notices": "This is the label of a tab.", + "smw-admin-tab-maintenance": "This is the label of a tab on special page \"Semantic MediaWiki\".", + "smw-admin-tab-supplement": "This is the label of a tab.", + "smw-admin-tab-registry": "This is the label of a tab.\n\n{{Identical|Registry}}", + "smw-admin-deprecation-notice-section": "This is a section header on special page \"Semantic MediaWiki\". This is the name of the extension. Usually it is not translated.", + "smw-admin-configutation-tab-settings": "This is the name of a tab on special page \"SemanticMediaWiki\". Translate in a sense of configuration settings.\n\n{{Identical|Settings}}", + "smw-admin-configutation-tab-namespaces": "This is the name of a tab on special page \"SemanticMediaWiki\".\n{{Identical|Namespace}}", + "smw-admin-maintenance-tab-tasks": "This is the name of a tab on special page \"SemanticMediaWiki\". Translate in a sense of maintenance tasks.", + "smw-admin-maintenance-tab-scripts": "This is the name of a tab on special page \"SemanticMediaWiki\".", + "smw-admin-maintenance-no-description": "This is an informatory message.", + "smw-admin-maintenance-script-section-title": "This is a section header on special page \"SemanticMediaWiki\".", + "smw-admin-maintenance-script-section-intro": "This is an informatory text on special page \"SemanticMediaWiki\".", + "smw-admin-maintenance-script-description-dumprdf": "This is the short description of a maintenance script.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "This is the short description of a maintenance script.", + "smw-admin-maintenance-script-description-rebuilddata": "This is the short description of a maintenance script.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "This is the short description of a maintenance script.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "This is an informatory message on special page \"SemanticMediaWiki\".", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "This is the short description of a maintenance script.", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "This is the short description of a maintenance script.", + "smw-admin-maintenance-script-description-removeduplicateentities": "This is the short description of a maintenance script.", + "smw-admin-maintenance-script-description-setupstore": "This is the short description of a maintenance script.", + "smw-admin-maintenance-script-description-updateentitycollation": "This is the short description of a maintenance script.", + "smw-admin-maintenance-script-description-populatehashfield": "This is the short description of a maintenance script.", + "smw-admin-maintenance-script-description-purgeentitycache": "This is a message on special page \"SemanticMediaWiki\".", + "smw-admin-maintenance-script-description-updatequerydependencies": "This is an informatory message on special page \"SemanticMediaWiki\".", + "smw-admin-maintenance-script-section-update": "This is a header on special page \"Semantic MediaWiki\".\n{{doc-important|This should be translated as \"scripts for updating\", NOT as \"update the scripts\".}}", + "smw-admin-maintenance-script-section-rebuild": "This is a header on special page \"Semantic MediaWiki\".\n{{doc-important|This should be translated as \"Scripts for rebuilding\", NOT as \"Rebuild the scripts\".}}", + "smw-livepreview-loading": "{{Identical|Loading}}Message displayed while data is loading.", + "smw-sp-searchbyproperty-description": "Extended description text for the [[Special:SearchByProperty]] page.", + "smw-sp-searchbyproperty-resultlist-header": "A header label", + "smw-sp-searchbyproperty-nonvaluequery": "A description for a query result without values.\n\nParameters:\n* $1 - Name of the property", + "smw-sp-searchbyproperty-valuequery": "A description for a query result with values.\n\nParameters:\n* $1 - Name of the property\n* $2 - Name of the value", + "smw-datavalue-number-textnotallowed": "This is an error/warning message.\n\nParameters:\n* $1 holds the text causing the error/warning.\n* $2 holds the property value supposed to be used.", + "smw-datavalue-number-nullnotallowed": "This is an error/warning message.\n\nParameter:\n* $1 holds the text causing the error/warning.", + "smw-editpage-annotation-enabled": "A description to be displayed on the edit page.", + "smw-editpage-annotation-disabled": "A description to be displayed on the edit page.", + "smw-editpage-property-annotation-enabled": "A description to be displayed on the edit page.", + "smw-editpage-property-annotation-disabled": "A description to be displayed on the edit page.", + "smw-editpage-concept-annotation-enabled": "A description to be displayed on the edit page.", + "smw-search-syntax-support": "This is an informatory message on special page \"Search\".", + "smw-search-input-assistance": "This is an informatory message on special page \"Search\".", + "smw-search-help-intro": "This informatory message is part of a large pop-up on special page \"Search\".", + "smw-search-help-structured": "This informatory message is part of a large pop-up on special page \"Search\".", + "smw-search-help-proximity": "This informatory message is part of a large pop-up on special page \"Search\".", + "smw-search-help-ask": "This informatory message is part of a large pop-up on special page \"Search\".\n\nSee {{msg-mw|Smw-ask-help}}", + "smw-search-input": "This is a section header in a large pop up on \"Special:Search\".", + "smw-search-help-input-assistance": "This informatory message is part of a large pop-up on special page \"Search\".\n\nSee the following messages for inspiration:\n* {{Msg-mw|smw-ask-condition-input-assistance}}\n* {{Msg-mw|smw-ask-condition-input-assistance-property}}\n* {{Msg-mw|smw-ask-condition-input-assistance-category}}\n* {{Msg-mw|smw-ask-condition-input-assistance-concept}}", + "smw-search-syntax": "This is a section header in a large pop up on \"Special:Search\".\n{{Identical|Syntax}}", + "smw-search-profile": "This is the label of a tab on special page \"Search\".", + "smw-search-profile-tooltip": "This is an informatory message provided via a tooltip.", + "smw-search-profile-sort-best": "This is the label of a drop-down menu item on special page \"Search\" and an item in a tooltip.", + "smw-search-profile-sort-recent": "This is the label of a drop-down menu item on special page \"Search\" and an item in a tooltip.", + "smw-search-profile-sort-title": "This is the label of a drop-down menu item on special page \"Search\" and an item in a tooltip.\n\n{{Identical|Title}}", + "smw-search-profile-extended-help-intro": "This is an informatory message shown in a tooltip on special page \"Search\".", + "smw-search-profile-extended-help-sort": "This is an informatory message shown in a tooltip on special page \"Search\".", + "smw-search-profile-extended-help-sort-title": "This is an informatory message shown in a tooltip on special page \"Search\".\n\nNote that the translation of the item should match {{Msg-mw|Smw-search-profile-sort-title}}.", + "smw-search-profile-extended-help-sort-recent": "This is an informatory message shown in a tooltip on special page \"Search\".\n\nNote that the translation of the item should match {{Msg-mw|Smw-search-profile-sort-recent}}.", + "smw-search-profile-extended-help-sort-best": "This is an informatory message shown in a tooltip on special page \"Search\".\n\nNote that the translation of the item should match {{Msg-mw|Smw-search-profile-sort-best}}.", + "smw-search-profile-extended-help-form": "This is an informatory message shown in a tooltip on special page \"Search\".\n\nParameters:\n* $1 - holds a link", + "smw-search-profile-extended-help-namespace": "This is an informatory message explaining namespace selection on the cheat sheet for special page \"Search\".", + "smw-search-profile-extended-help-search-syntax": "This is an informatory message introducing several search parameters on the cheat sheet for special page \"Search\".", + "smw-search-profile-extended-help-search-syntax-simplified-in": "This is an informatory message explaining a search parameter on the cheat sheet for special page \"Search\".", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "This is an informatory message explaining a search parameter on the cheat sheet for special page \"Search\".", + "smw-search-profile-extended-help-search-syntax-simplified-has": "This is an informatory message explaining a search parameter on the cheat sheet for special page \"Search\".", + "smw-search-profile-extended-help-search-syntax-simplified-not": "This is an informatory message explaining a search parameter on the cheat sheet for special page \"Search\".", + "smw-search-profile-extended-help-search-syntax-prefix": "This is an informatory message explaining a search parameter on the cheat sheet for special page \"Search\".\n\nParameter:\n* $1 - holds the name of a search parameter", + "smw-search-profile-extended-help-search-syntax-reserved": "This is an informatory message explaining a search parameter on the cheat sheet for special page \"Search\".\n\nParameter:\n* $1 - holds the name of a search parameter", + "smw-search-profile-extended-help-search-syntax-note": "This is an informatory message about search parameters on the cheat sheet for special page \"Search\".", + "smw-search-profile-extended-help-query": "This is an informatory message.\n\nParameter:\n* $1 - holds the code of the query.", + "smw-search-profile-extended-help-query-link": "This message links to a help page. \n\nParameter:\n* $1 - holds the link to the help page. The caption of the link is specified in message {{Msg-mw|Smw-search-profile-link-caption-query}}", + "smw-search-profile-extended-help-find-forms": "This the label for a link shown in a tooltip on special page \"Search\". See {{Msg-mw|Smw-search-profile-extended-help-form}} for the message holding the link.", + "smw-search-profile-extended-section-sort": "This is the label of a drop-down menu on special page \"Search\" and a section header in a tooltip.", + "smw-search-profile-extended-section-form": "This is the label of a drop-down menu on special page \"Search\" and a section header in a tooltip.", + "smw-search-profile-extended-section-search-syntax": "This is a label on special page \"Search\".", + "smw-search-profile-extended-section-namespace": "This is the label of a drop-down menu on special page \"Search\" and a section header in a tooltip.\n{{Identical|Namespace}}", + "smw-search-profile-extended-section-query": "This is the label of a button on special page \"Search\" / section \"Extended\"", + "smw-search-profile-link-caption-query": "This is the caption of a link.", + "smw-search-show": "This is the label of a button on special page \"Search\" / section \"Extended\"\n\n{{Identical|Show}}", + "smw-search-hide": "This is the label of a button on special page \"Search\" / section \"Extended\"\n\n{{Identical|Hide}}", + "log-name-smw": "A name for the [[Special:Log]] Semantic MediaWiki entry.", + "log-show-hide-smw": "This is the name for an entry added by Semantic MediaWiki to special page \"[[Special:Log]]\".\nParameters:\n* $1 - one of {{msg-mw|Show}} or {{msg-mw|Hide}}\n{{Related|Log-show-hide}}", + "logeventslist-smw-log": "Semantic MediaWiki log option label on [[Special:Log]]", + "log-description-smw": "A description for Semantic MediaWiki entries displayed in [[Special:Log]].", + "logentry-smw-maintenance": "This is the message for an entry added by Semantic MediaWiki to special page \"[[Special:Log]]\".", + "smw-datavalue-import-unknown-namespace": "This is an error message.\n\nParameter:\n* $1 holds the name of the namespace.", + "smw-datavalue-import-missing-namespace-uri": "This is an error message.\n\nParameter:\n* $1 holds the name of the namespace.", + "smw-datavalue-import-missing-type": "This is an error message show to the user during [https://semantic-mediawiki.org/wiki/Help:Import_vocabulary the import of an vocabulary]\n\nParameters:\n* $1 - name of the property to be imported\n* $2 - number of vocabulary to be imported", + "smw-datavalue-import-link": "This is an informatory message shown to the user during [https://semantic-mediawiki.org/wiki/Help:Import_vocabulary the import of an vocabulary]\n\nParameters:\n* $1 - name of the vocabulary", + "smw-datavalue-import-invalid-value": "This is an error message shown to the user during [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary the import of an vocabulary].\n\nParameter:\n* $1 holds the name of erroneous namespace identifier combination", + "smw-datavalue-import-invalid-format": "This is an error message shown to the user during [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary the import of an vocabulary].\n\nParameter:\n* $1 holds the erroneous string", + "smw-property-predefined-impo": "This informatory message describes the [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property] [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Imported_from imported from].\n\nParameter:\n* $1 - name of predefined property", + "smw-property-predefined-type": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] holding the [https://semantic-mediawiki.org/wiki/Help:Special_property_Has_type datatype] of a property.\n\nParameter:\n* $1 - name of predefined property", + "smw-property-predefined-sobj": "This informatory message shown in a tooltip describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] holding [https://semantic-mediawiki.org/wiki/Help:Special_property_Has_subobject subobjects]. Think of a subobject being an invisible wiki page which can only hold semantic annotations, i.e. assignments of values to properties.\n\nParameter:\n* $1 - name of predefined property", + "smw-property-predefined-long-sobj": "This informatory message shown on a property page describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] holding [https://semantic-mediawiki.org/wiki/Help:Special_property_Has_subobject subobjects]. Think of a subobject being an invisible wiki page which can only hold semantic annotations, i.e. assignments of values to properties.", + "smw-property-predefined-errp": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] holding [https://semantic-mediawiki.org/wiki/Help:Special_property_Has_improper_value_for improper values].\n\nParameter:\n* $1 - name of predefined property", + "smw-property-predefined-long-errp": "This informatory message shown on a property page describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] holding [https://semantic-mediawiki.org/wiki/Help:Special_property_Has_improper_value_for improper values].", + "smw-property-predefined-pval": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] holding [https://semantic-mediawiki.org/wiki/Help:Special_property_Allows_value allowed values]. Only allowed values may be saved without generating an error.\n\nParameter:\n* $1 - name of predefined property", + "smw-property-predefined-pvali": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] holding [https://semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list allowed values]. Only allowed values may be saved without generating an error.\n\nParameter:\n* $1 - name of predefined property", + "smw-datavalue-property-restricted-annotation-use": "This is an error message.\n\nParameters:\n* $1 - holds the name of the property", + "smw-datavalue-property-restricted-declarative-use": "This is an error message. Translate declarative in a sense of defining something.\n\nParameters:\n* $1 - holds the name of the property", + "smw-datavalue-property-create-restriction": "This is an error message shown when am edit protected property page should be created.\n\nParameters:\n* $1 - Holds the name of property\n* $2 - Holds the name of the user right", + "smw-datavalue-property-invalid-character": "This is an error message.\n\nParameters:\n* $1 holds the name of the property\n* $2 holds the invalid characters withing the name of the property", + "smw-datavalue-property-invalid-chain": "This is an error message.\n\nParameter:\n* $1 - holds the name of the property chain", + "smw-datavalue-restricted-use": "This is an error/warning message. This basically means that the datavalue may not be annotated.\n\nParameters:\n\n* $1 holds the datavalue causing the error/warning.", + "smw-datavalue-invalid-number": "This is an error message shown to the user in case the stored value is not a number.", + "smw-query-condition-circular": "This is an error/warning message.\n\nParameters:\n\n* $1 holds the name of the template causing the error/warning.", + "smw-query-condition-empty": "This is an error message.", + "smw-types-list": "A header", + "smw-types-default": "This is an informatory message shown to the user.", + "smw-types-help": "This is an informatory message shown to the user.", + "smw-type-anu": "This is an informatory message shown to the user.", + "smw-type-boo": "This is an informatory message shown to the user.", + "smw-type-cod": "This is an informatory message shown to the user.", + "smw-type-geo": "This is an informatory message shown to the user.", + "smw-type-tel": "This is an informatory message shown to the user.", + "smw-type-txt": "This is an informatory message shown to the user.", + "smw-type-dat": "This is an informatory message shown to the user.", + "smw-type-ema": "This is an informatory message on special page \"Types\".\n\nParameter:\n* $1 - holds the name of the datatype", + "smw-type-tem": "This is an informatory message on special page \"Types\".\n\nParameter:\n* $1 - holds the name of the datatype", + "smw-type-qty": "This is an informatory message on special page \"Types\".\n\nParameter:\n* $1 - holds the name of the datatype", + "smw-type-rec": "This is an informatory message on special page \"Types\".\n\nParameter:\n* $1 - holds the name of the datatype", + "smw-type-extra-tem": "This is an informatory message on special page \"Types\".", + "smw-type-tab-properties": "This is the label of a tab on special page \"Types\".", + "smw-type-tab-types": "This is the label of a tab on special page \"Types\". Translate types as in datatypes.\n{{Identical|Type}}", + "smw-type-tab-type-ids": "This is the label of a tab on special page \"Datatypes\". Please translate consistent to {{Msg-mw|types}} and {{Msg-mw|smw-type-tab-types}}.\n\nThis means \"Identificators of types\"", + "smw-type-tab-errors": "This is the label of a tab on special page \"Types\".", + "smw-type-primitive": "This is the label of a tab on special page \"Types\".", + "smw-type-contextual": "This is the label of a tab on special page \"Types\".", + "smw-type-compound": "This is the label of a tab on special page \"Types\".", + "smw-type-container": "This is a section header on special page \"Types\".", + "smw-type-no-group": "This is a section header on special page \"Types\".", + "smw-specials-browse-helplink": "{{notranslate}}", + "smw-specials-bytype-helplink": "{{Optional}}\n\nThis message links to the respective help page on .\n\nParameter:\n* Holds the string identifying the help page.", + "smw-specials-types-helplink": "This message links to the respective help page on .\n\n{{Optional}}", + "smw-special-pageproperty-helplink": "{{Optional}}\n\nOnly change the URL if a dedicated page with translations into your language exist.", + "smw-special-pageproperty-description": "This is an information message documenting special page \"PageProperty\".", + "smw-property-predefined-errc": "This information message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] shown in a tooltip.", + "smw-property-predefined-long-errc": "This information message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] on the property's page.", + "smw-property-predefined-errt": "This information message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].", + "smw-subobject-parser-invalid-naming-scheme": "This is an error message shown to the user in case a named identifier contains a dot (foo.bar).", + "smw-datavalue-record-invalid-property-declaration": "This is an error message shown to the user.\n\n* $1 holds the name of the property of type record.", + "smw-property-predefined-mdat": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-cdat": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-newp": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-ledt": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-mime": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-media": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-askfo": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-askst": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-askdu": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-asksc": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\nParameter:\n* $1 holds the name of the special property.", + "smw-property-predefined-askco": "This informatory message describes the [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property] holding the [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Query_status_code status code] of a query.\n\nParameter:\n\n* $1 - name of predefined property", + "smw-property-predefined-long-askco": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] on the property's page. Translate \"internal codified\" in a sense of \"internally used representation of a state\" the query is in.", + "smw-property-predefined-prec": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-attch-link": "This informatory message describes a [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\nParameter:\n* $1 holds the name of the special property.", + "smw-types-extra-geo-not-available": "This is an informatory message shown to the user.\n\n* $1 holds the name of the property.", + "smw-datavalue-monolingual-dataitem-missing": "This is an error message shown to the user.", + "smw-datavalue-monolingual-lcode-parenthesis": "{{optional}}", + "smw-datavalue-languagecode-missing": "This is an error message.\n\n* $1 is the erroneous property value combination (=annotation) added by the user.", + "smw-datavalue-languagecode-invalid": "This is an error message.\n\n* $1 is the erroneous language code added by the user.", + "smw-property-predefined-lcode": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.\n\n[[wikipedia:en:IETF language tag|BCP47]] is an abbreviated language code (for example, en for English, pt-BR for Brazilian Portuguese, or nan-Hant-TW for Min Nan Chinese as spoken in Taiwan using traditional Han characters).", + "smw-type-mlt-rec": "This informatory message describes a [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes datatype].\n\nParameter:\n* $1 holds the name of the datatype.", + "smw-types-extra-mlt-lcode": "This is an error message shown to the user.", + "smw-property-predefined-text": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-pdesc": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-list": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-limitreport-intext-parsertime": "This is an informatory message that extends the \"NewPP limit report\" generated by MediaWiki shown when viewing the raw HTML source of a generated page, e.g. [[Media:NewPP limit report swm.png|NewPP limit report swm]].\n\n{{doc-important|Do not translate: [SMW]}}", + "smw-limitreport-intext-postproctime": "This is an informatory message that extends the \"NewPP limit report\" generated by MediaWiki shown when viewing the raw HTML source of a generated page, e.g. [[Media:NewPP limit report swm.png|NewPP limit report swm]].\n\n{{doc-important|Do not translate: [SMW]}}", + "smw-limitreport-intext-parsertime-value": "This is an informatory message that extends the \"NewPP limit report\" generated by MediaWiki shown when viewing the raw HTML source of a generated page, e.g. [[Media:NewPP limit report swm.png|NewPP limit report swm]].\n\n* $1 holds the value of the seconds elapsed.\n\n{{Identical|Second}}", + "smw-limitreport-intext-postproctime-value": "This is an informatory message that extends the \"NewPP limit report\" generated by MediaWiki shown when viewing the raw HTML source of a generated page, e.g. [[Media:NewPP limit report swm.png|NewPP limit report swm]].\n\n* $1 holds the value of the seconds elapsed.\n\n{{Identical|Second}}", + "smw-limitreport-pagepurge-storeupdatetime": "This is an informatory message that extends the \"NewPP limit report\" generated by MediaWiki shown when viewing the raw HTML source of a generated page, e.g. [[Media:NewPP limit report swm.png|NewPP limit report swm]]. Store refers to the type of database backend used by the software, i.e. a SQL-store or RDF-store.\n\n{{doc-important|Do not translate: [SMW]}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "This is an informatory message that extends the \"NewPP limit report\" generated by MediaWiki shown when viewing the raw HTML source of a generated page, e.g. [[Media:NewPP limit report swm.png|NewPP limit report swm]].\n\n* $1 holds the value of the seconds elapsed (always plural).\n\n{{doc-important|Do not translate: [SMW]}}\n{{Identical|Second}}", + "smw_allows_pattern": "Modifications are expected to occur on a local wiki only as this page represents a placeholder.", + "smw-datavalue-allows-pattern-mismatch": "This is an error message.\n\nParameters:\n* $1 holds the property value\n* $2 holds the pattern", + "smw-datavalue-allows-pattern-reference-unknown": "This is an error message.\n\nParameters:\n* $1 - holds the pattern string", + "smw-datavalue-allows-value-list-unknown": "This is an error message.\n\nParameters:\n* $1 - holds the reference string", + "smw-datavalue-allows-value-list-missing-marker": "This is an error message.\n\nParameter:\n* $1 - holds the name of the list", + "smw-datavalue-feature-not-supported": "This is an error message.\n\nParameters:\n* $1 - holds the name of the feature", + "smw-property-predefined-pvap": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-dtitle": "This informatory message describes the [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-pvuc": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] shown in a tooltip.", + "smw-property-predefined-long-pvuc": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] on the property's page.", + "smw-datavalue-constraint-uniqueness-violation": "This is an error message.\n\nParameters:\n* $1 holds the name of the property\n* $2 holds the data value assigned to the property\n* $3 holds the name of the page", + "smw-datavalue-constraint-uniqueness-violation-isknown": "This is an error message.\n\nParameters:\n* $1 holds the name of the property\n* $2 holds the name of the page\n* $3 holds the data value assigned to the property", + "smw-datavalue-constraint-violation-non-negative-integer": "This is an error message.\n\nParameters:\n* $1 holds the name of the property\n* $2 holds the data value assigned to the property", + "smw-datavalue-constraint-violation-must-exists": "This is an error message.\n\n'''Note:''' The grammatically incorrect constraint name must_exists is in fact [https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3981 implemented] as exactly that; do not correct it.\n\nParameters:\n* $1 holds the name of the property\n* $2 holds the data value assigned to the property", + "smw-datavalue-constraint-violation-single-value": "This is an error message.\n\nParameters:\n* $1 holds the name of the property\n* $2 holds the data value assigned to the property", + "smw-constraint-violation-must-exists": "'''Note:''' The grammatically incorrect constraint name must_exists is in fact [https://github.com/SemanticMediaWiki/SemanticMediaWiki/pull/3981 implemented] as exactly that; do not correct it.", + "smw-constraint-violation-class-shape-constraint-missing-property": "This is an error message.\n\nParameter:\n* $1 - Holds the prefixed name of the category.\n* $2 - Holds the name of the property", + "smw-constraint-violation-class-shape-constraint-wrong-type": "This is an error message.\n\nParameter:\n* $1 - Holds the prefixed name of the category.\n* $2 - Holds the name of the property\n* $3 - Holds the name of the datatype.", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "This is an error message.\n\nParameter:\n* $1 - Holds the prefixed name of the category.\n* $2 - Holds the name of the property\n* $3 - Holds the cardinality requirement as a number.", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "This is an error message.\n\nParameter:\n* $1 - Holds the prefixed name of the category.\n* $2 - Holds the name of the property\n* $3 - Holds the length requirement as a number.", + "smw-constraint-violation-class-mandatory-properties-constraint": "This is an error message.\n\nParameter:\n* $1 - Holds the prefixed name of the category.\n* $2 - Holds the name of the property", + "smw-property-predefined-boo": "This informatory message describes a [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes datatype].\n\nParameter:\n* $1 holds the name of the datatype.", + "smw-property-predefined-num": "This informatory message describes a [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes datatype].\n\nParameter:\n* $1 holds the name of the datatype.", + "smw-property-predefined-dat": "This informatory message describes a [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes datatype].\n\nParameter:\n* $1 holds the name of the datatype.", + "smw-property-predefined-uri": "This informatory message describes a [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes datatype].\n\nParameter:\n* $1 holds the name of the datatype.", + "smw-property-predefined-qty": "This informatory message describes a [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes datatype].\n\nParameter:\n* $1 holds the name of the datatype.", + "smw-datavalue-time-invalid-offset-zone-usage": "This is an error message:\n\nParameter:\n* $1 holds the incorrectly annotated value", + "smw-datavalue-time-invalid-values": "This is an error message:\n\nParameter:\n* $1 holds the incorrectly annotated value\n* $2 holds the part of the value which could not be interpreted", + "smw-datavalue-time-invalid-date-components-common": "This is an error message:\n\nParameter:\n* $1 holds the incorrectly annotated value", + "smw-datavalue-time-invalid-date-components-dash": "This is an error message:\n\nParameter:\n* $1 holds the incorrectly annotated value", + "smw-datavalue-time-invalid-date-components-empty": "This is an error message:\n\nParameter:\n* $1 holds the incorrectly annotated value", + "smw-datavalue-time-invalid-date-components-three": "This is an error message:\n\nParameter:\n* $1 holds the incorrectly annotated value", + "smw-datavalue-time-invalid-date-components-sequence": "This is an error message:\n\nParameter:\n* $1 holds the incorrectly annotated value", + "smw-datavalue-time-invalid-ampm": "This is an error message:\n\nParameter:\n* $1 holds the incorrectly annotated value\n* $2 holds the incorrect part of the annotated value", + "smw-datavalue-time-invalid-jd": "This is an error message:\n\nParameters:\n* $1 holds the incorrectly annotated value\n* $2 holds the incorrect output", + "smw-datavalue-time-invalid-prehistoric": "This is an error message. \"prehistoric\" refers to the year before which we do not accept anything but year numbers and largely discourage calendar models.\n\nParameter:\n* $1 holds the incorrectly annotated value", + "smw-datavalue-time-invalid": "This is an error message:\n\nParameters:\n* $1 holds the incorrectly annotated value\n* $2 holds the incorrect output", + "smw-datavalue-external-formatter-uri-missing-placeholder": "This is an error message:\n\nParameter:\n* $1 holds the missing part of the annotated value\n\nThink of an \"Formatter URI\" as and URI containing a placeholder which needs to be filled with a value, e.g. https://id.ndl.go.jp/auth/ndlna/$1. So if $1 is missing the URI cannot be generated like e.g. https://id.ndl.go.jp/auth/ndlna/00564222. Then the user gets this message.", + "smw-datavalue-external-formatter-invalid-uri": "This is an error message:\n\nParameter:\n* $1 holds the incorrectly annotated value", + "smw-datavalue-external-identifier-formatter-missing": "This is an error message.\n\nAn URI needs to be generated somehow using the given value. If the external formatter URI, like https://id.ndl.go.jp/auth/ndlna/$1, is missing, the software does not know how to generate it using the value (e.g, \"00564222\") which should be filled into $1 placeholder. In the end, the software should come up with https://id.ndl.go.jp/auth/ndlna/00564222.", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "This is an error message.\n\nParameters:\n$1 - holds the name of the identifier\n$2 - holds the value stored for the identifier", + "smw-datavalue-keyword-maximum-length": "This is an error message.\n\nParameter:\n* $1 - holds the maximum length for the characters (defined integer)", + "smw-property-predefined-eid": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-property-predefined-peid": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property\n\nThink of an \"Formatter URI\" as and URI containing a placeholder which needs to be filled with a value, e.g. https://id.ndl.go.jp/auth/ndlna/$1. So if the external identifier is missing the URI cannot be constructed like e.g. https://id.ndl.go.jp/auth/ndlna/00564222. In this example the external identifierer is \"00564222\".", + "smw-property-predefined-pefu": "This informatory message describes the [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.\n\n\nThink of an \"Formatter URI\" as and URI containing a placeholder which needs to be filled with a value, e.g. https://id.ndl.go.jp/auth/ndlna/$1. So if the formatter URI is missing the URI cannot be gernerated like e.g. https://id.ndl.go.jp/auth/ndlna/00564222. In this example the formatter URI is \"https://id.ndl.go.jp/auth/ndlna/$1\".", + "smw-property-predefined-long-pefu": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property] shown in a tooltip.\n\nThink of an \"Formatter URI\" as and URI containing a placeholder which needs to be filled with a value, e.g. https://id.ndl.go.jp/auth/ndlna/$1. So if $1 (=placeholder) is missing the URI cannot be generated like e.g. https://id.ndl.go.jp/auth/ndlna/00564222.", + "smw-type-eid": "This is an explanatory message.\n\nParameter:\n* $1 holds the name of a data type\n\nThink of an \"Formatter URI\" as and URI containing a placeholder which needs to be filled with a value, e.g. https://id.ndl.go.jp/auth/ndlna/$1. So if $1 is missing the URI cannot be generated like e.g. https://id.ndl.go.jp/auth/ndlna/00564222.", + "smw-property-predefined-keyw": "This informatory message describes the [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property] and [https://www.semantic-mediawiki.org/wiki/Help:Datatype datatype] holding a keyword.\n\nParameter:\n* $1 - name of predefined property", + "smw-type-keyw": "This is an explanatory message.\n\nParameter:\n* $1 - holds the name of the datatype", + "smw-datavalue-stripmarker-parse-error": "This is an error message.\n\nParameter:\n* $1 holds the invalid value.", + "smw-datavalue-parse-error": "This is an error message.\n\nParameter:\n* $1 holds the property value which was not interpretable.", + "smw-datavalue-propertylist-invalid-property-key": "This is an error message.\n\nParameters:\n* $1 holds the name of the property list.\n* $2 holds the property key which was invalid.", + "smw-datavalue-type-invalid-typeuri": "This is an error message.\n\nParameter:\n* $1 holds the invalid type.", + "smw-datavalue-wikipage-missing-fragment-context": "This is an error message.\n\nParameter:\n* $1 holds the invalid value.", + "smw-datavalue-wikipage-invalid-title": "This is an error message.\n\nParameter:\n* $1 holds the invalid value.", + "smw-datavalue-wikipage-property-invalid-title": "This is an error message.\n\nParameters:\n* $1 - holds the name of the property\n* $2 - holds the invalid datavalue", + "smw-datavalue-wikipage-empty": "This is an error message.\n\nParameter:\n* $1 holds the invalid value.", + "smw-type-ref-rec": "This informatory message describes a [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes datatype].\n\nParameter:\n* $1 holds the name of the datatype.", + "smw-datavalue-reference-outputformat": "{{optional}}", + "smw-datavalue-reference-invalid-fields-definition": "This is an error message.", + "smw-parser-invalid-json-format": "This is an error message.\n\nParameter:\n* $1 holds the error output.", + "smw-property-preferred-title-format": "{{optional}}", + "smw-property-preferred-label-language-combination-exists": "This is an error message.\n\nParameters:\n* $1 name of the property label used\n* $2 language of the property label\n* $3 name of the already existing property label in use", + "smw-parse": "{{Notranslate}}", + "smw-clipboard-copy-link": "A label that is displayed on the info tooltip.", + "smw-property-userdefined-fixedtable": "This is an informatory message.", + "smw-data-lookup": "This is an informatory message.", + "smw-data-lookup-with-wait": "This is an informatory message.", + "smw-no-data-available": "This is an informatory message.", + "smw-property-req-violation-missing-fields": "This is an error message.\n\nParameters:\n* $1 - Holds the name of the property\n* $2 - Holds the name of the datatype", + "smw-property-req-violation-multiple-fields": "This is an error message. The word \"type\" refers to datatype.\n\nParameters:\n* $1 - holds the name of a property\n* $2 - holds the name of a datatype", + "smw-property-req-violation-missing-formatter-uri": "This is an error message.\n\nParameter:\n* $1 - Holds the name of the property", + "smw-property-req-violation-predefined-type": "This is an error message.\n\nParameters:\n* $1 - Holds the name of the property\n* $2 - Holds the name of the datatype", + "smw-property-req-violation-import-type": "This is an error message.\n\nParameter:\n* $1 - holds the name of the imported vacabulary", + "smw-property-req-violation-change-propagation-locked-error": "This is an informatory message. Similar to\n\n{{Msg-mw|Smw-property-req-violation-change-propagation-locked-warning}}\n\nand\n\n{{Msg-mw|smw-property-req-violation-change-propagation-pending}}\n\nParameters:\n* $1 - holds the name of the property", + "smw-property-req-violation-change-propagation-locked-warning": "This is an informatory message. Similar to\n\n{{Msg-mw|Smw-property-req-violation-change-propagation-locked-error}}\n\nand\n\n{{Msg-mw|smw-property-req-violation-change-propagation-pending}}\n\nParameters:\n* $1 - holds the name of the property", + "smw-property-req-violation-change-propagation-pending": "This is an informatory message on a property page. Similar to\n\n{{Msg-mw|smw-property-req-violation-change-propagation-locked-error}}\n\nand\n\n{{Msg-mw|smw-property-req-violation-change-propagation-locked-warning}}\n\nParameters:\n* $1 - holds the number of jobs queued", + "smw-property-req-violation-missing-maps-extension": "This is an error message.", + "smw-property-req-violation-type": "This is an informatory message. type refers to datatype.", + "smw-property-req-error-list": "This is a message preceeding a list of issues.", + "smw-property-req-violation-parent-type": "This is an error message. type refers to datatype.\n\nParameters:\n* $1 - holds the name of a property\n* $2 - holds the name of a property", + "smw-property-req-violation-forced-removal-annotated-type": "This is an informatory/error message.\n\nParameters:\n* $1 - holds the name of a property\n* $2 - holds the name of d datatype", + "smw-change-propagation-protection": "This is an informatory message. Similar to:\n* {{Msg-mw|Smw-category-change-propagation-locked-error}},\n* {{Msg-mw|Smw-category-change-propagation-locked-warning}} and\n* {{Msg-mw|Smw-category-change-propagation-pending}}", + "smw-category-change-propagation-locked-error": "This is an informatory message. Similar to\n\n{{Msg-mw|Smw-category-change-propagation-locked-warning}}\n\nand\n\n{{Msg-mw|smw-category-change-propagation-pending}}\n\nParameters:\n* $1 - holds the name of the category", + "smw-category-change-propagation-locked-warning": "This is an informatory message. Similar to\n\n{{Msg-mw|smw-category-change-propagation-locked-error}}\n\nand\n\n{{Msg-mw|smw-category-change-propagation-pending}}\n\nParameters:\n* $1 - holds the name of the category", + "smw-category-change-propagation-pending": "This is an informatory message on a category page. Similar to\n\n{{Msg-mw|Smw-category-change-propagation-locked-error}}\n\nand\n\n{{Msg-mw|smw-category-change-propagation-locked-warning}}\n\nParameters:\n* $1 - holds the number of jobs queued", + "smw-category-invalid-value-assignment": "This is an error message.\n\nParameter:\n* $1 - holds the value of the erroneous entry", + "protect-level-smw-pageedit": "This is one of the options that may be selected when performing a page protection (action=protect) via the graphical interface of the wiki.", + "smw-create-protection": "This is an error message shown when am edit protected property page should be edited.\n\nParameters:\n* $1 - Holds the name of property\n* $2 - Holds the name of the user right", + "smw-create-protection-exists": "This is an error message shown when am edit protected property page should be edited.\n\nParameters:\n* $1 - Holds the name of property\n* $2 - Holds the name of the user right", + "smw-edit-protection": "This is an informatory message shown on every page which is edit protected via an annotation.\n\nParameter:\n* $1 - Holds the name of the user right", + "smw-edit-protection-disabled": "This is an informatory message.\n\nParameter:\n* $1 - Holds the name of the special property", + "smw-edit-protection-auto-update": "This is an informatory message shown after a page protection was performed.", + "smw-edit-protection-enabled": "This is an informatory message shown with a tooltip telling that the page is edit protected via the mechanism provided by Semantic MediaWiki.", + "smw-patternedit-protection": "This is an informatory message shown on every page which is edit protected via a software setting.", + "smw-property-predefined-edip": "This informatory message shown in a tooltip describes the [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property] holding [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Is_edit_protected Is edit protected].\n\nParameter:\n* $1 - name of predefined property", + "smw-property-predefined-long-edip": "This informatory message describes the value added to a [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].", + "smw-query-reference-link-label": "This is the label of a link.", + "smw-format-datatable-emptytable": "This is an informatory message shown by the \"datatable\" format.", + "smw-format-datatable-info": "This is an informatory message shown by the \"datatable\" format, e.g. \"Showing 1 to 12 of 27 entries.\"\n\n{{doc-important|Do not translate the placeholders _START_, _END_ and _TOTAL_.}}", + "smw-format-datatable-infoempty": "This is an informatory message shown by the \"datatable\" format.", + "smw-format-datatable-infofiltered": "This is an informatory message shown by the \"datatable\" format. The placeholder holds the total number of results.\n\n{{doc-important|Do not translate the placeholder _MAX_.}}", + "smw-format-datatable-infothousands": "This message holds the thousands separator used by the \"datatables\" format.\n\n{{Optional}}", + "smw-format-datatable-lengthmenu": "This is an informatory message shown by the \"datatable\" format. The placeholder holds a drop-down field allowing to select the number of results to be shown, e.g. 10, 25, 50, etc.\n\n{{doc-important|Do not translate the placeholder _MENU_.}}", + "smw-format-datatable-loadingrecords": "This is a progress message shown by the \"datatable\" format.\n\n{{Identical|Loading}}", + "smw-format-datatable-processing": "This is a progress message shown by the \"datatable\" format.\n{{Identical|Processing}}", + "smw-format-datatable-search": "This is a field label shown by the \"datatable\" format. Translate as a noun.\n{{Identical|Search}}", + "smw-format-datatable-zerorecords": "This is an informatory message shown by the \"datatable\" format.", + "smw-format-datatable-first": "This is a message used as a selector. Show the ... resultset.\n\n{{Identical|First}}", + "smw-format-datatable-last": "This is a message used as a selector. Show the ... resultset.\n\n{{Identical|Last}}", + "smw-format-datatable-next": "This is a message used as a selector. Show the ... resultset.\n\n{{Identical|Next}}", + "smw-format-datatable-previous": "This is a message used as a selector. Show the ... resultset.\n\n{{Identical|Previous}}", + "smw-format-datatable-sortascending": "This is a selection message shown by the \"datatable\" format.", + "smw-format-datatable-sortdescending": "This is a selection message shown by the \"datatable\" format.", + "smw-format-datatable-toolbar-export": "This is the label of a link.\n\n{{Identical|Export}}", + "smw-format-list-separator": "Separator between entries in a result list. See 'sep' at https://www.semantic-mediawiki.org/wiki/Help:List_format#Parameters", + "smw-format-list-property-separator": "Separator between the properties of a result entry. See 'propsep' at https://www.semantic-mediawiki.org/wiki/Help:List_format#Parameters", + "smw-format-list-value-separator": "Separator between the values belonging to one property of a result entry. See 'valsep' at https://www.semantic-mediawiki.org/wiki/Help:List_format#Parameters", + "smw-format-list-field-label-separator": "Separator between a property label and the property values, e.g. the : in 'LABEL: VALUE'", + "smw-format-list-other-fields-open": "{{Optional}}\n\nSeparator opening the group of other values, e.g. the ( in 'MAIN VALUE (OTHER VALUES)'", + "smw-format-list-other-fields-close": "{{Optional}}\n\nSeparator closing the group of other values, e.g. the ) in 'MAIN VALUE (OTHER VALUES)'", + "smw-category-invalid-redirect-target": "This is an error message.\n\nParamters:\n* $1 - holds the name of the category", + "smw-parser-function-expensive-execution-limit": "This is an explanatory message.", + "smw-postproc-queryref": "This is an informatory message.", + "apihelp-smwinfo-summary": "This is an informatory message describing and API module.", + "apihelp-ask-summary": "This is an informatory message describing and API module.", + "apihelp-askargs-summary": "This is an informatory message describing and API module.", + "apihelp-browsebyproperty-summary": "This is an informatory message describing and API module.", + "apihelp-browsebysubject-summary": "This is an informatory message describing and API module.", + "apihelp-smwtask-summary": "This is an informatory message describing and API module.", + "apihelp-smwbrowse-summary": "This is an informatory message describing an API module.", + "apihelp-ask-parameter-api-version": "This is an informatory message for the API.", + "apihelp-smwtask-param-task": "This is an informatory message documenting an API parameter.", + "smw-api-invalid-parameters": "This is an error message emitted by an API module.\n\nParameter:\n* $1 - holds the name of the invalid parameter", + "smw-parser-recursion-level-exceeded": "This is an error message.\n\nParameter:\n* $1 - holds the count of recursions (integer) detected by the software", + "smw-property-page-list-count": "This is an informatory message on a property page.\n\nParameter:\n* $1 - holds the number of pages", + "smw-property-page-list-search-count": "This is an informatory message on a property page.\n\nParameters:\n* $1 - holds the number of pages\n* $2 - holds the datavalue searched for", + "smw-property-reserved-category": "This is the name of a reserved property name.\n\n{{Identical|Category}}", + "smw-category": "This is a label. singular only.\n\n{{Identical|Category}}", + "smw-datavalue-uri-invalid-scheme": "This is an error message.\n\nParameter:\n* $1 - holds the identifier of an Uniform Resource Identifier (URI) schema", + "smw-datavalue-uri-invalid-authority-path-component": "This is an error message. Translate authority in a sense of \"responsible for/responsibility\".\n\nParameters:\n* $1 - holds a broken URI\n* $2 - holds the transgressing part of the broken URI", + "smw-browse-property-group-title": "This is the name of a header on special page \"Browse\".", + "smw-browse-property-group-label": "This is the label of an entity similar to special property which is shown er on special page \"Browse\".", + "smw-browse-property-group-description": "This is the label of an entity similar to special property which is shown er on special page \"Browse\".", + "smw-property-predefined-ppgr": "This informatory message describes the [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\n* $1 holds the name of the special property.", + "smw-filter": "This is a label.\n{{Identical|Filter}}", + "smw-section-expand": "This is a tooltip.", + "smw-section-collapse": "This is a tooltip.", + "smw-ask-format-help-link": "This is an informatory message.\n\nParameter:\n* $1 - holds the name of a format", + "smw-help": "{{Identical|Help}}", + "smw-cheat-sheet": "This is the label of a link opening a tooltip.", + "smw-personal-jobqueue-watchlist": "This is the label of a link pointing to a help page.", + "smw-personal-jobqueue-watchlist-explain": "This is an explanatory message shown in a tooltip.", + "smw-property-predefined-label-skey": "This is a label.\n\n{{Identical|Sortkey}}", + "smw-processing": "This is an informatory message.", + "smw-loading": "This is a progress message.\n\n{{Identical|Loading}}", + "smw-fetching": "This is a progress message.", + "smw-preparing": "This is a progress message.", + "smw-expand": "This is the label of a button.\n\n{{Identical|Expand}}", + "smw-collapse": "This is the label of a button.\n\n{{Identical|Collapse}}", + "smw-copy": "This is the label of a button.\n\n{{Identical|Copy}}", + "smw-copy-clipboard-title": "This is the content of a tooltip.", + "smw-jsonview-expand-title": "This is the content of a tooltip.", + "smw-jsonview-collapse-title": "This is the content of a tooltip.", + "smw-jsonview-search-label": "This is the label of an input field.", + "smw-redirect-target-unresolvable": "This is an error message.\n\nParameter:\n* $1 - holds an error note.", + "smw-types-title": "This is the item label shown on special page \"Datatype\".\n\nParameter:\n* $1 - holds the string of the configuration defining the rule formatter, e.g. \"LINK_FORMAT_RULE\"\n\n{{Identical|Type}}", + "smw-schema-namespace-editcontentmodel-disallowed": "This is an error message.", + "smw-schema-namespace-edit-protection": "This is an informatory message.", + "smw-schema-error-title": "This is the label of a tab on a page in namespace \"smw/schema\".", + "smw-schema-error-schema": "This is an error message.\n\nParameter:\n* $1 - holds the erroneous specification", + "smw-schema-error-validation-file-inaccessible": "This is an error message.\n\nParameter:\n* $1 - Holds the name of the file.", + "smw-schema-error-violation": "{{optional}}\nThis is an error message.\n\nParameters:\n* $1 - holds the schema name\n* $2 - holds the error", + "smw-schema-error-type-missing": "This is an error message.", + "smw-schema-error-type-unknown": "This is an error message.\n\nParameter:\n* $1 - holds the name of the invalid type", + "smw-schema-error-json": "This is an error message.\n\nParameter:\n* $1 - Holds the error.", + "smw-schema-error-input": "This is an error message in namespace \"smw/schema\".", + "smw-schema-error-input-schema": "This is an error message in namespace \"smw/schema\".\n\nParameter:\n* $1 - Holds the name of the schema validation information.", + "smw-schema-error-title-prefix": "This is an error message.\n\nParameter:\n* $1 - Holds the string representing the intended prefix.", + "smw-schema-validation-error": "This is an error message in namespace \"smw/schema\".\n\nParameter:\n* $1 - Holds the name of the datatype.", + "smw-schema-validation-schema-title": "This is a tab on a page in namesace \"smw/schema\".", + "smw-schema-summary-title": "This is a tab on a page in namesace \"smw/schema\".", + "smw-schema-title": "This is the label of a tab on a page in namespace \"smw/schema\".", + "smw-schema-type-help-link": "This is the link on a page in namespace \"smw/schema\".\n\nParameter:\n* $1 - holds the string of the configuration defining the schema formatter, e.g. \"LINK_FORMAT_SCHEMA\"\n\n{{Notranslate}}\n{{Optional}}", + "smw-schema-usage": "This is a tab on a page in namespace \"smw/schema\". Displays the number of annotations.", + "smw-schema-type": "This is the label of a tab on a page in namespace \"smw/schema\". \n\n{{Identical|Type}}", + "smw-schema-type-description": "This is a tab on a page in namesace \"smw/schema\".", + "smw-schema-description": "This is a tab on a page in namesace \"smw/schema\".", + "smw-schema-description-link-format-schema": "This is an informatory message shown on a type page in namespace \"smw/schema\".", + "smw-schema-description-search-form-schema": "This is an informatory message shown on a type page in namespace \"smw/schema\".", + "smw-schema-description-property-profile-schema": "This is an informatory message shown on a type page in namespace \"smw/schema\".", + "smw-schema-description-facetedsearch-profile-schema": "This is an informatory message shown on a type page in namespace \"smw/schema\".", + "smw-schema-description-property-group-schema": "This is an informatory message shown on a type page in namespace \"smw/schema\".", + "smw-schema-description-property-constraint-schema": "This is an informatory message shown on a type page in namespace \"smw/schema\".", + "smw-schema-description-class-constraint-schema": "This is an informatory message shown on a type page in namespace \"smw/schema\".", + "smw-schema-tag": "This is the label of a Link to a special property on a page in namespace \"smw/schema\".", + "smw-property-predefined-constraint-schema": "This informatory message describes a [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\nParameter:\n* $1 - name of predefined property", + "smw-property-predefined-schema-desc": "This informatory message describes a [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\nParameter:\n* $1 holds the name of the special property.", + "smw-property-predefined-schema-def": "This informatory message describes a [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\nParameter:\n* $1 holds the name of the special property.", + "smw-property-predefined-schema-tag": "This informatory message describes a [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\nParameter:\n* $1 holds the name of the special property.", + "smw-property-predefined-long-schema-tag": "This informatory message describes the value added to a special property.", + "smw-property-predefined-schema-type": "This informatory message describes a [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property].\n\nParameter:\n* $1 holds the name of the special property.", + "smw-property-predefined-long-schema-type": "This informatory message describes the value added to a [https://semantic-mediawiki.org/wiki/Help:Special_properties special property].", + "smw-ask-title-keyword-type": "This is a label.", + "smw-ask-message-keyword-type": "This is an informatory message.\n\nParameter:\n* $1 holds the query condition", + "smw-remote-source-unavailable": "This is an error message.\n\nParameters:\n* $1 - holds the name of the remote target", + "smw-remote-source-disabled": "This is an error message.\n\nParameters:\n* $1 - holds the name of the remote target", + "smw-remote-source-unmatched-id": "This is an error message.\n\nParameters:\n* $1 - holds the name of the remote target", + "smw-remote-request-note": "This is an informatory message.\n\nParameters:\n* $1 - holds the name of the remote target", + "smw-remote-request-note-cached": "This is an informatory message.\n\nParameters:\n* $1 - holds the name of the remote target", + "smw-parameter-missing": "This is an error message emitted by an API module.\n\nParameter:\n* $1 - holds the name of the missing parameter", + "smw-property-tab-usage": "This is the label of a tab on a property or concept page.", + "smw-property-tab-redirects": "This is the label of a tab on a property page. \n\n{{Identical|Synonym}}", + "smw-property-tab-subproperties": "This is the label of a tab on a property page.", + "smw-property-tab-errors": "This is the label of a tab on a property page.", + "smw-property-tab-constraint-schema": "This is the name of a tab. Translate in a sense of constraints regarding data schemas.", + "smw-property-tab-constraint-schema-title": "This is the name of a tab. Translate in a sense of constraints regarding data schemas and compiled in a sense of created.", + "smw-property-tab-specification": "This is the label of a tab on a property page or concept page.", + "smw-concept-tab-list": "This is the label of a tab on a concept page. \n\n{{Identical|List}}", + "smw-concept-tab-errors": "This is the label of a tab on a concept page. \n\n{{Identical|Error}}", + "smw-ask-tab-result": "This is the label of a tab on special page \"Ask\".\n\n{{Identical|Result}}", + "smw-ask-tab-extra": "This is the label of a tab on special page \"Ask\".", + "smw-ask-tab-debug": "This is the label of a tab on special page \"Ask\".", + "smw-ask-tab-code": "This is the label of a tab on special page \"Ask\".", + "smw-helplink-concepts": "This message links to the respective help page on .\n\n{{Optional}}", + "smw-install-incomplete-tasks-title": "This is a section header on special page \"SemanticMediaWiki\".", + "smw-install-incomplete-intro": "This is an error message.", + "smw-pendingtasks-tab-setup": "This is the label of a tab on special page \"SemanticMediaWiki\".", + "smw-install-incomplete-populate-hash-field": "This is an error/informatory message.", + "smw-install-incomplete-elasticstore-indexrebuild": "This is a information on the software status page.", + "smw-pendingtasks-setup-tasks": "This is the label of a tab on special page \"SemanticMediaWiki\".\n{{Identical|Task}}", + "smw-helplink": "This is the URL formatter for an link to the homepage to Semantic MediaWiki.\n{{Optional}} \n\nor\n\n{{Notranslate}}", + "smw-filter-count": "This is the name of a tab.", + "smw-es-replication-check": "This is a header.", + "smw-es-replication-error": "This is the label of a tooltip.", + "smw-es-replication-file-ingest-error": "This is the label of a tooltip.", + "smw-es-replication-maintenance-mode": "This is a label.", + "smw-es-replication-error-missing-id": "This is an error message.\n\nParameters:\n* $1 - holds the name of the page\n* $2 - holds the ID of the page", + "smw-es-replication-error-divergent-date": "This is an error message.\n\nParameters:\n* $1 - Holds the name of the page\n* $2 - Holds the identifier (number) of the page", + "smw-es-replication-error-divergent-date-detail": "This is the content of a tooltip.\n\nParameter:\n* $1 - Holds the timestamp of the stored data \n* $2 - holds the timestamp of the stored data", + "smw-es-replication-error-divergent-revision": "This is an error message.\n\nParameters:\n* $1 - holds the name of the page\n* $2 - holds the ID of the page", + "smw-es-replication-error-divergent-revision-detail": "This is the content of a tooltip.\n\nParameter:\n* $1 - Holds the timestamp of the stored data \n* $2 - holds the timestamp of the stored data", + "smw-es-replication-error-maintenance-mode": "This is information on the software status page.", + "smw-es-replication-error-no-connection": "This is an error message.", + "smw-es-replication-error-bad-request-exception": "This is an error message. Translate as HTTP-Status 400 \"Bad request\".", + "smw-es-replication-error-suggestions": "This is an informatory message in a tooltip.", + "smw-es-replication-error-suggestions-maintenance-mode": "This is an error message.", + "smw-es-replication-error-suggestions-no-connection": "This is an error message.", + "smw-es-replication-error-suggestions-exception": "This is an error message.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "This is an error message.\n\nParaameter:\n* $1 - this is the name of a page.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "This is an informatory message.", + "smw-report": "This is a tab label on a subpage to special page \"SemanticMediaWiki\".\n\n{{Identical|Report}}", + "smw-legend": "This is a tab label on a subpage to special page \"SemanticMediaWiki\".", + "smw-datavalue-constraint-schema-category-invalid-type": "This is an error message.\n\nParameter:\n* $1 - Holds the name of the schema.\n* $2 - Holds the name of a schema type.", + "smw-datavalue-constraint-schema-property-invalid-type": "This is an error message.\n\nParameter:\n* $1 - Holds the name of the schema.\n* $2 - Holds the name of a schema type.", + "smw-entity-examiner-check": "An ''examiner'' refers to a process for entity examination. See https://www.semantic-mediawiki.org/wiki/Help:Entity_examinations", + "smw-entity-examiner-deferred-elastic-replication": "This is a label. Translate as noun. Elastic as Elasticsearch.", + "smw-entity-examiner-deferred-constraint-error": "This is a label.", + "smw-entity-examiner-deferred-fake": "This is a label.", + "smw-indicator-revision-mismatch": "This is a label.", + "smw-facetedsearch-intro-text": "This is an introductory sentence on Special:FacetedSearch.", + "smw-facetedsearch-intro-tips": "This is the text for a tooltip on Special:FacetedSearch.", + "smw-facetedsearch-profile-label-default": "This is a label on Special:FacetedSearch.", + "smw-facetedsearch-intro-tab-explore": "This is the label of a tab on Special:FacetedSearch.", + "smw-facetedsearch-intro-tab-search": "This is the label of a tab on Special:FacetedSearch.", + "smw-facetedsearch-explore-intro": "This is a note on Special:FacetedSearch.", + "smw-facetedsearch-profile-options": "This is the label of on option on Special:FacetedSearch.", + "smw-facetedsearch-size-options": "This is a label of on option on Special:FacetedSearch.", + "smw-facetedsearch-order-options": "This is a label of on option on Special:FacetedSearch.", + "smw-facetedsearch-format-options": "This is a label of on option on Special:FacetedSearch.", + "smw-facetedsearch-format-table": "This is a label of a selectable item on Special:FacetedSearch.", + "smw-facetedsearch-input-filter-placeholder": "This is a label of a placeholder text on Special:FacetedSearch.", + "smw-facetedsearch-no-filters": "This is a text on Special:FacetedSearch.", + "smw-facetedsearch-no-filter-range": "This is a text on Special:FacetedSearch.", + "smw-facetedsearch-no-output": "This is a label on Special:FacetedSearch.\n\nParameter:\n* $1 - Holds the name of the format.", + "smw-facetedsearch-clear-filters": "This is a label for a button on Special:FacetedSearch.", + "smw-specials-facetedsearch-helplink": "This is a status text on Special:FacetedSearch.", + "smw-search-placeholder": "This is a label on Special:FacetedSearch.", + "smw-listingcontinuesabbrev": "Shown in continuation of each first letter group. This message follows the first letter.\n\nThis is an abbreviation of the English word \"continued\". If the word is short in your language, the full stop in the end is not necessary.", + "smw-showingresults": "This message is used on some special pages such as [[Special:WantedCategories]]. Parameters:\n* $1 ― the maximum number of results in the batch shown, starting at the item indicated by the next parameter\n* $2 ― the number of the first item listed\n\nNote that numbers given in $1 and $2 are preformated (and may contain locale-specific group separators or digits), so they cannot be used in the 1st parameter for the {{PLURAL:''number''|''textual variants...''}} parser funtion, which only accepts raw numbers written with ASCII digits.\n\n{{Int:Seealso}}{{Colon}}\n* {{msg-mw|Showingresultsnum}}" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/qu.json b/mediawiki/extensions/SemanticMediaWiki/i18n/qu.json new file mode 100644 index 0000000..917eae9 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/qu.json @@ -0,0 +1,14 @@ +{ + "@metadata": { + "authors": [ + "AlimanRuna" + ] + }, + "smw-categories": "Katiguriyakuna", + "smw_purge": "Musuqchay", + "browse": "Wikipi wamp'uy", + "smw_browselink": "Kaqninkunapi wamp'uy", + "smw-livepreview-loading": "Chaqnamuspa…", + "smw-listingcontinuesabbrev": "qatiy", + "smw-showingresults": "Qhipanpiqa rikuchkanki {{PLURAL:$1|'''1''' tarisqatam|'''$1'''-kama tarisqakunatam}}, '''$2''' huchhawan qallarispa." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/rif.json b/mediawiki/extensions/SemanticMediaWiki/i18n/rif.json new file mode 100644 index 0000000..874cf4f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/rif.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "AjellidnArif", + "Jose77" + ] + }, + "smw-categories": "Taggayin", + "smw_browse_go": "Raḥ ɣa", + "smw-listingcontinuesabbrev": "arni-d." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/rm.json b/mediawiki/extensions/SemanticMediaWiki/i18n/rm.json new file mode 100644 index 0000000..0dd785f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/rm.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Kazu89" + ] + }, + "smw-categories": "Categorias", + "smw-ui-tooltip-title-legend": "Legenda", + "smw-livepreview-loading": "Chargiar…", + "smw-listingcontinuesabbrev": "cuntinuaziun", + "smw-showingresults": "Sutvart èn enfin {{PLURAL:$1|'''in''' resultat|'''$1''' resultats}} cumenzond cun il numer '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ro.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ro.json new file mode 100644 index 0000000..55c19de --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ro.json @@ -0,0 +1,153 @@ +{ + "@metadata": { + "authors": [ + "AdiJapan", + "Andrei Stroe", + "Babu", + "Emmanuel Fernandess", + "Firilacroco", + "Ion", + "KlaudiuMihaila", + "Kyouko", + "McDutchie", + "Minisarm", + "NGC 54", + "Paloi Sciurala", + "Stelistcristi", + "WebSourceContentRO" + ] + }, + "smw-desc": "Wikiul dumneavoastră devine mai accesibil — pentru mașini ''și'' oameni ([https://www.semantic-mediawiki.org/wiki/Help:User_manual documentație on-line])", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] a fost instalat și activat, dar lipsește o [https://www.semantic-mediawiki.org/wiki/Help:Upgrade cheie de actualizare] corespunzătoare.", + "smw-upgrade-error-why-title": "De ce văd această pagină?", + "smw-upgrade-error-why-explain": "Structura internă a bazei de date interne a MediaWiki se modifică și necesită unele ajustări pentru a fi pe deplin funcțională. Pot exista mai multe motive, printre care:\n* Au fost adăugate proprietăți fixe suplimentare (necesită configurarea suplimentară a tabelului)\n* Un upgrade conține unele modificări la tabele sau indicii care fac obligatorie interceptarea înainte de a accesa datele", + "smw-upgrade-error-how-title": "Cum pot remedia această eroare?", + "smw_viewasrdf": "Flux RDF", + "smw_finallistconjunct": "și", + "smw_isspecprop": "Această proprietate este una specială pe acest wiki.", + "smw_concept_description": "Descrierea conceptului „$1”", + "version-semantic": "Extensii semantice", + "smw_printername_count": "Numără rezultatele", + "smw_printername_csv": "Export CSV", + "smw_printername_dsv": "Export DSV", + "smw_printername_debug": "Interogare de depanare (pentru experți)", + "smw_printername_embedded": "Conținut de pagini încorporate", + "smw_printername_json": "Export JSON", + "smw_printername_list": "Listă", + "smw_printername_ol": "Listă numerotată", + "smw_printername_table": "Tabel", + "smw_printername_template": "Format", + "smw_printername_rdf": "Export RDF", + "smw_printername_category": "Categorie", + "validator-type-class-SMWParamSource": "text", + "smw_iq_disabled": "Interogările semantice au fost dezactivate pe acest wiki.", + "smw_iq_moreresults": "… mai multe rezultate", + "smw_parseerror": "Valoarea oferită nu este înțeleasă.", + "smw_notitle": "„$1” nu poate fi folosit ca nume de pagină în acest wiki.", + "smw_wrong_namespace": "Numai paginile din spațiul de nume \"$1\" sunt permise aici.", + "smw_emptystring": "Șirurile vide nu sunt acceptate.", + "smw_notinenum": "„$1” nu este în lista de [[Property:Allows value|valori permise]] ($2) pentru proprietatea „$3”.", + "smw_noboolean": "„$1” nu este recunoscut ca valoare booleană (adevărat/fals).", + "smw_nofloat": "„$1” nu este număr.", + "smw_infinite": "Numerele mari precum „$1” nu sunt suportate.", + "smw_nodatetime": "Data „$1” nu a fost înțeleasă.", + "smw_unexpectedpart": "Partea „$1” a interogării nu a fost înțeleasă.\nRezultatele pot fi neașteptate.", + "smw_propvalueproblem": "Valoarea proprietății „$1” nu a fost înțeleasă.", + "smw_type_header": "Proprietăți de tipul „$1”", + "smw_attribute_header": "Pagini care folosesc proprietatea „$1”", + "exportrdf": "Exportare pagini în RDF", + "smw_exportrdf_submit": "Export", + "uriresolver": "Rezolvator URI", + "properties": "Proprietăți", + "smw-categories": "Categorii", + "smw_properties_docu": "Următoarele proprietăți sunt folosite în wiki.", + "smw_property_template": "$1 de tipul $2 ($3 {{PLURAL:$3|utilizare|utilizări|de utilizări}})", + "smw_propertylackstype": "Nici un tip nu a fost specificat pentru această proprietate (presupunem deocamdată tipul $1).", + "smw_propertyhardlyused": "Această proprietate este puțin folosită în wiki!", + "unusedproperties": "Proprietăți neutilizate", + "smw-unusedproperties-docu": "Această pagină listează [https://www.semantic-mediawiki.org/wiki/Unused_properties proprietățile nefolosite] care nu sunt declarate deși nicio altă pagină nu le folosește. Pentru o imagine diferențiată, vedeți paginile speciale pentru [[Special:Properties|toate proprietățile]] sau [[Special:WantedProperties|proprietățile dorite]]", + "smw-unusedproperty-template": "$1 de tipul $2", + "wantedproperties": "Proprietăți dorite", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|utilizare|utilizări}})", + "smw_purge": "Reîncărcare", + "types": "Tipuri", + "ask": "Căutare semantică", + "smw_ask_sortby": "Sortare după coloană (opțional)", + "smw_ask_ascorder": "Crescător", + "smw_ask_descorder": "Descrescător", + "smw_ask_submit": "Găsește rezultate", + "smw_ask_editquery": "Modifică interogarea", + "smw_add_sortcondition": "[Adaugă o condiție de sortare]", + "smw_ask_hidequery": "Ascunde interogarea (afișare compactă)", + "smw_ask_help": "Ajutor despre interogare", + "smw_ask_queryhead": "Condiție", + "smw_ask_printhead": "Selecție de imprimare", + "smw_ask_printdesc": "(adăugați câte un nume de proprietate pe fiecare rând)", + "smw_ask_format_as": "Formatare ca:", + "smw_ask_defaultformat": "implicit", + "smw_ask_otheroptions": "Alte opțiuni", + "smw-ask-otheroptions-collapsed-info": "Utilizați pictograma „plus” pentru a vedea toate opțiunile disponibile", + "smw_ask_show_embed": "Arată codul de încorporat", + "smw_ask_hide_embed": "Ascunde codul de încorporat", + "smw_ask_embed_instr": "Pentru a încorpora această interogare într-o pagină wiki, utilizați codul de mai jos.", + "smw-ask-delete": "Șterge", + "smw-ask-sorting": "Sortare", + "searchbyproperty": "Căutare după proprietate", + "smw_sbv_docu": "Caută toate paginile care au anumite proprietăți și valori.", + "smw_sbv_property": "Proprietate:", + "smw_sbv_value": "Valoare:", + "smw_sbv_submit": "Găsește rezultate", + "browse": "Răsfoire wiki", + "smw_browselink": "Răsfoire proprietăți", + "smw_browse_article": "Introduceți numele paginii de la care să porniți navigarea.", + "smw_browse_go": "Mergi", + "smw_browse_show_incoming": "Afișează proprietățile care trimit aici", + "smw_browse_hide_incoming": "Ascunde proprietățile care trimit aici", + "smw_browse_no_outgoing": "Această pagină nu are proprietăți.", + "smw_browse_no_incoming": "Nici o proprietate nu trimite la această pagină.", + "smw_inverse_label_default": "$1 din", + "smw_pp_from": "De la pagina:", + "smw_pp_type": "Proprietate:", + "smw_pp_submit": "Găsește rezultate", + "smw_result_prev": "Precedent", + "smw_result_next": "Următor", + "smw_result_results": "Rezultate", + "smw_result_noresults": "Ne pare rău, niciun rezultat.", + "smwadmin": "Dashboard (Semantic MediaWiki)", + "smw_smwadmin_return": "Înapoi la $1", + "smw_smwadmin_datarefreshbutton": "Planifică reconstrucția datelor", + "smw_smwadmin_datarefreshstop": "Oprește această actualizare", + "smw_smwadmin_datarefreshstopconfirm": "Da, sunt {{GENDER:$1|sigur|sigură}}.", + "smw-admin-support": "Obținere de ajutor", + "smw-admin-supplementary-elastic-mappings-summary": "Rezumat", + "smw_adminlinks_datastructure": "Structura datelor", + "smw_adminlinks_displayingdata": "Afișarea datelor", + "smw-createproperty-isproperty": "Aceasta este o proprietate de tipul $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Valoarea admisă pentru această proprietate este|Valorile admise pentru această proprietate sunt}}:", + "smw-info-par-message": "Mesaj spre afișare.", + "smw-ui-tooltip-title-property": "Proprietate", + "smw-ui-tooltip-title-quantity": "Conversie de unități", + "smw-ui-tooltip-title-info": "Informații", + "smw-ui-tooltip-title-warning": "Avertizare", + "smw-ui-tooltip-title-parameter": "Parametru", + "smw-ui-tooltip-title-event": "Eveniment", + "smw-ui-tooltip-title-note": "Notă", + "smw_unknowntype": "Tipul „$1” al acestei proprietăți nu este valid", + "smw_concept_header": "Pagini ale conceptului „$1”", + "smw-qp-empty-data": "Imposibil de afișat datele solicitate ca urmare a unor criterii de selecție insuficiente.", + "group-smweditor": "Editori (Semantic MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|editor (Semantic MediaWiki)|editoare (Semantic MediaWiki)|editor (Semantic MediaWiki)}}", + "smw-livepreview-loading": "Încărcare…", + "log-name-smw": "Jurnal Semantic MediaWiki", + "log-show-hide-smw": "$1 Jurnal Semantic MediaWiki", + "logeventslist-smw-log": "Jurnal Semantic MediaWiki", + "smw-property-tab-usage": "Utilizare", + "smw-property-tab-redirects": "Sinonime", + "smw-property-tab-subproperties": "Subproprietăți", + "smw-concept-tab-list": "Listă", + "smw-concept-tab-errors": "Erori", + "smw-install-incomplete-intro": "Instalarea (sau actualizarea) aplicației Semantic MediaWiki nu a fost finalizată și un administrator ar trebui să execute următoarele activități pentru a preveni inconsecvențele de date înainte ca utilizatorii să continue să creeze sau să modifice conținut.", + "smw-install-incomplete-populate-hash-field": "Populația de câmp smw_hash a fost omisă în timpul configurării, este necesar să fie executat scriptul [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php].", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "Mai jos {{PLURAL:$1|apare '''1''' rezultat|apar '''$1''' rezultate|apar '''$1''' de rezultate}} începând cu nr. $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/roa-tara.json b/mediawiki/extensions/SemanticMediaWiki/i18n/roa-tara.json new file mode 100644 index 0000000..5da54b5 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/roa-tara.json @@ -0,0 +1,252 @@ +{ + "@metadata": { + "authors": [ + "Joetaras", + "McDutchie" + ] + }, + "smw-error": "Errore", + "smw-upgrade-error-title": "Errore » MediaUicchi Semandeche", + "smw-upgrade-error-why-title": "Purcè stoche a 'druche sta pàgene?", + "smw-upgrade-error-how-title": "Accumme pozze aggiustà st'errore?", + "smw-upgrade-maintenance-title": "Manutenzione » MediaUicchi Semandeche", + "smw-upgrade-maintenance-why-title": "Purcè stoche a 'druche sta pàgene?", + "smw-semantics-not-enabled": "Le funziune de Semantic MediaUicchi non ge sò abbilitate pe stu uicchi.", + "smw_viewasrdf": "Feed RDF", + "smw_finallistconjunct": ", e", + "smw-factbox-head": "... de cchiù sus a \"$1\"", + "smw-factbox-facts": "Date", + "smw-factbox-attachments": "Allegate", + "smw-factbox-attachments-value-unknown": "N/A", + "smw-factbox-attachments-is-local": "Jè locale", + "smw-factbox-attachments-help": "Fà 'ndrucà le allegate disponibbele", + "smw-factbox-facts-derived": "Fatte derivate", + "smw_isspecprop": "Sta probbietà jè 'na probbietà speciale jndr'à sta uicchi.", + "smw-concept-cache-header": "Ause d'a cache", + "smw-concept-no-cache": "Nisciuna cache disponibbile.", + "smw_concept_description": "Descrizione d'u congette \"$1\"", + "smw_no_concept_namespace": "Congette ca ponne essere definite sule sus a le pàggene d'u namespace Concept:.", + "smw_multiple_concepts": "Ogne pàgene de congette pò avè sulamende 'na definizione de congette.", + "version-semantic": "Estenziune semandeche", + "smw_baduri": "Le URI da 'u module \"$1\" non ge sò permesse.", + "smw_printername_count": "Resultate d'u condegge", + "smw_printername_csv": "Esporte CSV", + "smw_printername_dsv": "Esporte DSV", + "smw_printername_debug": "Analise de l'inderrogazione (pe esperte)", + "smw_printername_embedded": "'Ngapsule le pàggene de condenute", + "smw_printername_json": "esporte JSON", + "smw_printername_list": "Elenghe", + "smw_printername_plainlist": "Elenghe semblice", + "smw_printername_ol": "Elenghe numerate", + "smw_printername_ul": "Elenghe pundate", + "smw_printername_table": "Tabbelle", + "smw_printername_broadtable": "Tabbelle estese", + "smw_printername_template": "Template", + "smw_printername_templatefile": "File d'u template", + "smw_printername_rdf": "Esporte RDF", + "smw_printername_category": "Categorije", + "validator-type-class-SMWParamSource": "teste", + "smw-paramdesc-limit": "'U numere massime de resultate da turnà", + "smw-paramdesc-link": "Fà vedè le calore cumme collegaminde", + "smw-paramdesc-embedonly": "No ffà 'ndrucà le 'ndestaziune", + "smw-paramdesc-rdfsyntax": "Adda essere ausate 'a sindasse RDF", + "smw-paramdesc-csv-sep": "Specifiche 'nu separatore de culonne", + "smw-paramdesc-csv-valuesep": "Specifiche 'nu valore separatore", + "smw-paramdesc-dsv-separator": "Separatore da ausà", + "smw-paramdesc-dsv-filename": "'U nome pu file DSV", + "smw-paramdesc-filename": "'U nome pu file d'u resultate", + "smw-paramdesc-export": "Opziune de esportazione", + "smw-paramdesc-json-type": "Tipe de serializzazzione", + "smw-paramdesc-source": "Fonde alternative de 'nderrogazione", + "smw-paramdesc-jsonsyntax": "Sindasse JSON da ausà", + "smw-printername-feed": "Feed RSS e Atom", + "smw-paramdesc-feedtype": "Tipe de feed", + "smw-label-feed-description": "$1 $2 feed", + "smw_iq_moreresults": "... otre resultate", + "smw_parseerror": "'U valore date non ge se capisce.", + "smw_notitle": "\"$1\" non ge pò essere ausate cumme 'nu nome de 'na pàgene jndr'à sta uicchi.", + "smw_noproperty": "\"$1\" non ge pò essere ausate cumme 'nu nome de 'na probbietà jndr'à sta uicchi.", + "smw_wrong_namespace": "Sulamende le pàggene jndr'à 'u namespace \"$1\" se ponne mettere aqquà.", + "smw-constraint-error-limit": "L'elenghe tène 'nu massime de $1 violaziune.", + "smw_true_words": "vere,true,t,sine,si,yes,y", + "smw_false_words": "fause,false,f,none,no,n", + "smw_nofloat": "\"$1\" non g'è 'nu numere.", + "smw_novalues": "Nisciune valore specificate.", + "smw_nodatetime": "ìA date \"$1\" non g'ha state capite.", + "smw_type_header": "Probbietà d'u tipe \"$1\"", + "smw-propertylist-subproperty-header": "Sotteprobbietà", + "smw-propertylist-redirect-header": "Sinonime", + "specialpages-group-smw_group-maintenance": "Manutenzione", + "specialpages-group-smw_group-properties-concepts-types": "Probbietà, congette e tipe", + "specialpages-group-smw_group-search": "Sfogghie e cirche", + "exportrdf": "Esporte le pàggene jndr'à RDF", + "smw_exportrdf_submit": "Esporte", + "uriresolver": "URIResolver", + "properties": "Proprietà", + "smw-categories": "Le Categorije", + "smw_property_template": "$1 de tipe $2 ($3 {{PLURAL:$3|ause}})", + "smw-special-property-searchform-options": "Opziune", + "smw-special-wantedproperties-filter-label": "Filtre:", + "smw-special-wantedproperties-filter-none": "Ninde", + "smw-special-wantedproperties-filter-unapproved": "None approvate", + "concepts": "Congette", + "smw-special-concept-header": "Elenghe de le congette", + "smw-special-concept-empty": "Nisciune congette acchiate.", + "unusedproperties": "Probbietà non ausate", + "smw-unusedproperty-template": "$1 de tipe $2", + "wantedproperties": "Probbietà cercate", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|ause|ausene}})", + "smw_purge": "Aggiorne", + "types": "Tipe", + "smw-statistics": "Statisteche semandeche", + "smw-statistics-cached": "Statisteche semandeche (casciate)", + "smw-statistics-entities-total": "Entità (totale)", + "smw-statistics-property-instance": "Probbietà {{PLURAL:$1|valore}} (totale)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Probbietà}}]] (totale)", + "smw-statistics-property-total-info": "'U totale de le probbietà reggistrate.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Probbietà}} (totale)", + "smw-statistics-property-used": "{{PLURAL:$1|Probbietà}} (ausate cu almene 'nu valore)", + "smw-statistics-property-page": "{{PLURAL:$1|Probbietà}} (reggistrate cu 'na pàgene)", + "smw-statistics-property-type": "{{PLURAL:$1|Probbietà}} (assegnate a 'nu tipe de date)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|'Nderrogazzione|'Nderrogazziune}}", + "smw-statistics-query-format": "formate $1", + "smw-statistics-query-size": "Dimenzione de l'inderrogazzione", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Congette}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Congette}}]]", + "ask": "Recerche semandeche", + "smw_ask_ascorder": "Inghiananne", + "smw_ask_descorder": "Scennènne", + "smw-ask-order-rand": "A uecchije", + "smw_ask_submit": "Iacchie le resultate", + "smw_ask_editquery": "Cange l'inderrogazione", + "smw_add_sortcondition": "[Aggiunge 'a condizione de ordinamende]", + "smw_ask_hidequery": "Scunne l'inderrogazione ('ndruche combatte)", + "smw_ask_queryhead": "Condizione", + "smw_ask_format_as": "Formatte cumme:", + "smw_ask_defaultformat": "de base", + "smw_ask_otheroptions": "Otre opziune", + "smw-ask-delete": "Live", + "smw-ask-sorting": "Ordinamende", + "smw-ask-options": "Opziune", + "smw-ask-options-sort": "Opziune de ordinamende", + "smw-ask-format-options": "Formate e opziune", + "smw-ask-parameters": "Parametre", + "smw-ask-search": "Cirche", + "smw-ask-debug": "Debug", + "smw-ask-result": "Resultate", + "smw-ask-empty": "Pulizze tutte le vôsce", + "smw-ask-format": "Formate", + "smw-ask-extra-other": "Otre", + "smw_sbv_property": "Probbietà:", + "smw_sbv_value": "Valore:", + "smw_sbv_submit": "Iacchie le resultate", + "browse": "Sfogghie 'a uicchi", + "smw_browselink": "Sfogghie le probbietà", + "smw_browse_article": "Sckaffe 'u nome d'a pàgene da addò accumenzà 'u sfogliamende.", + "smw_browse_go": "Véje", + "smw-browse-show-group": "Fà 'ndrucà le gruppe", + "smw-browse-hide-group": "Scunne le gruppe", + "smw_inverse_label_default": "$1 de", + "smw_pp_from": "Da 'a pàgene:", + "smw_pp_type": "Probbietà:", + "smw_pp_submit": "Iacchie le resultate", + "smw-prev": "rrede {{PLURAL:$1|$1}}", + "smw-next": "nnande {{PLURAL:$1|$1}}", + "smw_result_prev": "Precedende", + "smw_result_next": "Prossime", + "smw_result_results": "Resultate", + "smw_result_noresults": "Nisciune resultate.", + "smwadmin": "Cruscotte MediaUicchi Semandeche", + "smw-admin-statistics-job-title": "Statisteche d'u job", + "smw_smwadmin_return": "Tuèrne a $1", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 jè sconzigliate e adda essere luate jndr'à $2", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|opzione|opziune}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 ste avène cangiate da $2", + "smw-admin-deprecation-notice-title-notice": "'Mbostaziune sconzigliate", + "smw-smwadmin-refresh-title": "Aggiustamende e aggiornamende d'u date", + "smw_smwadmin_datarefresh": "Recostruzione d'u date", + "smw-admin-other-functions": "Otre funziune", + "smw-admin-statistics-extra": "Funziune statisteche", + "smw-admin-supplementary-section-title": "Funziune supplemendare", + "smw-admin-supplementary-section-subtitle": "Funziune prengepàle supportate", + "smw-admin-supplementary-settings-title": "Configurazione e 'mbostaziune", + "smw-admin-main-title": "Semantic MediaUicchi » $1", + "smw-admin-supplementary-operational-statistics-title": "Statisteche operazionale", + "smw-admin-supplementary-elastic-settings-title": "'Mbostaziune (indice)", + "smw-admin-supplementary-elastic-mappings-title": "Mappature", + "smw-admin-supplementary-elastic-mappings-summary": "Riepiloghe", + "smw-admin-supplementary-elastic-mappings-fields": "Mappature de le cambe", + "smw-admin-supplementary-elastic-nodes-title": "Node", + "smw-admin-supplementary-elastic-nodes-intro": "$1 fà 'ndrucà le statisteche d'u node", + "smw-admin-supplementary-elastic-indices-title": "Indice", + "smw-admin-supplementary-elastic-statistics-title": "Statisteche", + "smw-admin-supplementary-elastic-replication-header-title": "State d'a repliche", + "smw-admin-supplementary-elastic-replication-files": "File", + "smw-property-label-similarity-threshold": "Soglie:", + "smw-property-label-similarity-type": "Fà 'ndrucà l'ID d'u tipe", + "smw-paramdesc-category-delim": "'U delimitatore", + "smw-info-par-message": "Messàgge da fà 'ndrucà:", + "prefs-smw": "Semantic MediaUicchi", + "prefs-general-options": "Opziune generale", + "smw-ui-tooltip-title-property": "Probbietà", + "smw-ui-tooltip-title-warning": "Avvertimende", + "smw-ui-tooltip-title-parameter": "Parametre", + "smw-ui-tooltip-title-event": "Fatte", + "smw-ui-tooltip-title-note": "Note", + "smw-ui-tooltip-title-legend": "Leggende", + "smw-ui-tooltip-title-reference": "Riferimende", + "smw_unknowntype": "'U tipe \"$1\" de sta probbietà non g'è valide", + "smw-admin-idlookup-input": "Cirche:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Panorameche", + "smw-admin-configutation-tab-settings": "'Mbostaziune", + "smw-admin-configutation-tab-namespaces": "Namespace", + "smw-admin-maintenance-script-section-update": "Script di aggiornamento", + "smw-admin-maintenance-script-section-rebuild": "Script di ricostruzione", + "smw-livepreview-loading": "Stoche a careche…", + "smw-sp-searchbyproperty-resultlist-header": "Elenghe de le resultate", + "smw-search-profile-sort-title": "Titole", + "smw-search-profile-extended-section-sort": "Ordene pe", + "smw-search-profile-extended-section-query": "'Nderrogazione", + "log-name-smw": "Archivije de Semantic MediaUicchi", + "log-show-hide-smw": "$1 Archivije de Semantic MediaUicchi", + "smw-datavalue-invalid-number": "\"$1\" non ge pò essere 'nderpretate cumme 'nu numere.", + "smw-type-tab-properties": "Probbietà", + "smw-type-tab-types": "Tipe", + "smw-type-tab-errors": "Errore", + "smw-type-primitive": "Nderre-nderre", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|seconde}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|seconde}}", + "smw-clipboard-copy-link": "Copie 'u collegamende jndr'à l'appunde", + "smw-no-data-available": "Nisciune date disponibbile.", + "smw-format-datatable-loadingrecords": "Stoche a careche…", + "smw-format-datatable-processing": "Stoche a processe...", + "smw-format-datatable-search": "Cirche:", + "smw-format-datatable-first": "Prime", + "smw-format-datatable-last": "Urteme", + "smw-format-datatable-next": "Prossime", + "smw-format-datatable-previous": "Precedende", + "smw-loading": "Stoche a careche…", + "smw-preparing": "Stoche a prepare...", + "smw-expand": "Spanne", + "smw-collapse": "Scunne", + "smw-copy": "Copie", + "smw-copy-clipboard-title": "Copie 'u condenute jndr'à le appunde", + "smw-schema-error-title": "{{PLURAL:$1|Errore}} de validazione", + "smw-schema-error-json": "Errore JSON: \"$1\"", + "smw-schema-validation-schema-title": "Scheme JSON", + "smw-schema-summary-title": "Riepiloghe", + "smw-schema-title": "Scheme", + "smw-schema-type": "Tipe d'u scheme", + "smw-schema-type-description": "Descrizione d'u tipe", + "smw-schema-description-property-profile-schema": "Stu tipe de scheme supporte 'a definizione de 'nu profile pe dichiarà le caratteristeche a 'a probbietà assegnate e le valore de l'annotaziune.", + "smw-property-tab-usage": "Ause", + "smw-property-tab-redirects": "Sinonime", + "smw-property-tab-subproperties": "Sotteprobbietà", + "smw-property-tab-errors": "Assegnazziune sbagliate", + "smw-property-tab-constraint-schema-title": "Vingole d'u scheme combilate", + "smw-concept-tab-list": "Elenghe", + "smw-concept-tab-errors": "Errore", + "smw-listingcontinuesabbrev": "cond.", + "smw-showingresults": "Stoche a fazze vedè aqquà sotte {{PLURAL:$1|'''1''' resultete|'''$1''' resultete}} ca accumenzene cu #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ru.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ru.json new file mode 100644 index 0000000..1f9679b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ru.json @@ -0,0 +1,925 @@ +{ + "@metadata": { + "authors": [ + "1233qwer1234qwer4", + "888levant888", + "Alex Great", + "Alex Mashin", + "Alexander Yukal", + "Alexandr Efremov", + "Athena Atterdag", + "Diman Russkov", + "Diralik", + "Drbug", + "Edible Melon", + "Eduardo Addad de Oliveira", + "Eduardoaddad", + "Eleferen", + "Evs", + "Ferrer", + "Gehhrr", + "Happy13241", + "Helpau", + "Infovarius", + "Iniquity", + "Innv", + "Irus", + "Kaganer", + "Kareyac", + "Kghbln", + "LeonardoGW", + "Lockal", + "Lugimax", + "Macofe", + "Mailman", + "Mariya", + "Marshmallych", + "McDutchie", + "Megakott", + "Meshkov.a", + "Mouse21", + "Movses", + "NBS", + "Nemo bis", + "Nitch", + "Nk88", + "Okras", + "Pacha Tchernof", + "Pastakhov", + "Patrick Star", + "Putnik", + "QuestPC", + "Redredsonia", + "Rubin16", + "Shaleych", + "Silicium Power", + "Soul Train", + "Staspotanin2", + "Tourorist", + "Van de Bugger", + "Vanished 904959300", + "Vlad5250", + "Wikisaurus", + "Wirbel78", + "Yurina Tatiana", + "Zpizza", + "Александр Сигачёв", + "Батыр Комдошев", + "Туллук", + "Умар", + "Ядерный Трамвай", + "아라" + ] + }, + "smw-desc": "Делает вашу вики более доступной — для машин ''и'' людей ([https://www.semantic-mediawiki.org/wiki/Help:User_manual документация в сети])", + "smw-error": "Ошибка", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] был установлен и включен, но отсутствует соответствующий [https://www.semantic-mediawiki.org/wiki/Help:Upgrade ключ обновления].", + "smw-upgrade-release": "Версия", + "smw-upgrade-progress": "Прогресс", + "smw-upgrade-progress-create-tables": "Создание (или обновление) таблиц и индексов...", + "smw-upgrade-progress-post-creation": "Выполнение задач по созданию записей...", + "smw-upgrade-error-title": "Ошибка » Semantic MediaWiki", + "smw-upgrade-error-why-title": "Почему я вижу эту страницу?", + "smw-upgrade-error-how-title": "Как исправить эту ошибку?", + "smw-extensionload-error-why-title": "Почему я вижу эту страницу?", + "smw-extensionload-error-how-title": "Как исправить эту ошибку?", + "smw-upgrade-maintenance-why-title": "Почему я вижу эту страницу?", + "smw-semantics-not-enabled": "Функциональность Semantic MediaWiki не подключена на этой вики.", + "smw_viewasrdf": "RDF источник", + "smw_finallistconjunct": " и", + "smw-factbox-head": "... больше о \"$1\"", + "smw-factbox-facts": "Факты", + "smw-factbox-facts-help": "Показывает высказывания и факты, которые были созданы пользователем", + "smw-factbox-attachments": "Вложения", + "smw-factbox-attachments-value-unknown": "Н/Д", + "smw-factbox-attachments-is-local": "Является локальным", + "smw-factbox-attachments-help": "Показывает доступные вложения", + "smw-factbox-facts-derived": "Полученные факты", + "smw-factbox-facts-derived-help": "Показывает факты, которые были получены из правил, или с помощью других методов рассуждений", + "smw_isspecprop": "Это свойство относится к числу специальных свойств данного вики-сайта.", + "smw-concept-cache-header": "Использование кэша", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count concept cache] содержит {{PLURAL:$1|'''one''' entity|'''$1''' entities}} ($2).", + "smw-concept-no-cache": "Кэш отсутствует.", + "smw_concept_description": "Описание концепта «$1»", + "smw_no_concept_namespace": "Концепты могут определяться только на страницах, принадлежащих пространству имён «Концепт:» («Concept:»).", + "smw_multiple_concepts": "Страница представления может содержать только одно определение представления.", + "smw_concept_cache_miss": "Концепт «$1» в настоящий момент не может быть использовано, так как настройка вики-сайта требует, чтобы его результат определялся в фоновом режиме. Если данное сообщение не исчезнет через некоторое время, обратитесь к администратору вики-сайта для включения данного концепта.", + "smw_noinvannot": "Обратным свойствам не могут быть присвоены значения.", + "version-semantic": "Семантические расширения", + "smw_baduri": "Извините, но ссылки из диапазона \"$1\" не доступны отсюда.", + "smw_printername_count": "Результаты подсчёта", + "smw_printername_csv": "Экспорт CSV", + "smw_printername_dsv": "Экспорт DSV", + "smw_printername_debug": "Отладка запросов (для экспертов)", + "smw_printername_embedded": "Включаемое содержимое страниц", + "smw_printername_json": "Экспорт JSON", + "smw_printername_list": "Список", + "smw_printername_plainlist": "Обычный список", + "smw_printername_ol": "Нумерованный список", + "smw_printername_ul": "Маркированный список", + "smw_printername_table": "Таблица", + "smw_printername_broadtable": "Широкая таблица", + "smw_printername_template": "Шаблон", + "smw_printername_templatefile": "Файл шаблона", + "smw_printername_rdf": "RDF-экспорт", + "smw_printername_category": "Категория", + "validator-type-class-SMWParamSource": "текст", + "smw-paramdesc-limit": "Максимальное число возвращаемых результатов", + "smw-paramdesc-offset": "Смещение первого результата", + "smw-paramdesc-headers": "Показывать заголовки/названия свойств", + "smw-paramdesc-mainlabel": "Обозначение, даваемое названию главной страницы", + "smw-paramdesc-link": "Показывать значения как ссылки", + "smw-paramdesc-intro": "Текст для отображения перед результатами запроса, если они есть", + "smw-paramdesc-outro": "Текст для отображения после результатов запроса, если они есть", + "smw-paramdesc-default": "Текст для отображения, если нет результатов запроса", + "smw-paramdesc-sep": "Разделитель значений", + "smw-paramdesc-propsep": "Разделитель между свойствами в конечной записи", + "smw-paramdesc-valuesep": "Разделитель между значениями переменной для этого свойства", + "smw-paramdesc-showsep": "Показать разделитель в верхней части файла CSV (\"sep=\")", + "smw-paramdesc-distribution": "Вместо отображения всех значений, подсчитать и отобразить их вхождения.", + "smw-paramdesc-distributionsort": "Сортировать распределение значений по частоте появления.", + "smw-paramdesc-distributionlimit": "Ограничение распределения значений для подсчёта только некоторыми значениями.", + "smw-paramdesc-aggregation": "Укажите, к чему должна относиться агрегация", + "smw-paramdesc-template": "Название шаблона, с помощью которого будут выводиться данные", + "smw-paramdesc-columns": "Количество столбцов для вывода результатов поиска", + "smw-paramdesc-userparam": "Значение, передаваемое в каждый вызов шаблонов, если шаблон используется", + "smw-paramdesc-class": "Дополнительный класс CSS для списка", + "smw-paramdesc-introtemplate": "Название шаблона для отображения перед результатами запроса, если они есть", + "smw-paramdesc-outrotemplate": "Название шаблона для отображения после результатов запроса, если они есть", + "smw-paramdesc-embedformat": "HTML-тег, используемый для обозначения заголовков", + "smw-paramdesc-embedonly": "Не отображать заголовки", + "smw-paramdesc-table-class": "Дополнительный класс CSS для таблиц", + "smw-paramdesc-table-transpose": "Отобразить заголовки таблицы по вертикали, а результаты — по горизонтали", + "smw-paramdesc-rdfsyntax": "Какой синтаксис RDF использовать", + "smw-paramdesc-csv-sep": "Использовать разделитель", + "smw-paramdesc-csv-valuesep": "Использовать разделитель значений", + "smw-paramdesc-csv-merge": "Объединить значения столбцов и колонок с идентичным идентификатором субъекта (aka первая колонка)", + "smw-paramdesc-csv-bom": "Добавить BOM (символ для сигнальной сущности) в верху выходного файла", + "smw-paramdesc-dsv-separator": "Использовать разделитель", + "smw-paramdesc-dsv-filename": "Имя файла DSV", + "smw-paramdesc-filename": "Имя для выходного файла", + "smw-smwdoc-description": "Показывает таблицу всех параметров, которые могут использоваться для указанного формата вывода результата вместе со значениями по умолчанию и описаниями.", + "smw-smwdoc-default-no-parameter-list": "Этот результат не предоставляет специфичные для формата параметры.", + "smw-smwdoc-par-format": "Результирующий формат для отображения документации по параметрам.", + "smw-smwdoc-par-parameters": "Какие параметры показыватьː «specific» — для тех, которые добавлены форматом, «base» — для тех, которые доступных во всех форматах, и «all» — для обоих.", + "smw-paramdesc-sort": "Свойство, по которому сортировать запрос", + "smw-paramdesc-order": "Порядок сортировки запроса", + "smw-paramdesc-searchlabel": "Текст для продолжения поиска", + "smw-paramdesc-named_args": "Имена аргументов, передаваемых в шаблон", + "smw-paramdesc-template-arguments": "Определяет, как названные аргументы передаются к шаблону", + "smw-paramdesc-import-annotation": "Дополнительные аннотированные данные, которые будут скопированы во время парсинга субъекта.", + "smw-paramdesc-export": "Параметры экспорта", + "smw-paramdesc-prettyprint": "Красивый вывод на печать, который отображает дополнительные отступы и переводы строк", + "smw-paramdesc-json-unescape": "Выводить неэкранированные слеши и многобайтные символы Юникода.", + "smw-paramdesc-json-type": "Тип сериализации", + "smw-paramdesc-source": "Альтернативный источник запроса", + "smw-paramdesc-jsonsyntax": "Синтаксис JSON, который будет использоваться", + "smw-printername-feed": "Лента RSS и Atom", + "smw-paramdesc-feedtype": "Тип канала", + "smw-paramdesc-feedtitle": "Текст для использования в качестве названия канала", + "smw-paramdesc-feeddescription": "Текст для использования в качестве описание канала", + "smw-paramdesc-feedpagecontent": "Содержимое страницы, которое будет отображаться на канале", + "smw-label-feed-description": "$2-канал $1", + "smw-paramdesc-mimetype": "Тип медиафайла (тип MIME) для файла на выходе", + "smw_iq_disabled": "Извините, но встроенные запросы отключены для этого сайта.", + "smw_iq_moreresults": "… следующие результаты", + "smw_parseerror": "Переданное значение не было понято.", + "smw_decseparator": ",", + "smw_kiloseparator": "", + "smw_notitle": "“$1” не может быть использован как заголовок статьи на данном сайте.", + "smw_noproperty": "«$1» не может использоваться как имя свойства в вики.", + "smw_wrong_namespace": "Здесь допустимы только страницы из пространства имён «$1».", + "smw_manytypes": "Более одного типа определено для свойства.", + "smw_emptystring": "Пустые строки недопустимы.", + "smw_notinenum": "«$1» не входит в список ($2) [[Property:Allows value|допустимых значений]] для свойства «$3».", + "smw-datavalue-constraint-error-allows-value-list": "«$1» не входит в список ($2) [[Property:Allows value|допустимых значений]] для свойства «$3».", + "smw-datavalue-constraint-error-allows-value-range": "«$1» не входит в список ($2) ограничений для [[Property:Allows value|допустимых значений]] для свойства «$3».", + "smw_noboolean": "«$1» — не булево значение (да/нет).", + "smw_true_words": "да,t,yes,д,истина,и,true", + "smw_false_words": "нет,f,no,n,н,ложь,л,false", + "smw_nofloat": "«$1» — не число.", + "smw_infinite": "Столь длинные числа как $1 не поддерживаются.", + "smw_unitnotallowed": "«$1» не объявлена ​​как допустимая единица измерения этого свойства.", + "smw_nounitsdeclared": "Для данного свойства не объявлены единицы измерения.", + "smw_novalues": "Не указаны значения.", + "smw_nodatetime": "Дата «$1» не распознана.", + "smw_toomanyclosing": "Ошибка: Слишком много вхождений “$1” в данном запросе.", + "smw_noclosingbrackets": "Открывающаяся пара скобок «[[» не была закрыта парой соответствующих ей закрывающих скобок «]]» в данном запросе.", + "smw_misplacedsymbol": "Ошибка: Использование символа “$1” в данном месте лишено смысла.", + "smw_unexpectedpart": "Ошибка: Часть “$1” запроса не была распознана. Результаты могут отличаться от ожидаемых.", + "smw_emptysubquery": "Ошибка: В одном из подзапросов не указано правильного знака условия.", + "smw_misplacedsubquery": "Ошибка: Подзапрос используется в месте, где подзапросы не разрешены.", + "smw_valuesubquery": "Подзапросы не поддерживаются для значений свойства «$1».", + "smw_badqueryatom": "Часть запроса «[[…]]» не была разобрана.", + "smw_propvalueproblem": "Ошибка: Значение свойства “$1” не разобрано.", + "smw_noqueryfeature": "Часть запроса была опущена, так как некоторые из возможностей языка запросов не поддерживаются на этом вики-сайте ($1).", + "smw_noconjunctions": "Часть запроса была опущена, так как операция «Логическое И» не поддерживается на этом вики-сайте ($1).", + "smw_nodisjunctions": "Ошибка: Дизъюнкции (логическое ИЛИ) не поддерживаются данным сайтом, поэтому использующая их часть запроса была проигнорирована ($1).", + "smw_querytoolarge": "{{PLURAL:$2|1=Указанное условие|$2 указанных условия|$2 указанных условий}} запроса не могут быть выполнены из-за ограничения на глубину или размер запроса: $1.", + "smw_notemplategiven": "Чтобы данный запрос выполнялся, необходимо задать значение для параметра «template».", + "smw_db_sparqlqueryproblem": "Не удалось получить результат запроса к базе данных SPARQL. Эта может быть временная ошибка или проблема в программном обеспечении базы данных.", + "smw_db_sparqlqueryincomplete": "Поиск ответа на запрос оказался слишком сложным и был прерван. Некоторые результаты могут быть не показаны. По возможности попробуйте упростить запрос.", + "smw_type_header": "Свойства типа “$1”", + "smw_typearticlecount": "{{PLURAL:$1|Отображается|Отображаются}} $1 {{PLURAL:$1|свойство|свойства|свойств}} этого типа.", + "smw_attribute_header": "Страницы, использующие свойство “$1”", + "smw_attributearticlecount": "{{PLURAL:$1|Отображается|Отображаются}} $1 {{PLURAL:$1|страница, использующая|страницы, использующие|страниц, использующих}} это свойство.", + "smw-propertylist-subproperty-header": "Подсвойства", + "smw-propertylist-redirect-header": "Синонимы", + "smw-propertylist-error-header": "Страницы с неправильными назначениями", + "smw-propertylist-count": "Показ $1 {{PLURAL:$1|1=связанной сущности|связанных сущностей}}.", + "smw-propertylist-count-with-restricted-note": "Показ $1 {{PLURAL:$1|1=связанной сущности|связанных сущностей}} (доступно больше, но отобразить можно только «$2»).", + "smw-propertylist-count-more-available": "Показ $1 {{PLURAL:$1|1=связанной сущности|связанных сущностей}} (доступно больше).", + "specialpages-group-smw_group-maintenance": "Обслуживание", + "specialpages-group-smw_group-properties-concepts-types": "Свойства, концепты и типы", + "specialpages-group-smw_group-search": "Обзор и поиск", + "exportrdf": "Экспорт страниц в RDF", + "smw_exportrdf_docu": "Эта страница позволяет экспортировать части статьи в формате RDF. Наберите заголовки необходимых статей по одному на строку.", + "smw_exportrdf_recursive": "Рекурсивный экспорт всех связанных страниц. Результат этой операции может быть очень большим!", + "smw_exportrdf_backlinks": "Также экспортировать все страницы, которые ссылаются на экспортируемые страницы. Генерирует RDF с поддержкой полноценной навигации.", + "smw_exportrdf_lastdate": "Не экспортировать страницы, которые не менялись с указанной даты.", + "smw_exportrdf_submit": "Экспорт", + "uriresolver": "Преобразователь URI", + "properties": "Свойства", + "smw-categories": "Категории", + "smw_properties_docu": "Следующие свойства используются на данном сайте.", + "smw_property_template": "$1 имеет тип $2, ($3 {{PLURAL:$3|использование|использования|использований}})", + "smw_propertylackspage": "Каждое свойство должно иметь свою страницу описания!", + "smw_propertylackstype": "Данному свойству не сопоставлен тип данных (по умолчанию будет использоваться тип $1).", + "smw_propertyhardlyused": "Это свойство почти не используется на сайте.", + "smw-property-name-invalid": "Свойство $1 не может быть использовано (недопустимое имя свойства).", + "smw-property-name-reserved": "«$1» входит в число зарезервированных имён и не должно быть использовано как свойство. Информация о том, почему это имя зарезервировано, может содержаться в [https://www.semantic-mediawiki.org/wiki/Help:Property_naming этой справочной странице].", + "smw-sp-property-searchform": "Показать свойства, которые содержат:", + "smw-sp-property-searchform-inputinfo": "Ввод чувствителен к регистру, и когда используется для фильтрации, отображаются только те свойства, которые соответствуют условию.", + "smw-special-property-searchform": "Показать свойства, которые содержат:", + "smw-special-property-searchform-inputinfo": "Ввод чувствителен к регистру, и когда используется для фильтрации, отображаются только те свойства, которые соответствуют условию.", + "smw-special-property-searchform-options": "Параметры", + "smw-special-wantedproperties-filter-label": "Фильтр:", + "smw-special-wantedproperties-filter-none": "Ничего", + "smw-special-wantedproperties-filter-unapproved": "неподтвержденный", + "smw-special-wantedproperties-filter-unapproved-desc": "Опция фильтра использована в связи с режимом полномочий", + "concepts": "Концепты", + "smw-special-concept-docu": "[https://www.semantic-mediawiki.org/wiki/Help:Концепты Концепт] можно рассматривать как «динамическую категорию», т.е. как совокупность страниц, которая не создана вручную, а собрана Семантической Медиавики из описания данного запроса.", + "smw-special-concept-header": "Список концептов", + "smw-special-concept-count": "В списке {{PLURAL:$1|1=числится следующий|числятся следующие}} {{PLURAL:$1|$1 концепция|$1 концепции|$1 концепций|1=концепция}}", + "smw-special-concept-empty": "Концепции не найдены.", + "unusedproperties": "Неиспользуемые свойства", + "smw-unusedproperties-docu": "На этой странице перечислены [https://www.semantic-mediawiki.org/wiki/Wanted_properties неиспользуемые свойства], которые определены, но при этом ни одна страница не использует их. См. также:[[Special:Properties|используемые]] и [[Special:WantedProperties|требуемые свойства]].", + "smw-unusedproperty-template": "$1 имеет тип $2", + "wantedproperties": "Неописанные свойства", + "smw-wantedproperties-docu": "На этой странице перечислены [https://www.semantic-mediawiki.org/wiki/Wanted_properties необходимые свойства], которые используются на вики, но не имеют страницу с их описанием. Для дифференцированного подхода, см. служебные страницы с [[Special:Properties|заполненными]] или [[Special:UnusedProperties|неиспользуемыми свойствами]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|использование|использования|использований}})", + "smw-special-wantedproperties-docu": "На этой странице перечислены [https://www.semantic-mediawiki.org/wiki/Wanted_properties необходимые свойства], используемые в вики, но не имеющие своей страницы описания. Для раздельного просмотре см. служебные страницы со списком [[Special:Properties|доступных]] или [[Special:UnusedProperties|неиспользуемых]] свойств.", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|использование|использования|использований}})", + "smw_purge": "Обновить", + "smw-purge-update-dependencies": "Semantic MediaWiki очищает кэш текущей страницы из-за каких-то устаревших зависимостей, которые она обнаружила, и которые нуждаются в обновлении.", + "smw-purge-failed": "Semantic MediaWiki пыталось обновить страницу, но неуспешно", + "types": "Типы", + "smw_types_docu": "Список [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes доступных типов данных], в котором каждый [https://www.semantic-mediawiki.org/wiki/Help:Datatype тип данных] представляет собой уникальный набор атрибутов для описания значения с точки зрения хранения и отображения характеристик, которые можно задавать для свойств.", + "smw-special-types-no-such-type": "\"$1\" неизвестен или не был указан как действительный тип данных.", + "smw-statistics": "Семантическая статистика", + "smw-statistics-cached": "Семантическая статистика (кэшированная)", + "smw-statistics-entities-total": "Сущности (всего)", + "smw-statistics-entities-total-info": "Примерный подсчет строк сущностей. Он включает свойства, понятия, и любые другие зарегистрированные репрезентации объектов, которые требуют назначения идентификатора.", + "smw-statistics-property-instance": "{{PLURAL:$1|1=Значение|Значения|Значений}} свойства (всего)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|1=Свойство|Свойства|Свойств}}]] (всего)", + "smw-statistics-property-total-info": "Общее количество зарегистрированных свойств.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|1=Свойство|Свойства|Свойств}} (всего)", + "smw-statistics-property-used": "{{PLURAL:$1|Свойство|Свойства}} (используется по крайней мере с одним значением)", + "smw-statistics-property-page": "{{PLURAL:$1|Свойство|Свойства|Свойств}} (зарегистрировано на странице)", + "smw-statistics-property-type": "{{PLURAL:$1|Свойство|Свойства|Свойств}} (назначено для типа данных)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Запрос|Запроса|Запросов}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Запрос|Запросы}}]] (встроено, всего)", + "smw-statistics-query-format": "Формат $1", + "smw-statistics-query-size": "Размер запроса", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|1=Концепция|Концепции|Концепций}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|1=Концепция|Концепции|Концепций}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Подобъект|Подобъекта|Подобъектов}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Подобъект|Подобъекта|Подобъектов}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|1=Тип данных|Типа данных|Типов данных}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Значение свойства|Значения свойства|Значений свойств}} ([[Special:ProcessingErrorList|{{PLURAL:$1|неправильная аннотация|неправильные аннотации|неправильных аннотаций}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Значение свойства|Значения свойства|Значений свойств}} ({{PLURAL:$1|неправильная аннотация|неправильные аннотации|неправильных аннотаций}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Устаревший объект|Устаревшие объекты}}]", + "smw-statistics-delete-count-info": "От сущностей, помеченных на удаление, следует избавляться регулярно с помощью скриптов обслуживания.", + "smw_uri_doc": "Преобразователь URI осуществляет [$1 W3C поиск http тэгов с использованием Range-14].\nОн обеспечивает доставку RDF-представления (для машин) или вики-страницы (для людей) в зависимости от запроса.", + "ask": "Семантический поиск", + "smw-ask-help": "Этот раздел содержит ссылки, которые помогают объяснить, как использовать синтаксис #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selecting pages] описывает, как выбирать страницы и строить условия\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Search operators] список доступных операторов поиска, включая операторы для запроса диапазона и знаки подстановки\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Displaying information] выделяет использование распечатки условий и опций форматирования", + "smw_ask_sortby": "Сортировать по столбцу (необязательно)", + "smw_ask_ascorder": "По возрастанию", + "smw_ask_descorder": "По убыванию", + "smw-ask-order-rand": "случайно", + "smw_ask_submit": "Найти", + "smw_ask_editquery": "Редактировать запрос", + "smw_add_sortcondition": "[Добавить условие сортировки]", + "smw-ask-sort-add-action": "Добавить условие сортировки", + "smw_ask_hidequery": "Скрыть запрос (компактный вид)", + "smw_ask_help": "Помощь по составлению запросов", + "smw_ask_queryhead": "Условие", + "smw_ask_printhead": "Выбор распечатки", + "smw_ask_printdesc": "(добавляйте по одному названию свойства на строку)", + "smw_ask_format_as": "Форматировать как:", + "smw_ask_defaultformat": "по умолчанию", + "smw_ask_otheroptions": "Другие настройки", + "smw-ask-otheroptions-info": "Этот раздел содержит параметры, которые изменяют настройки вывода. Описания параметров можно просмотреть, наведя на них курсор мыши.", + "smw-ask-otheroptions-collapsed-info": "Пожалуйста, используйте значок плюса для просмотра всех доступных параметров", + "smw_ask_show_embed": "Показать встроенный код", + "smw_ask_hide_embed": "Скрыть встроенный код", + "smw_ask_embed_instr": "Для линейного встраивания этого запроса в вики-страницу, используйте приведённых ниже код.", + "smw-ask-delete": "Удалить", + "smw-ask-sorting": "Сортировка", + "smw-ask-options": "Настройки", + "smw-ask-options-sort": "Настройки сортировки", + "smw-ask-format-options": "Формат и опции", + "smw-ask-parameters": "Параметры", + "smw-ask-search": "Поиск", + "smw-ask-debug": "Отладка", + "smw-ask-debug-desc": "Генерирует информацию об отладке запроса", + "smw-ask-no-cache": "Отключить кэш", + "smw-ask-no-cache-desc": "Результаты без кеша запроса", + "smw-ask-result": "Результат", + "smw-ask-empty": "Очистить все записи", + "smw-ask-download-link-desc": "Загружать запрошенные результаты в формате $1", + "smw-ask-format": "Формат", + "smw-ask-format-selection-help": "Справка для выбранного формата: $1.", + "smw-ask-condition-change-info": "Условие было изменено, и поисковой системе требуется повторить запрос для получения результатов, соответствующих новым требованиям.", + "smw-ask-input-assistance": "Помощь при вводе", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Помощь по вводу] предоставляется для полей печати, сортировки и условия. Поле условия должно иметь одну из следующих приставок:", + "smw-ask-condition-input-assistance-property": "p: для включения подсказок о свойствах (к примеру [[p:Имеет ...)", + "smw-ask-condition-input-assistance-category": "c: для получения подсказок по категориям", + "smw-ask-condition-input-assistance-concept": "con: для получения подсказок по концепции", + "smw-ask-format-change-info": "Формат был изменен и требуется совершить запрос снова, для соответствия новых параметров и настроек визуализации.", + "smw-ask-format-export-info": "Выбранный формат является форматом экспорта, который не имеет визуальной репрезентации, поэтому результаты доступны только после загрузки.", + "smw-ask-query-search-info": "На запрос $1 был получен ответ из {{PLURAL:$3|1=$2 (из кеша)|$2 (из кеша)|$2}} за $4 {{PLURAL:$4|секунду|секунды|секунд}}.", + "smw-ask-extra-query-log": "Журнал запросов", + "smw-ask-extra-other": "Другой", + "searchbyproperty": "Искать по свойству", + "processingerrorlist": "Список ошибок обработки", + "constrainterrorlist": "Список ошибок ограничений", + "propertylabelsimilarity": "Сообщение о похожести метки свойств", + "missingredirectannotations": "Отсутствуют аннотации перенаправлений", + "smw-processingerrorlist-intro": "Следующий список предоставляет собой обзор [https://www.semantic-mediawiki.org/wiki/Processing_errors ошибок обработки], которые возникли в связи с [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. Рекомендуется регулярно следить за этим списком и исправлять некорректные аннотации значений.", + "smw_sbv_docu": "Искать все страницы, которые содержат указанное свойство и значение.", + "smw_sbv_novalue": "Укажите значение или просмотрите все значения свойства $1.", + "smw_sbv_displayresultfuzzy": "Список всех страниц, содержащих свойство «$1» со значением «$2».\nТак как количество точных результатов невелико, также показаны страницы, содержащие близкие значения данного свойства.", + "smw_sbv_property": "Свойство:", + "smw_sbv_value": "Значение:", + "smw_sbv_submit": "Найти", + "browse": "Обзор страниц", + "smw_browselink": "Узнать свойства", + "smw_browse_article": "Введите имя страницы для начала обзора.", + "smw_browse_go": "Перейти", + "smw_browse_show_incoming": "Показать входящие свойства", + "smw_browse_hide_incoming": "Скрыть свойства, ссылающиеся сюда", + "smw_browse_no_outgoing": "Эта страница не содержит свойств.", + "smw_browse_no_incoming": "Нет свойств, ссылающихся на эту страницу.", + "smw-browse-from-backend": "В настоящее время идёт получение информации от серверного приложения.", + "smw-browse-intro": "Эта страница предоставляет детали о субъекте или экземпляре сущности, пожалуйста введите имя объекта, который будет инспектирован.", + "smw-browse-invalid-subject": "Валидация субъекта вернула ошибку \"$1\" .", + "smw-browse-api-subject-serialization-invalid": "Субъект имеет неверный формат сериализации.", + "smw-browse-js-disabled": "Есть подозрение, что JavaScript отключён или недоступен. Мы рекомендуем использовать браузер, в котором он поддерживается. Другие варианты обсуждаются на странице параметра конфигурации [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Показать группы", + "smw-browse-hide-group": "Скрыть группы", + "smw-noscript": "Эта страница или действие требует работы JavaScript. Пожалуйста, включите JavaScript в вашем браузере, или используйте браузер, в котором он поддерживается, чтобы эта функциональность могла предоставляться по запросу. Если Вам нужна дополнительная поддержка, пожалуйста, посмотрите страницу справки [https://www.semantic-mediawiki.org/wiki/Help:Noscript «Noscript»]", + "smw_inverse_label_default": "$1 из", + "smw_inverse_label_property": "Метка обратного свойства", + "pageproperty": "Страница поиска свойств", + "smw_pp_docu": "Введите страницу и свойство, либо просто свойство для получения всех назначенных значений.", + "smw_pp_from": "Со страницы:", + "smw_pp_type": "Свойство:", + "smw_pp_submit": "Поиск результатов", + "smw_result_prev": "Предыдущая", + "smw_result_next": "Следующая", + "smw_result_results": "Результаты", + "smw_result_noresults": "Извините, но ничего не найдено.", + "smwadmin": "Панель инструментов Semantic MediaWiki", + "smw-admin-statistics-job-title": "Статистика заданий", + "smw-admin-statistics-job-docu": "Статистика заданий отображает информацию о запланированных заданиях Semantic MediaWiki, которые ещё не были выполнены. Количество заданий может быть неточным или может содержать неудачные попытки их выполнения. Обратитесь к [https://www.mediawiki.org/wiki/Special:MyLanguage/manual:Job_queue к руководству] за дополнительной информацией.", + "smw-admin-statistics-querycache-title": "Кэш запросов", + "smw-admin-statistics-querycache-disabled": "[https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] не был включён на этой вики, поэтому статистика недоступна.", + "smw-admin-statistics-semanticdata-overview": "Обзор", + "smw-admin-permission-missing": "Доступ к этой странице ограничен. Пожалуйста, обратитесь к [https://www.semantic-mediawiki.org/wiki/Help:Permissions справочоной] странице помощи за подробной информацией.", + "smw-admin-setupsuccess": "Система хранения была установлена.", + "smw_smwadmin_return": "Вернуться к $1", + "smw_smwadmin_updatestarted": "Запущен новый процесс обновления семантических данных.\nВсе сохранённые данные будут перестроены и восстановлены, где это необходимо.\nВы можете следить за ходом обновления на этой служебной странице.", + "smw_smwadmin_updatenotstarted": "Уже запущен один процесс обновления.\nДругой не создаётся.", + "smw_smwadmin_updatestopped": "Все существующие процессы обновления остановлены.", + "smw_smwadmin_updatenotstopped": "Чтобы остановить запущенный процесс обновления, вы должны поставить отметку, подтверждающую, что вы действительно уверены в этом решении.", + "smw-admin-docu": "Эта служебная страница поможет вам в процессе установки, обновления, обслуживания и использования расширения Semantic MediaWiki.\nНе забывайте производить резервное копирование важных данных перед выполнением административных действий.", + "smw-admin-environment": "Оболочка программного обеспечения", + "smw-admin-db": "Настройка базы данных", + "smw-admin-db-preparation": "Идёт установка таблицы. Это может занять некоторое время, прежде чем отобразятся результаты и возможная оптимизация таблицы.", + "smw-admin-dbdocu": "Semantic MediaWiki для хранения семантических данных требует своей собственной структуры базы данных. Она является независимой от MediaWiki, а потому не влияет на остальные инсталляции MediaWiki.\n\nХотя эта процедура может быть многократно выполнена без каких-либо последствий, её запуск необходим только один раз — во время установки или обновления Semantic MediaWiki.", + "smw-admin-permissionswarn": "Причиной сбоев при выполнении SQL-команд может быть отсутствие необходимых прав у пользователя, от имени которого вы подключаетесь к базе данных вики (проверьте файл LocalSettings.php).\nПопробуйте предоставить этому пользователю дополнительные права на создание и удаление таблиц; временно введите логин «root» в файле LocalSettings.php, или используйте обслуживающий скрипт setupStore.php, который может использовать настройки администратора.", + "smw-admin-dbbutton": "Инициализировать или обновить таблицы", + "smw-admin-announce": "Объявление вашей вики", + "smw-admin-announce-text": "Если ваша вики общедоступная, вы можете зарегистрировать её в WikiApiary.", + "smw-admin-deprecation-notice-title": "Уведомления об устаревании", + "smw-admin-deprecation-notice-docu": "Следующий раздел содержит устаревшие или удалённые параметры, которые однако всё ещё активны на данном вики-проекте. Предполагается, что при каждом обновлении будет удалена поддержка этих конфигураций.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] устарел и будет удалён в $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] уберёт (или заменит) {{PLURAL:$2|следующую опцию|следующие опции}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 устарел и будет удалён в $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] заменён на [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] был заменен на $2", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|опция|опции|опций}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 заменён на $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] удалён в $2", + "smw-admin-deprecation-notice-title-notice": "Устаревшие настройки", + "smw-admin-deprecation-notice-title-notice-explanation": "Устаревшие настройки показывает те настройки, использование которых было обнаружено в этой вики, и которые планируют изъять или изменить в будущем выпуске.", + "smw-admin-deprecation-notice-title-replacement": "Заменённые или переименованные настройки", + "smw-admin-deprecation-notice-title-replacement-explanation": "Замененные или переименованные настройки содержит настройки, которые были переименованы или изменены иным образом, а поэтому рекомендуется немедленно обновить их названия или формат.", + "smw-admin-deprecation-notice-title-removal": "Удалённые настройки", + "smw-admin-deprecation-notice-title-removal-explanation": "Удаленные настройки идентифицирует те настройки, которые были изъяты в предыдущем выпуске, но было обнаружено, что они всё ещё используются в этой вики.", + "smw-admin-deprecation-notice-section-legend": "Легенда", + "smw-smwadmin-refresh-title": "Исправление и обновление данных", + "smw_smwadmin_datarefresh": "Перестроение данных", + "smw_smwadmin_datarefreshdocu": "Можно восстановить все данные Semantic MediaWiki, основанные на текущем содержимом вики.\nЭто может быть полезно для восстановления сломанных данных, обновления данных в случае, если внутренний формат изменился в связи с некоторым обновлением программного обеспечения.\nОбновление будет выполняться страница за страницей и займёт некоторое время.\nНиже показано как идёт процесс обновления, даётся возможность начать или прекратить обновление (если эта функция не была отключена на администратором сайте).", + "smw_smwadmin_datarefreshprogress": "Обновление уже запущено.\nЭто нормально, что процесс обновления идёт достаточно медленно, поскольку он обновляет данные лишь небольшими порциями, когда пользователь обращается к вики.\nЧтобы закончить данное обновление быстрее, вы можете вызвать скрипт обслуживания MediaWiki runJobs.php (используйте настройку - maxjobs 1000, чтобы ограничить количество обновлений в одной партии).\nОриентировочный ход выполнения текущего обновления:", + "smw_smwadmin_datarefreshbutton": "Восстановление данных по расписанию", + "smw_smwadmin_datarefreshstop": "Остановить это обновление", + "smw_smwadmin_datarefreshstopconfirm": "Да, я уверен{{GENDER:$1||а}}.", + "smw-admin-job-scheduler-note": "Активные задачи в этом разделе выполняются в очереди Планировщика заданий, чтобы избежать ситуаций блокировки во время их выполнения. [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue Планировщик] отвечает за обработку, поэтому очень важно, чтобы сценарий обслуживания runJobs.php имел достаточно ресурсов (см. также параметр конфигурации $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "Ликвидация устаревших сущностей", + "smw-admin-outdateddisposal-intro": "Некоторые действия (изменение типа свойства, удаление викистраниц или исправление ошибочных значений) вызовут появление [https://www.semantic-mediawiki.org/wiki/Outdated_entities устаревших сущностей], поэтому рекомендуется периодически убирать их, чтобы освободить пространство в связанной таблице.", + "smw-admin-outdateddisposal-active": "Назначена работа по ликвидации устаревших объектов.", + "smw-admin-outdateddisposal-button": "Запланировать ликвидацию", + "smw-admin-feature-disabled": "Эта функция отключена на этой вики. Пожалуйста, посмотрите справочную страницу о настройках, или обратитесь к системному администратору.", + "smw-admin-propertystatistics-title": "Перестроить статистику свойства", + "smw-admin-propertystatistics-intro": "Перестраивает всю статистику использования свойств, после чего обновляет и исправляет [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count счётчик использования] свойств.", + "smw-admin-propertystatistics-active": "Запланирована работа по перестройке статистики свойства.", + "smw-admin-propertystatistics-button": "Запланировать перестройку свойства", + "smw-admin-fulltext-title": "Перестройка полнотекстового поиска", + "smw-admin-fulltext-intro": "Перестраивает поисковый индекс из таблиц свойств с включённым типом данных [https://www.semantic-mediawiki.org/wiki/Full-text полнотекстового поиска]. Изменения в правила индексации (изменённые шумовые слова, новый стемер и т. п.) и/или заново добавленная или изменённая таблица требуют повторного запуска этого задания.", + "smw-admin-fulltext-active": "Была запланирована работа по перепостроению полнотекстового поиска.", + "smw-admin-fulltext-button": "Запланировать полнотекстовую перестройку", + "smw-admin-support": "Получение поддержки", + "smw-admin-supportdocu": "Различные ресурсы, которые помогут вам в случае проблем:", + "smw-admin-installfile": "Если вы испытываете затруднения при установке, начните с изучения руководства в файле INSTALL и на странице установки.", + "smw-admin-smwhomepage": "Полная документация пользователя Semantic MediaWiki на semantic-mediawiki.org.", + "smw-admin-bugsreport": "Об ошибках можно сообщать на GitHub, а на соответствующей странице справочного раздела приведены некоторые рекомендации о том, как написать эффективное сообщение о проблеме.", + "smw-admin-questions": "Если у вас есть дополнительные вопросы или предложения, присоединяйтесь к обсуждению в списках рассылки пользователей Semantic MediaWiki.", + "smw-admin-other-functions": "Другие функции", + "smw-admin-statistics-extra": "Статистические функции", + "smw-admin-statistics": "Статистика", + "smw-admin-supplementary-section-title": "Дополнительные функции", + "smw-admin-supplementary-section-subtitle": "Поддерживаемые функции ядра", + "smw-admin-supplementary-section-intro": "Эта секция содержит дополнительные функции кроме обслуживающих. Возможно, что некоторые функции, которые перечислены (см. [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions документацию]), ограничены, а потому недоступны в этой вики.", + "smw-admin-supplementary-settings-title": "Конфигурация и настройки", + "smw-admin-supplementary-settings-intro": "$1 показывает параметры, определяющие поведение Semantic MediaWiki", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Оперативная статистика", + "smw-admin-supplementary-operational-statistics-short-title": "операционная статистика", + "smw-admin-supplementary-operational-statistics-intro": "Отображает расширенный набор $1", + "smw-admin-supplementary-idlookup-title": "Поиск и удаление сущности", + "smw-admin-supplementary-idlookup-intro": "Поддерживает простую функцию «$1»", + "smw-admin-supplementary-duplookup-title": "Просмотр сущностей-дубликатов", + "smw-admin-supplementary-duplookup-intro": "$1 для поиска сущностей, которые классифицируются как дубликаты в выбранной матрице таблиц", + "smw-admin-supplementary-duplookup-docu": "На этой странице перечислены сущности из выбранных таблиц, которые были категоризированы как [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities дубликаты]. \nДубликаты изредка (если вообще) появляются только из-за прерванного обновления базы данных или неудавшегося отката транзакции.", + "smw-admin-supplementary-operational-statistics-cache-title": "Статистика кэша", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 показывает выбранный набор статистики, относящейся к кэшу", + "smw-admin-supplementary-operational-table-statistics-title": "Статистика таблиц", + "smw-admin-supplementary-operational-table-statistics-short-title": "статистика таблиц", + "smw-admin-supplementary-operational-table-statistics-intro": "Генерирует $1 для выбранного набора таблиц", + "smw-admin-supplementary-elastic-version-info": "Версия", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 показывает подробно настройки и статистику кэша", + "smw-admin-supplementary-elastic-docu": "На этой странице находятся данные о настройках, соответствиях, состоянии и статистике индексов, относящаяся к кластеру ''Elasticsearch'', подключённому к ''Semantic MediaWiki'' и его хранилищу [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Поддерживаемые функции", + "smw-admin-supplementary-elastic-settings-title": "Настройки (индексы)", + "smw-admin-supplementary-elastic-settings-intro": "$1 используется ''Elasticsearch'' для управления индексами ''Semantic MediaWiki''", + "smw-admin-supplementary-elastic-mappings-title": "Соответствия", + "smw-admin-supplementary-elastic-mappings-intro": "$1 — список индексов и соответствий полей", + "smw-admin-supplementary-elastic-mappings-docu": "На этой странице находятся детали соответствия полей, используемых текущим индексом. Рекомендуется мониторить соответствия учитывая значение переменной index.mapping.total_fields.limit, хранящей максимальное число разрешённых полей в индексе.", + "smw-admin-supplementary-elastic-mappings-summary": "Описание", + "smw-admin-supplementary-elastic-mappings-fields": "Соответствия полей", + "smw-admin-supplementary-elastic-nodes-title": "Узлы", + "smw-admin-supplementary-elastic-nodes-intro": "$1 показывает статистику узлов", + "smw-admin-supplementary-elastic-indices-title": "Индексы", + "smw-admin-supplementary-elastic-indices-intro": "$1 предоставляет обзор доступных индексов и их статистику", + "smw-admin-supplementary-elastic-statistics-title": "Статистика", + "smw-admin-supplementary-elastic-statistics-intro": "$1 показывает статистику уровня индекса", + "smw-admin-supplementary-elastic-statistics-docu": "Эта страница даёт представление о статистике индексов для различных операций, выполняемых на уровне индекса, возвращённая статистика агрегируется с первичными и суммарными агрегациями. [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html Страница справки] содержит подробное описание статистики доступных индексов.", + "smw-admin-supplementary-elastic-status-replication": "Статус репликации", + "smw-admin-supplementary-elastic-status-last-active-replication": "Последняя активная репликация: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Интервал обновления: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Задержка работ по восстановлению: $1 (приблизительно)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Журнал невыполненных работ (файл): $1 (приблизительно)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Репликация заблокирована: $1 (перепостроение в процессе)", + "smw-admin-supplementary-elastic-replication-header-title": "Статус копирования", + "smw-admin-supplementary-elastic-replication-function-title": "Копирование", + "smw-admin-supplementary-elastic-replication-files": "Файлы", + "smw-admin-supplementary-elastic-replication-pages": "Страницы", + "smw-admin-supplementary-elastic-endpoints": "Конечные точки", + "smw-admin-supplementary-elastic-config": "Конфигурации", + "smw-list-count": "Список содержит $1 {{PLURAL:$1|запись|записи|записей}}.", + "smw-property-label-uniqueness": "Метка \"$1\" была сопоставлена по крайней мере с одним другим представлением свойств. Пожалуйста, проконсультируйтесь со [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness страницей помощи] о том, как устранить эту проблему.", + "smw-property-label-similarity-title": "Сообщение о подобности названий свойств", + "smw-property-label-similarity-intro": "$1 вычисляет подобие существующих названий свойств", + "smw-property-label-similarity-threshold": "Порог:", + "smw-property-label-similarity-type": "Показать ID типа", + "smw-property-label-similarity-noresult": "Для выбранных опций не найдено никаких результатов.", + "smw-property-label-similarity-docu": "Эта страница сравнивает [https://www.semantic-mediawiki.org/wiki/Property_similarity синтаксическое подобие] (но не семантическое или лексическое подобия) между двумя названиями свойств и составляет отчёт с названиями свойств в случае превышения некоего порога. Отчёт может помочь отфильтровать свойства, имеющие ошибки в названии или являющиеся эквивалентными и представляющие один и тот же концепт (см. служебную страницу [[Special:Properties|Свойства]], чтобы прояснить концепт и использования свойств в отчёте). Порог можно настроить, чтобы или расширить, или сузить уровень подобия, который следует принимать во внимание. [[Property:$1|$1]] используется для исключения свойств из анализа.", + "smw-admin-operational-statistics": "Эта страница содержит операционную статистику, собранную в или из функций, связанных из Semantic MediaWiki. Расширенный список статистических данных, специфических для вики, можно посмотреть [[Special:Statistics|здесь]].", + "smw_adminlinks_datastructure": "Структура данных", + "smw_adminlinks_displayingdata": "Отображение данных", + "smw_adminlinks_inlinequerieshelp": "Справка по встроенным запросам", + "smw-page-indicator-usage-count": "Примерное [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count количество использований]: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "Свойство, определённое {{PLURAL:$1|участником|системой}}", + "smw-property-indicator-last-count-update": "Примерное число использований\nПоследний раз обновлено: $1", + "smw-concept-indicator-cache-update": "Счётчик кэша\nОбновлён в $1", + "smw-createproperty-isproperty": "Это свойство типа $1.", + "smw-createproperty-allowedvals": "Для данного свойства {{PLURAL:$1|1=допускается следующее значение|допускаются следующие значения}}:", + "smw-paramdesc-category-delim": "Разделитель", + "smw-paramdesc-category-template": "Шаблон, с помощью которого форматируются элементы", + "smw-paramdesc-category-userparam": "Параметр для передачи шаблону", + "smw-info-par-message": "Сообщение для отображения.", + "smw-info-par-icon": "Значок для отображения («информация» или «предупреждение»).", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Общие параметры", + "prefs-extended-search-options": "Расширенный поиск", + "prefs-ask-options": "Семантический поиск", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] (и связанные с ней расширения) предоставляют возможности индивидуальной настройки группы функций. Список индивидуальных настроек с их описаниями и характеристиками доступен по [https://www.semantic-mediawiki.org/wiki/Help:User_preferences следующей ссылке].", + "smw-prefs-ask-options-tooltip-display": "Отображать параметр «текст» в виде всплывающей подсказки на специальной странице #ask [[Special:Ask|формирования запросов]].", + "smw-prefs-ask-options-compact-view-basic": "Включить простой сжатый формат", + "smw-prefs-help-ask-options-compact-view-basic": "Если включено, показывает сокращённый набор ссылок на Special:Ask в сжатом формате", + "smw-prefs-general-options-time-correction": "Включить корректировку времени для служебных страниц при помощи локальной настройки [[Special:Preferences#mw-prefsection-rendering|временного смещения]]", + "smw-prefs-general-options-jobqueue-watchlist": "Показывать список наблюдения за очередью задач на личной панели", + "smw-prefs-help-general-options-jobqueue-watchlist": "Включите, чтобы показывать [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist список] ожидающих избранных задач, вместе с приблизительными размерами их очередей.", + "smw-prefs-general-options-disable-editpage-info": "Отключить вступительный текст на странице редактирования", + "smw-prefs-general-options-disable-search-info": "Отключить информацию о поддержке синтаксиса на стандартной странице поиска", + "smw-prefs-general-options-suggester-textinput": "Включить ассистента ввода для предложений семантических объектов", + "smw-prefs-help-general-options-suggester-textinput": "Включите, чтобы получать [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance автодополнение] названий свойств, концепций и категорий при вводе", + "smw-ui-tooltip-title-property": "Свойство", + "smw-ui-tooltip-title-quantity": "Преобразование единиц", + "smw-ui-tooltip-title-info": "Информация", + "smw-ui-tooltip-title-service": "Служебная ссылка", + "smw-ui-tooltip-title-warning": "Предупреждение", + "smw-ui-tooltip-title-error": "Ошибка", + "smw-ui-tooltip-title-parameter": "Параметр", + "smw-ui-tooltip-title-event": "Событие", + "smw-ui-tooltip-title-note": "Примечание", + "smw-ui-tooltip-title-legend": "Легенда", + "smw-ui-tooltip-title-reference": "Примечание", + "smw_unknowntype": "Для этого свойства задан неизвестный тип «$1»", + "smw-concept-cache-text": "Концепция имеет в общей сложности $1 {{PLURAL:$1|страницу|страницы|страниц}} и последний раз обновлялся $2 в $3.", + "smw_concept_header": "Страницы, использующие представление «$1»", + "smw_conceptarticlecount": "Ниже {{PLURAL:$1|показана|показаны}} $1 {{PLURAL:$1|страница|страницы|страниц}}.", + "smw-qp-empty-data": "Запрошенные данные не удаётся отобразить из-за недостаточности некоторых критериев отбора.", + "right-smw-admin": "Доступ к администрированию (Semantic MediaWiki)", + "right-smw-patternedit": "Доступ к редактированию разрешенных для обслуживания регулярных выражений и шаблонов (Semantic MediaWiki)", + "right-smw-pageedit": "Редактирование страниц с аннотацией Is edit protected (Semantic MediaWiki)", + "restriction-level-smw-pageedit": "защищено (только подходящие пользователи)", + "action-smw-patternedit": "редактирования регулярных выражений, используемых Semantic MediaWiki", + "action-smw-pageedit": "редактирование страниц с аннотацией Is edit protected (''Semantic MediaWiki'')", + "group-smwadministrator": "Администраторы (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|администратор (Semantic MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:Администраторы (Semantic MediaWiki)", + "group-smwcurator": "Кураторы (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|куратор (Semantic MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:Кураторы (Semantic MediaWiki)", + "action-smw-admin": "доступ к административным функциям Semantic MediaWiki", + "action-smw-ruleedit": "редактировать страницы правил (Semantic MediaWiki)", + "smw-property-predefined-default": "«$1» — это предопределённое свойство типа $2.", + "smw-property-predefined-common": "Это предварительно развернутое свойство (также известное как [https://www.semantic-mediawiki.org/wiki/Help:Special_properties специальное свойство]) и несет дополнительные административные привилегии, но может быть использовано, как любое другое [https://www.semantic-mediawiki.org/wiki/Property определенное пользователем свойство].", + "smw-property-predefined-ask": "«$1» — это предопределённое свойство, которое представляет мета-данные (в форме [https://www.semantic-mediawiki.org/wiki/Subobject подобъекта]) об индивидуальных запросах и предоставляется [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksi": "«$1» — это предопределённое свойство, которое собирает количество условий, используемых в запросе и предоставляется [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askde": "«$1» — предварительно определенное свойство, которое информирует о глубине запроса и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askde": "Численное значение, полученное на основании вложенности подзапросов, цепочек свойств и доступных элементов описания и используемой для ограничения выполнения запросов посредством настройки [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth]", + "smw-property-predefined-askpa": "$1 - это предопределенное свойство, описывающее параметры влияющие на результат запроса. Предоставляется от [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askpa": "Это часть набора свойств, который определяет [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler query profile].", + "smw-sp-properties-docu": "На этой странице перечислены доступные [https://www.semantic-mediawiki.org/wiki/Property свойства] и количество их использований в этой вики. Для получения актуальной статистики рекомендуется, чтоб сервисный скрипт [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics статистики свойст] запускался на регулярной основе. Для дифференцированного представления см. служебные страницы со списком [[Special:UnusedProperties|неиспользованных]] или [[Special:WantedProperties|требуемых свойств]].", + "smw-sp-properties-cache-info": "Перечисленные данные были получены из [https://www.semantic-mediawiki.org/wiki/Caching кэша] и были последний раз обновлены $1.", + "smw-sp-properties-header-label": "Список свойств", + "smw-admin-settings-docu": "Отображает список всех настроек по-умолчанию и локализованных настроек, которые имеют отношение к окружению Semantic MediaWiki. За сведениями об отдельных параметров обратитесь к странице помощи по [https://www.semantic-mediawiki.org/wiki/Help:Configuration конфигурации].", + "smw-sp-admin-settings-button": "Создать список настроек", + "smw-admin-idlookup-title": "Поиск", + "smw-admin-idlookup-docu": "В этом разделе представлены технические сведения об отдельном объекте (вики-страница, подобъект, свойство и т.д.) в Семантической МедиаВики. Ввод может представлять собой числовой идентификатор или строковое значение для совпадения с соответствующим полем для поиска, при этом любая идентификационная ссылка относится к Семантической МедиаВики, а не к странице MediaWiki или номеру версии.", + "smw-admin-iddispose-title": "Удаление", + "smw-admin-iddispose-docu": "Обратите внимание, что операция утилизации является неограниченной и удалит внутренний идентификатор объекта от движка хранения при подтверждении. Пожалуйста, выполняйте эту задачу с '''осторожностью''' и только после того, как [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal documentation] были проведены консультации.", + "smw-admin-iddispose-done": "Идентификатор «$1» был удалён из хранилища.", + "smw-admin-iddispose-references": "ID «$1» {{PLURAL:$2|не имеет активных ссылок|с по крайней мере одной активной ссылкой}}.", + "smw-admin-iddispose-references-multiple": "Список совпадений с по крайней мере одной активной ссылкой.", + "smw-admin-iddispose-no-references": "Поиск не смог сопоставить «$1» с элементом таблицы.", + "smw-admin-idlookup-input": "Поиск:", + "smw-admin-objectid": "Идентификатор:", + "smw-admin-tab-general": "Обзор", + "smw-admin-tab-notices": "Замечания по запрету", + "smw-admin-tab-maintenance": "Техническое обслуживание", + "smw-admin-tab-supplement": "Дополнительные функции", + "smw-admin-tab-registry": "Реестр", + "smw-admin-tab-alerts": "Оповещения", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Оптимизация таблицы", + "smw-admin-deprecation-notice-section": "Semantic MediaWiki", + "smw-admin-configutation-tab-settings": "Настройки", + "smw-admin-configutation-tab-namespaces": "Пространства имён", + "smw-admin-configutation-tab-schematypes": "Типы схем", + "smw-admin-maintenance-tab-tasks": "Задачи", + "smw-admin-maintenance-tab-scripts": "Скрипты обслуживания", + "smw-admin-maintenance-no-description": "Нет описания.", + "smw-admin-maintenance-script-section-title": "Список доступных скриптов обслуживания", + "smw-admin-maintenance-script-section-update": "Обновить скрипты", + "smw-admin-maintenance-script-section-rebuild": "Перестроить скрипты", + "smw-livepreview-loading": "Загружается…", + "smw-sp-searchbyproperty-description": "На этой странице предоставлен простой [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces интерфейс просмотра] для нахождения сущностей по описанным свойствам и именованным значениям. Другие доступные интерфейсы поиска включают в себя [[Special:PageProperty|страницу поиск свойств]] и [[Special:Ask|построитель поисковых запросов]].", + "smw-sp-searchbyproperty-resultlist-header": "Список результатов", + "smw-sp-searchbyproperty-nonvaluequery": "Список значений, которые имеют назначенное свойство «$1».", + "smw-sp-searchbyproperty-valuequery": "Список страниц, которые содержат свойство «$1» с объявленным значением «$2».", + "smw-datavalue-number-textnotallowed": "«$1» не может быть присвоен заявленному типу число со значением $2.", + "smw-datavalue-number-nullnotallowed": "«$1» вернулся с со значением «NULL», что не разрешено для чисел.", + "smw-editpage-annotation-enabled": "Эта страница поддерживает семантические аннотации в тексте (например \"[[Is specified as::World Heritage Site]]\") для построения структурированного контента, в который можно делать запросы, обеспечивается Semantic MediaWiki. Для комплексного описания, как использовать аннотации или парсерную функцию ask, пожалуйста, посетите справочные страницы о [https://www.semantic-mediawiki.org/wiki/Help:Getting_started начале работы], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation in-text annotation аннотации в тексте] и [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries строчных запросах].", + "smw-editpage-annotation-disabled": "На этой странице невозможны семантические аннотации в тексте из-за ограничений пространства имён. Детали относительно того, как разрешить пространство имён, находятся в справочной странице [https://www.semantic-mediawiki.org/wiki/Help:Configuration конфигурации].", + "smw-editpage-property-annotation-enabled": "Это свойство можно расширить с помощью семантических аннотаций для указания типа данных (например \"[[Has type::Page]]\") или других поддерживаемых утверждений (например, \"[[Subproperty of::dc:date]]\"). Описание, как расширить эту страницу смотрите на странице справки о [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration заявлении свойства] или [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes список доступных типов данных].", + "smw-editpage-property-annotation-disabled": "Это свойство нельзя расширить аннотацией типа данных (например \"[[Has type::Page]]\"), поскольку она уже предварительно определена (см. более подробную информацию на справочной странице о [https://www.semantic-mediawiki.org/wiki/Help:Special_properties специальные свойства]).", + "smw-editpage-concept-annotation-enabled": "Этот концепт можно расширить с использованием парсерной функции #concept. Описание, как использовать #concept, см. на справочной странице о [https://www.semantic-mediawiki.org/wiki/Help:Concepts концептах].", + "smw-search-syntax-support": "Поле поиска поддерживает [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search синтаксис семантических запросов] ''MediaWiki''", + "smw-search-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Помощник по вводу] включён, чтобы упростить выбор всех возможных опций и категорий.", + "smw-search-help-intro": "Ввод [[ ... ]] укажет процессору использовать поисковый механизм ''Semantic MediaWiki''. Обратите внимание, что сочетание [[ ... ]] с простым текстовым поиском, наподобие [[ ... ]] OR Lorem ipsum, не поддерживается.", + "smw-search-help-structured": "Структурированный поиск:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] — [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context контекст отбора]\n\n*[[Has text::~*lorem*]] — с [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context контекстом запроса]", + "smw-search-help-ask": "По этим ссылкам находится информация о том, как использовать функцию парсера #ask:\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Выбор страниц] — как выбирать страницы и составлять условия отбора\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Поисковые операторы] — поддерживаемые поисковые операторы, включая отбор по диапазонам и метасимволам", + "smw-search-input": "Ввод и поиск", + "smw-search-help-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Автодополение] в поле ввода требует один из следующих префиксов:\n\n*p: для свойств (например, [[p:Has ...)\n\n*c: для категорий\n\n*con: для концепций", + "smw-search-syntax": "Синтаксис", + "smw-search-profile": "Дополнительно", + "smw-search-profile-tooltip": "Функции поиска, относящиеся к Semantic MediaWiki", + "smw-search-profile-sort-best": "Лучшее совпадение", + "smw-search-profile-sort-recent": "Самые недавние", + "smw-search-profile-sort-title": "Название", + "smw-search-profile-extended-help-intro": "[https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile Расширенный профиль страницы] ''Служебная:Поиск'' предоставляет доступ к функциям поиска, особым для Semantic MediaWiki и поддерживаемой в ней серверной части запроса.", + "smw-search-profile-extended-help-sort": "Порядок сортировки результатов запроса:", + "smw-search-profile-extended-help-sort-title": "*«Название» с использованием заголовка страницы (или отображаемого заголовка) в качестве критерия сортировки", + "smw-search-profile-extended-help-sort-recent": "* \"Совсем недавние\" для показа страниц в порядке последнего изменения (от недавних к давним), при этом подобъекты не будут выведены, поскольку для них не определено свойство [[Property:Modification date|Дата изменения]]", + "smw-search-profile-extended-help-search-syntax": "Поле поиска поддерживает синстаксис функции парсера #ask для семантического поиска. Полезные выражения включают:", + "smw-search-profile-extended-help-query-link": "Детальнее см. $1", + "smw-search-profile-extended-help-find-forms": "Доступные формы", + "smw-search-profile-extended-section-sort": "Сортировать по", + "smw-search-profile-extended-section-form": "Формы", + "smw-search-profile-extended-section-search-syntax": "Поиск входа", + "smw-search-profile-extended-section-namespace": "Пространство имён", + "smw-search-profile-extended-section-query": "Запрос", + "smw-search-profile-link-caption-query": "конструктор запросов", + "smw-search-show": "Показать", + "smw-search-hide": "Скрыть", + "log-name-smw": "Журнал Semantic MediaWiki", + "log-show-hide-smw": "$1 журнал Semantic MediaWiki", + "logeventslist-smw-log": "Журнал Semantic MediaWiki", + "log-description-smw": "Деятельность относительно [https://www.semantic-mediawiki.org/wiki/Help:Logging включенных типов событий], которую регистрирует Semantic MediaWiki и её компоненты.", + "smw-datavalue-import-missing-namespace-uri": "Не удалось найти URI пространства имён «$1» в [[MediaWiki:Smw import $1|импорте $1]].", + "smw-datavalue-import-missing-type": "Не было найдено определение типа для «$1» в [[MediaWiki:Smw import $2|импорте $2]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|Импорт $1]]", + "smw-datavalue-import-invalid-value": "«$1» не является действительным форматом и должен состоять из «пространство имён»:«идентификатор» (например «foaf:name»).", + "smw-property-predefined-impo": "\"$1\" — это предопределённое свойство, которое описывает отношение к [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary заимствованной лексике] и предоставляется [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-type": "«$1» — предварительно определенное свойство, которое описывает [[Special:Types|тип данных]] свойства, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-sobj": "«$1» — предопределённое свойство, которое представляет построение [https://www.semantic-mediawiki.org/wiki/Help:Container контейнера], и обеспечиваемое [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-sobj": "Это хранилище позволяет сохранять значения свойств, как на обычной вики-странице, но в особом пространстве, привязанном к содержащей его странице", + "smw-property-predefined-errp": "«$1» — это предварительно определённое свойство для отслеживания неверных значений в аннотациях и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-errp": "Обычно вызывается несоответствием типа данных или несоблюдением ограничения [[Property:Allows value|допустимых значений]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value «$1»] — \nпредварительно определенное свойство, которое может определять список разрешенных значений, чтобы ограничивать назначение значений для свойства, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list «$1»] — предопределённое свойство, для хранения ссылки на список допустимых значений свойства. Предоставляется ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]''.", + "smw-datavalue-property-restricted-annotation-use": "Свойство «$1» имеет особое назначение, и его значение не может устанавливаться в семантической аннотации.", + "smw-datavalue-property-restricted-declarative-use": "Свойство «$1» — декларативное, и должно использоваться только на страницах свойств или категорий.", + "smw-datavalue-property-create-restriction": "Свойство «$1» ещё не существует, а у пользователя нет разрешения «$2» (см. [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode Режим разграничения доступа]), чтобы создавать новые свойства.", + "smw-datavalue-property-invalid-character": "«$1» содержит запрещённый символ «$2» и, следовательно, отмечено, как недопустимое.", + "smw-datavalue-property-invalid-chain": "Использование цепочки свойств «$1» недопустимо в семантической аннотации.", + "smw-datavalue-restricted-use": "Значение данных «$1» было отмечено для ограниченного использования.", + "smw-datavalue-invalid-number": "«$1» не может быть интерпретировано как число.", + "smw-query-condition-circular": "Возможное циклическое условие было обнаружено в «$1».", + "smw-query-condition-empty": "В запросе есть пустое условие.", + "smw-types-list": "Список типов данных", + "smw-types-default": "«$1» является встроенным типом данных.", + "smw-types-help": "Дальнейшую информацию и примеры можно найти на [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 странице справки].", + "smw-type-anu": "«$1» — это вариант типа данных [[Special:Types/URL|URL]] и в основном используется для экспортной декларации \"owl:AnnotationProperty\".", + "smw-type-boo": "«$1» — это примитивный тип данных для описания значения истина/ложь.", + "smw-type-cod": "«$1» — это вариант типа данных [[Special:Types/Text|Текст]] для использования в технических текстах произвольной длины, таких как списки исходного кода.", + "smw-type-geo": "«$1» — это тип данных, который описывает географическое положение и требует установить [https://www.semantic-mediawiki.org/wiki/Extension:Maps расширение «Maps»] для расширенного функционала.", + "smw-type-tel": "«$1» — это специальный тип данных для описания международных телефонных номеров согласно RFC 3966.", + "smw-type-txt": "«$1» — это примитивный тип данных для описания строк произвольной длины.", + "smw-type-dat": "«$1» — это тип данных для представления моментов времени в едином формате.", + "smw-type-ema": "«$1» — тип данных для хранения адреса электронной почты.", + "smw-type-tem": "«$1» — особый численный тип данных для хранения температуры.", + "smw-type-qty": "«$1» — численный тип данных с единицей измерения.", + "smw-type-rec": "«$1» — тип данных для хранения упрядоченного списка типизированных свойств.", + "smw-type-extra-tem": "Процедура перевода поддерживает температурные шкалы Кельвина, Цельсия, Фаренгейта и Ранкина.", + "smw-type-tab-properties": "Свойства", + "smw-type-tab-types": "Типы", + "smw-type-tab-errors": "Ошибки", + "smw-type-primitive": "Скалярные", + "smw-type-contextual": "Зависимые", + "smw-type-compound": "Составные", + "smw-type-container": "Контейнер", + "smw-special-pageproperty-description": "На этой странице представлен интерфейс просмотра для поиска всех значений свойства и заданной страницы. Другие доступные интерфейсы поиска включают в себя [[Special:SearchByProperty|поиск свойств]] и [[Special:Ask|построитель поисковых запросов]].", + "smw-property-predefined-errc": "«$1» — это предварительно определённое свойство, обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] и представляет ошибки, которые возникли в связи с неправильными аннотациями значений или обработкой ввода.", + "smw-property-predefined-long-errc": "Ошибки накапливаются в [https://www.semantic-mediawiki.org/wiki/Help:Container контейнере], который также может включать ссылки на свойство, которое и повлекло несоответствие.", + "smw-property-predefined-errt": "«$1» — это предварительно определенное свойство, содержит текстовое описание ошибки и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-subobject-parser-invalid-naming-scheme": "Определенный пользователем подобъект содержал недействительную схему наименования. Точка ($1) в первых пяти символах предназначена для использования исключительно расширениями. Вы можете установить [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier именованный идентификатор].", + "smw-datavalue-record-invalid-property-declaration": "Запись содержит свойство «$1», которая сама по себе объявлена типом записи, и это не допускается.", + "smw-property-predefined-mdat": "«$1» — это предварительно определенное свойство, что соответствует дате последнего изменения объекта, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-cdat": "«$1» — это предварительно определенное свойство, что соответствует дате первой версии субъекта, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-newp": "«$1» — это предварительно определенное свойство, которое указывает, является ли субъект новым или нет, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-ledt": "«$1» — это предварительно определенное свойство содержит название страницы того пользователя, который создал первую версию, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-mime": "«$1» — это предварительно определенное свойство, которое описывает MIME-тип загруженного файла и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-media": "«$1» — это предварительно определенное свойство, которое описывает тип носителя, загруженного медиафайла, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askfo": "«$1» — это предварительно определенное свойство содержит имя конечного формата, использованного в запросе, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askst": "«$1» — это предварительно определенное свойство, описывающее условия запроса в виде строки, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askdu": "«$1» — это предварительно определенное свойство, содержащее значение времени (в секундах), которое требуется для завершения выполнения запроса, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksc": "«$1» — предопределённое свойство, предоставленное ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' для хранения альтернативных (т.е. внешник) источников запросов.", + "smw-property-predefined-askco": "«$1» — предопределённое свойство, предоставленное ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' для хранения состояния запроса или его частей.", + "smw-property-predefined-long-askco": "Число или числа, представляющие код состояния запроса (см. [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler Профилировщик запросов]).", + "smw-property-predefined-prec": "«$1» — это предварительно определенное свойство, описывающее [https://www.semantic-mediawiki.org/wiki/Help:Display_precision точность отображения] (в десятичных цифрах) для числовых типов данных.", + "smw-types-extra-geo-not-available": "[https://www.semantic-mediawiki.org/wiki/Extension:Maps Расширение «Maps»] не было обнаружено, поэтому свойство «$1» ограничено в своей работе.", + "smw-datavalue-monolingual-dataitem-missing": "Отсутствует ожидаемый элемент для построения одноязычного значение.", + "smw-datavalue-languagecode-missing": "Для аннотации «$1» парсер не смог определить кода языка (например «foo@en»).", + "smw-datavalue-languagecode-invalid": "«$1» не был распознан как поддерживаемый код языка.", + "smw-property-predefined-lcode": "«$1» — это предварительно определенное свойство, представляющее BCP47-форматированный код языка, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-type-mlt-rec": "«$1» — это [https://www.semantic-mediawiki.org/wiki/Help:Container контейнерный] тип данных, который связывает текстовое значение с конкретным [[Property:Language code|кодом языка]].", + "smw-types-extra-mlt-lcode": "Этот тип данных {{PLURAL:$2|требует|не требует}} кода языка (то есть {{PLURAL:$2|аннотация значения без кода языка не принимается|аннотация значения без кода языка принимается}}).", + "smw-property-predefined-text": "«$1» — это предварительно определенное свойство, представляющее текст вспомогательной длины, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pdesc": "«$1» — это предварительно определенное свойство, которое дает возможность описать свойство в контексте языка, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-list": "«$1» — это предварительно определенное свойство для определения списка свойств, использованных со свойством типа [[Special:Types/Record|record]], и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] Время разбора внутритекстовой аннотации", + "smw-limitreport-intext-postproctime": "[SMW] время пост-обработки", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|секунда|секунды|секунд}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|секунда|секунды|секунд}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Время обновления store-базы данных (при обновлении страницы)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|секунда|секунды|секунд}}", + "smw_allows_pattern": "Чтобы доступ к странице был открыт с помощью свойства «[[Property:Allows pattern|Allows pattern]]», эта страница должна содержать список ссылок (после которого идут [https://ru.wikipedia.org/wiki/Регулярные_выражения регулярные выражения]). Для редактирования этой страницы необходимы права smw-patternedit.", + "smw-datavalue-allows-pattern-mismatch": "Регулярное выражение «$2» классифицировало значение «$1» как недопустимое.", + "smw-datavalue-allows-pattern-reference-unknown": "Ссылки на шаблон «$1» не удалось сравнить с записью на [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "Строка «$1» не найдена в списке [[MediaWiki:Smw allows list $1]] .", + "smw-datavalue-allows-value-list-missing-marker": "Список «$1» не содержит строк с маркёром списка *.", + "smw-datavalue-feature-not-supported": "Функция «$1» не поддерживается или была выключена в этой вики.", + "smw-property-predefined-pvap": "«$1» — это предварительно определенное свойство, которой можно указать [[MediaWiki:Smw allows pattern|ссылка на шаблон]], чтобы применить сопоставление [https://en.wikipedia.org/wiki/Regular_expression регулярных выражений], и которая обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-dtitle": "«$1» — это предварительно определенное свойство, которой для сущности можно назначить отдельное название для отображения, и которое обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvuc": "«$1» — это предварительно определенное свойство, которое обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] для ограничения присвоения значений для каждого экземпляра уникальным значением (или максимум одним).", + "smw-property-predefined-long-pvuc": "Уникальность устанавливается, когда два значения являются неодинаковыми в своей символьной репрезентации, и любое нарушение этого ограничения будет квалифицировано как ошибка.", + "smw-datavalue-constraint-uniqueness-violation": "Свойство «$1» позволяет только уникальные присвоенные значения, а «$2» уже было аннотировано в теме «$3».", + "smw-datavalue-constraint-uniqueness-violation-isknown": "Свойство «$1» предусматривает только уникальные присвоения. На странице «$2» уже есть присвоенное значение. «$3» нарушает требование уникальности.", + "smw-property-predefined-boo": "«$1» — [[Special:Types/Boolean|тип данных]] и предопределённое свойство, предоставляемое ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' для хранения булевых значений.", + "smw-property-predefined-num": "«$1» — [[Special:Types/Number|тип данных]] и предопределённое свойство, предоставляемое ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'' для хранения численных данных.", + "smw-property-predefined-dat": "«$1» — [[Special:Types/Date|тип данных]] и предопределённое свойство, предоставляемое ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'', для хранения дат.", + "smw-property-predefined-uri": "«$1» — [[Special:Types/Date|тип данных]] и предопределённое свойство, предоставляемое ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'', для хранения URI и URL.", + "smw-property-predefined-qty": "«$1» — [[Special:Types/Date|тип данных]] и предопределённое свойство, предоставляемое ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'', для хранения количественных данных с единицами измерения.", + "smw-datavalue-time-invalid-offset-zone-usage": "Сдвиг и часовой пояс в «$1» не распознан.", + "smw-datavalue-time-invalid-values": "Значение «$1» содержит не распознанную информацию «$2».", + "smw-datavalue-time-invalid-date-components-common": "«$1» содержит некоторую не поддающуюся интерпретации информации.", + "smw-datavalue-time-invalid-date-components-dash": "«$1» содержит посторонний дефис или другой символ, не допустимый в дате.", + "smw-datavalue-time-invalid-date-components-empty": "«$1» содержит некоторые пустые компоненты.", + "smw-datavalue-time-invalid-date-components-three": "«$1» содержит более трёх составляющих, требуемых для распознания даты.", + "smw-datavalue-time-invalid-date-components-sequence": "«$1» содержит последовательность символов, не поддающуюся интерпретации в соответствии с имеющейся матрицей компонентов дат.", + "smw-datavalue-time-invalid-ampm": "«$1» содержит подстроку «$2», которая не может содержаться во времени в двенадцатичасовом формате.", + "smw-datavalue-time-invalid-jd": "«$1» не поддаётся разбору в качестве корректного юлианского дня (результат разбора — «$2»)", + "smw-datavalue-external-formatter-uri-missing-placeholder": "В маске URI нет символа подстановки «$1».", + "smw-datavalue-external-formatter-invalid-uri": "«$1» — недопустимый URL-адрес.", + "smw-datavalue-external-identifier-formatter-missing": "Не назначено свойство «[[Property:External formatter uri|External formatter URI]]».", + "smw-datavalue-keyword-maximum-length": "Ключевое слово превысило максимальную длину $1 {{PLURAL:$1|символ|символа|символов}}.", + "smw-property-predefined-eid": "«$1» — [[Special:Types/External identifier|тип данных]] и предопределённое свойство, предоставляемое ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'', для хранения внешних идентификаторов.", + "smw-property-predefined-peid": "«$1» — предопределённое свойство, предоставляемое ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'', для хранения внешнего идентификатора.", + "smw-property-predefined-pefu": "«$1» — предопределённое свойство, предоставляемое ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'', для хранения адреса внешнего ресурса с символом подстановки.", + "smw-property-predefined-long-pefu": "В URI должен содержаться символ подстановки, который будет заменён на [[Special:Types/External identifier|внешний идентификатор]] для получения правильной ссылки на ресурс", + "smw-type-eid": "«$1» — это разновидность типа данных «[[Special:Types/Text|Текст]]» для описания внешних (URI based) ресурсов. Для этого типа данных следует назначить свойство, объявляющее «[[Property:External formatter uri|External formatter URI]]».", + "smw-datavalue-parse-error": "Переданное значение «$1» не было понято.", + "smw-datavalue-propertylist-invalid-property-key": "Список свойств «$1» содержит недопустимый ключ свойства «$2».", + "smw-datavalue-type-invalid-typeuri": "Тип «$1» не может быть преобразован в корректный URI.", + "smw-datavalue-wikipage-invalid-title": "Значение «$1» типа «Страница» содержит недопустимые символы или неполно и может привести к неожиданным результатам при семантическом аннотировании или запросе.", + "smw-datavalue-wikipage-property-invalid-title": "Свойство «$1» типа «Страница» со значением «$2» содержит недопустимые символы или неполно и может привести к неожиданным результатам при семантическом аннотировании или запросе.", + "smw-datavalue-reference-invalid-fields-definition": "Тип «[[Special:Types/Reference|Ссылка]]» требует ввода списка свойств, объявленных с помощью свойства «[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields]».", + "smw-parser-invalid-json-format": "JSON-парсер вернул ошибку «$1».", + "smw-property-preferred-label-language-combination-exists": "«$1» нельзя использовать в качестве предпочтительной метки, поскольку язык «$2» уже назначен метке «$3».", + "smw-clipboard-copy-link": "Скопировать ссылку в буфер обмена", + "smw-property-userdefined-fixedtable": "Свойство «$1» сконфигурировано как as [https://www.semantic-mediawiki.org/wiki/Fixed_properties фиксированное], и любые изменения его [https://www.semantic-mediawiki.org/wiki/Type_declaration типа] требуют или запустить setupStore.php, или выполнить задачу «Установка и обновление базы данных» на служебной странице ''[[Special:SemanticMediaWiki|SemanticMediaWiki]]''.", + "smw-data-lookup": "Извлечение данных…", + "smw-data-lookup-with-wait": "Запрос обрабатывается и может занять некоторое время.", + "smw-no-data-available": "Нет доступных данных.", + "smw-property-req-violation-missing-fields": "Для свойства «$1» типа «$2» не задана обязательная декларация [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields].", + "smw-property-req-violation-missing-formatter-uri": "Для свойства «$1» не задано обязательное свойство External formatter URI.", + "smw-property-req-violation-predefined-type": "Для предопределённого свойства «$1» задан тип «$2», с которым несовместимо значение свойства по умолчанию.", + "smw-property-req-violation-import-type": "Обнаружено объявление типа, которое несовместимо с предопределенным типом импортированного словаря «$1». Как правило, нет необходимости объявлять тип, потому что информация извлекается из определения импорта.", + "smw-property-req-violation-change-propagation-locked-error": "Свойство «$1» изменено, и связанные с ним страницы должны быть обновлены путём [https://www.semantic-mediawiki.org/wiki/Change_propagation распространения изменений]. Страница свойства закрыта от изменений пока первичное обновление не будет завершено, чтобы избежать прерывания обновления или противоречивых настроек свойства. Это может занять некоторое время, зависящее от размера [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue очереди задач] и частоты её обработки, по истечении которого страница будет открыта для изменений.", + "smw-property-req-violation-change-propagation-locked-warning": "Свойство «$1» изменено, и связанные страницы должны быть обновлены путём [https://www.semantic-mediawiki.org/wiki/Change_propagation распространения изменений]. Обновление может занять некоторое время, зависящее от размера [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue очереди заданий]. Рекомендуется отложить редактирование свойства, чтобы избежать прерывания обновления или противоречивых настроек.", + "smw-property-req-violation-change-propagation-pending": "Ожидается [https://www.semantic-mediawiki.org/wiki/Change_propagation Распространение изменений] (около $1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|задание|заданий|задания}}]). Рекомендуется отложить редактирование страницы свойства, пока процесс не будет завершён, чтобы избезать прерываний обновления или противоречивых настроек свойства.", + "smw-property-req-violation-missing-maps-extension": "Не удалось обнаружить расширение [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"], необходимое для этого типа данных. Как следствие, невозможно хранить или обрабатывать географические данные.", + "smw-property-req-violation-type": "Для этого свойства указаны противоречивые типы данных, что может привести к установке некорректных значений для него. Следует выбрать один подходящий тип.", + "smw-change-propagation-protection": "Эта страница закрыта для изменений, чтобы предотвратить случайное изменение, пока идёт [https://www.semantic-mediawiki.org/wiki/Change_propagation распространение изменений]. Это может занять некоторое время, зависящее от размера и частоты обработки [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue очереди заданий], прежде чем страница будет открыта для изменений.", + "smw-category-change-propagation-locked-error": "Категория «$1» изменена, и связанные страницы должны быть обновлены путём [https://www.semantic-mediawiki.org/wiki/Change_propagation распространения изменений]. А пока, страница категорий закрыта для изменений, пока обновление не будет завершено, чтобы избежать прерывания обновления или противоречий в настройках. Это может занять некоторое время, зависящее от размера [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue очереди заданий], прежде чем страница будет открыта для изменений.", + "smw-category-change-propagation-locked-warning": "Категория «$1» изменена, и связанные страницы должны быть обновлены путём [https://www.semantic-mediawiki.org/wiki/Change_propagation распространения изменений]. Это может занять некоторое время, зависящее от размера [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue очереди заданий], прежде чем страница будет открыта для изменений. Предлагается отложить редактирование страницы, пока обновление не будет завершено, чтобы избежать прерывания обновления или противоречий в настройках.", + "smw-category-change-propagation-pending": "Ожидается обновление в результате [https://www.semantic-mediawiki.org/wiki/Change_propagation распространения обновлений] (около $1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|задание|заданий|задания}}]). Рекомендуется отложить редактирование категории, пока обновление не будет завершено, чтобы избежать прерывания обновления или противоречивых настроек.", + "smw-category-invalid-value-assignment": "«$1» — не является действительной семантической аннотацией или заданием категории.", + "protect-level-smw-pageedit": "Разрешить только участникам, имеющим право на редактирование страниц (Semantic MediaWiki)", + "smw-create-protection": "Пока действует [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode режим ограниченного доступа], создание свойства «$1» разрешено только пользователям с правами «$2» (или из [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups группы]).", + "smw-create-protection-exists": "Пока действует [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode режим ограниченного доступа], изменение свойства «$1» разрешено только пользователям с правами «$2» (или из такой [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups группы]).", + "smw-edit-protection": "Эта страница [[Property:Is edit protected|защищена от изменений]], чтобы предотвратить нежелательное изменение данных, и может редактироваться только пользователями с правами «$1» или из такой [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups группы].", + "smw-edit-protection-disabled": "Режим защиты от редактирования выключен, следовательно свойство «$1» не может быть использовано для защиты страницы от редактирования.", + "smw-edit-protection-auto-update": "Уровень защиты страницы изменён на основании значения свойства «Is edit protected».", + "smw-edit-protection-enabled": "Защищено от редактирования (Semantic MediaWiki)", + "smw-patternedit-protection": "Эта страница защищена и может редактироваться только пользователями с правами smw-patternedit (см. ''[https://www.semantic-mediawiki.org/wiki/Help:Permissions разрешения]'').", + "smw-property-predefined-edip": "«$1» — предопределённое свойство, предоставляемое ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]'', хранящее признак защиты от редактирования.", + "smw-property-predefined-long-edip": "Хотя любой участник может установить это свойство на страницу, только участники с особыми полномочиями смогут изменить или удалить защиту после того, как она будет установлена.", + "smw-query-reference-link-label": "Ссылка на запрос", + "smw-format-datatable-emptytable": "Данные отсутствуют в таблице", + "smw-format-datatable-info": "Отображение записей от _START_ до _END_ из _TOTAL_", + "smw-format-datatable-infoempty": "Показаны от 0 до 0 из 0 записей", + "smw-format-datatable-infofiltered": "(отфильтровано из _MAX_ записей)", + "smw-format-datatable-infothousands": " ", + "smw-format-datatable-lengthmenu": "Показать _MENU_ записей", + "smw-format-datatable-loadingrecords": "Загружается…", + "smw-format-datatable-processing": "Обрабатывается…", + "smw-format-datatable-search": "Поиск:", + "smw-format-datatable-zerorecords": "Соответствующие записи не найдены", + "smw-format-datatable-first": "Первая", + "smw-format-datatable-last": "Последняя", + "smw-format-datatable-next": "Следующая", + "smw-format-datatable-previous": "Предыдущая", + "smw-format-datatable-sortascending": ":активировать для сортировки столбца по возрастанию", + "smw-format-datatable-sortdescending": ":активировать для сортировки столбца по убыванию", + "smw-format-datatable-toolbar-export": "Экспорт", + "smw-category-invalid-redirect-target": "Категория «$1» содержит некорректное перенаправление в иное пространство имён.", + "apihelp-smwinfo-summary": "Модуль API для получения информации о статистике Semantic MediaWiki и другой метаинформации.", + "apihelp-ask-summary": "Модуль API для запроса Semantic MediaWiki с использованием языка запросов.", + "apihelp-askargs-summary": "Модуль API для запроса Semantic MediaWiki с использованием языка запросов в качестве списка условий, распечаток и параметров.", + "apihelp-browsebyproperty-summary": "Модуль API для получения информации о свойстве или списке свойств.", + "apihelp-browsebysubject-summary": "Модуль API для получения информации о предмете.", + "apihelp-smwtask-summary": "Модуль API для выполнения задач, связанных с Semantic MediaWiki (только для внутреннего, не для публичного использования).", + "apihelp-smwbrowse-summary": "Модуль API для поддержки действий просмотра для различных типов объектов в Semantic MediaWiki.", + "smw-api-invalid-parameters": "Недопустимые параметры, \"$1\"", + "smw-property-page-list-count": "$1 {{PLURAL:$1|страница|страниц|страницы}}, использующих это свойство.", + "smw-property-page-list-search-count": "$1 {{PLURAL:$1|страница|страниц|страницы}}, на которых для свойства установлено значение «$2».", + "smw-property-reserved-category": "Категория", + "smw-category": "Категория", + "smw-datavalue-uri-invalid-scheme": "«$1» не указан, как допустимый протокол URI", + "smw-browse-property-group-title": "Группа свойств", + "smw-browse-property-group-label": "Метка группы свойств", + "smw-browse-property-group-description": "Описание группы свойств", + "smw-property-predefined-ppgr": "«$1» — предопределённое свойство, отмечающее сущности (в основном, категории), используемые для группировки свойств, предоставляемое ''[https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki]''.", + "smw-filter": "Фильтр", + "smw-section-expand": "Раскрыть раздел", + "smw-section-collapse": "Свернуть раздел", + "smw-ask-format-help-link": "Формат [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Справка", + "smw-cheat-sheet": "Шпаргалка", + "smw-personal-jobqueue-watchlist": "Список наблюдения очереди заданий", + "smw-property-predefined-label-skey": "Ключ сортировки", + "smw-processing": "Обработка…", + "smw-loading": "Загрузка…", + "smw-fetching": "Получение...", + "smw-preparing": "Подготовка...", + "smw-expand": "Развернуть", + "smw-collapse": "Свернуть", + "smw-copy": "Копировать", + "smw-copy-clipboard-title": "Копирование содержимого в буфер обмена", + "smw-jsonview-expand-title": "Развернуть JSON-просмотр", + "smw-jsonview-collapse-title": "Свернуть JSON-просмотр", + "smw-jsonview-search-label": "Поиск:", + "smw-redirect-target-unresolvable": "Цель неразрешима по причине: «$1»", + "smw-types-title": "Тип: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "Изменение контентной модели [https://www.semantic-mediawiki.org/wiki/Help:Schema страницы схемы] не разрешено.", + "smw-schema-namespace-edit-protection": "Эта страница защищена, править её могут только участники с [https://www.semantic-mediawiki.org/wiki/Help:Permissions правом] smw-schemaedit.", + "smw-schema-namespace-edit-protection-by-import-performer": "Эта страница была импортирована перечисленным [https://www.semantic-mediawiki.org/wiki/Import_performer импортером] и означает, что изменение содержимого этой страницы разрешено только указанным пользователям.", + "smw-schema-error-title": "{{PLURAL:$1|1=Ошибка|Ошибки}} валидации", + "smw-schema-error-schema": "Схема валидации '''$1''' обнаружила следующие несоответствия:", + "smw-schema-error-miscellaneous": "Разносторонняя ошибка ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "Валидатор JSON \"$1\" недоступен (или не установлен) и является причиной того, что файл \"$2\" не может быть проверен, это препятствует сохранению или изменению текущей страницы.", + "smw-schema-error-violation": "[«$1», «$2»]", + "smw-schema-error-json": "Ошибка JSON: \"$1\"", + "smw-schema-validation-schema-title": "JSON-схема", + "smw-schema-summary-title": "Описание", + "smw-schema-title": "Схема", + "smw-schema-usage": "Использование", + "smw-schema-type": "Тип схемы", + "smw-schema-type-description": "Описание типа", + "smw-schema-description": "Описание схемы", + "smw-schema-description-link-format-schema": "Этот тип схемы поддерживает определение характеристик для создания контекстно-зависимых ссылок в сочетании с назначенным свойством [[Property:Formatter schema|схемы форматера]].", + "smw-schema-tag": "{{PLURAL:$1|Тег|Тега|Тегов}}", + "smw-property-predefined-schema-desc": "«$1» — это предварительно определенное свойство, содержащее описание схемы, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-schema-def": "«$1» — это предварительно определенное свойство, которое описывает содержимое схемы, и обеспечивается [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-ask-title-keyword-type": "Поиск по ключевым словам", + "smw-remote-source-unavailable": "Не получилось подключиться к удалённой цели «$1».", + "smw-remote-source-disabled": "Источник '''$1''' отключил поддержку удалённого запроса!", + "smw-parameter-missing": "Параметр «$1» отсутствует.", + "smw-property-tab-usage": "Использование", + "smw-property-tab-profile-schema": "Схема профиля", + "smw-property-tab-redirects": "Синонимы", + "smw-property-tab-subproperties": "Подсвойства", + "smw-property-tab-specification": "… ещё", + "smw-concept-tab-list": "Список", + "smw-concept-tab-errors": "Ошибки", + "smw-ask-tab-result": "Результат", + "smw-ask-tab-extra": "Дополнительно", + "smw-ask-tab-debug": "Отладка", + "smw-ask-tab-code": "Код", + "smw-install-incomplete-intro": "Имеется $2 неполных или [[Special:PendingTaskList|в ожидании]] {{PLURAL:$2|задача|задач}} для завершения {{PLURAL:$1|установки|обновления}} [https://www.semantic-mediawiki.org Semantic MediaWiki]. Администратор или пользователь с достаточными правами может завершить {{PLURAL:$2|данную задачу|данные задачи}}. Это следует сделать перед добавлением новых данных, чтобы избежать несоответствий.", + "smw-pendingtasks-tab-setup": "Настройка", + "smw-pendingtasks-setup-tasks": "Задачи", + "smw-report": "Отчет", + "smw-legend": "Легенда", + "smw-entity-examiner-deferred-elastic-replication": "Elastic", + "smw-entity-examiner-deferred-constraint-error": "Ограничение", + "smw-entity-examiner-deferred-fake": "Не настоящие", + "smw-indicator-revision-mismatch": "Редакция", + "smw-indicator-revision-mismatch-error": "Проверка [https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner связанной ревизии] обнаружила несоответствие между ревизией, на которую ссылается MediaWiki, и ревизией, ассоциированной в Semantic MediaWiki для этой сущности.", + "smw-facetedsearch-profile-label-default": "Профиль по умолчанию", + "smw-facetedsearch-intro-tab-search": "Поиск", + "smw-facetedsearch-format-table": "Таблица", + "smw-facetedsearch-input-filter-placeholder": "Фильтр...", + "smw-facetedsearch-no-filters": "Нет фильтров.", + "smw-facetedsearch-no-filter-range": "Нет диапазона фильтра.", + "smw-search-placeholder": "Поиск…", + "smw-listingcontinuesabbrev": "(продолжение)", + "smw-showingresults": "Ниже {{PLURAL:$1|1=показан 1 результат|показан $1 результат|показано $1 результата|показаны $1 результатов}}, начиная с № $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/rue.json b/mediawiki/extensions/SemanticMediaWiki/i18n/rue.json new file mode 100644 index 0000000..e539335 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/rue.json @@ -0,0 +1,19 @@ +{ + "@metadata": { + "authors": [ + "Constraque", + "Gazeb" + ] + }, + "smw-categories": "Катеґорії", + "smw_browse_go": "Выконати", + "smw_result_prev": "Попередня", + "smw_result_next": "Далша", + "smw_result_results": "Резултаты", + "smw_result_noresults": "Жадны ресултаты", + "smw_smwadmin_return": "Навернутя до «$1».", + "prefs-extended-search-options": "Розшырене гляданя", + "smw-livepreview-loading": "Наладовованя...", + "smw-listingcontinuesabbrev": "(дале)", + "smw-showingresults": "Ниже {{PLURAL:$1|вказане|вказаны|вказаных}} '''$1''' {{PLURAL:$1|резултат|резултаты|резултатів}}, почінаючіх з № '''$2'''" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sa.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sa.json new file mode 100644 index 0000000..ed902b6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sa.json @@ -0,0 +1,16 @@ +{ + "@metadata": { + "authors": [ + "Charunandan16", + "NehalDaveND", + "Shubha" + ] + }, + "smw-categories": "वर्गाः", + "browse": "विकि दृश्यताम्", + "smw-admin-supplementary-elastic-functions": "उपलब्धकार्याणि", + "smw-admin-supplementary-elastic-settings-title": "अभिविन्यासाः", + "smw-livepreview-loading": "आरोपयति...", + "smw-listingcontinuesabbrev": "अनुवर्तते", + "smw-showingresults": "#'''$2''' क्रमाङ्कात् आरभ्य {{PLURAL:$1|'''$1''' परिणामः अधः प्रदर्शितः|'''$1''' परिणामाः अधः प्रदर्शिताः}}।" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sah.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sah.json new file mode 100644 index 0000000..efa7983 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sah.json @@ -0,0 +1,16 @@ +{ + "@metadata": { + "authors": [ + "Bert Jickty", + "HalanTul", + "Ай-Куо" + ] + }, + "smw-categories": "Категориялар", + "smw_purge": "Саҥарт", + "smw-ask-search": "Бул", + "browse": "Биикини көрүү", + "smw-livepreview-loading": "Киллэрии бара турар…", + "smw-listingcontinuesabbrev": "(салгыыта)", + "smw-showingresults": "Манна {{PLURAL:$1|түмүк|түмүктэр}} {{PLURAL:$1|көрдөрүлүннэ|көрдөрүлүннүлэр}} $1 , мантан саҕалаан № $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sc.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sc.json new file mode 100644 index 0000000..6e682e6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sc.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "L2212", + "Marzedu" + ] + }, + "smw-categories": "Categorias", + "browse": "Esplora sa wiki", + "smw_smwadmin_datarefreshstopconfirm": "Eja, deo so {{GENDER:$1|seguru|segura}}", + "smw-listingcontinuesabbrev": "sighit", + "smw-showingresults": "Inoghe sighende {{PLURAL:$1|benit ammustradu '''1''' resurtadu|benint ammustrados '''$1''' resurtados}} incumentzende dae su nùmeru '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/scn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/scn.json new file mode 100644 index 0000000..3d11299 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/scn.json @@ -0,0 +1,82 @@ +{ + "@metadata": { + "authors": [ + "Ajeje Brazorf", + "GianAntonucci", + "Gmelfi", + "Sarvaturi" + ] + }, + "smw-error": "Erruri", + "smw-upgrade-error-title": "Erruri » Semantic MediaWiki", + "smw_finallistconjunct": " e", + "smw-factbox-head": "... àutru supra \"$1\"", + "smw-factbox-attachments-value-unknown": "N/D", + "smw_printername_list": "Lista", + "smw_printername_category": "Catigurìa", + "validator-type-class-SMWParamSource": "testu", + "smw_nofloat": "\"$1\" nun è nu nùmmiru.", + "smw-propertylist-redirect-header": "sinònimi", + "properties": "Prupità", + "smw-categories": "Catigurìi", + "smw-special-property-searchform-options": "Opzioni", + "smw-special-wantedproperties-filter-none": "Nuḍḍu", + "concepts": "Cuncetti", + "types": "Tipi", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Cuncettu|Cuncetti}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Cuncettu|Cuncetti}}]]", + "smw_ask_ascorder": "Criscenti", + "smw_ask_queryhead": "Cunnizzioni", + "smw_ask_defaultformat": "pridifinutu", + "smw_ask_otheroptions": "Àutri opzioni", + "smw-ask-delete": "Leva", + "smw-ask-options": "Opzioni", + "smw-ask-debug": "Debug", + "smw-ask-extra-other": "Àutru", + "smw_sbv_property": "Prupità:", + "smw_sbv_value": "Valuri:", + "browse": "Esplora lu situ", + "smw_browselink": "Prupità", + "smw-browse-show-group": "Ammustra gruppi", + "smw-browse-hide-group": "Ammuccia gruppi", + "smw_inverse_label_default": "$1 di", + "smw_pp_type": "Prupità:", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|opzioni}}:", + "smw-admin-statistics": "Statìstichi", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-elastic-statistics-title": "Statìstichi", + "smw-admin-supplementary-elastic-replication-files": "File", + "smw-admin-supplementary-elastic-replication-pages": "Pàggini", + "smw-ui-tooltip-title-property": "Prupità", + "smw-ui-tooltip-title-info": "Nfurmazzioni", + "smw-ui-tooltip-title-warning": "Accura", + "smw-ui-tooltip-title-error": "Erruri", + "smw-ui-tooltip-title-event": "Eventu", + "smw-ui-tooltip-title-note": "Nota", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Ìnnici", + "smw-admin-configutation-tab-settings": "Mpustazzioni", + "smw-admin-configutation-tab-namespaces": "Namespace", + "smw-admin-maintenance-no-description": "Nuḍḍa discrizzioni.", + "smw-livepreview-loading": "Carricamentu 'n cursu...", + "smw-sp-searchbyproperty-resultlist-header": "Lista dî risurtati", + "smw-search-profile-sort-title": "Tìtulu", + "smw-search-show": "Fai vìdiri", + "smw-search-hide": "Ammuccia", + "smw-type-tab-types": "Tipi", + "smw-type-tab-errors": "Errura", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|sicunnu|sicunni}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|sicunnu|sicunni}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|sicunnu|sicunni}}", + "smw-format-datatable-last": "Ùrtimu", + "smw-property-reserved-category": "Catigurìa", + "smw-category": "Catigurìa", + "smw-help": "Aiutu", + "smw-types-title": "Tipu: $1", + "smw-concept-tab-list": "Lista", + "smw-concept-tab-errors": "Errura", + "smw-ask-tab-result": "Risurtatu", + "smw-ask-tab-code": "Còdici", + "smw-listingcontinuesabbrev": "cunt.", + "smw-showingresults": "Ammustra nzinu a {{PLURAL:$1|'''1''' risurtatu|'''$1''' risurtati}} a pàrtiri dô nùmmuru '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sco.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sco.json new file mode 100644 index 0000000..b6d1034 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sco.json @@ -0,0 +1,19 @@ +{ + "@metadata": { + "authors": [ + "AmaryllisGardener", + "CiphriusKane", + "John Reid" + ] + }, + "smw_attribute_header": "Pages uisin the property \"$1\"", + "smw-categories": "Categeries", + "browse": "Brouse wiki", + "smw-admin-bugsreport": "Bugs can be reported til GitHub.", + "smw-admin-idlookup-title": "Object ID leukup", + "smw-admin-idlookup-docu": "This section shaws technical details anent ae individual entity (wikipage, subobjeck, property, etc.) in Semantic MediaWiki. The inpit can be ae numeric ID or ae string value tae match the relevant sairch field, yet ony ID reference relates tae Semantic MediaWiki an nae tae MediaWiki's page or revision ID.", + "smw-admin-objectid": "The Object Id:", + "smw-livepreview-loading": "Laidin...", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "Shawin ablo up tae {{PLURAL:$1|'''1''' ootcome|'''$1''' ootcomes}} stertin wi #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sd.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sd.json new file mode 100644 index 0000000..f8f0096 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sd.json @@ -0,0 +1,71 @@ +{ + "@metadata": { + "authors": [ + "Aursani", + "Indus Asia", + "Mehtab ahmed", + "Tweety" + ] + }, + "smw-upgrade-progress": "اڳڀرائي", + "smw_printername_list": "فھرست", + "smw_printername_ol": "انگ ڏنل فھرست", + "smw_printername_table": "ٽيبل", + "smw_printername_category": "زمرو", + "validator-type-class-SMWParamSource": "متن", + "smw_attributearticlecount": "$1 {{PLURAL:$1|صفحو|صفحا}} ڏيکاريندي جيڪي ھي خصوصيت استعمال ڪري ٿو/ڪن ٿا.", + "specialpages-group-smw_group-maintenance": "سارسنڀال", + "smw-categories": "زمرا", + "smw-special-wantedproperties-filter-none": "ڪوبہ نہ", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|استعمال}})", + "smw_purge": "تازو ڪريو", + "smw_ask_defaultformat": "ڏنل", + "smw-ask-delete": "ھٽايو", + "browse": "وڪي جهانگيو", + "smw_browselink": "خصوصيتون جهانگيو", + "smw_result_prev": "پويون", + "smw_result_next": "اڳيون", + "smw_result_noresults": "نتيجا ناھن.", + "smw_smwadmin_return": "$1 ڏانھن واپس ٿيو", + "smw-admin-deprecation-notice-title-notice": "خراب ترتيبون", + "smw-admin-deprecation-notice-title-removal": "ترتيبون ھٽايو", + "smw-admin-deprecation-notice-section-legend": "ڪنجي", + "smw-admin-statistics": "انگ-اکر", + "smw-admin-supplementary-elastic-statistics-title": "انگ-اکر", + "smw-admin-supplementary-elastic-replication-files": "فائيلَ", + "smw-ui-tooltip-title-warning": "چتاءُ", + "smw-ui-tooltip-title-error": "چُڪَ", + "smw-ui-tooltip-title-event": "موقعو", + "smw-ui-tooltip-title-legend": "ڪنجي", + "smw-ui-tooltip-title-reference": "حوالو", + "smw_conceptarticlecount": "ھيٺ $1 {{PLURAL:$1|صفحو|صفحا}} ڏيکاري ٿو.", + "smw-admin-objectid": "آئڊي:", + "smw-admin-tab-maintenance": "سارسنڀال", + "smw-admin-alerts-tab-maintenancealerts": "سارسنڀال جا اطلاع", + "smw-admin-configutation-tab-namespaces": "نانءُپولارَ", + "smw-admin-maintenance-tab-tasks": "ڪم", + "smw-search-profile-sort-title": "عنوان", + "smw-search-profile-extended-help-query": "$1 پڇا طور استعمال ٿيل.", + "smw-search-profile-extended-section-namespace": "نانءُپولار", + "smw-search-show": "ڏيکاريو", + "smw-search-hide": "لڪايو", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|سيڪنڊُ|سيڪنڊَ}}", + "smw-clipboard-copy-link": "ڪلپبورڊ تي ڳنڍڻو نقل ڪريو", + "smw-query-reference-link-label": "پڇا حوالو", + "smw-format-datatable-next": "اڳيون", + "smw-format-datatable-previous": "پويون", + "smw-property-page-list-count": "$1 {{PLURAL:$1|صفحو|صفحا}} ڏيکاريندي جيڪي ھي خصوصيت استعمال ڪري ٿو/ڪن ٿا.", + "smw-property-reserved-category": "زمرو", + "smw-category": "زمرو", + "smw-filter": "ڇاڻي", + "smw-expand": "پکيڙيو", + "smw-schema-error-violation": "[\"$1\"، \"$2\"]", + "smw-property-tab-specification": "... وڌيڪ", + "smw-concept-tab-list": "فھرست", + "smw-pendingtasks-setup-tasks": "ڪم", + "smw-legend": "ڪنجي", + "smw-entity-examiner-associated-revision-mismatch": "ورجاءُ", + "smw-indicator-revision-mismatch": "ورجاءُ", + "smw-listingcontinuesabbrev": "جاري.", + "smw-showingresults": "ھيٺ #$2 سان شروع ٿيندڙ {{PLURAL:$1|1 نتيجو|$1 نتيجا}} تائين ڏيکاري ٿو." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sdc.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sdc.json new file mode 100644 index 0000000..cfee064 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sdc.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "Felis", + "Jun Misugi" + ] + }, + "smw-categories": "Categuri", + "browse": "Nabiggà vichi", + "smw-livepreview-loading": "Carrigghendi…", + "smw-listingcontinuesabbrev": "(séguiddu)", + "smw-showingresults": "Accó {{PLURAL:$1|màssimu '''1''' risulthaddu|màssimu li '''$1''' risulthaddi}} à partì da lu nùmaru #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sgs.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sgs.json new file mode 100644 index 0000000..97f73b7 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sgs.json @@ -0,0 +1,14 @@ +{ + "@metadata": { + "authors": [ + "Hugo.arg", + "Zordsdavini" + ] + }, + "smw-categories": "Kateguorėjės", + "smw_purge": "Atšvėižintė", + "browse": "Poslapiu apveiza", + "smw-livepreview-loading": "Kraunama īr…", + "smw-listingcontinuesabbrev": "tes.", + "smw-showingresults": "Žemiau ruodoma lėgė '''$1''' {{PLURAL:$1|rezoltata|rezoltatu|rezoltatu}} pradedont #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/shn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/shn.json new file mode 100644 index 0000000..be9b3d5 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/shn.json @@ -0,0 +1,16 @@ +{ + "@metadata": { + "authors": [ + "Saimawnkham", + "Sengwan365" + ] + }, + "smw_printername_category": "ပိူင်ထၢၼ်ႈ", + "smw-categories": "ပိူင်ထၢၼ်ႈ", + "browse": "ပိုတ်ႇႁႃ ဝီႇၶီႇ", + "smw-admin-maintenance-no-description": "ဢမ်ႇမီး ၶေႃႈသပ်းလႅင်း။", + "smw-property-reserved-category": "ပိူင်ထၢၼ်ႈ", + "smw-preparing": "တိုၵ့်ႁၢင်ႈႁႅၼ်း", + "smw-schema-type-description": "သႂ်ႇ ၶေႃႈသပ်းလႅင်း", + "smw-listingcontinuesabbrev": "သိုပ်ႇ" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/si.json b/mediawiki/extensions/SemanticMediaWiki/i18n/si.json new file mode 100644 index 0000000..91433e1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/si.json @@ -0,0 +1,154 @@ +{ + "@metadata": { + "authors": [ + "1100100", + "Susith Chandira Gts", + "SusithCM", + "නන්දිමිතුරු", + "පසිඳු කාවින්ද" + ] + }, + "smw_viewasrdf": "RDF පෝෂකය", + "smw_finallistconjunct": ", සහ", + "smw_isspecprop": "මෙම වත්කම විකියෙහි තිබෙන විශේෂ වත්කමකි.", + "smw_concept_description": "\"$1\" සංකල්පයේ විස්තරය", + "version-semantic": "අර්ථ විචාර විස්තීරණ", + "smw_baduri": "\"$1\" ෆෝරමයේ URIs ඉඩ නොදේ.", + "smw_printername_count": "ප්‍රතිඑල ගණනය කරන්න", + "smw_printername_csv": "CSV නිර්යාත කිරීම", + "smw_printername_dsv": "DSV නිර්යාත කිරීම", + "smw_printername_debug": "නොදොස් කිරීම් ප්‍රශ්නය (ප්‍රවීණයන් සඳහා)", + "smw_printername_embedded": "කාවද්දූ ගොනුවේ අන්තර්ගතය", + "smw_printername_json": "JSON නිර්යාත කිරීම", + "smw_printername_list": "ලැයිස්තුව", + "smw_printername_ol": "ප්‍රගණනය", + "smw_printername_ul": "ලැයිස්තුගතකෙරුම", + "smw_printername_table": "වගුව", + "smw_printername_broadtable": "ග්‍රාම්‍ය වගුව", + "smw_printername_template": "සැකිල්ල", + "smw_printername_rdf": "RDF නිර්යාත කිරීම", + "smw_printername_category": "ප්‍රවර්ගය", + "validator-type-class-SMWParamSource": "පෙළ", + "smw-paramdesc-limit": "නැවත ආ යුතු උපරිම ප්‍රතිඑල ගණන", + "smw-paramdesc-offset": "පළමු ප්‍රතිඑලයේ එලෙන්දුව", + "smw-paramdesc-headers": "ශීර්ෂයන්/වත්කම් නාමයන් පෙන්වන්න", + "smw-paramdesc-mainlabel": "ප්‍රධාන පිටු නාමයට දිය යුතු ලේබලය", + "smw-paramdesc-link": "අගයන් සබැඳි ලෙස පෙන්වන්න", + "smw-paramdesc-sep": "අගයන් සඳහා විභේදකය", + "smw-paramdesc-embedonly": "ශ්‍රීර්ෂනාම පෙන්වන්න එපා", + "smw-paramdesc-csv-sep": "භාවිතා කල යුතු විභේදකය", + "smw-paramdesc-dsv-separator": "භාවිතා කල යුතු විභේදකය", + "smw-paramdesc-dsv-filename": "DSV ගොනුවේ නම", + "smw-paramdesc-order": "ප්‍රශ්න පෙළගැස්මේ අනුපිලිවෙල", + "smw-paramdesc-searchlabel": "සෙවුම දිගටම කරගෙන යාම සඳහා පාඨ", + "smw-paramdesc-export": "නිර්යාත විකල්පය", + "smw-paramdesc-source": "වෛකල්පික විමසුම් මූලාශ්‍රය", + "smw-paramdesc-jsonsyntax": "භාවිතා කල යුතු JSON වාක්‍ය වින්‍යාසය", + "smw-printername-feed": "RSS සහ Atom පෝෂකය", + "smw-paramdesc-feedtype": "පෝෂක වර්ගය", + "smw-label-feed-description": "$1 $2 පෝෂකය", + "smw_iq_moreresults": "… ඉදිරි ප්‍රතිඑල", + "smw_parseerror": "ලබා දුන් අගය තේරුම්ගත නොහැක.", + "smw_manytypes": "වත්කම සඳහා වර්ගයන් එකකට වඩා අර්ථ දක්වා ඇත.", + "smw_emptystring": "හිස් තන්තු බාරගනු නොලැබේ.", + "smw_true_words": "true,t,yes,y", + "smw_false_words": "false,f,no,n", + "smw_nofloat": "\"$1\" යනු ඉලක්කමක් නොවේ.", + "smw_novalues": "අගයන් කිසිවක් විශේෂණය කර නොමැත.", + "smw_nodatetime": "\"$1\" දිනය තේරුම්ගත නොහැක.", + "smw_emptysubquery": "සමහර උපප්‍රශ්නයන් සතුව වලංගු කොන්දේසියක් නැත.", + "smw_propvalueproblem": "\"$1\" වත්කමෙහි අගය තේරුම්ගත නොහැක.", + "smw_type_header": "\"$1\" වර්ගයේ වත්කම්", + "smw_attribute_header": "\"$1\" වත්කම භාවිතා කරන පිටු", + "exportrdf": "RDF වෙත පිටු නිර්යාත කරන්න", + "smw_exportrdf_submit": "නිර්යාත කරන්න", + "uriresolver": "URIපිළිවිසඳුව", + "properties": "ගුණ", + "smw-categories": "ප්‍රවර්ග", + "smw_properties_docu": "පහත දැක්වෙන වත්කම් විකිය තුල භාවිතා වේ.", + "smw_propertylackspage": "සියලුම වත්කම් පිටුවක් මඟින් විස්තර කල යුතු වේ!", + "smw_propertyhardlyused": "මෙම වත්කම විකිය තුල දැඩි ලෙස භාවිතා වේ!", + "unusedproperties": "අභාවිත ගුණාංග", + "smw-unusedproperty-template": "$2 වර්ගයෙන් $1", + "wantedproperties": "උවමනා ගුණාංග", + "smw-wantedproperty-template": "$1 ({{PLURAL:$2|භාවිතයන්}} $2)", + "smw_purge": "නැවත ප්‍රාණවත් කරන්න", + "types": "වර්ග", + "ask": "අර්ථ විචාර සෙවුම", + "smw_ask_sortby": "තීරුව අනුව පෙළගස්වන්න (වෛකල්පික)", + "smw_ask_ascorder": "ආරෝහණ", + "smw_ask_descorder": "අවරෝහණ", + "smw_ask_submit": "ප්‍රතිඵල සොයන්න", + "smw_ask_editquery": "ප්‍රශ්නය සංස්කරණය කරන්න", + "smw_add_sortcondition": "[පෙළගැස්වීම් කොන්දේසියක් එක් කරන්න]", + "smw_ask_hidequery": "ප්‍රශ්නය සඟවන්න", + "smw_ask_help": "විමසුම් උදව්", + "smw_ask_queryhead": "ප්‍රශ්නය", + "smw_ask_printhead": "සංදර්ශනය කල යුතු අමතර දත්ත", + "smw_ask_printdesc": "(එක් පෙළකට එක් වත්කම් නාමයක් එක් කරන්න)", + "smw_ask_format_as": "මෙලෙස ආකෘති කරන්න:", + "smw_ask_defaultformat": "සාමාන්‍ය", + "smw_ask_otheroptions": "වෙනත් විකල්පයන්", + "smw_ask_show_embed": "කාවැද්දූ කේතය පෙන්වන්න", + "smw_ask_hide_embed": "කාවැද්දූ කේතය සඟවන්න", + "smw-ask-delete": "[මකන්න]", + "smw-ask-sorting": "තේරීම", + "searchbyproperty": "ගුණාංගය අනුව සොයන්න", + "smw_sbv_property": "ගුණාංගය:", + "smw_sbv_value": "අගය:", + "smw_sbv_submit": "ප්‍රතිඵල සොයන්න", + "browse": "විකිය ගවේෂණය කරන්න", + "smw_browselink": "ගුණ ගවේෂණය කරන්න", + "smw_browse_go": "යන්න", + "smw_browse_show_incoming": "මෙයට සබැඳෙන වත්කම් පෙන්වන්න", + "smw_browse_hide_incoming": "මෙයට සබැඳෙන වත්කම් සඟවන්න", + "smw_browse_no_outgoing": "මෙම පිටුව සතුව ගුණාංග නොමැත.", + "smw_browse_no_incoming": "මෙම පිටුවට කිසිදු වත්කමක් සම්බන්ධ නොවේ.", + "smw_inverse_label_default": "$1 න්", + "smw_inverse_label_property": "වත්කම් ලේබලය ප්‍රතිලෝම කරන්න", + "pageproperty": "පිටු වත්කම් සෙවුම", + "smw_pp_from": "පිටුව වෙතින්", + "smw_pp_type": "ගුණාංගය", + "smw_pp_submit": "ප්‍රතිඵල සොයන්න", + "smw_result_prev": "පෙර", + "smw_result_next": "මීළඟ", + "smw_result_results": "ප්‍රතිඵල", + "smw_result_noresults": "ප්‍රතිඵල නොමැත", + "smw-admin-setupsuccess": "ආචයන එන්ජිම සාර්ථකව සකසන ලදී.", + "smw_smwadmin_return": "$1 ට නැවත යන්න", + "smw-admin-db": "දත්ත සංචිත ස්ථාපනය හෝ උසස් කිරීම", + "smw-admin-dbbutton": "වගු ඇරඹීම හෝ යාවත්කාලීන කිරීම සිදු කරන්න", + "smw-admin-announce": "ඔබේ විකිය නිවේදනය කරන්න", + "smw_smwadmin_datarefresh": "දත්ත අලුත්වැඩියාව සහ උසස් කිරීම", + "smw_smwadmin_datarefreshbutton": "දත්ත යාවත්කාලීනය අරඹන්න", + "smw_smwadmin_datarefreshstop": "මෙම යාවත්කාලීනය නවතන්න", + "smw_smwadmin_datarefreshstopconfirm": "ඔව්, මට විශ්වාසයි.", + "smw-admin-support": "සහාය ලබා ගනිමින්", + "smw_adminlinks_datastructure": "දත්ත ව්‍යුහය", + "smw_adminlinks_displayingdata": "දත්ත ප්‍රදර්ශනය", + "smw_adminlinks_inlinequerieshelp": "එක් තල ප්‍රශ්න උපකාර", + "smw-createproperty-isproperty": "මෙය $1 වර්ගයේ වත්කමකි.", + "smw-paramdesc-category-delim": "පරිසීමකය", + "smw-paramdesc-category-userparam": "සැකිල්ල වෙත අතහැර යායුතු පරාමිතිය", + "smw-info-par-message": "පෙන්වීමට ඇති පණිවුඩය.", + "prefs-smw": "අර්ථ විචාර මාධ්‍යවිකිය", + "prefs-ask-options": "අර්ථ විචාර සෙවුම් විකල්ප", + "smw-ui-tooltip-title-property": "ගුණාංගය", + "smw-ui-tooltip-title-quantity": "ප්‍රමාණය", + "smw-ui-tooltip-title-info": "තොරතුරු", + "smw-ui-tooltip-title-service": "සේවා සබැඳි", + "smw-ui-tooltip-title-warning": "දෝෂය", + "smw-ui-tooltip-title-parameter": "පරාමිතිය", + "smw-ui-tooltip-title-event": "සිදුවීම", + "smw-ui-tooltip-title-note": "සටහන", + "smw-ui-tooltip-title-legend": "ප්‍රබන්ධය", + "smw_unknowntype": "මෙම වත්කමේ වර්ගය වලංගු නොවේ", + "smw_concept_header": "\"$1\" සංකල්පයේ පිටු", + "smw-livepreview-loading": "බා ගැනෙමින්…", + "smw-sp-searchbyproperty-description": "මෙම පිටුව [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces browsing interface] නාමික අගය හා හිමිකම් පැහැදිලි කිරීම් සෙවුම් සදහා විස්තර ලබා දේ.\nතවත් පවතින අතුරුමුහුණත් සෙවුම් ඇතුළත් කරනවා [[Special:PageProperty|page property search]], සහ [[Special:Ask|ask query builder]].", + "smw-sp-searchbyproperty-resultlist-header": "ප්‍රතිපල ලැයිස්තුව", + "smw-sp-searchbyproperty-nonvaluequery": "\"$1\" සදහා ඇති වටිනාකම් ලැයිස්තුව පවරන ලදී.", + "smw-sp-searchbyproperty-valuequery": "\"$2\"ක අගයේ \"$1\" හිමිකම් ඇති පිටු ලැයිස්තුව විස්තර කරන ලදී.", + "smw-listingcontinuesabbrev": "ඉතිරිය.", + "smw-showingresults": "#'''$2''' ගෙන් ආරම්භ කොට, {{PLURAL:$1|ප්‍රතිඵල '''1''' ක් |ප්‍රතිඵල '''$1''' ක්}} දක්වා පහත පෙන්වා ඇත." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sk.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sk.json new file mode 100644 index 0000000..156200e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sk.json @@ -0,0 +1,184 @@ +{ + "@metadata": { + "authors": [ + "Helix84", + "Kghbln", + "Luky001", + "TomášPolonec", + "Yardom78", + "아라" + ] + }, + "smw-desc": "Sprístupnenie vašej wiki pre stroje ''aj'' ľudí ([https://www.semantic-mediawiki.org/wiki/Help:User_manual dokumentácia])", + "smw_viewasrdf": "RDF kanál", + "smw_finallistconjunct": " a", + "smw_isspecprop": "Táto vlastnosť je špeciálna vlastnosť na tejto wiki.", + "smw_concept_description": "Popis pojmu „$1”", + "smw_no_concept_namespace": "Pojmy je možné definovať iba na stránkach v mennom priestore Concept:", + "smw_multiple_concepts": "Každý pojem môže mať iba jednu definíciu pojmu.", + "smw_concept_cache_miss": "Pojem „$1” nemožno momentálne použiť, pretože konfigurácia wiki vyžaduje, aby sa vypočítal, keď wiki nebude pripojená. Ak problém po určitej dobe nezmizne, požiadajte správcu, aby tento pojem sprístupnil.", + "smw_noinvannot": "Hodnoty nemožno priradiť inverzným vlastnostiam.", + "smw_baduri": "Prepáčte, URI z rozsahu \"$1\" na tomto mieste nie sú dostupné.", + "smw_printername_count": "Výsledky počítania", + "smw_printername_csv": "export CSV", + "smw_printername_debug": "Ladiaca požiadavka (pre expertov)", + "smw_printername_embedded": "Vložiť obsah stránky", + "smw_printername_json": "export JSON", + "smw_printername_list": "Zoznam", + "smw_printername_ol": "Vymenovaný typ", + "smw_printername_ul": "Rozpoložkovanie", + "smw_printername_table": "Tabuľka", + "smw_printername_broadtable": "Široká tabuľka", + "smw_printername_template": "Šablóna", + "smw-paramdesc-limit": "Maximálny počet vrátených výsledov", + "smw-paramdesc-headers": "Zobrazovať hlavičky/názvy vlastností", + "smw-paramdesc-mainlabel": "Označenie názvu hlavnej stránky", + "smw-paramdesc-link": "Zobrazovať hodnoty ako odkazy", + "smw-paramdesc-intro": "Text, ktorý sa má zobrazovať pred výsledkami požiadavky (nepovinnné)", + "smw-paramdesc-outro": "Text, ktorý sa má zobrazovať po výsledkoch požiadavky (nepovinnné)", + "smw-paramdesc-default": "Text, ktorý sa má zobrazovať ak požiadavka nevráti žiadne výsledky", + "smw-paramdesc-sep": "Oddeľovač medzi výsledkami", + "smw-paramdesc-template": "Názov šablóny pomocou ktorej zobrazovať výtlačky", + "smw-paramdesc-columns": "Počet stĺpcov, v ktorých zobrazovať výsledky", + "smw-paramdesc-embedformat": "Značka HTML na definíciu nadpisov", + "smw-paramdesc-embedonly": "Nezobrazovať nadpisy", + "smw-paramdesc-searchlabel": "Text pre pokračovanie vo vyhľadávaní", + "smw_iq_disabled": "Prepáčte. Inline queries have been disabled for this wiki.", + "smw_iq_moreresults": "… ďalšie výsledky", + "smw_parseerror": "Zadaná hodnota nebola pochopená.", + "smw_notitle": "„$1“ nie je možné na tejto wiki použiť ako názov stránky.", + "smw_wrong_namespace": "Sú tu povolené iba stránky v mennom priestore „$1”.", + "smw_manytypes": "Pre atribút bol definovaný viac ako jeden typ.", + "smw_emptystring": "Prázdne reťazcie nie sú akceptované.", + "smw_notinenum": "„$1“ nie je v zozname [[Property:Allows value|možných hodnôt]] ($2) pre vlastnosť „$3“.", + "smw_noboolean": "\"$1\" nebolo rozpoznané ako platná hodnota typy boolean (áno/nie).", + "smw_true_words": "áno,true", + "smw_false_words": "nie,false", + "smw_nofloat": "\"$1\" nie je číslo s plávajúcou desatinnou čiarkou.", + "smw_infinite": "Čísla také veľké ako „$1“ nie sú podporované.", + "smw_nodatetime": "Nevedel som interpretovať dátum \"$1\".", + "smw_toomanyclosing": "Zdá sa, že požiadavka obsahuje príliš mnoho výskytov „$1“.", + "smw_noclosingbrackets": "Niektoré použitie „[[” vo vašej požiadavke nebolo ukončené zodpovedajúcim „]]”.", + "smw_misplacedsymbol": "Symbol „$1“ bol použitý na mieste, kde nemá význam.", + "smw_unexpectedpart": "Časť požiadavky „$1“ nebola pochopená.\nVýsledky nemusia byť podľa očakávaní.", + "smw_emptysubquery": "Niektorá subpožiadavka nemá platný stav.", + "smw_misplacedsubquery": "Niektorá subpožiadavka bola použitá na mieste, kde nie sú povolené subpožiadavky.", + "smw_valuesubquery": "Podpožiadavky nie sú podporované pre hodnoty vlastnosti „$1“.", + "smw_badqueryatom": "Niektorá časť „[[…]]“ nebola pochopená.", + "smw_propvalueproblem": "Hodnota vlastnosti „$1“ nebola pochopená.", + "smw_noqueryfeature": "Táto wiki nepodporuje istú časť požiadavky a jej časť bola ignorovaná ($1).", + "smw_noconjunctions": "Táto wiki nepodporuje konjunkcie v požiadavkách a časť požiadavky bola ignorovaná ($1).", + "smw_nodisjunctions": "Disjunkcie nie sú v požiadavkách na tejto wiki podporované a časť požiadavky bola ignorovaná ($1).", + "smw_querytoolarge": "{{PLURAL:$2|Nasledovná podmienka|Nasledovné $2 podmienky|Nasledovných $2 podmienok}} požiadavky nebudú zohľadnené z dôvodu obmedzení tejto wiki na dĺžku alebo hĺbku požiadavky: $1.", + "smw_notemplategiven": "Aby tento formát požiadavky fungoval, poskytnite prosím hodnotu parametra „template”.", + "smw_type_header": "Vlastnosti typu „$1“", + "smw_typearticlecount": "{{PLURAL:$1|Zobrazuje sa $1 vlastnosť|Zobrazujú sa $1 vlastnosti|Zobrazuje sa $1 vlastností}} tohto typu.", + "smw_attribute_header": "Stránky používajúce vlastnosť „$1“", + "smw_attributearticlecount": "Zobrazuje sa $1 {{PLURAL:$1|stránka|stránky|stránok}}, ktoré používajú túto vlastnosť.", + "specialpages-group-smw_group-search": "Prehliadať a hľadať", + "exportrdf": "Exportovať stránky do RDF", + "smw_exportrdf_docu": "Táto stránka vám umožňuje exportovať časti stránok do formátu RDF. Po zadaní názvov stránok do spodného textového poľa, jeden názov na riadok, môžete exportovať stránky.", + "smw_exportrdf_recursive": "Rekurzívne exportovať všetky súvisiace stránky. Pozor, výsledok môže byť veľmi veľký!", + "smw_exportrdf_backlinks": "Tieť exportovať všetky stránky, ktoré odkazujú na exportované stránky. Vytvorí prehliadateľné RDF.", + "smw_exportrdf_lastdate": "Neexportovať stránky, ktoré neboli zmenené od zadaného času.", + "smw_exportrdf_submit": "Export", + "uriresolver": "Prekladač URI", + "properties": "Vlastnosti", + "smw-categories": "Kategórie", + "smw_properties_docu": "Na tejto wiki sa používajú nasledovné vlastnosti.", + "smw_property_template": "$1 typu $2 ($3 {{PLURAL:$3|použitie|použitia|použití}})", + "smw_propertylackspage": "Všetky vlastnosti by mali mať popisnú stránku!", + "smw_propertylackstype": "Pre túto vlastnosť nebol uvedený žiadny typ (nateraz sa predpokladá typ $1).", + "smw_propertyhardlyused": "Táto vlastnosť sa na wiki takmer nepoužíva!", + "unusedproperties": "Nepoužité vlastnosti", + "smw-unusedproperties-docu": "Táto stránka obsahuje [https://www.semantic-mediawiki.org/wiki/Unused_properties nepoužívané vlastnosti], ktoré sú deklarované napriek tomu, že ich žiadna iná stránka nepoužíva. Pre porovnanie si pozrite špeciálne stránky obsahujúce [[Special:Properties|všetky]] alebo [[Special:WantedProperties|žiadané vlastnosti]].", + "smw-unusedproperty-template": "$1 typu $2", + "wantedproperties": "Žiadané vlastnosti", + "smw-wantedproperties-docu": "Táto stránka obsahuje [https://www.semantic-mediawiki.org/wiki/Unused_properties žiadané vlastnosti], ktoré sú na wiki používané, ale nemajú stránku, kde by boli popísané. Pre porovnanie si pozrite špeciálne stránky obsahujúce [[Special:Properties|všetky]] alebo [[Special:WantedProperties|nepoužívané vlastnosti]].", + "smw-wantedproperty-template": "$1 (použité {{PLURAL:$2|raz|$2-krát}})", + "smw_purge": "Obnoviť", + "types": "Typy", + "smw_types_docu": "Zoznam [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes dostupných údajových typov], kde každý [https://www.semantic-mediawiki.org/wiki/Help:Datatype typ] reprezentuje unikátnu sadu atribútov na opis hodnoty z hľadiska uloženia a vlastností zobrazenia, ktoré sú pre pridelenú vlastnosť dedičné.", + "smw_uri_doc": "URI resolver sa stará o implementáciu [$1 W3C TAG hľadanie na httpRange-14].\nStará sa o to, aby sa ľudia nestali webstránkami.", + "ask": "Sémantické vyhľadávanie", + "smw_ask_sortby": "Zoradiť podľa stĺpca", + "smw_ask_ascorder": "Vzostupne", + "smw_ask_descorder": "Zostupne", + "smw_ask_submit": "Nájdi výsledky", + "smw_ask_editquery": "Upraviť požiadavku", + "smw_add_sortcondition": "[Pridať podmienku na zoradenie]", + "smw_ask_hidequery": "Skryť požiadavku (kompaktné zobrazenie)", + "smw_ask_help": "Pomocník pre požiadavky", + "smw_ask_queryhead": "Podmienka", + "smw_ask_printhead": "Výber výpisu", + "smw_ask_printdesc": "(pridajte jednu vlastnosť na riadok)", + "smw_ask_format_as": "Formátovať ako:", + "smw_ask_defaultformat": "štandardne", + "smw_ask_otheroptions": "Ďalšie možnosti", + "smw_ask_show_embed": "Zobraziť kód embed", + "smw_ask_hide_embed": "Skryť kód embed", + "smw_ask_embed_instr": "Ak chcete vložiť túto požiadavku do wiki stránky, použite dolu uvedený kód.", + "searchbyproperty": "Hľadať podľa hodnoty atribútu", + "smw_sbv_docu": "Hľadať na wiki článok, ktorý má atribút s istou hodnotou.", + "smw_sbv_novalue": "Nebola poskytnutá hodnota. Prosím, poskytnite ju vo formulári alebo zobrazte všetky atribúty typu $1", + "smw_sbv_displayresultfuzzy": "Zoznam všetkých stránok, ktoré majú vlastnosť „$1” s hodnotou „$2”.\nKeďže výsledkov bolo len niekoľko, zobrazujú sa aj blízke hodnoty.", + "smw_sbv_property": "Atribút:", + "smw_sbv_value": "Hodnota:", + "smw_sbv_submit": "Hľadať výsledky", + "browse": "Prehliadať wiki", + "smw_browselink": "Prehliadať vlastnosti", + "smw_browse_article": "Zadajte názov stránky, od ktorej chcete začať prehliadať.", + "smw_browse_go": "Vykonať", + "smw_browse_show_incoming": "Zobraziť prichádzajúce vlastnosti", + "smw_browse_hide_incoming": "Skryť prichádzajúce vlastnosti", + "smw_browse_no_outgoing": "Táto stránka neobsahuje vlastnosti.", + "smw_browse_no_incoming": "Žiadne vlastnosti neodkazujú na túto stránku.", + "smw_inverse_label_default": "$1 z", + "smw_inverse_label_property": "Označenie inverznej vlastnosti", + "pageproperty": "Hľadanie vlastností stránky", + "smw_pp_docu": "Buď zadajte stránku a vlastnosť, alebo iba vlastnosť pre načítanie všetkých priradených hodnôt.", + "smw_pp_from": "Od stránky:", + "smw_pp_type": "Vlastnosť:", + "smw_pp_submit": "Výsledky hľadania", + "smw_result_prev": "Späť", + "smw_result_next": "Ďalej", + "smw_result_results": "Výsledky", + "smw_result_noresults": "Prepáčte, žiadne výsledky.", + "smwadmin": "Panel (Sémantická MediaWiki)", + "smw-admin-setupsuccess": "Úložisko bolo nastavené.", + "smw_smwadmin_return": "Späť na $1", + "smw_smwadmin_updatestarted": "Začal sa nový proces aktualizácie sémantických údajov.\nVšetky uložené údaje budú znova zostavené alebo opravené tam, kde je to potrebné.\nNa tejto špeciálnej stránke môžete sledovať priebeh aktualizácie.", + "smw_smwadmin_updatenotstarted": "Proces aktualizácie už beží.\nĎalší sa nespustí.", + "smw_smwadmin_updatestopped": "Všetky bežiace procesy aktualizácie boli zastavené.", + "smw_smwadmin_updatenotstopped": "Bežiaci proces aktualizácie môžete zastaviť označením zaškrtávacieho poľa, čím potvrdíte, že ste si naozaj istý.", + "smw-admin-docu": "Táto špeciálna stránka vám pomôže počas inštalácie, aktualizácie, údržby a používania Sémantickej MediaWiki. Nájdete v nej tiež ďalšie správcovské funkcie, úlohy a štatistiky. Pred spustením správcovských funkcií nezabudnite zálohovať dôležité dáta.", + "smw-admin-db": "Nastavenie databázy", + "smw-admin-dbdocu": "Semantic MediaWiki vyžaduje svoju vlastnú databázovú štruktúru (a je nezávislá na MediaWiki, čiže neovplyvňuje zvyšok inštalácie MediaWiki), aby molo ukladať sémantické údaje.\nFunkcia nižšie zabezpečuje správne nastavenie databázy.\nTúto funkcia nastavenia možno vykonať viacnásobne bez akejkoľvek ujmy, ale je potrebná iba raz počas inštalácie či aktualizácie.", + "smw-admin-permissionswarn": "Ak táto operácia zlyhá na chybách SQL, používateľ databázy, ktorého využíva vaša wiki (pozrite sa do LocalSettings.php) pravdepodobne nemá dostatočné privilégiá.\nBuď udeľte tomuto používateľovi dodatočné privilégiá na vytváranie a mazanie tabuliek, dočasne zadajte prihlasovacie údaje používateľa root databázy do LocalSettings.php alebo použite skript na údržbu setupStore.php, ktorý dokáže využiť administrátorské oprávnenie.", + "smw-admin-dbbutton": "Inicializovať alebo aktualizovať tabuľky", + "smw-admin-announce": "Oznámiť vašu wiki", + "smw_smwadmin_datarefresh": "Nové vytvorenie dát", + "smw_smwadmin_datarefreshdocu": "Je možné obnoviť všetky údaje Semantic MediaWiki na základe aktuálneho obsahu wiki.\nTo sa hodí na opravu poškodených údajov alebo obnovu údajov ak sa pri aktualizácii softvéru zmenil vnútorný formát ukladania údajov.\nAktualizáciu je možné spustiť na špeciálnej stránke a nebude dokočená okamžite.\nTu sa zobrazuje priebeh aktualizácie a môžete tu spustiť alebo zastaviť aktualizácie (ak túto funkciu správca nevypol).", + "smw_smwadmin_datarefreshprogress": "Aktualizácia už prebieha.\nJe normálne, že aktualizácie prebieha pomaly, pretože obnovuje údaje iba po malých kúskoch naraz, keď používateľ zobrazí stránku wiki.\nRýchlejšie dokončenie tejto aktualizácie môžete dosiahnuť vyvolaním údržbového skriptu MediaWiki runJobs.php (použite voľbu --maxjobs 1000 na obmedzenie počtu aktualizácií v jednej dávke).\nOdhadovaný priebeh aktualizácie:", + "smw_smwadmin_datarefreshbutton": "Naplánovať znovunastavenie dát", + "smw_smwadmin_datarefreshstop": "Zastaviť túto aktualizáciu", + "smw_smwadmin_datarefreshstopconfirm": "Áno, som si {{GENDER:$1|istý|istá}}.", + "smw-admin-support": "Získanie podpory", + "smw-admin-supportdocu": "V prípade problémov vám môžu pomôcť rozličné zdroje:", + "smw-admin-installfile": "Ak budete mať s inštaláciou problém, prečítajte si návod k inštalácii v súbore INSTALL a na inštalačnej stránke.", + "smw-admin-smwhomepage": "Úplná používateľská dokumentácia Sémantickej MediaWiki sa nachádza na semantic-mediawiki.org.", + "smw-admin-bugsreport": "Chyby môžete oznamovať v zápisníku chýb, stránka Hlásenie chýb poskytuje návod ako efektívne napísať hlásenie chyby.", + "smw-admin-questions": "Pokiaľ máte ďalšie otázky alebo návrhy, pridajte sa do diskusie v mailing liste používateľov Sémantickej MediaWiki.", + "smw_adminlinks_datastructure": "Štruktúra údajov", + "smw_adminlinks_displayingdata": "Zobrazenie údajov", + "smw_adminlinks_inlinequerieshelp": "Pomoc k inline požiadavkám", + "smw-createproperty-isproperty": "Je to vlastnosť typu $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Povolená hodnota|Povolené hodnoty}} tejto vlastnosti {{PLURAL:$1|je|sú}}:", + "smw_unknowntype": "Typ „$1“ tejto vlastnosti je neplatný", + "smw_concept_header": "Návrh „$1”", + "smw_conceptarticlecount": "Nižšie {{PLURAL:$1|zobrazená jedna stránka|zobrazené $1 stránky|zobrazených $1 stránkok}}.", + "smw-property-predefined-askpa": "„$1“ je predefinovaná vlastnosť popisujúca parametre, ktoré ovplyvňujú výsledok dopytu, a poskytuje ju [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-livepreview-loading": "Načítava sa…", + "smw-listingcontinuesabbrev": "pokrač.", + "smw-showingresults": "Nižšie {{PLURAL:$1|je zobrazený jeden výsledok|sú zobrazené '''1''' výsledky|je zobrazených '''$1''' výsledkov}}, počnúc od #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sl.json new file mode 100644 index 0000000..cf21def --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sl.json @@ -0,0 +1,1131 @@ +{ + "@metadata": { + "authors": [ + "Dbc334", + "Eleassar", + "HairyFotr", + "Janezdrilc", + "Lesko987", + "Reedy" + ] + }, + "smw-desc": "Naredi vaš viki dostopnejši – za stroje ''in'' ljudi ([https://www.semantic-mediawiki.org/wiki/Help:User_manual spletna dokumentacija])", + "smw-error": "Napaka", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantični MediaWiki] je bil nameščen in omogočen, vendar manjka ustrezen [https://www.semantic-mediawiki.org/wiki/Help:Upgrade ključ za nadgradnjo].", + "smw-upgrade-release": "Izdaja", + "smw-upgrade-progress": "Napredek", + "smw-upgrade-progress-explain": "Oceno, kdaj bo nadgradnja končana, je težko predvideti, saj je odvisna od velikosti podatkovne shrambe in razpoložljive strojne opreme in lahko za dokončanje večjih vikijev traja nekaj trenutkov.\n\nZa več informacij o napredku se obrnite na svojega lokalnega administratorja.", + "smw-upgrade-progress-create-tables": "Ustvarjanje (ali posodabljanje) tabel in indeksov ...", + "smw-upgrade-progress-post-creation": "Izvajanje opravil po ustvaritvi ...", + "smw-upgrade-progress-table-optimization": "Optimiziranje tabel ...", + "smw-upgrade-progress-supplement-jobs": "Dodajanje dodatnih opravil ...", + "smw-upgrade-error-title": "Napaka » Semantični MediaWiki", + "smw-upgrade-error-why-title": "Zakaj vidim to stran?", + "smw-upgrade-error-why-explain": "Notranja struktura podatkovne zbirke Semantičnega MediaWikija se je spremenila in zahteva nekaj prilagoditev, da bo popolnoma delovala. Razlogov je lahko več, vključno z naslednjim:\n* Dodane so bile dodatne trajne lastnosti (zahteva dodatno nastavitev tabel).\n* Nadgradnja vsebuje nekatere spremembe tabel ali indeksov, zaradi česar je pred dostopom do podatkov obvezno prestrezanje.\n* Spremembe v shranjevanju ali poizvedovalnem mehanizmu.", + "smw-upgrade-error-how-title": "Kako popravim to napako?", + "smw-upgrade-error-how-explain-admin": "Administrator (ali katera koli oseba z administratorskimi pravicami) mora zagnati MediaWiki [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] ali vzdrževalni skript Semantičnega MediaWikija [https://www .semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php].", + "smw-upgrade-error-how-explain-links": "Za dodatno pomoč si lahko ogledate tudi naslednje strani:\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation Navodila za namestitev]\n* [https://www.semantic-mediawiki .org/wiki/Help:Installation/Troubleshooting Stran s pomočjo za odpravljanje težav]", + "smw-extensionload-error-why-title": "Zakaj vidim to stran?", + "smw-extensionload-error-why-explain": "Razširitev ni bila naložena z enableSemantics, temveč je bila omogočena z drugimi sredstvi, na primer z neposredno uporabo wfLoadExtension( 'SemanticMediaWiki').", + "smw-extensionload-error-how-title": "Kako popravim to napako?", + "smw-extensionload-error-how-explain": "Da bi omogočili razširitev in se izognili težavam z deklaracijami imenskega prostora in čakajočimi konfiguracijami, je treba uporabiti enableSemantics, ki bo zagotovil, da bodo zahtevane spremenljivke nastavljene pred nalaganjem razširitve prek ExtensionRegistry.\n\nZa nadaljnjo pomoč glejte stran pomoči [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics].", + "smw-upgrade-maintenance-title": "Vzdrževanje » Semantični MediaWiki", + "smw-upgrade-maintenance-why-title": "Zakaj vidim to stran?", + "smw-upgrade-maintenance-note": "Sistem se trenutno [https://www.semantic-mediawiki.org/wiki/Help:Upgrade nadgrajuje] z razširitvijo [https://www.semantic-mediawiki.org/ Semantični MediaWiki] skupaj z njenim repozitorijem podatkov. Prosimo vas za potrpežljivost, da se vzdrževanje konča in bo viki znova dostopen.", + "smw-upgrade-maintenance-explain": "Razširitev poskuša čim bolj zmanjšati vpliv in čas nedelovanja tako, da večino svojih vzdrževalnih nalog preloži na obdobje po update.php, vendar je treba najprej dokončati nekatere spremembe, povezane s podatkovno zbirko, da se izognete nedoslednosti podatkov. Vključuje lahko:\n* Spreminjanje struktur tabel, kot je dodajanje novih ali spreminjanje obstoječih polj.\n* Spreminjanje ali dodajanje tabelarnih indeksov.\n* Izvajanje optimizacij tabel (ko je omogočeno).", + "smw-semantics-not-enabled": "Možnost Semantični MediaWiki ni bila omogočena za ta viki.", + "smw_viewasrdf": "Vir RDF", + "smw_finallistconjunct": "in", + "smw-factbox-head": "... več o »$1«", + "smw-factbox-facts": "Dejstva", + "smw-factbox-facts-help": "Prikazuje izjave in dejstva, ki jih je ustvaril uporabnik", + "smw-factbox-attachments": "Priponke", + "smw-factbox-attachments-value-unknown": "N. p.", + "smw-factbox-attachments-is-local": "Lokalno", + "smw-factbox-attachments-help": "Prikazuje razpoložljive priponke", + "smw-factbox-facts-derived": "Izpeljana dejstva", + "smw-factbox-facts-derived-help": "Prikazuje dejstva, ki izhajajo iz pravil ali drugih tehnik sklepanja", + "smw_isspecprop": "Ta lastnost je posebna lastnost v tem vikiju.", + "smw-concept-cache-header": "Uporaba predpomnilnika", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count Predpomnilnik konceptov] vsebuje {{PLURAL:$1| '''eno''' entiteto|'''$1''' entiteti|'''$1''' entitete|'''$1''' entitet}} ($2).", + "smw-concept-no-cache": "Predpomnilnik ni na voljo.", + "smw_concept_description": "Opis zasnove »$1«", + "smw_no_concept_namespace": "Koncepti so lahko opredeljeni samo na straneh v imenskem prostoru »Koncept:«", + "smw_multiple_concepts": "Vsaka konceptna stran ima lahko samo eno definicijo koncepta.", + "smw_concept_cache_miss": "Koncepta »$1« trenutno ni mogoče uporabiti, ker konfiguracija vikija zahteva, da se izračuna brez povezave.\nČe težava čez nekaj časa ne izgine, zaprosite administratorja spletnega mesta, da omogoči ta koncept.", + "smw_noinvannot": "Vrednosti ni mogoče dodeliti nasprotnim lastnostim.", + "version-semantic": "Semantična razširitev", + "smw_baduri": "URI-ji v obliki »$1« niso dovoljeni.", + "smw_csv_link": "CSV", + "smw_json_link": "JSON", + "smw_rdf_link": "RDF", + "smw_printername_count": "Štetje zadetkov", + "smw_printername_csv": "Izvoz v CSV", + "smw_printername_dsv": "Izvoz DSV", + "smw_printername_debug": "Razhroščevalna poizvedba (za strokovnjake)", + "smw_printername_embedded": "Vstavljena vsebina strani", + "smw_printername_json": "Izvoz v JSON", + "smw_printername_list": "Seznam", + "smw_printername_plainlist": "Gol seznam", + "smw_printername_ol": "Oštevilčeni seznam", + "smw_printername_ul": "Neoštevilčen seznam", + "smw_printername_table": "Tabela", + "smw_printername_broadtable": "Široka tabela", + "smw_printername_template": "Predloga", + "smw_printername_templatefile": "Datoteka predloge", + "smw_printername_rdf": "Izvoz RDF", + "smw_printername_category": "Kategorija", + "validator-type-class-SMWParamSource": "besedilo", + "smw-paramdesc-limit": "Največje število zadetkov", + "smw-paramdesc-offset": "Odmik prvega zadetka", + "smw-paramdesc-headers": "Prikaži glave/nazive lastnosti", + "smw-paramdesc-mainlabel": "Oznaka za naslov glavne strani", + "smw-paramdesc-link": "Prikaži vrednosti kot povezave", + "smw-paramdesc-intro": "Besedilo za prikaz pred zadetki poizvedbe, če obstajajo", + "smw-paramdesc-outro": "Besedilo za prikaz po rezultatih poizvedbe, če obstajajo", + "smw-paramdesc-default": "Besedilo za prikaz, če poizvedba nima zadetkov", + "smw-paramdesc-sep": "Ločilo med zadetki", + "smw-paramdesc-propsep": "Ločilo med lastnostmi zadetka", + "smw-paramdesc-valuesep": "Ločilo med vrednostmi za lastnost zadetka", + "smw-paramdesc-showsep": "Prikaže ločilo na vrhu datoteke CSV (»sep=«)", + "smw-paramdesc-distribution": "Namesto da prikažete vse vrednosti, preštejte njihove pojavitve in jih prikažite.", + "smw-paramdesc-distributionsort": "Razvrsti porazdelitev vrednosti po številu pojavitev.", + "smw-paramdesc-distributionlimit": "Omeji porazdelitev vrednosti na število samo nekaterih vrednosti.", + "smw-paramdesc-aggregation": "Določa, na kaj naj se združevanje nanaša", + "smw-paramdesc-template": "Ime predloge, s katero naj bodo prikazani izpisi", + "smw-paramdesc-columns": "Število stolpcev za prikaz zadetkov", + "smw-paramdesc-userparam": "Vrednost, posredovana v vsak klic predloge, če je uporabljena predloga", + "smw-paramdesc-class": "Dodatni razred CSS, ki ga nastavite za seznam", + "smw-paramdesc-introtemplate": "Ime predloge za prikaz pred zadetki poizvedbe, če so na voljo.", + "smw-paramdesc-outrotemplate": "Ime predloge za prikaz po zadetkih poizvedbe, če so na voljo.", + "smw-paramdesc-embedformat": "Značka HTML, ki se uporablja za definiranje naslovov", + "smw-paramdesc-embedonly": "Ne prikaži naslovov", + "smw-paramdesc-table-class": "Dodatni razred CSS, ki ga nastavite za tabelo", + "smw-paramdesc-table-transpose": "Prikaži glave tabel navpično in zadetke vodoravno", + "smw-paramdesc-prefix": "Upravljanje prikaza imenskega prostora v izpisih", + "smw-paramdesc-rdfsyntax": "Skladnja RDF, ki se uporablja", + "smw-paramdesc-csv-sep": "Določa ločilo stolpcev", + "smw-paramdesc-csv-valuesep": "Določa ločilo vrednosti", + "smw-paramdesc-csv-merge": "Združi vrednosti vrstic in stolpcev z enakim identifikatorjem subjekta (tudi prvi stolpec)", + "smw-paramdesc-csv-bom": "Na vrh izhodne datoteke doda BOM (znak za signaliziranje vrstnega reda bajtov)", + "smw-paramdesc-dsv-separator": "Uporabljeno ločilo", + "smw-paramdesc-dsv-filename": "Ime datoteke DSV", + "smw-paramdesc-filename": "Ime izhodne datoteke", + "smw-smwdoc-description": "Prikazuje tabelo vseh parametrov, ki jih je mogoče uporabiti za navedeno obliko zadetkov, skupaj s privzetimi vrednostmi in opisi.", + "smw-smwdoc-default-no-parameter-list": "Ta format rezultata ne zagotavlja parametrov, specifičnh za obliko.", + "smw-smwdoc-par-format": "Format zadetkov za prikaz dokumentacije parametrov.", + "smw-smwdoc-par-parameters": "Katere parametre prikazati. »specific« za dodane po formatu, »base« za razpoložljive v vseh formatih in »all« za oboje.", + "smw-paramdesc-sort": "Lastnost za razvrstitev poizvedbe", + "smw-paramdesc-order": "Vrstni red poizvedbenega razvrščanja", + "smw-paramdesc-searchlabel": "Besedilo za nadaljevanje iskanja", + "smw-paramdesc-named_args": "Poimenovanje argumentov, posredovanih predlogi.", + "smw-paramdesc-template-arguments": "Nastavi, kako se imenovani argumenti posredujejo v predlogo", + "smw-paramdesc-import-annotation": "Med razčlenjevanjem strani se kopirajo dodatni označeni podatki", + "smw-paramdesc-export": "Možnost izvoza", + "smw-paramdesc-prettyprint": "Lep izpis, ki prikazuje dodatne zamike in nove vrstice", + "smw-paramdesc-json-unescape": "Izhod vsebuje neubežne poševnice in večbajtne znake Unicode", + "smw-paramdesc-json-type": "Tip serializacije", + "smw-paramdesc-source": "Alternativni vir poizvedbe", + "smw-paramdesc-jsonsyntax": "Skladnja JSON, ki se uporablja", + "smw-printername-feed": "Vir RSS in Atom", + "smw-paramdesc-feedtype": "Vrsta vira", + "smw-paramdesc-feedtitle": "Besedilo, ki naj se uporabi kot naslov vira", + "smw-paramdesc-feeddescription": "Besedilo, ki naj se uporabi kot opis vira", + "smw-paramdesc-feedpagecontent": "Z virom se prikazuje vsebina strani", + "smw-label-feed-link": "RSS", + "smw-label-feed-description": "Vir $1 $2", + "smw-paramdesc-mimetype": "Vrsta predstavnosti (tip MIME) za izhodno datoteko", + "smw_iq_disabled": "Za ta viki so bile semantične poizvedbe onemogočene.", + "smw_iq_moreresults": "… nadaljnji zadetki", + "smw_parseerror": "Predložena vrednost ni bila razumljena.", + "smw_decseparator": ".", + "smw_kiloseparator": ",", + "smw_notitle": "V tem vikiju niza »$1« ni mogoče uporabiti za naslov strani.", + "smw_noproperty": "V tem vikiju niza »$1« ni mogoče uporabiti kot ime lastnosti.", + "smw_wrong_namespace": "Tu so dovoljene samo strani v imenskem prostoru »$1«.", + "smw_manytypes": "Za lastnost je definiran več kot en tip.", + "smw_emptystring": "Prazni nizi niso sprejemljivi.", + "smw_notinenum": "»$1« ni na seznamu ($2) [[Property:Allows value|dovoljenih vrednosti]] za lastnost »$3«.", + "smw-datavalue-constraint-error-allows-value-list": "»$1« ni na seznamu ($2) [[Property:Allows value|dovoljenih vrednosti]] za lastnost »$3«.", + "smw-datavalue-constraint-error-allows-value-range": "»$1« ni znotraj tega obsega »$2«, določenega z omejitvijo [[Property:Allows value|dovoljenih vrednosti]] za lastnost »$3«.", + "smw-constraint-error": "Težava z omejitvijo", + "smw-constraint-error-suggestions": "Preverite navedene kršitve in lastnosti skupaj z njihovimi označenimi vrednostmi, da zagotovite, da so izpolnjene vse zahteve glede omejitev.", + "smw-constraint-error-limit": "Seznam bo vseboval največ $1 kršitev.", + "smw_noboolean": "»$1« ni prepoznan kot logična (true/false) vrednost.", + "smw_true_words": "true,t,yes,y,resnično,r,da,d", + "smw_false_words": "false,f,no,n,neresnično,nr,ne", + "smw_nofloat": "»$1« ni število.", + "smw_infinite": "Številke, velike kot »$1«, niso podprte.", + "smw_unitnotallowed": "»$1« ni deklariran kot veljavna enota merjenja za to lastnost.", + "smw_nounitsdeclared": "Za to lastnost niso bile deklarirane enote merjenja.", + "smw_novalues": "Določenih ni nobenih vrednosti.", + "smw_nodatetime": "Datum »$1« ni bil razumljen.", + "smw_toomanyclosing": "Videti je, da se v poizvedbi pojavlja preveč »$1«.", + "smw_noclosingbrackets": "Nekatere uporabe »[[« v vaši poizvedbi niso bile zaprte z ujemajočim se »]]«.", + "smw_misplacedsymbol": "Simbol »$1« je bil uporabljen na mestu, kjer ni uporaben.", + "smw_unexpectedpart": "Del poizvedbe »$1« ni bil razumljen.\nZadetki mogoče ne bodo ustrezali pričakovanju.", + "smw_emptysubquery": "Neka podpoizvedba ima neveljaven pogoj.", + "smw_misplacedsubquery": "Neka podpoizvedba je bila uporabljena na mestu, kjer podpoizvedbe niso dovoljene.", + "smw_valuesubquery": "Za vrednosti lastnosti »$1« podpoizvedbe niso podprte.", + "smw_badqueryatom": "Neki del »[[...]]« poizvedbe ni bil razumljen.", + "smw_propvalueproblem": "Vrednost lastnosti »$1« ni bila razumljena.", + "smw_noqueryfeature": "Neka poizvedbena možnost v tem vikiju ni bila podprta in del poizvedbe je bil opuščen ($1).", + "smw_noconjunctions": "Vezniki v poizvedbah v tem vikiju niso podprti in del poizvedbe je bil opuščen ($1).", + "smw_nodisjunctions": "Disjunkcije v tem vikiju v poizvedbah niso podprte in del poizvedbe je bil opuščen ($1).", + "smw_querytoolarge": "{{PLURAL:$2|Naslednjega poizvedbenega pogoja|Naslednjih $2 poizvedbenih pogojev}} ni bilo mogoče upoštevati zaradi omejitev tega vikija glede velikosti ali globine poizvedbe: $1.", + "smw_notemplategiven": "Za delovanje te oblike poizvedbe podajte vrednost za parameter »template«.", + "smw_db_sparqlqueryproblem": "Iz podatkovne zbirke SPARQL ni bilo mogoče pridobiti rezultata poizvedbe. Ta napaka je lahko začasna ali kaže na programsko napako v podatkovni zbirki.", + "smw_db_sparqlqueryincomplete": "Razreševanje poizvedbe se je izkazalo za pretežko in je bilo prekinjeno. Nekateri zadetki morda manjkajo. Če je mogoče, poskusite namesto tega uporabiti preprostejšo poizvedbo.", + "smw_type_header": "Lastnosti tipa »$1«", + "smw_typearticlecount": "Prikazujem $1 {{PLURAL:$1|lastnost|lastnosti}}, ki uporablja ta tip.", + "smw_attribute_header": "Strani, ki uporabljajo lastnost »$1«", + "smw_attributearticlecount": "Prikazujem $1 {{PLURAL:$1|stran|strani}}, ki uporabljajo to lastnost.", + "smw-propertylist-subproperty-header": "Podlastnosti", + "smw-propertylist-redirect-header": "Sopomenke", + "smw-propertylist-error-header": "Strani z nepravilnimi dodelitvami", + "smw-propertylist-count": "Prikaz $1 {{PLURAL:$1|povezane entitete|povezanih entitet}}.", + "smw-propertylist-count-with-restricted-note": "Prikaz $1 {{PLURAL:$1|povezane entitete|povezanih entitet}} (na voljo jih je več, vendar je prikaz omejen na »$2«).", + "smw-propertylist-count-more-available": "Prikaz $1 {{PLURAL:$1|povezane entitete|povezanih entitet}} (na voljo jih je več).", + "specialpages-group-smw_group": "Semantični MediaWiki", + "specialpages-group-smw_group-maintenance": "Vzdrževanje", + "specialpages-group-smw_group-properties-concepts-types": "Lastnosti, koncepti in tipi", + "specialpages-group-smw_group-search": "Prebrskaj in poišči", + "exportrdf": "Izvoz strani v RDF", + "smw_exportrdf_docu": "Ta stran vam omogoča, da dobite podatke iz strani v formatu RDF.\nZa izvoz strani vpišite njihove naslove v spodnjem oknu, po en naslov na vrstico.", + "smw_exportrdf_recursive": "Rekurzivni izvoz vseh povezanih strani.\nUpoštevajte, da je rezultat lahko obsežen!", + "smw_exportrdf_backlinks": "Izvozi tudi vse strani ki se sklicujejo na strani izvoza.\nUstvari brskalni RDF.", + "smw_exportrdf_lastdate": "Ne izvažajte strani, ki od danega trenutka niso bile spremenjene.", + "smw_exportrdf_submit": "Izvozi", + "uriresolver": "Razreševalnik URI-jev", + "properties": "Lastnosti", + "smw-categories": "Kategorije", + "smw_properties_docu": "V tem vikiju se uporabljajo naslednje lastnosti.", + "smw_property_template": "$1 tipa $2 ($3 {{PLURAL:$3|uporaba|uporabi|uporabe|uporab}})", + "smw_property_template_notype": "$1 ($2)", + "smw_propertylackspage": "Vse lastnosti mora opisovati ena stran!", + "smw_propertylackstype": "Za to lastnost ni bil naveden noben tip (za zdaj se predpostavlja, da je tip $1).", + "smw_propertyhardlyused": "Ta lastnost se v tem vikiju le malo uporablja!", + "smw-property-name-invalid": "Lastnosti $1 ni mogoče uporabiti (neveljavno ime lastnosti).", + "smw-property-name-reserved": "»$1« je bilo navedeno kot pridržano ime in se ne sme uporabljati kot lastnost. Naslednja [https://www.semantic-mediawiki.org/wiki/Help:Property_naming stran pomoči] lahko vsebuje informacije o tem, zakaj je to ime pridržano.", + "smw-sp-property-searchform": "Prikaz lastnosti, ki vsebujejo:", + "smw-sp-property-searchform-inputinfo": "Vnos razlikuje med velikimi in malimi črkami, in ko se uporablja za filtriranje, so prikazane samo lastnosti, ki ustrezajo pogojem.", + "smw-special-property-searchform": "Prikaz lastnosti, ki vsebujejo:", + "smw-special-property-searchform-inputinfo": "Vnos razlikuje med velikimi in malimi črkami, in ko se uporablja za filtriranje, so prikazane samo lastnosti, ki ustrezajo pogojem.", + "smw-special-property-searchform-options": "Možnosti", + "smw-special-wantedproperties-filter-label": "Filter:", + "smw-special-wantedproperties-filter-none": "Nič", + "smw-special-wantedproperties-filter-unapproved": "Neodobreno", + "smw-special-wantedproperties-filter-unapproved-desc": "Možnost filtra, ki se uporablja v povezavi s pooblastitvenim načinom.", + "concepts": "Koncepti", + "smw-special-concept-docu": "[https://www.semantic-mediawiki.org/wiki/Help:Concepts Koncept] je mogoče obravnavati kot »dinamično kategorijo«, tj. kot zbirko strani, ki niso ustvarjene ročno, ampak jih izračuna Semantični MediaWiki iz opisa dane poizvedbe.", + "smw-special-concept-header": "Seznam konceptov", + "smw-special-concept-count": "{{PLURAL:$1|Naslednji koncept je|Naslednja $1 koncepta sta|Naslednji koncepti $1 so|Naslednjih $1 konceptov je}} na seznamu.", + "smw-special-concept-empty": "Najden ni bil noben koncept.", + "unusedproperties": "Neuporabljene lastnosti", + "smw-unusedproperties-docu": "Na tej strani so navedene [https://www.semantic-mediawiki.org/wiki/Unused_properties neuporabljene lastnosti], ki so opredeljene, čeprav jih ne uporablja nobena druga stran. Za razčlenjeni prikaz si oglejte posebne strani [[Special:Properties|vseh]] ali [[Special:WantedProperties|želenih lastnosti]].", + "smw-unusedproperty-template": "$1 tipa $2", + "wantedproperties": "Želene lastnosti", + "smw-wantedproperties-docu": "Na tej strani so navedene [https://www.semantic-mediawiki.org/wiki/Wanted_properties želene lastnosti], ki se uporabljajo v vikiju, vendar nimajo opisne strani. Razčlenjeni prikaz si oglejte na posebnih straneh [[Special:Properties|vseh]] ali [[Special:UnusedProperties|neuporabljenih lastnosti]].", + "smw-wantedproperty-template": "$1 ( $2 {{PLURAL:$2|uporaba|uporabi|uporabe|uporab}})", + "smw-special-wantedproperties-docu": "Na tej strani so navedene [https://www.semantic-mediawiki.org/wiki/Wanted_properties želene lastnosti], ki se uporabljajo v vikiju, vendar nimajo opisne strani. Razčlenjeni prikaz si lahko ogledate na posebnih straneh [[Special:Properties|vseh]] ali [[Special:UnusedProperties|neuporabljenih lastnosti]].", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|uporaba|uporabi|uporabe|uporab}})", + "smw_purge": "Osveži", + "smw-purge-update-dependencies": "Semantični MediaWiki čisti trenutno stran zaradi nekaterih zastarelih odvisnosti, ki jih je odkril in zahtevajo posodobitev.", + "smw-purge-failed": "Semantični MediaWiki je poskušal počistiti predpomnjenje strani, vendar ni uspelo", + "types": "Tipi", + "smw_types_docu": "Seznam [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes available podatkovnih tipov], kjer vsak [https://www.semantic-mediawiki.org/wiki/Help:Datatype tip] predstavlja izvirno množico atributov za opis vrednosti v smislu značilnosti hrambe in prikaza, ki so dedne dodeljeni lastnosti.", + "smw-special-types-no-such-type": "»$1« ni znan ali pa ni bil določen kot veljaven podatkovni tip.", + "smw-statistics": "Semantična statistika", + "smw-statistics-cached": "Semantična statistika (predpomnjena)", + "smw-statistics-entities-total": "Entitete (skupaj)", + "smw-statistics-entities-total-info": "Ocenjeno število vrstic entitet. Vključuje lastnosti, koncepte ali katero koli drugo registrirano predstavitev objekta, ki zahteva dodelitev ID-ja.", + "smw-statistics-property-instance": "Lastnost {{PLURAL:$1|vrednost|vrednosti}} (skupaj)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Lastnost|Lastnosti}}]] (skupaj)", + "smw-statistics-property-total-info": "Skupno število registriranih lastnosti.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Lastnost|Lastnosti}} (skupaj)", + "smw-statistics-property-used": "{{PLURAL:$1|Lastnost|Lastnosti}} (uporablja se z vsaj eno vrednostjo)", + "smw-statistics-property-page": "{{PLURAL:$1|Lastnost|Lastnosti}} (registrirano na strani)", + "smw-statistics-property-page-info": "Števec lastnosti, ki imajo namensko stran in opis.", + "smw-statistics-property-type": "{{PLURAL:$1|Lastnost|Lastnosti}} (dodeljeno podatkovnemu tipu)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1| Poizvedba|Poizvedbe}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Poizvedba|Poizvedbe}}]] (vdelano, skupaj)", + "smw-statistics-query-format": "Format $1", + "smw-statistics-query-size": "Velikost poizvedbe", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Koncept|Koncepti}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Koncept|Koncepti}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Podobjekt|Podobjekti}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Podobjekt|Podobjekti}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Podatkovni tip|Podatkovni tipi}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Vrednost lastnosti|Vrednosti lastnosti}} ([[Special:ProcessingErrorList|{{PLURAL:$1|neustrezna opomba|neustrezne opombe}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Vrednost lastnosti|Vrednosti lastnosti}} ({{PLURAL:$1|neustrezna opomba|neustrezne opombe}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Zastarela entiteta|Zastarele entitete}}]", + "smw-statistics-delete-count-info": "Entitete, ki so bile označene za odstranitev, je treba redno odstranjevati z uporabo priloženih vzdrževalnih skriptov.", + "smw_uri_doc": "Razreševalec URI implementira [$1 W3C TAG najdbo na httpRange-14].\nZagotavlja, da je reprezentacija RDF (za stroje) ali stran viki (za ljudi) dostavljena glede na zahtevek.", + "ask": "Semantično iskanje", + "smw-ask-help": "Ta razdelek vsebuje nekaj povezav za pojasnitev uporabe skladnje #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Selecting pages] opisuje, kako izbrati strani in določiti pogoje\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Search operators] vsebuje seznam razpoložljivih iskalnih operatorjev, vključno z operatorji za razpone in nadomestne znake\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Displaying information] opisuje uporabo izpisnih izjav in možnosti oblikovanja", + "smw_ask_sortby": "Razvrsti po stolpcu (izbirno)", + "smw_ask_ascorder": "Naraščajoče", + "smw_ask_descorder": "Padajoče", + "smw-ask-order-rand": "Naključno", + "smw_ask_submit": "Poišči", + "smw_ask_editquery": "Uredi poizvedbo", + "smw_add_sortcondition": "[Dodaj pravilo razvrščanja]", + "smw-ask-sort-add-action": "Dodaj pravilo razvrščanja", + "smw_ask_hidequery": "Skrij poizvedbo (strnjeni prikaz)", + "smw_ask_help": "Pomoč za poizvedbo", + "smw_ask_queryhead": "Pogoj", + "smw_ask_printhead": "Izbira izpisa", + "smw_ask_printdesc": "(dodaj po eno lastnost v vrstico)", + "smw_ask_format_as": "Oblikuj kot:", + "smw_ask_defaultformat": "privzeto", + "smw_ask_otheroptions": "Druge možnosti", + "smw-ask-otheroptions-info": "Ta razdelek vsebuje možnosti, ki spreminjajo izjave o izpisu. Opise parametrov si lahko ogledate tako, da nadnje premaknete miško.", + "smw-ask-otheroptions-collapsed-info": "Za ogled vseh razpoložljivih možnosti uporabite ikono plus", + "smw_ask_show_embed": "Prikaži besedilo za vstavljanje", + "smw_ask_hide_embed": "Skrij kodo za vstavljanje", + "smw_ask_embed_instr": "Za vstavljanje te poizvedbe na viki stran uporabite naslednje besedilo.", + "smw-ask-delete": "Odstrani", + "smw-ask-sorting": "Razvrščanje", + "smw-ask-options": "Možnosti", + "smw-ask-options-sort": "Možnosti razvrščanja", + "smw-ask-format-options": "Format in možnosti", + "smw-ask-parameters": "Parametri", + "smw-ask-search": "Iskanje", + "smw-ask-debug": "Razhrošči", + "smw-ask-debug-desc": "Ustvari informacije o odpravljanju napak v poizvedbi", + "smw-ask-no-cache": "Onemogoči predpomnjenje poizvedb", + "smw-ask-no-cache-desc": "Rezultati brez predpomnjenja poizvedb", + "smw-ask-result": "Rezultat", + "smw-ask-empty": "Počisti vse vnose", + "smw-ask-download-link-desc": "Prenesite poizvedovane zadetke v formatu $1", + "smw-ask-format": "Format", + "smw-ask-format-selection-help": "Pomoč za izbrani format: $1", + "smw-ask-condition-change-info": "Pogoj je bil spremenjen in iskalnik mora znova izvesti poizvedbo, da ustvari zadetke, ki ustrezajo novim zahtevam.", + "smw-ask-input-assistance": "Pomoč pri vnosu", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Pomoč pri vnosu] je na voljo za izpis, razvrščanje in polje pravila. Polje pravila zahteva uporabo ene od naslednjih predpon:", + "smw-ask-condition-input-assistance-property": "p: za pridobitev predlogov lastnosti (npr. [[p:Has ...)", + "smw-ask-condition-input-assistance-category": "c: za pridobitev predlogov kategorij", + "smw-ask-condition-input-assistance-concept": "con: za pridobitev konceptnih predlogov", + "smw-ask-format-change-info": "Oblika je bila spremenjena in treba je znova izvesti poizvedbo, da se ujema z novimi parametri in možnostmi vizualizacije.", + "smw-ask-format-export-info": "Izbrani format je izvozni format, ki nima vizualne predstavitve, zato so zadetki na voljo samo kot prenos.", + "smw-ask-query-search-info": "Na poizvedbo $1 je odgovoril {{PLURAL:$3|1=$2 (iz predpomnilnika)|$2 (iz predpomnilnika)|$2}} v $4 {{PLURAL:$4|sekundi|sekundah}}.", + "smw-ask-extra-query-log": "Dnevnik poizvedb", + "smw-ask-extra-other": "Drugo", + "searchbyproperty": "Iskanje po lastnosti", + "processingerrorlist": "Seznam napak pri obdelavi", + "constrainterrorlist": "Seznam napak omejitev", + "propertylabelsimilarity": "Poročilo o podobnosti oznake lastnosti", + "missingredirectannotations": "Manjkajoče označitve preusmeritev", + "smw-processingerrorlist-intro": "Naslednji seznam ponuja pregled [https://www.semantic-mediawiki.org/wiki/Processing_errors napak pri obdelavi], ki so se pojavile v povezavi s [https://www.semantic-mediawiki.org/ Semantičnim MediaWikijem]. Priporočljivo je, da ta seznam redno spremljate in popravljate neveljavne opombe vrednosti.", + "smw-processingerrorlist-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Processing_errors", + "smw-constrainterrorlist-intro": "Naslednji seznam ponuja pregled [https://www.semantic-mediawiki.org/wiki/Constraint_errors napak pri omejitvah], ki so se pojavile v povezavi s [https://www.semantic-mediawiki.org/ Semantičnim MediaWikijem]. Priporočljivo je, da ta seznam redno spremljate in popravljate neveljavne opombe vrednosti.", + "smw-constrainterrorlist-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Constraint_errors", + "smw-missingredirects-intro": "V naslednjem razdelku bodo navedene strani, ki jim v Semantičnem MediaWikiju (v primerjavi z informacijami, shranjenimi v MediaWikiju) manjkajo označitve [https://www.semantic-mediawiki.org/wiki/Redirects preusmeritev], da lahko te označitve obnovite ročno z [https://www.semantic-mediawiki.org/wiki/Help:Purge osvežitvijo] strani ali zaženete vzdrževalni skript rebuildData.php (z možnostjo --redirects).", + "smw-missingredirects-list": "Strani z manjkajočimi označitvami", + "smw-missingredirects-list-intro": "Prikaz $1 {{PLURAL:$1|strani}} z manjkajočimi oznacitvami preusmeritev.", + "smw-missingredirects-noresult": "Ni najdenih manjkajočih označitev preusmeritev.", + "smw_sbv_docu": "Išči vse strani, ki imajo določeno lastnost in vrednost.", + "smw_sbv_novalue": "Vnesite pravilno vrednost za lastnost ali pa si oglejte vse vrednosti lastnosti \"$1\".", + "smw_sbv_displayresultfuzzy": "Seznam vseh strani, ki imajo lastnost »$1« z vrednostjo »$2«.\nKer je bilo le malo zadetkov, so prikazane strani s približnim ujemanjem.", + "smw_sbv_property": "Lastnost:", + "smw_sbv_value": "Vrednost:", + "smw_sbv_submit": "Poišči", + "browse": "Razišči viki", + "smw_browselink": "Razišči lastnosti", + "smw_browse_article": "Vpišite ime strani za začetek brskanja.", + "smw_browse_go": "Pojdi", + "smw_browse_more": "...", + "smw_browse_show_incoming": "Prikaži vhodne lastnosti", + "smw_browse_hide_incoming": "Skrij vhodne lastnosti", + "smw_browse_no_outgoing": "Ta stran nima lastnosti.", + "smw_browse_no_incoming": "S to stranjo se ne povezuje nobena lastnost.", + "smw-browse-from-backend": "Poteka pridobivanje podatkov iz zaledja.", + "smw-browse-intro": "Na tej posebni strani si lahko ogledate podatke in informacije, shranjene na straneh ali v primerkih entitet. Vnesite ime strani, ki jo želite pregledati.", + "smw-browse-invalid-subject": "Preverjanje predmeta je vrnilo napako »$1«.", + "smw-browse-api-subject-serialization-invalid": "Podstran ima neveljaven format serializacije.", + "smw-browse-js-disabled": "Zdi se, da je JavaScript onemogočen ali da ni na voljo. Priporočamo uporabo brskalnika, v katerem je podprt. Druge možnosti so obravnavane na [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi] strani o konfiguracijskih parametrih.", + "smw-browse-show-group": "Prikaži skupine", + "smw-browse-hide-group": "Skrij skupine", + "smw-noscript": "Za delovanje te strani ali dejanja potrebujete JavaScript. Prosimo, omogočite JavaScript v svojem brskalniku ali uporabite brskalnik, v katerem je podprt, da se lahko zagotovi želena funkcionalnost. Za dodatno pomoč glejte stran pomoči [https://www.semantic-mediawiki.org/wiki/Help:Noscript Noscript].", + "smw_inverse_label_default": "$1 od", + "smw_inverse_label_property": "Oznaka nasprotne lastnosti", + "pageproperty": "Iskanje v lastnostih strani", + "pendingtasklist": "Seznam čakajočih nalog", + "facetedsearch": "Fasetno iskanje", + "smw_pp_docu": "Za pridobitev vseh dodeljenih vrednosti vnesite stran in lastnost ali samo lastnost.", + "smw_pp_from": "S strani:", + "smw_pp_type": "Lastnost:", + "smw_pp_submit": "Poišči", + "smw-prev": "{{PLURAL:$1|prejšnji|prejšnja $1|prejšnji $1|prejšnjih $1}}", + "smw-next": "{{PLURAL:$1|naslednji|naslednja $1|naslednji $1|naslednjih $1}}", + "smw_result_prev": "Nazaj", + "smw_result_next": "Naprej", + "smw_result_results": "Zadetki", + "smw_result_noresults": "Ni zadetkov.", + "smwadmin": "Nadzorna plošča Semantičnega MediaWikija", + "smw-admin-statistics-job-title": "Statistika opravil", + "smw-admin-statistics-job-docu": "Statistika opravil prikazuje informacije o načrtovanih opravilih Semantičnega MediaWikija, ki še niso bila izvedena. Število opravil je lahko nekoliko netočno ali vsebuje neuspele poskuse. Za dodatne informacije glejte [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue priročnik].", + "smw-admin-statistics-querycache-title": "Predpomnilnik poizvedb", + "smw-admin-statistics-querycache-disabled": "[https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] v tem vikiju ni bil omogočen, zato ni na voljo nobena statistika.", + "smw-admin-statistics-querycache-legend": "Statistika predpomnjenja naj bi vsebovala prehodne kumulativne in izpeljane podatke, vključno z naslednjimi:\n* »Zgrešitve« kot skupno število poskusov priklica podatkov iz predpomnjenja z nedosegljivimi odgovori, kar je zahtevalo neposreden priklic iz shrambe (podatkovna zbirka, shramba trojic idr.).\n* »Izbrisi« kot skupno število operacij izognitve predpomnjenju (bodisi s počiščenjem ali poizvedbeno odvisnostjo).\n* »Zadetki« podajajo število predpomnjenih priklicev bodisi za vdelane (poizvedbe, klicane iz viki strani) bodisi za nevdelane (če je omogočeno, zahtevki strani, kot so Special:Ask ali API) vire.\n* »medianRetrievalResponseTime« je orientacijska vrednost medianega časa odgovora (v sekundah) za predpomnjene priklicne zahtevke v času trajanja procesa zbiranja.\n* »noCache« označuje število zahtevkov brez poskusa (limit=0 poizvedb, možnost »no-cache« idr.) za priklic zadetkov iz predpomnjenja.", + "smw-admin-statistics-section-explain": "V razdelku so na voljo dodatne statistike za administratorje.", + "smw-admin-statistics-semanticdata-overview": "Pregled", + "smw-admin-permission-missing": "Dostop do te strani je bil blokiran zaradi manjkajočih dovoljenj. Za podrobnosti o potrebnih nastavitvah si oglejte [https://www.semantic-mediawiki.org/wiki/Help:Permissions stran pomoči za dovoljenja].", + "smw-admin-setupsuccess": "Skladiščni motor je nastavljen.", + "smw_smwadmin_return": "Vrnitev na $1", + "smw_smwadmin_updatestarted": "Začel se je nov postopek posodabljanja za osveževanje semantičnih podatkov.\nVsi shranjeni podatki bodo po potrebi ponovno zgrajeni ali popravljeni.\nNa tej posebni strani lahko spremljate napredek posodobitve.", + "smw_smwadmin_updatenotstarted": "Postopek posodabljanja že poteka.\nNe ustvarjam drugega.", + "smw_smwadmin_updatestopped": "Vsi obstoječi posodobitveni procesi so bili ustavljeni.", + "smw_smwadmin_updatenotstopped": "Če želite ustaviti potekajoči postopek posodabljanja, morate aktivirati potrditveno polje, da označite, da ste res prepričani.", + "smw-admin-docu": "Ta posebna stran vam pomaga pri namestitvi, nadgradnji, vzdrževanju in uporabi Semantičnega MediaWiki in hkrati nudi dodatne administrativne funkcije in opravila, kot tudi statistiko.\nPred izvajanje administrativnih dejanj ustvarite varnostno kopijo uporabnih podatkov.", + "smw-admin-environment": "Programsko okolje", + "smw-admin-db": "Nastavitev podatkovne zbirke", + "smw-admin-db-preparation": "Inicializacija tabele poteka in lahko traja nekaj trenutkov, preden se prikažejo zadetki glede na velikost in možne optimizacije tabele.", + "smw-admin-dbdocu": "Semantični MediaWiki potrebuje lastno strukturo podatkovne zbirke (in je neodvisen od MediaWikija, zato ne vpliva na preostanek namestitve MediaWikija), da lahko shrani semantične podatke.\nTo nastavitveno možnost je mogoče izvesti večkrat, ne da bi pri tem povzročili kakršno koli škodo, vendar je pri namestitvi ali nadgradnji potreben samo enkrat.", + "smw-admin-permissionswarn": "Če operacija ne uspe zaradi napak SQL, uporabnik podatkovne zbirke, ki ga uporablja vaš viki (preverite datoteko »LocalSettings.php«) verjetno nima zadostnih dovoljenj.\nTemu uporabniku dodelite dodatna dovoljenja za ustvarjanje in brisanje tabel, začasno vnesite korensko prijavo podatkovne zbirke v datoteko »LocalSettings.php« ali uporabite vzdrževalni skript setupStore.php, ki lahko uporablja administratorske poverilnice.", + "smw-admin-dbbutton": "Inicializiraj ali nadgradi tabele", + "smw-admin-announce": "Objava vikija", + "smw-admin-announce-text": "Če je vaš viki javen, ga lahko registrirate na WikiApiary, vikiju za sledenje vikijem.", + "smw-admin-deprecation-notice-title": "Obvestila o opustitvah", + "smw-admin-deprecation-notice-docu": "Naslednji razdelek vsebuje nastavitve, ki so bile opuščene ali odstranjene, vendar je bilo zaznano, da so aktivne v tem vikiju. Pričakuje se, da bo prihodnja izdaja odpravila podporo za te konfiguracije.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] je opuščen in bo v $2 odstranjen", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help: $1 $1] bo odstranil (ali zamenjal) {{PLURAL:$2|naslednjo možnost|naslednje možnosti}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "Parameter $1 je opuščen in bo v $2 odstranjen", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] je bilo zamenjano z [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "Parameter [https://www.semantic-mediawiki.org/wiki/Help: $1 $1] je zamenjal parameter $2", + "smw-admin-deprecation-notice-config-replacement-option": "{{PLURAL:$2|Možnost|Možnosti} za [https://www.semantic-mediawiki.org/wiki/Help:$1 $1]}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "Parameter $1 se nadomešča s parametrom $2", + "smw-admin-deprecation-notice-config-removal": "Parameter [https://www.semantic-mediawiki.org/wiki/Help:$1 $1] je bil v različici $2 odstranjen", + "smw-admin-deprecation-notice-title-notice": "Opuščene nastavitve", + "smw-admin-deprecation-notice-title-notice-explanation": "Opuščene nastavitve prikazujejo nastavitve, za katere je bilo ugotovljeno, da se bodo uporabljale v tem vikiju in so načrtovane za odstranitev ali spremembo v prihodnji izdaji.", + "smw-admin-deprecation-notice-title-replacement": "Zamenjane ali preimenovane nastavitve", + "smw-admin-deprecation-notice-title-replacement-explanation": "Zamenjane ali preimenovane nastavitve vsebujejo nastavitve, ki so bile preimenovane ali drugače spremenjene, zato je priporočljivo, da njihovo ime ali format takoj posodobite.", + "smw-admin-deprecation-notice-title-removal": "Odstranjene nastavitve", + "smw-admin-deprecation-notice-title-removal-explanation": "Odstranjene nastavitve navajajo nastavitve, ki so bile odstranjene v prejšnji izdaji, vendar je bilo ugotovljeno, da se v tem vikiju uporabljajo.", + "smw-admin-deprecation-notice-section-legend": "Legenda", + "smw-smwadmin-refresh-title": "Popravilo in posodobitev podatkov", + "smw_smwadmin_datarefresh": "Ponovna izgradnja podatkov", + "smw_smwadmin_datarefreshdocu": "Na podlagi trenutne vsebine vikija je mogoče obnoviti vse podatke Semantičnega MediaWikija.\nTo je lahko koristno za popravilo poškodovanih podatkov ali osvežitev podatkov, če se je notranji format spremenil zaradi nadgradnje programske opreme.\nPosodobitev se izvaja stran za stranjo in ne bo dokončana takoj.\nSpodaj je prikazano, ali poteka posodobitev, in je na voljo možnost, da začnete ali ustavite posodobitve (razen če je to možnost onemogočil administrator spletnega mesta).", + "smw_smwadmin_datarefreshprogress": "Posodobitev že poteka. \nNormalno je, da posodobitev napreduje le počasi, saj osveži podatke samo v majhnih kosih vsakič, ko uporabnik dostopa do vikija.\nČe želite to posodobitev dokončati hitreje, lahko pokličete vzdrževalni skript MediaWiki runJobs.php (za omejitev števila izvedenih posodobitev v enem paketu uporabite možnost --maxjobs 1000).\nOcenjeni napredek trenutne posodobitve:", + "smw_smwadmin_datarefreshbutton": "Načrtuj ponovno izgradnjo podatkov", + "smw_smwadmin_datarefreshstop": "Ustavi to posodobitev", + "smw_smwadmin_datarefreshstopconfirm": "Da, {{GENDER:$1|prepričan|prepričana|prepričan_a}} sem.", + "smw-admin-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki", + "smw-admin-job-scheduler-note": "Naloge (tiste, ki so omogočene) v tem razdelku se izvajajo po čakalni vrsti opravil, da se med njihovim izvajanjem preprečijo zastoji. Za obdelavo je odgovorna [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue čakalna vrsta opravil] in bistveno je, da ima vzdrževalni skript runJobs.php ustrezno zmogljivost (glejte tudi konfiguracijski parameter $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "Odstranjevanje zastarelih entitet", + "smw-admin-outdateddisposal-intro": "Nekatere dejavnosti (sprememba vrste lastnosti, odstranitev vikistrani ali popravek vrednosti napake) bodo povzročile [https://www.semantic-mediawiki.org/wiki/Outdated_entities zastaranje entitet] in priporočljivo je, da jih občasno odstranite, da sprostite povezani prostor tabel.", + "smw-admin-outdateddisposal-active": "Načrtovano je opravilo odstranjevanja zastarelih entitet.", + "smw-admin-outdateddisposal-button": "Načrtuj odstranjevanje", + "smw-admin-feature-disabled": "Ta možnost je v tem vikiju onemogočena. Prosimo, obiščite stran pomoči za nastavitve ali se obrnite na sistemskega administratorja.", + "smw-admin-propertystatistics-title": "Obnova statistike lastnosti", + "smw-admin-propertystatistics-intro": "Obnovi celotno statistiko uporabe lastnosti in v njej posodobi in popravi [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count število uporab] lastnosti.", + "smw-admin-propertystatistics-active": "Načrtovano je opravilo obnove statistike lastnosti.", + "smw-admin-propertystatistics-button": "Načrtuj obnovo statistike", + "smw-admin-fulltext-title": "Obnova iskanja po celotnem besedilu", + "smw-admin-fulltext-intro": "Iz tabel lastnosti znova zgradi iskalni indeks z omogočenim podatkovnim tipom »[https://www.semantic-mediawiki.org/wiki/Full-text iskanje po celotnem besedilu]«. Spremembe pravil indeksiranja (spremenjene ustavitvene besede, nov korenčnik idr.) in/ali na novo dodana ali spremenjena tabela zahtevajo ponovni zagon tega opravila.", + "smw-admin-fulltext-active": "Načrtovano je opravilo obnove iskanja po celotnem besedilu.", + "smw-admin-fulltext-button": "Načrtuj obnovo iskanja po celotnem besedilu", + "smw-admin-support": "Pridobitev podpore", + "smw-admin-supportdocu": "Za pomoč v primeru težav so na voljo različni viri:", + "smw-admin-installfile": "Če imate težave z namestitvijo, najprej preverite navodila v datoteki INSTALL in na strani o namestitvi.", + "smw-admin-smwhomepage": "Celotna uporabniška dokumentacija za Semantic MediaWiki je na voljo na naslovu semantic-mediawiki.org.", + "smw-admin-bugsreport": "Hrošče lahko prijavite na sledilniku težav; stran za poročanje o napakah nudi smernice za pisanje učinkovitega poročila o napaki.", + "smw-admin-questions": "Če imate dodatna vprašanja ali predloge, se pridružite razpravi na poštnem seznamu uporabnikov Semantičnega MediaWikija.", + "smw-admin-other-functions": "Druge funkcije", + "smw-admin-statistics-extra": "Statistične funkcije", + "smw-admin-statistics": "Statistika", + "smw-admin-supplementary-section-title": "Dodatne funkcije", + "smw-admin-supplementary-section-subtitle": "Podprte osrednje funkcije", + "smw-admin-supplementary-section-intro": "V tem razdelku so opisane dodatne funkcije, ki presegajo obseg vzdrževalnih dejavnosti, in nekatere od njih (glejte dokumentacijo [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions]) so morda omejene ali nerazpoložljive in zato v tem vikiju nedostopne.", + "smw-admin-supplementary-settings-title": "Konfiguracija in nastavitve", + "smw-admin-supplementary-settings-intro": "$1 prikazuje parametre, ki določajo vedenje Semantičnega MediaWikija", + "smw-admin-main-title": "Semantični MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Statistika delovanja", + "smw-admin-supplementary-operational-statistics-short-title": "statistika delovanja", + "smw-admin-supplementary-operational-statistics-intro": "Prikaže razširjen nabor $1", + "smw-admin-supplementary-idlookup-title": "Iskanje in odstranjevanje entitet", + "smw-admin-supplementary-idlookup-short-title": "iskanje in odstranjevanje entitet", + "smw-admin-supplementary-idlookup-intro": "Podpira preprosto funkcijo $1", + "smw-admin-supplementary-duplookup-title": "Iskanje podvojenih entitet", + "smw-admin-supplementary-duplookup-intro": "$1 za iskanje entitet, ki so za izbrano matriko tabele kategorizirane kot dvojniki", + "smw-admin-supplementary-duplookup-docu": "Na tej strani so navedeni vnosi iz izbranih tabel, ki so bile kategorizirane kot [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities dvojniki]. Podvojeni vnosi bi se morali (če sploh) pojavljati samo v redkih primerih, ki jih lahko povzroči prekinitev posodobitve ali neuspešna izvedba vrnitve.", + "smw-admin-supplementary-duplookup-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities", + "smw-admin-supplementary-operational-statistics-cache-title": "Statistika predpomnjenja", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 prikazuje izbran niz statističnih podatkov, povezanih s predpomnjenjem", + "smw-admin-supplementary-operational-table-statistics-title": "Statistika tabel", + "smw-admin-supplementary-operational-table-statistics-short-title": "statistika tabel", + "smw-admin-supplementary-operational-table-statistics-intro": "Ustvari $1 za izbran niz tabel", + "smw-admin-supplementary-operational-table-statistics-explain": "Ta razdelek vsebuje izbrane statistične podatke o tabelah, ki administratorjem in skrbnikom podatkov pomagajo pri sprejemanju informiranih odločitev o tem stanju ozadja in mehanizma za shranjevanje.", + "smw-admin-supplementary-operational-table-statistics-legend": "Legenda opisuje nekatere ključe, ki se uporabljajo za statistiko tabele, in vključuje:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count skupno število vrstic v tabeli", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id – zadnji ID, ki je trenutno v uporabi;\n* duplicate_count – število dvojnikov, najdenih v tabeli id_table (glejte tudi [[Special:SemanticMediaWiki/duplicate-lookup|Iskanje podvojenih entitet]]);\n* rows.rev_count – število vrstic, ki imajo dodeljen revision_id, ki označuje neposredno povezavo do vikistrani;\n* rows.smw_namespace_group_by_count – število združenih vrstic za imenske prostore, uporabljene v tabeli;\n* rows.smw_proptable_hash.query_match_count – število podobjektov poizvedbe z ustreznim sklicem na tabelo;\n* rows.smw_proptable_hash.query_null_count – število podobjektov poizvedbe brez sklica na tabelo (nepovezan, plavajoč sklic).", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent – odstotek izrazov, ki so edinstveni (nizka odstotna stopnja pomeni, da vsebino in indeks tabel zapolnjujejo ponavljajoči se izrazi);\n* rows.terms_occurrence.single_occurrence_total_count – število izrazov, ki se pojavijo samo enkrat;\n* rows.terms_occurrence.multi_occurrence_total_count – število izrazov, ki se pojavijo večkrat.", + "smw-admin-supplementary-elastic-title": "Elasticsearch", + "smw-admin-supplementary-elastic-version-info": "Različica", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 prikazuje podrobnosti o nastavitvah in statistiko indeksa", + "smw-admin-supplementary-elastic-docu": "Ta stran vsebuje informacije o nastavitvah, preslikavah, zdravju in statistiki indeksov, povezanih z gručo Elasticsearch, ki je povezana s Semantičnim MediaWikijem in njegovo shrambo [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Podprte funkcije", + "smw-admin-supplementary-elastic-settings-title": "Nastavitve (indeksi)", + "smw-admin-supplementary-elastic-settings-intro": "$1, ki ga za upravljanje indeksov Semantičnega MediaWikija uporablja Elasticsearch", + "smw-admin-supplementary-elastic-mappings-title": "Preslikave", + "smw-admin-supplementary-elastic-mappings-intro": "$1 za seznam indeksov in preslikav polj", + "smw-admin-supplementary-elastic-mappings-docu": "Ta stran vsebuje podrobnosti preslikav polj, ki jih uporablja trenutni indeks. Priporočljivo je, da spremljate preslikave v povezavi z index.mapping.total_fields.limit (določa največje dovoljeno število polj v indeksu).", + "smw-admin-supplementary-elastic-mappings-docu-extra": "property_fields se nanaša na število indeksiranih osrednjih polj, nested_fields pa se nanaša na akumulirano število dodatnih polj, dodeljenih osrednjemu polju za podporo specifičnim strukturiranim vzorcem iskanja.", + "smw-admin-supplementary-elastic-mappings-summary": "Povzetek", + "smw-admin-supplementary-elastic-mappings-fields": "Preslikave polj", + "smw-admin-supplementary-elastic-nodes-title": "Vozlišča", + "smw-admin-supplementary-elastic-nodes-intro": "$1 prikazuje statistiko vozlišč", + "smw-admin-supplementary-elastic-indices-title": "Indeksi", + "smw-admin-supplementary-elastic-indices-intro": "$1 omogoča pregled razpoložljivih indeksov in njihove statistike", + "smw-admin-supplementary-elastic-statistics-title": "Statistika", + "smw-admin-supplementary-elastic-statistics-intro": "$1 prikazuje statistiko ravni indeksov", + "smw-admin-supplementary-elastic-statistics-docu": "Ta stran ponuja vpogled v statistiko indeksov za različne operacije, ki se izvajajo na ravni indeksov, vrnjena statistika je združena s primarnimi in skupnimi združevanji. [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html stran pomoči] vsebuje podroben opis razpoložljive statistike indeksov.", + "smw-admin-supplementary-elastic-status-replication": "Status podvajanja podatkov", + "smw-admin-supplementary-elastic-status-last-active-replication": "Zadnja aktivna replikacija: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Interval osveževanja: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Zaostanek pri obnovitvenih opravilih: $1 (ocena)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Zaostanek opravil indeksiranja (datotek): $1 (ocena)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Replikacija zaklenjena: $1 (poteka ponovna izgradnja)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Nadzor replikacije (aktivna): $1", + "smw-admin-supplementary-elastic-replication-header-title": "Status replikacije", + "smw-admin-supplementary-elastic-replication-function-title": "Replikacija", + "smw-admin-supplementary-elastic-replication-intro": "$1 prikazuje informacije o neuspelih replikacijah", + "smw-admin-supplementary-elastic-replication-docu": "Na tej strani so navedene informacije o [https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring stanju replikacije] entitet, za katere so bile zabeležene težave z gručo Elasticsearch. Priporočljivo je, da navedene entitete pregledate in vsebino počistite, da potrdite, da je bila težava samo prehodna.", + "smw-admin-supplementary-elastic-replication-files-docu": "Upoštevati je treba, da je treba za seznam datotek najprej izvesti opravilo [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion file ingest], ki mora dokončati obdelavo.", + "smw-admin-supplementary-elastic-replication-files": "Datoteke", + "smw-admin-supplementary-elastic-replication-pages": "Strani", + "smw-admin-supplementary-elastic-endpoints": "Končne točke", + "smw-admin-supplementary-elastic-config": "Konfiguracije", + "smw-admin-supplementary-elastic-no-connection": "Viki trenutno '''ne more''' vzpostaviti povezave z gručo Elasticsearch. Obrnite se na administratorja vikija, da razišče težavo, saj onemogoča indeksiranje in poizvedbeno sposobnost sistema.", + "smw-list-count": "Seznam vsebuje $1 {{PLURAL:$1|vnos|vnosa|vnose|vnosov}}.", + "smw-property-label-uniqueness": "Oznaka »$1« se ujema z vsaj eno drugo predstavitvijo lastnosti. Za rešitev težave glejte [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness stran pomoči].", + "smw-property-label-similarity-title": "Poročilo o podobnosti oznake lastnosti", + "smw-property-label-similarity-intro": "$1 izračuna podobnosti za obstoječe oznake lastnosti", + "smw-property-label-similarity-threshold": "Prag:", + "smw-property-label-similarity-type": "ID vrste prikaza", + "smw-property-label-similarity-noresult": "Za izbrane možnosti ni najdenih zadetkov.", + "smw-property-label-similarity-docu": "Ta stran primerja [https://www.semantic-mediawiki.org/wiki/Property_similarity razdaljo podobnosti] (ne sme se zamenjati s semantično ali leksikalno podobnostjo) med oznakami lastnosti in poroča o njih, če presežejo prag. Poročilo lahko pomaga pri filtriranju napačno črkovanih ali enakovrednih lastnosti, ki predstavljajo isti koncept (za pomoč pri razjasnitvi koncepta in uporabe prijavljenih lastnosti glejte posebno stran [[Special:Properties|properties]]). Prag je mogoče prilagoditi za razširitev ali zožanje razdalje, uporabljene za približno ujemanje. Za izvzetje lastnosti iz analize se uporablja [[Property:$1|$1]].", + "smw-admin-operational-statistics": "Ta stran vsebuje operativne statistične podatke, zbrane v funkcijah ali iz funkcij, povezanih s Semantičnim MediaWikijem. Razširjen seznam statističnih podatkov, specifičnih za viki, lahko najdete [[Special:Statistics|tukaj]].", + "smw_adminlinks_datastructure": "Podatkovna struktura", + "smw_adminlinks_displayingdata": "Prikaz podatkov", + "smw_adminlinks_inlinequerieshelp": "Pomoč za vrstične poizvedbe", + "smw-page-indicator-usage-count": "Ocenjeno [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count število uporab]: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "{{PLURAL:$1|Uporabniško|Sistemsko}} definirana lastnost", + "smw-property-indicator-last-count-update": "Ocenjeno število uporab\nZadnja posodobitev: $1", + "smw-concept-indicator-cache-update": "Število predpomnjenj\nZadnja posodobitev: $1", + "smw-createproperty-isproperty": "To je lastnost tipa $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Dovoljena vrednost za to lastnost je|Dovoljene vrednosti za to lastnost so}}:", + "smw-paramdesc-category-delim": "Ločilo", + "smw-paramdesc-category-template": "Predloga za oblikovanje predmetov", + "smw-paramdesc-category-userparam": "Parameter za posredovanje predlogi", + "smw-info-par-message": "Sporočilo za prikaz.", + "smw-info-par-icon": "Ikona za prikaz, bodisi »info« ali »warning«.", + "prefs-smw": "Semantični MediaWiki", + "prefs-general-options": "Splošne možnosti", + "prefs-extended-search-options": "Razširjeno iskanje", + "prefs-ask-options": "Semantično iskanje", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantični MediaWiki] in povezane razširitve zagotavljajo posamezne prilagoditve za skupino izbranih možnosti in funkcij. Seznam posameznih nastavitev z njihovim opisom in značilnostmi je na voljo na naslednji [https://www.semantic-mediawiki.org/wiki/Help:User_preferences strani pomoči].", + "smw-prefs-ask-options-tooltip-display": "Na posebni strani #ask [[Special:Ask|gradilnika poizvedb]] prikaži besedilo parametra kot informativni opis orodja", + "smw-prefs-ask-options-compact-view-basic": "Omogoči osnovni kompaktni pogled", + "smw-prefs-help-ask-options-compact-view-basic": "Če je omogočeno, prikaže v kompaktnem pogledu Special:Ask zmanjšan nabor povezav", + "smw-prefs-general-options-time-correction": "Omogoči časovni popravek za posebne strani z uporabo nastavitve lokalnega [[Special:Preferences#mw-prefsection-rendering|časovnega zamika]]", + "smw-prefs-general-options-jobqueue-watchlist": "V moji osebni vrstici prikaži nadzorni seznam čakalne vrste opravil", + "smw-prefs-help-general-options-jobqueue-watchlist": "Če je omogočeno, prikaže [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist seznam] čakajočih izbranih opravil skupaj z ocenjeno velikostjo čakalne vrste.", + "smw-prefs-general-options-disable-editpage-info": "Onemogoči uvodno besedilo na strani za urejanje", + "smw-prefs-general-options-disable-search-info": "Onemogoči podporne informacije o skladnji na standardni iskalni strani", + "smw-prefs-general-options-suggester-textinput": "Pri semantičnih entitetah omogoči pomoč pri vnosu", + "smw-prefs-help-general-options-suggester-textinput": "Če je omogočeno, omogoča uporabo [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance pomoči pri vnosu] za iskanje lastnosti, konceptov in kategorij iz konteksta vnosa.", + "smw-prefs-general-options-show-entity-issue-panel": "Prikaži panel s težavami entitete", + "smw-prefs-help-general-options-show-entity-issue-panel": "Če je omogočeno, zažene preverjanje celovitosti na vsaki strani in prikaže [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel panel s težavami entitete].", + "smw-prefs-factedsearch-profile": "Izberite privzeti profil [[Special:FacetedSearch|fasetnega iskanja]]:", + "smw-ui-tooltip-title-property": "Lastnost", + "smw-ui-tooltip-title-quantity": "Pretvorba enot", + "smw-ui-tooltip-title-info": "Informacije", + "smw-ui-tooltip-title-service": "Povezave do storitev", + "smw-ui-tooltip-title-warning": "Opozorilo", + "smw-ui-tooltip-title-error": "Napaka", + "smw-ui-tooltip-title-parameter": "Parameter", + "smw-ui-tooltip-title-event": "Dogodek", + "smw-ui-tooltip-title-note": "Opomba", + "smw-ui-tooltip-title-legend": "Legenda", + "smw-ui-tooltip-title-reference": "Sklic", + "smw_unknowntype": "Tip »$1« te lastnosti je neveljaven", + "smw-concept-cache-text": "Koncept ima skupaj $1 {{PLURAL:$1|stran|strani}} in je bil zadnjič posodobljen dne $3 ob $2.", + "smw_concept_header": "Strani zasnove »$1«", + "smw_conceptarticlecount": "Spodaj {{PLURAL:$1|je prikazana $1 stran|sta prikazani $1 strani|so prikazane $1 strani|je prikazanih $1 strani}}.", + "smw-qp-empty-data": "Zahtevanih podatkov ni bilo mogoče prikazati zaradi nekaterih nezadostnih kriterijev izbire.", + "right-smw-admin": "Dostop do administrativnih opravil (Semantični MediaWiki)", + "right-smw-patternedit": "Urejanje dostopa za ohranjanje dovoljenih regularnih izrazov in vzorcev (Semantični MediaWiki)", + "right-smw-pageedit": "Urejanje dostopa do strani, označenih z Is edit protected (Semantični MediaWiki)", + "right-smw-schemaedit": "Urejanje [https://www.semantic-mediawiki.org/wiki/Help:Schema strani sheme] (Semantični MediaWiki)", + "right-smw-viewjobqueuewatchlist": "Dostop do [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist nadzornega seznama] vrste opravil (Semantični MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "Dostop do podatkov o neujemanju redakcij, povezanih z entiteto (Semantični MediaWiki)", + "right-smw-vieweditpageinfo": "Dostop do [https://www.semantic-mediawiki.org/wiki/Help:Edit_help pomoči za urejanje] (Semantični MediaWiki)", + "restriction-level-smw-pageedit": "zaščiteno (samo pooblaščeni uporabniki)", + "action-smw-patternedit": "urejanje regularnih izrazov, ki jih uporablja Semantični MediaWiki", + "action-smw-pageedit": "urejanje strani, označenih z Is edit protected (Semantični MediaWiki)", + "group-smwadministrator": "Administratorji (Semantični MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|administrator (Semantični MediaWiki)|administratorka (Semantični MediaWiki)|administrator_ka (Semantični MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:Administratorji (Semantični MediaWiki)", + "group-smwcurator": "Kustosi (Semantični MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|kustos (Semantični MediaWiki)|kustosinja (Semantični MediaWiki)|kustos_inja (Semantični MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:Kustosi (Semantični MediaWiki)", + "group-smweditor": "Urejevalci (Semantični MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|urejevalec (Semantični MediaWiki)|urejevalka (Semantični MediaWiki)|urejevalec_ka (Semantični MediaWiki)}}", + "grouppage-smweditor": "{{ns:project}}:Urejevalci (Semantični MediaWiki)", + "action-smw-admin": "dostop do administratorskih opravil Semantičnega MediaWikija", + "action-smw-ruleedit": "urejanje strani pravil (Semantični MediaWiki)", + "smw-property-namespace-disabled": "Lastnost [https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks namespace] je onemogočena, zato poskus deklaracije vrste ali drugih lastnosti, specifičnih za to lastnost, ni mogoč.", + "smw-property-predefined-default": "»$1« je vnaprej določena lastnost tipa $2.", + "smw-property-predefined-common": "Ta lastnost je vnaprej uvedena (znana tudi kot [https://www.semantic-mediawiki.org/wiki/Help:Special_properties posebna lastnost]) in prihaja z dodatnimi administratorskimi pravicami, vendar jo je mogoče uporabljati tako kot vse druge [https:/ /www.semantic-mediawiki.org/wiki/Lastnost uporabniško določene lastnosti].", + "smw-property-predefined-ask": "»$1« je vnaprej določena lastnost, ki predstavlja metainformacije (v obliki [https://www.semantic-mediawiki.org/wiki/Subobject podobjekta]) o posameznih poizvedbah in jo zagotavlja [https://www.semantic -mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-asksi": "»$1« je vnaprej določena lastnost, ki zbira število pogojev, uporabljenih v poizvedbi, in jo zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-askde": "»$1« je vnaprej določena lastnost za dodajanje povezav do storitev lastnostim in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-askde": "To je številska vrednost, izračunana na podlagi gnezdenja podpoizvedb, verig lastnosti in razpoložljivih opisnih elementov, pri čemer je izvajanje poizvedb omejeno s konfiguracijskim parametrom [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-property-predefined-askpa": "»$1« je vnaprej določena lastnost za opisovanje parametrov, ki vplivajo na rezultat poizvedbe, ki jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-askpa": "To je del zbirke lastnosti, ki določajo [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler profil poizvedbe].", + "smw-sp-properties-docu": "Na tej strani so navedene [https://www.semantic-mediawiki.org/wiki/Property lastnosti], ki so na voljo za ta viki, in število njihovih uporab. Za posodobljene statistične podatke o štetju je priporočljivo, da se redno izvaja skript za vzdrževanje [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics statistike lastnosti]. Za drugačen pogled glejte posebno stran [[Special:UnusedProperties|Neuporabljene lastnosti]] ali [[Special:WantedProperties|Želene lastnosti]].", + "smw-sp-properties-cache-info": "Navedeni podatki so bili pridobljeni iz [https://www.semantic-mediawiki.org/wiki/Caching predpomnilnika] in nazadnje posodobljeni $1.", + "smw-sp-properties-header-label": "Seznam lastnosti", + "smw-admin-settings-docu": "Ta stran prikazuje seznam vseh privzetih in lokaliziranih nastavitev, ki so pomembne za okolje Semantičnega MediaWikija. Za podrobnosti o posameznih nastavitvah glejte stran pomoči [https://www.semantic-mediawiki.org/wiki/Help:Configuration Configuration].", + "smw-sp-admin-settings-button": "Ustvari seznam nastavitev", + "smw-admin-idlookup-title": "Iskanje", + "smw-admin-idlookup-docu": "Ta razdelek prikazuje tehnične podrobnosti o posamezni entiteti (vikistran, podobjekt, lastnost idr.) v Semantičnem MediaWikiju. Vnos je lahko številski ID ali vrednost niza, ki se ujema z ustreznim iskalnim poljem, vendar se vsak sklic ID-ja nanaša na Semantični MediaWiki in ne na ID strani ali redakcije MediaWiki.", + "smw-admin-iddispose-title": "Odstranjevanje", + "smw-admin-iddispose-docu": "Upoštevati je treba, da je operacija odstranjevanja neomejena in bo entiteto odstranila iz mehanizma za shranjevanje skupaj z vsemi njenimi sklici v čakajočih tabelah, če bo potrjena. Prosimo, da to opravilo izvedete '''previdno''' in šele potem, ko ste preučili [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal dokumentacijo].", + "smw-admin-iddispose-done": "ID »$1« je odstranjen iz shranjevalnega zaledja.", + "smw-admin-iddispose-references": "ID »$1« {{PLURAL:$2|nima nobenega aktivnega sklica|ima vsaj en aktivni sklic}}:", + "smw-admin-iddispose-references-multiple": "Seznam zadetkov z vsaj enim zapisom o aktivnem sklicu.", + "smw-admin-iddispose-no-references": "Pri iskanju »$1« ni bil v tabeli najden noben vnos.", + "smw-admin-idlookup-input": "Iskanje:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Pregled", + "smw-admin-tab-notices": "Obvestila o opustitvah", + "smw-admin-tab-maintenance": "Vzdrževanje", + "smw-admin-tab-supplement": "Dodatne funkcije", + "smw-admin-tab-registry": "Register", + "smw-admin-tab-alerts": "Opomniki", + "smw-admin-alerts-tab-deprecationnotices": "Obvestila o opustitvah", + "smw-admin-alerts-tab-maintenancealerts": "Opomniki vzdrževanja", + "smw-admin-alerts-section-intro": "V tem razdelku so prikazani opomniki in obvestila v zvezi z nastavitvami, operacijami in drugimi dejavnostmi, za katere je bilo prepoznano, da zahtevajo pozornost administratorja ali uporabnika z ustreznimi pravicami.", + "smw-admin-maintenancealerts-section-intro": "Naslednje opomnike in obvestila je treba razrešiti in čeprav niso ključna, se pričakuje, da bo to pomagalo izboljšati vzdrževanje in delovanje sistema.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Optimizacija tabel", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "Sistem je ugotovil, da je bila zadnja [https://www.semantic-mediawiki.org/wiki/Table_optimization optimizacija tabele] izvedena pred $2 dnevi(-om/-oma) (zapis z datumom $1), kar presega prag vzdrževanja $3 dni. Kot je navedeno v dokumentaciji, bo izvajanje optimizacij načrtovalniku poizvedb omogočilo sprejemanje boljših odločitev o poizvedbah, zato je predlagano, da tabelo redno optimizirate.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Zastarele entitete", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "Sistem je naštel $1 [https://www.semantic-mediawiki.org/wiki/Outdated_entities zastarelih entitet] in dosegel kritično raven nevzdrževanja, ko je presežen prag $2. Priporočamo, da zaženete vzdrževalni skript [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php].", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Neveljavne entitete", + "smw-admin-maintenancealerts-invalidentities-alert": "Sistem je v [https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace nevzdrževanem imenskem prostoru] našel $1 [https://www.semantic-mediawiki.org/wiki/Invalid_entities {{PLURAL:$1|neveljavno entiteto|neveljavni entiteti|neveljavne entitete|neveljavnih entitet}}]. Priporočljivo je, da zaženete vzdrževalni skript [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] ali [https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php].", + "smw-admin-deprecation-notice-section": "Semantični MediaWiki", + "smw-admin-configutation-tab-settings": "Nastavitve", + "smw-admin-configutation-tab-namespaces": "Imenski prostori", + "smw-admin-configutation-tab-schematypes": "Tipi shem", + "smw-admin-maintenance-tab-tasks": "Opravila", + "smw-admin-maintenance-tab-scripts": "Vzdrževalni skripti", + "smw-admin-maintenance-no-description": "Ni opisa.", + "smw-admin-maintenance-script-section-title": "Seznam razpoložljivih vzdrževalnih skriptov", + "smw-admin-maintenance-script-section-intro": "Za izvajanje naslednjih vzdrževalnih skriptov so potrebni administratorska pooblastila in dostop do ukazne vrstice.", + "smw-admin-maintenance-script-description-dumprdf": "Izvoz obstoječih trojic RDF.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "Ta skript se uporablja za upravljanje konceptnih predpomnilnikov v Semantičnem MediaWikiju,ki omogoča ustvarjanje, odstranjevanje in posodabljanje izbranih predpomnilnikov.", + "smw-admin-maintenance-script-description-rebuilddata": "Znova ustvari vse semantične podatke v podatkovni zbirki tako, da preleti vse strani, ki bi lahko vsebovale semantične podatke.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "Ponovno zgradi indeks Elasticsearch (samo za namestitve, ki uporabljajo ElasticStore), tako da preide skozi vse entitete, ki imajo semantične podatke.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Poišče manjkajoče entitete v Elasticsearch (samo za namestitve, ki uporabljajo ElasticStore) in razporedi ustrezna posodabljanja.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "Ponovno zgradi indeks iskanja po celotnem besedilu SQLStore (za namestitve, pri katerih je bila ta nastavitev omogočena).", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Ponovno zgradi statistiko uporabe za vse entitete lastnosti.", + "smw-admin-maintenance-script-description-removeduplicateentities": "Odstrani podvojene entitete, najdene v izbranih tabelah, ki nimajo aktivnih sklicev.", + "smw-admin-maintenance-script-description-setupstore": "Nastavi zaledje za shranjevanje in poizvedbo, kot je določeno v LocalSettings.php.", + "smw-admin-maintenance-script-description-updateentitycollation": "Posodobi polje smw_sort v SQLStore (v skladu z nastavitvijo [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation]).", + "smw-admin-maintenance-script-description-populatehashfield": "Izpolni polje smw_hash vrstic z manjkajočo vrednostjo.", + "smw-admin-maintenance-script-description-purgeentitycache": "Počisti vnose v predpomnilnik za znane entitete in njihove povezane podatke.", + "smw-admin-maintenance-script-description-updatequerydependencies": "Posodobi poizvedbe in poizvedbene odvisnosti (glejte nastavitev [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore]).", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "Odstrani zastarele entitete in povezave na poizvedbe.", + "smw-admin-maintenance-script-description-runimport": "Napolni in uvozi samodejno odkrito vsebino iz [https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs].", + "smw-admin-maintenance-script-section-update": "Posodobitveni skripti", + "smw-admin-maintenance-script-section-rebuild": "Obnovitveni skripti", + "smw-livepreview-loading": "Nalaganje ...", + "smw-sp-searchbyproperty-description": "Ta stran vsebuje preprost [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces brskalni vmesnik] za iskanje entitet, ki jih opisujeta lastnost in navedena vrednost. Drugi razpoložljivi iskalni vmesniki vključujejo [[Special:PageProperty|iskanje v lastnostih strani]] in [[Special:Ask|gradilnik poizvedb Semantično iskanje]].", + "smw-sp-searchbyproperty-resultlist-header": "Seznam zadetkov", + "smw-sp-searchbyproperty-nonvaluequery": "Seznam vrednosti, ki imajo dodeljeno lastnost »$1«.", + "smw-sp-searchbyproperty-valuequery": "Seznam strani, ki imajo lastnost »$1« z označeno vrednostjo »$2«.", + "smw-datavalue-number-textnotallowed": "»$1« ni mogoče dodeliti deklariraneu številskemu tipu z vrednostjo $2.", + "smw-datavalue-number-nullnotallowed": "Vrnitev »$1« z vrednostjo »NULL«, ki ni dovoljena kot število.", + "smw-editpage-annotation-enabled": "Ta stran podpira semantične označitve v besedilu (npr »[[Is specified as::World Heritage Site]]«) za ustvarjanje strukturirane in poizvedljive vsebine, ki jo zagotavlja Semantični MediaWiki. Za izčrpen opis uporabe označevanja ali funkcije razčlenjevalnika #ask glejte strani pomoči [https://www.semantic-mediawiki.org/wiki/Help:Getting_started Getting started] (Kako začeti), [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation In-text annotation] (Vrstično označevanje) in [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries Inline queries] (Vrstične poizvedbe).", + "smw-editpage-annotation-disabled": "Semantično označevanje besedila na tej strani ni podprto zaradi omejitve imenskega prostora. Podrobnosti o tem, kako ga vklopiti v imenskem prostoru, so na voljo na strani pomoči [https://www.semantic-mediawiki.org/wiki/Help:Configuration Configuration].", + "smw-editpage-property-annotation-enabled": "To lastnost je mogoče razširiti z uporabo semantičnih opomb za določitev podatkovnega tipa (npr »[[Has type::Page]]« ) ali druge podporne izjave (npr. »[[Subproperty of::dc:date]]«). Za opis, kako razširiti to stran, glejte stran pomoči [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration Deklaracija lastnosti] ali [https://www.semantic-mediawiki.org/ wiki/Help:List_of_datatypes Seznam razpoložljivih tipov podatkov].", + "smw-editpage-property-annotation-disabled": "Te lastnosti ni mogoče razširiti z označitvijo podatkovnega tipa (npr. »[[Has type::Page]]«), saj je že vnaprej določen (za več informacij glejte stran pomoči [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Posebne lastnosti]).", + "smw-editpage-concept-annotation-enabled": "Ta koncept je mogoče razširiti s funkcijo razčlenjevalnika #concept. Za opis uporabe funkcije #concept glejte stran pomoči [https://www.semantic-mediawiki.org/wiki/Help:Concepts Concept] (Koncept).", + "smw-search-syntax-support": "Iskalni vnos podpira uporabo semantične [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search poizvedbene skladnje] za pomoč pri povezovanju zadetkov z uporabo Semantičnega MediaWikija.", + "smw-search-input-assistance": "Omogočen je tudi [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance pomočnik za vnašanje], ki olajša predhodno izbiro razpoložljivih lastnosti in kategorij.", + "smw-search-help-intro": "Vnos [[ ... ]] bo signaliziral vhodnemu procesorju, da uporabi iskalno zaledje Semantičnega MediaWikija. Treba je opozoriti, da združevanje [[ ... ]] z iskanjem po nestrukturiranem besedilu, kot je npr. [[ ... ]] OR Lorem ipsum, ni podprto.", + "smw-search-help-structured": "Strukturirana iskanja:\n\n* [[Category:Lorem ipsum]], [[Has number::123]] (kot [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context filtrirani kontekst])\n\n* [[Has text::~*lorem*]] (s [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context poizvedbenim kontekstom])", + "smw-search-help-proximity": "Iskanje po bližini (če lastnost ni znana, je na voljo '''samo''' za tiste zaledne sisteme, ki omogočajo integracijo iskanja po celotnem besedilu):\n\n*[[in:lorem ipsum]] (iskanje v vseh dokumentih za »lorem« in »ipsum«, ki sta bila indeksirana);\n\n*[[phrase:lorem ipsum]] (ujemanje z »lorem ipsum« kot frazo).", + "smw-search-help-ask": "Naslednje povezave pojasnjujejo, kako uporabljati skladnjo #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Izbiranje strani] opisuje, kako izbrati strani in določiti pogoje!\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Iskalni operatorji] navaja razpoložljive iskalne operatorje, vključno s tistimi za poizvedbe z obsegom in nadomestnimi znaki", + "smw-search-input": "Vnos in iskanje", + "smw-search-help-input-assistance": "Za vnosno polje je na voljo [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance pomoč pri vnosu], ki zahteva uporabo ene od naslednjih predpon:\n\n* p: za omogočenje predlogov lastnosti (npr. [[p:Has ...);\n\n* c: za omogočenje predlogov kategorij;\n\n* con: za omogočenje predlogov pojmov.", + "smw-search-syntax": "Skladnja", + "smw-search-profile": "Razširjeno", + "smw-search-profile-tooltip": "Iskalne funkcije v povezavi s Semantičnim MediaWikijem", + "smw-search-profile-sort-best": "Najboljše ujemanje", + "smw-search-profile-sort-recent": "Najnovejše", + "smw-search-profile-sort-title": "Naslov", + "smw-search-profile-extended-help-intro": "[https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile Razširjeni profil] Special:Search omogoča dostop do specifičnih iskalnih funkcij Semantičnega MediaWikija in njegovega podprtega poizvedbenega zaledja.", + "smw-search-profile-extended-help-sort": "Določa prednost razvrščanja za prikaz zadetkov z:", + "smw-search-profile-extended-help-sort-title": "* »Naslov« z uporabo naslov strani (ali prikazanega naslova) kot merila za razvrščanje", + "smw-search-profile-extended-help-sort-recent": "* »Najnovejše« bo prikazovalo najnovejše spremenjene entitete (podobjekt entitete bo skrit, saj te entitete niso označene z [[Property:Modification date|datumom spremembe]])", + "smw-search-profile-extended-help-sort-best": "* »Najboljše ujemanje« bo razvrstilo entitete po [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy ustreznosti] na podlagi ocen, ki jih zagotovi zaledje", + "smw-search-profile-extended-help-form": "Na voljo so obrazci (če so vzdrževani) za poiskanje posebnih primerov uporabe z izpostavitvijo različnih polj lastnosti in vrednosti, da se zoži postopek vnosa in uporabniki lažje nadaljujejo iskalni zahtevek (glejte $1).", + "smw-search-profile-extended-help-namespace": "Izbirnik imenskega prostora se bo skril takoj, ko bo izbrana oblika, prikažete pa ga lahko z uporabo gumba »pokaži/skrij«.", + "smw-search-profile-extended-help-search-syntax": "Iskalno vnosno polje podpira uporabo skladnje #ask za določitev iskalnega konteksta, specifičnega za Semantični MediaWiki. Uporabni izrazi vključujejo:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: za iskanje česar koli, kar vsebuje »...« in je še posebej uporabno, kadar iskalni kontekst ali vključene lastnosti niso znani (npr. in:(lorem && ipsum) je enakovredno [[~~*lorem*]] && [[~~*ipsum*]]).", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: za poiskanje vsega, kar vsebuje »...« v popolnoma enakem vrstnem redu", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: za poiskanje vseh entitet z lastnostjo »...« (npr. has:(Foo && Bar) je enakovredno [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: za izključitev iz iskanja vseh entitet, ki vključujejo »...«", + "smw-search-profile-extended-help-search-syntax-prefix": "* Na voljo in definirane so dodatne predpone po meri, kot je: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* Nekateri izrazi so pridržani, npr.: $1", + "smw-search-profile-extended-help-search-syntax-note": "''Nekatere od navedenih operacij so uporabne samo v povezavi z omogočenim indeksiranjem celotnega besedila ali ElasticStore.''", + "smw-search-profile-extended-help-query": "Uporaba $1 kot poizvedba.", + "smw-search-profile-extended-help-query-link": "Za več podrobnosti uporabite $1.", + "smw-search-profile-extended-help-find-forms": "razpoložljivi obrazci", + "smw-search-profile-extended-section-sort": "Razvrsti po", + "smw-search-profile-extended-section-form": "Obrazci", + "smw-search-profile-extended-section-search-syntax": "Poišči vnos", + "smw-search-profile-extended-section-namespace": "Imenski prostor", + "smw-search-profile-extended-section-query": "Poizvedba", + "smw-search-profile-link-caption-query": "gradilnik poizvedb", + "smw-search-show": "Prikaži", + "smw-search-hide": "Skrij", + "log-name-smw": "Dnevnik Semantičnega MediaWikija", + "log-show-hide-smw": "Dnevnik Semantičnega MediaWikija $1", + "logeventslist-smw-log": "Dnevnik Semantičnega MediaWikija", + "log-description-smw": "Dejavnosti za [https://www.semantic-mediawiki.org/wiki/Help:Logging omogočene vrste dogodkov], o katerih poročajo Semantični MediaWiki in njegove komponente.", + "logentry-smw-maintenance": "Dogodki, povezani z vzdrževanjem, ki jih oddaja Semantični MediaWiki", + "smw-datavalue-import-unknown-namespace": "Imenski prostor uvoza »$1« ni znan. Zagotovite, da so podatki o uvozu OWL na voljo na [[MediaWiki:Smw import $1]].", + "smw-datavalue-import-missing-namespace-uri": "V [[MediaWiki:Smw import $1|uvozu $1]] ni mogoče najti URI-ja imenskega prostora.", + "smw-datavalue-import-missing-type": "Za »$1« ni bila v [[MediaWiki:Smw import $2|uvozu $2]] najdena nobena definicija tipa.", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|Uvoz $1]]", + "smw-datavalue-import-invalid-value": "»$1« ni veljaven format. Ta mora ustrezati shemi »imenski prostor«:»identifikator« (npr. »foaf:name«).", + "smw-datavalue-import-invalid-format": "»$1« ni veljavno zaporedje znakov za to shemo. Razdeljena mora biti v štiri dele.", + "smw-property-predefined-impo": "»$1« je vnaprej določena lastnost, ki opisuje povezavo z [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary uvoženim besednjakom] in je navedena v [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantičnem MediaWikiju].", + "smw-property-predefined-type": "»$1« je vnaprej določena lastnost, ki opisuje [[Special:Types|podatkovni tip]] lastnosti in jo zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-sobj": "»$1« je vnaprej določena lastnost, ki predstavlja konstrukcijo [https://www.semantic-mediawiki.org/wiki/Help:Container vsebnika] in je navedena v [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantičnem MediaWikiju].", + "smw-property-predefined-long-sobj": "Vsebnik omogoča kopičenje dodelitev vrednosti lastnostim, podobnih tistim na običajni vikistrani, vendar v drugem prostoru entitete, med povezovanjem z vdelanim podobjektom.", + "smw-property-predefined-errp": "»$1« je vnaprej določena lastnost, ki sledi napake pri vnosu za iregularna označevanja vrednosti in jo zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-errp": "V večini primerov je to posledica neujemanja tipa ali omejitve [[Property:Allows value|vrednosti]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value »$1«] je vnaprej določena lastnost, ki lahko določa seznam dovoljenih vrednosti za omejitev dodelitev vrednosti lastnostim in jo zagotavlja [https:// www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list »$1«] je vnaprej določena lastnost, ki lahko poda sklic na seznam, ki vsebuje dovoljene vrednosti za omejitev dodelitve vrednosti lastnostim in jo zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-datavalue-property-restricted-annotation-use": "Lastnost »$1« ima omejeno področje uporabe in je uporabnik ne more uporabiti kot lastnost označitve.", + "smw-datavalue-property-restricted-declarative-use": "Lastnost »$1« je deklarativna lastnost in jo je mogoče uporabiti samo na strani lastnosti ali kategorije.", + "smw-datavalue-property-create-restriction": "Lastnost »$1« ne obstaja in uporabniku manjka dovoljenje »$2« (za ustvarjanje ali označevanje vrednosti neodobrene lastnosti glejte stran [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode Authority mode]).", + "smw-datavalue-property-invalid-character": "Lastnost »$1« vsebuje naveden znak »$2« kot del oznake lastnosti in je zato razvrščena kot neveljavna.", + "smw-datavalue-property-invalid-chain": "Uporaba »$1« kot verige lastnosti ni dovoljena med postopkom označevanja.", + "smw-datavalue-restricted-use": "Podatkovna vrednost »$1« je označena za omejeno uporabo.", + "smw-datavalue-invalid-number": "»$1« ni mogoče interpretirati kot številko.", + "smw-query-condition-circular": "V »$1« je bil zaznan možen krožni pogoj.", + "smw-query-condition-empty": "Opis poizvedbe ima prazen pogoj.", + "smw-types-list": "Seznam podatkovnih tipov", + "smw-types-default": "»$1« je vgrajen podatkovni tip.", + "smw-types-help": "Dodatne informacije in primere so na voljo na tej [https://www.semantic-mediawiki.org/wiki/Help:Type_ $1 strani pomoči].", + "smw-type-anu": "»$1« je različica podatkovnega tipa [[Special:Types/URL|URL]] in se večinoma uporablja za deklaracijo izvoza ''owl:AnnotationProperty''.", + "smw-type-boo": "»$1« je osnovni podatkovni tip za opis vrednosti true/false.", + "smw-type-cod": "»$1« je različica podatkovnega tipa [[Specia:Types/Text|Text]], ki se uporablja za tehnična besedila poljubne dolžine, kot je izvorna koda.", + "smw-type-geo": "»$1« je podatkovni tip, ki opisuje geografske lokacije in za zagotavljanje razširjene funkcionalnosti zahteva razširitev [https://www.semantic-mediawiki.org/wiki/Extension:Maps »Maps«].", + "smw-type-tel": "»$1« je poseben podatkovni tip za opis mednarodnih telefonskih številk v skladu z RFC 3966.", + "smw-type-txt": "»$1« je osnovni podatkovni tip za opis nizov poljubne dolžine.", + "smw-type-dat": "»$1« je osnovni podatkovni tip za predstavitev časovnih točk v poenotenem formatu.", + "smw-type-ema": "»$1« je poseben podatkovni tip za predstavitev e-pošte.", + "smw-type-tem": "»$1« je poseben številski podatkovni tip za predstavitev temperature.", + "smw-type-qty": "»$1« je podatkovni tip za opis količin z numerično predstavitvijo in mersko enoto.", + "smw-type-rec": "»$1« je vsebniški podatkovni tip, ki določa seznam vtipkanih lastnosti v stalnem vrstnem redu.", + "smw-type-extra-tem": "Shema pretvorbe vključuje podprte enote, kot so Kelvin, Celzij, Fahrenheit in Rankine.", + "smw-type-tab-properties": "Lastnosti", + "smw-type-tab-types": "Tipi", + "smw-type-tab-type-ids": "ID-ji tipov", + "smw-type-tab-errors": "Napake", + "smw-type-primitive": "Osnovni", + "smw-type-contextual": "Kontekstualni", + "smw-type-compound": "Sestavljeni", + "smw-type-container": "Vsebniški", + "smw-type-no-group": "Nerazvrščeni", + "smw-specials-bytype-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Type_$1", + "smw-special-pageproperty-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Special:PageProperty", + "smw-special-pageproperty-description": "Ta stran vsebuje brskalni vmesnik za pridobitev vseh vrednosti lastnosti in dane strani. Drugi razpoložljivi iskalni vmesniki vključujejo [[Special:SearchByProperty|iskanje lastnosti]] in [[Special:Ask|gradilnik poizvedb Semantično iskanje]].", + "smw-property-predefined-errc": "»$1« je vnaprej določena lastnost, ki jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki] in predstavlja napake, ki so se pojavile v povezavi z neustreznimi označitvami vrednosti ali obdelavo vnosa.", + "smw-property-predefined-long-errc": "Napake se zbirajo v [https://www.semantic-mediawiki.org/wiki/Help:vsebnik vsebniku], ki lahko vključuje sklic na lastnost, ki je povzročila neskladje.", + "smw-property-predefined-errt": "»$1« je vnaprej določena lastnost, ki vsebuje besedilni opis napake in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-subobject-parser-invalid-naming-scheme": "Uporabniško določeni podobjekt je vseboval neveljavno shemo poimenovanja. Zapis s piko ($1), uporabljen v prvih petih znakih, je pridržan za razširitve. Nastavite lahko [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier poimenovani identifikator].", + "smw-datavalue-record-invalid-property-declaration": "Definicija zapisa vsebuje lastnost »$1«, ki je sama deklarirana kot vrsta zapisa, kar ni dovoljeno.", + "smw-property-predefined-mdat": "»$1« je vnaprej določena lastnost, ki ustreza datumu zadnje spremembe strani in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-cdat": "»$1« je vnaprej določena lastnost, ki ustreza datumu prve redakcije strani in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-newp": "»$1« je vnaprej določena lastnost, ki označuje, ali je stran nova ali ne in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-ledt": "»$1« je vnaprej določena lastnost, ki vsebuje ime strani uporabnika, ki je ustvaril zadnjo redakcijo, in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-mime": "»$1« je vnaprej določena lastnost, ki opisuje tip MIME naložene datoteke in jo zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-media": "»$1« je vnaprej določena lastnost, ki opisuje tip predstavnosti naložene datoteke in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-askfo": "»$1« je vnaprej določena lastnost, ki vsebuje ime oblike zadetkov v poizvedbi in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-askst": "»$1« je vnaprej določena lastnost, ki opisuje pogoje poizvedbe kot niz in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-askdu": "»$1« je vnaprej določena lastnost, ki vsebuje časovno vrednost (v sekundah), ki je bila potrebna za dokončanje izvajanja poizvedbe in jo zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-asksc": "\" $1 \" je vnaprej določena lastnost, ki jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki] in identificira alternativne (npr. oddaljene, združene) vire poizvedb.", + "smw-property-predefined-askco": "» $1 « je vnaprej določena lastnost, ki jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki] za opis stanja poizvedbe ali njenih komponent.", + "smw-property-predefined-long-askco": "Dodeljena številka ali številke predstavljajo interno kodificirano stanje, ki je razloženo na [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler strani pomoči].", + "smw-property-predefined-prec": "»$1« je vnaprej določena lastnost, ki opisuje [https://www.semantic-mediawiki.org/wiki/Help:Display_precision natančnost prikaza] (v decimalnih števkah) za številske podatkovne tipe.", + "smw-property-predefined-attch-link": "»$1« je vnaprej določena lastnost, ki zbira število pogojev, uporabljenih v poizvedbi, in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-inst": "»$1« je vnaprej določena notranja lastnost za shranjevanje informacij o kategorijah neodvisno od Mediawikija in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-unit": "»$1« je deklarativna vnaprej določena lastnost za definiranje enot prikaza številskih tipskih lastnosti in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-unit": "Seznam, ločen z vejicami, omogoča opis enot ali formatov, ki bodo uporabljeni za prikaz.", + "smw-property-predefined-conv": "»$1« je deklarativna vnaprej določena lastnost za definiranje pretvorbenega faktorja za posamezno enoto fizikalne količine in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-serv": "»$1« je deklarativna vnaprej določena lastnost za dodajanje povezav do storitev lastnostim, ki jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-redi": "»$1« je notranja vnaprej določena lastnost za zapisovanje preusmeritev in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-subp": "»$1« je deklarativna vnaprej določena lastnost, ki določa, da je lastnost [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of podlastnost] druge in jo omogoča [https://www.semantic- mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-subc": "»$1« je vnaprej določena lastnost za opredelitev, da je kategorija [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of podkategorija druge] in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-conc": "»$1« je notranja vnaprej določena lastnost za opredelitev povezanega koncepta in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-err-type": "»$1« je vnaprej določena lastnost za identifikacijo skupine ali razreda [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors napak pri obdelavi] in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-skey": "»$1« je notranja vnaprej določena lastnost za razvrščanje sklicev in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-pplb": "»$1« je deklarativna vnaprej določena lastnost za določitev [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label prefererenčne oznake lastnosti] in jo omogoča [https://www.semantic- mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-chgpro": "»$1« je vnaprej določena lastnost za shranjevanje informacij o [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation širjenju sprememb] in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-schema-link": " in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-format-schema": " in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-profile-schema": " in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-trans": " in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-trans-source": " in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-trans-group": " in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-cont-len": "»$1« je vnaprej določena lastnost za shranjevanje informacij o dolžini in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-cont-len": "Uporablja se v povezavi z [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (in [https://www.semantic-mediawiki.org/Attachment_processor obdelovalnikom priponk]) za zbiranje in shranjevanje informacij o dolžini, pridobljenih iz obdelovane datoteke (če je predložena).", + "smw-property-predefined-cont-lang": "»$1« je vnaprej določena lastnost za shranjevanje informacij o dolžini in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-cont-lang": "Uporablja se v povezavi z [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (in [https://www.semantic-mediawiki.org/Attachment_processor obdelovalnikom priponk]) za zbiranje in shranjevanje informacij o jeziku, pridobljenih iz obdelovane datoteke (če je predložena).", + "smw-property-predefined-cont-title": "»$1« je vnaprej določena lastnost za shranjevanje informacij o naslovih, ki jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-cont-title": "Uporablja se v povezavi z [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (in [https://www.semantic-mediawiki.org/Attachment_processor obdelovalnikom priponk]) za zbiranje in shranjevanje informacij o naslovih, pridobljenih iz obdelovane datoteke (če je predložena).", + "smw-property-predefined-cont-author": "»$1« je vnaprej določena lastnost za shranjevanje informacij o avtorjih, ki jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-cont-author": "Uporablja se v povezavi z [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (in [https://www.semantic-mediawiki.org/Attachment_processor obdelovalnikom priponk]) za zbiranje in shranjevanje informacij o avtorjih, pridobljenih iz obdelovane datoteke (če je predložena).", + "smw-property-predefined-cont-date": "»$1« je vnaprej določena lastnost za shranjevanje informacij o datumih, ki jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-cont-date": "Uporablja se v povezavi z [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (in [https://www.semantic-mediawiki.org/Attachment_processor obdelovalnikom priponk]) za zbiranje in shranjevanje informacij o datumih, pridobljenih iz obdelovane datoteke (če je predložena).", + "smw-property-predefined-cont-type": "»$1« je vnaprej določena lastnost za shranjevanje informacij o vrsti datoteke, ki jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-cont-type": "Uporablja se v povezavi z [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (in [https://www.semantic-mediawiki.org/Attachment_processor obdelovalnikom priponk]) za zbiranje in shranjevanje informacij o vrsti obdelovane datoteke (če je predložena).", + "smw-property-predefined-cont-keyw": "»$1« je vnaprej določena lastnost za navajanje ključnih besed, ki jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-cont-keyw": "Uporablja se v povezavi z [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (in [https://www.semantic-mediawiki.org/Attachment_processor obdelovalnikom priponk]) za zbiranje in shranjevanje informacij o ključnih besedah, pridobljenih iz obdelovane datoteke (če je predložena).", + "smw-property-predefined-file-attch": "»$1« je vnaprej določena lastnost za shranjevanje informacij o vsebniku, ki jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-file-attch": "Uporablja se v povezavi z [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (in [https://www.semantic-mediawiki.org/Attachment_processor obdelovalnikom priponk]) za zbiranje vseh vsebinsko specifičnih informacij, ki jih je mogoče pridobiti iz obdelovane datoteke (če je navedena).", + "smw-types-extra-geo-not-available": "[https://www.semantic-mediawiki.org/wiki/Extension:Maps Razširitev »Maps«] ni bila zaznana, zato je delovanje »$1« omejeno.", + "smw-datavalue-monolingual-dataitem-missing": "Manjka pričakovana postavka za izdelavo enojezične sestavljene vrednosti.", + "smw-datavalue-monolingual-lcode-parenthesis": "($1)", + "smw-datavalue-languagecode-missing": "Za označitev »$1« razčlenjevalnik ni mogel določiti oznake jezika (tj. »foo@en«).", + "smw-datavalue-languagecode-invalid": "»$1« ni bilo prepoznano kot podprta oznaka jezika.", + "smw-property-predefined-lcode": "»$1« je vnaprej določena lastnost za predstavljanje oznake jezika v obliki BCP47, ki jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-type-mlt-rec": "»$1« je podatkovni tip [https://www.semantic-mediawiki.org/wiki/Help:Container vsebnika], ki besedilno vrednost povezuje z določeno [[Property:Language code|oznako jezika]].", + "smw-types-extra-mlt-lcode": "Podatkovni tip {{PLURAL:$2|zahteva|ne zahteva}} oznake jezika (tj. {{PLURAL:$2|označitev vrednosti brez oznake jezika ni sprejeta|označitev vrednosti brez oznake jezika je sprejeta}}).", + "smw-property-predefined-text": "»$1« je vnaprej določena lastnost, ki opisuje tip MIME naložene datoteke in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-pdesc": "»$1« je vnaprej določena lastnost, ki opisuje lastnost v kontekstu jezika in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-list": "»$1« je vnaprej določena lastnost za opredelitev seznama lastnosti, ki se uporablja z lastnostjo tipa [[Special:Types/Record|record]] lastnosti in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] Čas uporabe razčlenjevalnika za znotrajvrstične anotacije", + "smw-limitreport-intext-postproctime": "[SMW] čas naknadne obdelave", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|sekunda|sekundi|sekunde|sekund}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|sekunda|sekundi|sekunde|sekund}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Čas posodabljanja podatkovne zbirke (ob osvežitvi strani)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|sekunda|sekundi|sekunde|sekund}}", + "smw_allows_pattern": "Ta stran naj bi vsebovala seznam sklicev (ki jim sledijo [https://en.wikipedia.org/wiki/Regular_expression regularni izrazi]), ki bodo na voljo z lastnostjo [[Property:Allows pattern|Allows pattern]]. Za urejanje te strani je potrebna pravica smw-patternedit.", + "smw-datavalue-allows-pattern-mismatch": "»$1« je regularni izraz »$2« razvrstil kot neveljavno.", + "smw-datavalue-allows-pattern-reference-unknown": "Sklica na vzorec »$1« ni bilo mogoče povezati z vnosom v [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "Sklica seznama »$1« ni bilo mogoče povezati s stranjo [[MediaWiki:Smw allows list $1]].", + "smw-datavalue-allows-value-list-missing-marker": "V vsebini seznama »$1« manjkajo vnosi z oznako *.", + "smw-datavalue-feature-not-supported": "Možnost »$1« v tem vikiju ni podprta ali je bila onemogočena.", + "smw-property-predefined-pvap": "»$1« je vnaprej določena lastnost za določitev [[MediaWiki:Smw allows pattern|sklica na vzorec]], kar omogoča uporabo iskanja z [https://en.wikipedia.org/wiki/Regular_expression regularnimi izrazi] in jo zagotavlja [https: //www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-dtitle": "»$1« je vnaprej določena lastnost, ki lahko entiteti dodeli posamezen naslov za prikaz in jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-pvuc": "»$1« je vnaprej določena lastnost, ki jo omogoča [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki] za omejitev dodelitve vrednosti vsakemu primerku tako, da je ta edinstven (ali največ eden).", + "smw-property-predefined-long-pvuc": "Edinstvenost se vzpostavi, ko dve vrednosti nista enaki v svoji literalni predstavitvi in vsaka kršitev te omejitve bo kategorizirana kot napaka.", + "smw-datavalue-constraint-uniqueness-violation": "Lastnost »$1« dovoljuje samo edinstvene dodelitve vrednosti, vrednost ''$2'' pa je že uporabljena kot označitev na strani »$3«.", + "smw-datavalue-constraint-uniqueness-violation-isknown": "Lastnost »$1« dovoljuje samo edinstvene označitve vrednosti, ''$2'' pa že vsebuje dodeljeno vrednost. »$3« krši omejitev edinstvenosti.", + "smw-datavalue-constraint-violation-non-negative-integer": "Lastnost »$1« ima omejitev »nenegativno celo število«, vrednost ''$2'' pa krši to zahtevo.", + "smw-datavalue-constraint-violation-must-exists": "Lastnost »$1« ima omejitev must_exists, vrednost ''$2'' pa krši to zahtevo.", + "smw-datavalue-constraint-violation-single-value": "Lastnost »[[Property:$1|$1]]« ima omejitev single_value, vrednost »$2« pa krši to zahtevo.", + "smw-constraint-violation-uniqueness": "Lastnosti »[[Property:$1|$1]]« je dodeljena omejitev unique_value_constraint, ki dovoljuje samo edinstvene dodelitve vrednosti, dodelitev vrednosti ''$2'' pa je bila že najdena v subjektu »$3«.", + "smw-constraint-violation-uniqueness-isknown": "Lastnosti »[[Property:$1|$1]]« je dodeljena omejitev unique_value_constraint, zato so dovoljene samo edinstvene dodelitve vrednosti. ''$2'' že vsebuje dodeljeno vrednost z »$3«, s čimer krši omejitev edinstvenosti za trenutni subjekt.", + "smw-constraint-violation-non-negative-integer": "Lastnosti »[[Property:$1|$1]]« je dodeljena omejitev non_negative_integer, označitev vrednosti ''$2'' pa krši to omejitveno zahtevo.", + "smw-constraint-violation-must-exists": "Lastnosti »[[Property:$1|$1]]« je dodeljena omejitev must_exists, označitev vrednosti ''$2''pa krši to omejitveno zahtevo.", + "smw-constraint-violation-single-value": "Lastnosti »[[Property:$1|$1]]« je dodeljena omejitev single_value, označitev vrednosti »$2« pa krši to omejitveno zahtevo.", + "smw-constraint-violation-class-shape-constraint-missing-property": "Kategoriji »[[:$1]]« je dodeljena omejitev shape_constraint s ključem property, vendar zahtevana lastnost »$2« manjka.", + "smw-constraint-violation-class-shape-constraint-wrong-type": "Kategoriji »[[:$1]]« je dodeljena omejitev shape_constraint s ključem property_type, vendar se lastnost »$2« ne ujema s tipom »$3«.", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "Kategoriji [[:$1]] je dodeljena omejitev shape_constraint s ključem max_cardinality, vendar se lastnost »$2« ne ujema s kardinalnostjo »$3«.", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "Kategoriji »[[:$1]]« je dodeljena omejitev shape_constraint s ključem min_length, vendar lastnost »$2« ne izpolnjuje zahteve dolžine »$3«.", + "smw-constraint-violation-class-mandatory-properties-constraint": "Kategoriji »[[:$1]]« je dodeljena omejitev mandatory_properties, ki zahteva naslednje obvezne lastnosti: $2", + "smw-constraint-violation-allowed-namespace-no-match": "Lastnosti »[[Property:$1|$1]]« je dodeljena «mejitev allowed_namespaces in »$2« krši zahtevo glede imenskega prostora; dovoljeni so samo naslednji imenski prostori: »$3«.", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "Omejitev allowed_namespaces zahteva tip strani.", + "smw-constraint-schema-category-invalid-type": "Označena shema »$1« ni veljavna za kategorijo; potreben je tip »$2«.", + "smw-constraint-schema-property-invalid-type": "Označena shema »$1« ni veljavna za lastnost; potreben je tip »$2«.", + "smw-constraint-error-allows-value-list": "»$1« ni na seznamu ($2) [[Property:Allows value|dovoljenih vrednosti]] za lastnost »$3«.", + "smw-constraint-error-allows-value-range": "»$1« ni znotraj tega obsega »$2«, določenega z omejitvijo [[Property:Allows value|dovoljenih vrednosti]] za lastnost »$3«.", + "smw-property-predefined-boo": "»$1« je [[Special:Types/Boolean|tip]] in vnaprej določena lastnost, ki jo za predstavitev Boolovih vrednosti zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-num": "»$1« je [[Special:Types/Number|tip]] in vnaprej določena lastnost, ki jo za predstavitev številskih vrednosti zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-dat": "»$1« je [[Special:Types/Date|tip]] in vnaprej določena lastnost, ki jo za predstavitev datumskih vrednosti zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-uri": "»$1« je [[Special:Types/Boolean|tip]] in vnaprej določena lastnost, ki jo za predstavitev logičnih vrednosti zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-qty": "»$1« je [[Special:Types/Number|tip]] in vnaprej določena lastnost, ki jo za predstavitev številskih vrednosti zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-datavalue-time-invalid-offset-zone-usage": "»$1« vsebuje odmik in identifikator cone, ki ni podprt.", + "smw-datavalue-time-invalid-values": "Vrednost »$1« vsebuje nerazložljive informacije v obliki »$2«.", + "smw-datavalue-time-invalid-date-components-common": "»$1« vsebuje nekaj nerazložljivih informacij.", + "smw-datavalue-time-invalid-date-components-dash": "»$1« vsebuje zunanji vezaj ali drug znak, ki ni veljaven za razlago datuma.", + "smw-datavalue-time-invalid-date-components-empty": "»$1« vsebuje nekaj praznih komponent.", + "smw-datavalue-time-invalid-date-components-three": "»$1« vsebuje več kot tri komponente, potrebne za razlago datuma.", + "smw-datavalue-time-invalid-date-components-sequence": "»$1« vsebuje zaporedje, ki ga ni bilo mogoče interpretirati z razpoložljivo matriko ujemanja za datumske komponente.", + "smw-datavalue-time-invalid-ampm": "»$1« vsebuje »$2« kot element ure, ki ni veljaven za 12-urni format zapis", + "smw-datavalue-time-invalid-jd": "Vhodne vrednosti »$1« ni mogoče razložiti kot veljavno številko JD (julijanski dan), pri čemer je sporočeno »$2«.", + "smw-datavalue-time-invalid-prehistoric": "Ni mogoče interpretirati prazgodovinske vhodne vrednosti »$1«. Na primer določitev več kot določenega števila let v koledarskem modelu lahko v prazgodovinskem kontekstu vrne nepričakovane rezultate.", + "smw-datavalue-time-invalid": "Vhodne vrednosti »$1« ni mogoče razložiti kot veljavno komponento datuma ali časa, pri čemer je sporočeno »$2«.", + "smw-datavalue-external-formatter-uri-missing-placeholder": "URI-ju oblikovalnika manjka nadomestna spremenljivka ''$1''.", + "smw-datavalue-external-formatter-invalid-uri": "»$1« je neveljaven URL.", + "smw-datavalue-external-identifier-formatter-missing": "Lastnosti manjka dodelitev [[Property:External formatter uri|»URI-ja zunanjega oblikovalnika«]].", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "Zunanji identifikator »$1« pričakuje zamenjavo več polj, vendar trenutni vrednosti »$2« manjka vsaj en parameter vrednosti, ki ustreza zahtevi.", + "smw-datavalue-keyword-maximum-length": "Ključna beseda je presegla največjo dolžino $1 {{PLURAL:$1|znak|znaka|znake|znakov}}.", + "smw-property-predefined-eid": "»$1« je [[Special:Types/Date|tip]] in vnaprej določena lastnost, ki jo za predstavitev zunanjih identifikatorjev zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-peid": "»$1« je vnaprej določena lastnost, ki določa zunanji identifikator in jo zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-pefu": "»$1« je vnaprej določena lastnost, ki jo za določitev zunanjega vira z nadomestkom zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-pefu": "URI mora vsebovati nadomestek, ki je prilagojen z vrednostjo [[Special:Types/External identifier|zunanjega identifikatorja]], da se oblikuje veljaven sklic na vir.", + "smw-type-eid": "»$1« je varianta podatkovnega tipa [[Special:Types/Text|Text]] za opis zunanjih virov (na podlagi URI-jev) in zahteva za deklaracijo [[Property:External formatter uri|URI-ja zunanjega oblikovalca]] dodeljene lastnosti.", + "smw-property-predefined-keyw": "»$1« je vnaprej določena lastnost in [[Special:Types/Keyword|tip]] [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantičnega MediaWikija], ki normalizira besedilo in ima omejeno dolžino znakov.", + "smw-type-keyw": "»$1« je različica podatkovnega tipa [[Special:Types/Text|Besedilo]], ki ima omejeno število znakov in normalizirano predstavitev vsebine.", + "smw-datavalue-stripmarker-parse-error": "Podana vrednost »$1« vsebuje [https://en.wikipedia.org/wiki/Help:Strip_markers oznake maskirane vsebine] in je zato ni mogoče zadostno razčleniti.", + "smw-datavalue-parse-error": "Podana vrednost »$1« ni bila razumljena.", + "smw-datavalue-propertylist-invalid-property-key": "Seznam lastnosti »$1« je vseboval neveljaven ključ lastnosti »$2«.", + "smw-datavalue-type-invalid-typeuri": "Tipa »$1« ni bilo mogoče pretvoriti v veljavno predstavitev URI-ja.", + "smw-datavalue-wikipage-missing-fragment-context": "Vhodne vrednosti vikistrani »$1« ni mogoče uporabiti brez kontekstne strani.", + "smw-datavalue-wikipage-invalid-title": "Vhodna vrednost vrste strani »$1« vsebuje neveljavne znake ali je nepopolna in lahko zato med postopkom poizvedbe ali označevanja povzroči nepričakovane rezultate.", + "smw-datavalue-wikipage-property-invalid-title": "Lastnost »$1« z vhodno vrednostjo vrste »$2« vsebuje neveljavne znake ali je nepopolna in lahko zato med postopkom poizvedbe ali označevanja povzroči nepričakovane rezultate.", + "smw-datavalue-wikipage-empty": "Vhodna vrednost vikistrani je prazna (npr. [[SomeProperty::]], [[]]) in je zato ni mogoče uporabiti kot ime ali kot del poizvedbenega pogoja.", + "smw-type-ref-rec": "»$1« je vrsta [https://www.semantic-mediawiki.org/wiki/Container vsebnika], ki omogoča beleženje dodatnih informacij (npr. podatkov o poreklu) o dodelitvi vrednosti.", + "smw-datavalue-reference-outputformat": "$1: $2", + "smw-datavalue-reference-invalid-fields-definition": "Tip [[Special:Types/Reference|Sklic]] pričakuje, da bo seznam lastnosti deklariran z lastnostjo [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields].", + "smw-parser-invalid-json-format": "Razčlenjevalnik JSON je vrnil napako »$1«.", + "smw-property-preferred-title-format": "$1 ($2)", + "smw-property-preferred-label-language-combination-exists": "»$1« ni mogoče uporabiti kot prednostno oznako, ker je jezik »$2« že dodeljen oznaki »$3«.", + "smw-clipboard-copy-link": "Kopiraj povezavo v odložišče", + "smw-property-userdefined-fixedtable": "»$1« je bil konfiguriran kot [https://www.semantic-mediawiki.org/wiki/Fixed_properties fiksna lastnost] in vsaka sprememba njegove [https://www.semantic-mediawiki.org/wiki/Type_declaration deklaracije tipa] zahteva, da zaženete setupStore.php ali dokončate posebno opravilo [[Special:SemanticMediaWiki|»namestitev podatkovne zbirke in nadgradnja«]].", + "smw-data-lookup": "Pridobivanje podatkov ...", + "smw-data-lookup-with-wait": "Zahtevek se obdeluje, kar lahko vzame nekaj trenutkov.", + "smw-no-data-available": "Ni razpoložljivih podatkov.", + "smw-property-req-violation-missing-fields": "Lastnosti »$1« manjka zahtevana izjava [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] za ta tip »$2«.", + "smw-property-req-violation-multiple-fields": "Lastnost »$1« vsebuje več (torej konkurenčnih) izjav [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields]; za to vrsto »$2« se pričakuje samo ena.", + "smw-property-req-violation-missing-formatter-uri": "Lastnosti »$1« manjkajo podrobnosti deklaracije za označeno vrsto, ker ni uspela opredeliti lastnosti URI zunanjega oblikovalnika.", + "smw-property-req-violation-predefined-type": "Lastnost »$1« kot vnaprej določena lastnost vsebuje deklaracijo tipa »$2«, ki ni združljiva s privzetim tipom te lastnosti.", + "smw-property-req-violation-import-type": "Zaznana je bila deklaracija tipa, ki ni združljiva s predhodno določenim tipom uvoženega besednjaka »$1«. Na splošno ni treba deklarirati tipa, ker se informacije pridobijo iz definicije uvoza.", + "smw-property-req-violation-change-propagation-locked-error": "Lastnost »$1« je bila spremenjena in zahteva ponovno oceno dodeljenih entitet z uporabo procesa [https://www.semantic-mediawiki.org/wiki/Change_propagation razširjanja spremembe]. V tem času je do končanega posodabljanja osnovnega opravila stran lastnosti zaklenjena, da se preprečijo vmesne prekinitve ali navzkrižna opravila. Proces lahko nekaj časa traja, preden je stran mogoče odkleniti, saj je odvisen od velikosti in pogostosti razporejevalnika [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue čakalne vrste opravil].", + "smw-property-req-violation-change-propagation-locked-warning": "Lastnost »$1« je bila spremenjena in zahteva ponovno oceno dodeljenih entitet z uporabo procesa [https://www.semantic-mediawiki.org/wiki/Change_propagation razširjanja spremembe]. Posodabljanje lahko nekaj časa traja, saj je odvisno od velikosti in frekvence razporejevalnika [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue čakalne vrste opravil]. Priporočljivo je, da do dokončanja procesa spreminjanje lastnosti odložite, da se izognete vmesnim prekinitvam ali navzkrižnim opravilom.", + "smw-property-req-violation-change-propagation-pending": "Na obdelavo čakajo [https://www.semantic-mediawiki.org/wiki/Change_propagation posodobitve razširjanja sprememb] (ocenjeno $1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|opravilo|opravili|opravila|opravil}}]), zato je priporočljivo s spremembami lastnosti počakati, dokler se proces ne zaključi, da preprečite vmesne prekinitve ali protislovne specifikacije.", + "smw-property-req-violation-missing-maps-extension": "Semantični MediaWiki ni mogel zaznati razširitve [https://www.semantic-mediawiki.org/wiki/Extension:Maps »Maps«], ki je osnovni pogoj, zato je funkcionalnost te lastnosti omejena (tj. ni mogoče shranjevati ali obdelovati geografskih podatkov).", + "smw-property-req-violation-type": "Lastnost vsebuje konkurenčne specifikacije tipa, kar lahko povzroči neveljavne označitve vrednosti, zato se pričakuje, da uporabnik dodeli samo en ustrezni tip.", + "smw-property-req-error-list": "Ta lastnost vsebuje naslednje napake ali opozorila:", + "smw-property-req-violation-parent-type": "Lastnost »$1« in dodeljena nadrejena lastnost »$2« imata različno označitev tipa.", + "smw-property-req-violation-forced-removal-annotated-type": "Omogočena je bila uveljavitev [https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance obveznega dedovanja nadrejenega tipa]; tip označitve za lastnost »$1« se ne ujema z vrsto nadrejene lastnosti »$2« in je bil spremenjen, da odraža to zahtevo. Priporočljivo je prilagoditi definicijo tipa na strani, da se za to lastnost odstranita sporočilo o napaki in obvezna uveljavitev.", + "smw-change-propagation-protection": "Ta stran je zaklenjena, da se prepreči nenamerno spreminjanje podatkov, medtem ko se izvaja posodobitev z [https://www.semantic-mediawiki.org/wiki/Change_propagation razširjanjem spremembe]. Proces lahko nekaj časa traja, preden se stran odklene, saj je odvisen od velikosti in pogostosti razporejevalnika [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue čakalne vrste opravil].", + "smw-category-change-propagation-locked-error": "Kategorija »$1« je bila spremenjena in zahteva ponovno oceno dodeljenih entitet z uporabo procesa [https://www.semantic-mediawiki.org/wiki/Change_propagation razširjanja spremembe]. V tem času je do dokončanja osnovnega opravila posodabljanja stran kategorije zaklenjena, da se preprečijo vmesne prekinitve ali navzkrižna opravila. Proces lahko nekaj časa traja, preden je stran mogoče odkleniti, saj je odvisen od velikosti in frekvence razporejevalnika [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue čakalne vrste opravil].", + "smw-category-change-propagation-locked-warning": "Kategorija »$1« je bila spremenjena in zahteva ponovno oceno dodeljenih entitet z uporabo procesa [https://www.semantic-mediawiki.org/wiki/Change_propagation razširjanja spremembe]. Posodabljanje lahko nekaj časa traja, saj je odvisno od velikosti in frekvence razporejevalnika [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue čakalne vrste opravil]. Priporočljivo je, da do dokončanja procesa spreminjanje kategorije odložite, da se izognete vmesnim prekinitvam ali navzkrižnim opravilom.", + "smw-category-change-propagation-pending": "Na obdelavo čakajo [https://www.semantic-mediawiki.org/wiki/Change_propagation posodobitve razširjanja sprememb] (ocenjeno $1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|opravilo|opravili|opravila|opravil}}]), zato je priporočljivo s spremembami lastnosti počakati, dokler se proces ne zaključi, da preprečite vmesne prekinitve ali protislovne specifikacije.", + "smw-category-invalid-value-assignment": "»$1« ni prepoznano kot veljavna označitev kategorije ali vrednosti.", + "protect-level-smw-pageedit": "Dovoli samo uporabnikom z dovoljenjem za urejanje strani (Semantični MediaWiki)", + "smw-create-protection": "Ustvarjanje lastnosti »$1« je omejeno na uporabnike z ustrezno pravico »$2« (ali [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups skupino uporabnikov]), ko je omogočen [https://www .semantic-mediawiki.org/wiki/Help:Authority_mode pooblastitveni način].", + "smw-create-protection-exists": "Spremembe lastnosti »$1« so omejene na uporabnike z ustrezno pravico »$2« (ali [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups skupino uporabnikov]), ko je omogočen [https://www .semantic-mediawiki.org/wiki/Help:Authority_mode pooblastitveni način].", + "smw-edit-protection": "Ta stran je [[Property:Is edit protected|zaščitena]], da se prepreči nenamerno spreminjanje podatkov in jo lahko urejajo samo uporabniki z ustrezno urejevalsko pravico (»$1 «) ali [https://www.semantic-mediawiki.org/ wiki/Pomoč:Uporabniške_pravice_in_uporabniške_skupine uporabniško skupino].", + "smw-edit-protection-disabled": "Zaščita urejanja je bila onemogočena, zato »$1« ni mogoče uporabiti za zaščito strani entitete pred nepooblaščenim urejanjem.", + "smw-edit-protection-auto-update": "Semantični MediaWiki je posodobil status zaščite v skladu z lastnostjo »Je zaščiteno pred urejanjem«.", + "smw-edit-protection-enabled": "Zaščiteno pred urejanjem (Semantični MediaWiki)", + "smw-patternedit-protection": "Ta stran je zaščitena in jo lahko urejajo samo uporabniki z ustreznim [https://www.semantic-mediawiki.org/wiki/Help:Permissions dovoljenjem] smw-patternedit.", + "smw-property-predefined-edip": "»$1« je vnaprej določena lastnost, ki jo zagotavlje [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki] za označitev, ali je stran zaščitena za urejanje ali ne.", + "smw-property-predefined-long-edip": "Čeprav je vsak uporabnik kvalificiran za dodajanje te lastnosti subjektu, lahko ureja ali prekliče zaščito entitete, potem ko je dodana, samo uporabnik z namenskim dovoljenjem.", + "smw-query-reference-link-label": "Sklic poizvedbe", + "smw-format-datatable-emptytable": "V tabeli ni razpoložljivih podatkov", + "smw-format-datatable-info": "Prikaz vnosov od _START_ do _END_ od _TOTAL_", + "smw-format-datatable-infoempty": "Prikaz od 0 do 0 od 0 vnosov", + "smw-format-datatable-infofiltered": "(filtrirano iz _MAX_ skupnih vnosov)", + "smw-format-datatable-infothousands": ",", + "smw-format-datatable-lengthmenu": "Prikaz _MENU_ vnosov", + "smw-format-datatable-loadingrecords": "Nalaganje ...", + "smw-format-datatable-processing": "Obdelovanje ...", + "smw-format-datatable-search": "Iskanje:", + "smw-format-datatable-zerorecords": "Ni najdenih ustrezajočih zapisov", + "smw-format-datatable-first": "Prvi", + "smw-format-datatable-last": "Zadnji", + "smw-format-datatable-next": "Naprej", + "smw-format-datatable-previous": "Prejšnji", + "smw-format-datatable-sortascending": ": aktivirajte za razvrščanje stolpcev naraščajoče", + "smw-format-datatable-sortdescending": ": aktivirajte za razvrščanje stolpcev padajoče", + "smw-format-datatable-toolbar-export": "Izvoz", + "smw-format-list-other-fields-open": " (", + "smw-format-list-other-fields-close": ")", + "smw-category-invalid-redirect-target": "Kategorija »$1« vsebuje neveljaven cilj preusmeritve v nekategorijski imenski prostor.", + "smw-parser-function-expensive-execution-limit": "Funkcija razčlenjevalnika je dosegla omejitev za drage izvedbe (glejte konfiguracijski parameter [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "Semantični MediaWiki bo osvežil trenutno stran, pri čemer bo potrebna naknadna obdelava podatkov.", + "apihelp-smwinfo-summary": "Modul API za pridobivanje informacij o statističnih podatkih Semantičnega MediaWikija in drugih metainformacijah.", + "apihelp-ask-summary": "Modul API za poizvedovanje po Semantičnem MediaWikiju z uporabo jezika »ask«.", + "apihelp-askargs-summary": "Modul API za poizvedovanje po Semantičnem MediaWikiju z uporabo jezika »ask« kot seznama pogojev, izpisov in parametrov.", + "apihelp-browsebyproperty-summary": "Modul API za pridobivanje informacij o lastnostih ali seznamu lastnosti.", + "apihelp-browsebysubject-summary": "Modul API za pridobivanje informacij o temi.", + "apihelp-smwtask-summary": "Modul API za izvajanje opravil, povezanih s Semantićnim MediaWikijem (samo za interno uporabo, ne za javno uporabo).", + "apihelp-smwbrowse-summary": "Modul API za podporo dejavnosti brskanja za različne vrste entitet v Semantičnem MediaWikiju.", + "apihelp-ask-parameter-api-version": "Oblikovanje izhoda:\n;2:Vzvratno združljiva oblika z uporabo {} za seznam zadetkov.\n;3:Poskusna oblika z uporabo [] za seznam zadetkov.", + "apihelp-smwtask-param-task": "Določa vrsto opravila", + "apihelp-smwtask-param-params": "Parametri, kodirani z JSON, ki ustrezajo zahtevi za izbrano vrsto opravila", + "smw-apihelp-smwtask-example-update": "Zgled izvajanja opravila posodabljanja za določen predmet:", + "smw-api-invalid-parameters": "Neveljavni parametri, »$1«", + "smw-parser-recursion-level-exceeded": "Med postopkom razčlenjevanja je bila presežena raven $1 rekurzij. Predlagamo, da preverite strukturo predloge ali po potrebi prilagodite konfiguracijski parameter $maxRecursionDepth.", + "smw-property-page-list-count": "Prikazujem $1 {{PLURAL:$1|stran|strani}}, ki uporabljajo to lastnost.", + "smw-property-page-list-search-count": "Prikazujem $1 {{PLURAL:$1|stran|strani}} z uporabo te lastnosti z ujemanjem vrednosti »$2«.", + "smw-property-page-filter-note": "[https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter Iskalni filter] omogoča vključitev [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions poizvedbenih izrazov], kot sta ~ ali !. Izbrani [https://www.semantic-mediawiki.org/wiki/Query_engine poizvedbeni mehanizem] lahko podpira tudi ujemanje brez razlikovanja med velikimi in malimi črkami ali druge kratke izraze, kot je:\n\n* in: zadetek mora vsebovati izraz, npr. »in:Foo«\n\n* not: zadetek ne sme vsebovati izraza, npr. »not:Bar«", + "smw-property-reserved-category": "Kategorija", + "smw-category": "Kategorija", + "smw-datavalue-uri-invalid-scheme": "»$1« ni navedeno kot veljavna shema URI.", + "smw-datavalue-uri-invalid-authority-path-component": "Ugotovljeno je bilo, da »$1« vsebuje neveljavno pooblastilo ali komponento poti »$2«.", + "smw-browse-property-group-title": "Skupina lastnosti", + "smw-browse-property-group-label": "Oznaka skupine lastnosti", + "smw-browse-property-group-description": "Opis skupine lastnosti", + "smw-property-predefined-ppgr": "»$1« je vnaprej določena lastnost, ki identificira entitete (predvsem kategorije), ki se uporabljajo kot primerki združevanja za lastnosti in jo zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-filter": "Filter", + "smw-section-expand": "Razširi razdelek", + "smw-section-collapse": "Strni razdelek", + "smw-ask-format-help-link": "Fomat [https://www.semantic-mediawiki.org/wiki/Help: $1 _format $1]", + "smw-help": "Pomoč", + "smw-cheat-sheet": "Plonkec", + "smw-personal-jobqueue-watchlist": "Nadzorni seznam čakalne vrste opravil", + "smw-personal-jobqueue-watchlist-explain": "Številke označujejo oceno vnosov v čakalni vrsti opravil, ki čakajo na izvedbo.", + "smw-property-predefined-label-skey": "Razvrstilni ključ", + "smw-processing": "Obdelovanje ...", + "smw-loading": "Nalaganje ...", + "smw-fetching": "Pridobivanje ...", + "smw-preparing": "Pripravljanje ...", + "smw-expand": "Razširi", + "smw-collapse": "Strni", + "smw-copy": "Kopiraj", + "smw-copy-clipboard-title": "Kopira vsebino v odložišče", + "smw-jsonview-expand-title": "Razširi pogled JSON", + "smw-jsonview-collapse-title": "Strne pogled JSON", + "smw-jsonview-search-label": "Išči:", + "smw-redirect-target-unresolvable": "Cilj je nerazrešljiv zaradi razloga »$1«", + "smw-types-title": "Tip: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "Spreminjanje vsebinskega modela [https://www.semantic-mediawiki.org/wiki/Help:Schema strani sheme] ni dovoljeno.", + "smw-schema-namespace-edit-protection": "Ta stran je zaščitena in jo lahko urejajo samo uporabniki z ustreznim [https://www.semantic-mediawiki.org/wiki/Help:Permissions dovoljenjem] smw-schemaedit.", + "smw-schema-namespace-edit-protection-by-import-performer": "To stran je uvozil navedeni [https://www.semantic-mediawiki.org/wiki/Import_performer izvajalec uvoza]. To pomeni, da je spreminjanje vsebine te strani omejeno samo na navedene uporabnike.", + "smw-schema-error-title": "{{PLURAL:$1|Napaka|Napake}} validacije", + "smw-schema-error-schema": "Shema preverjanja '''$1''' je odkrila naslednje nedoslednosti:", + "smw-schema-error-miscellaneous": "Druga napaka ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "Validator JSON »$1« ni dostopen (ali nameščen) in je razlog, zakaj datoteke »$2« ni mogoče pregledati, kar preprečuje shranjevanje ali spreminjanje trenutne strani.", + "smw-schema-error-validation-file-inaccessible": "Datoteka za preverjanje veljavnosti »$1« je nedostopna.", + "smw-schema-error-violation": "[\"$1\", \"$2\"]", + "smw-schema-error-type-missing": "Vsebini manjka tip, da bi bila prepoznana in uporabna v [https://www.semantic-mediawiki.org/wiki/Help:Schema imenskem prostoru shem].", + "smw-schema-error-type-unknown": "Tip »$1« ni registriran in ga ni mogoče uporabiti za vsebino v imenskem prostoru [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-error-json": "Napaka JSON-a: »$1«", + "smw-schema-error-input": "Preverjanje vnosa je odkrilo naslednje težave, ki jih je treba odpraviti, preden lahko vsebino shranite. Na strani [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling pomoči za sheme] lahko najdete nekaj nasvetov o tem, kako odstraniti nedoslednosti ali odpraviti težave z vnosom sheme.", + "smw-schema-error-input-schema": "Shema preverjanja '''$1''' je odkrila naslednje nedoslednosti, ki jih je treba odpraviti, preden bo mogoče shraniti vsebino. Na strani [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling pomoči za sheme] lahko najdete nekaj nasvetov o tem, kako odpraviti te težave.", + "smw-schema-error-title-prefix": "Ta vrsta sheme zahteva, da se naslov sheme začne s predpono »$1«.", + "smw-schema-validation-error": "Tip »$1« ni registriran in ga ni mogoče uporabiti za vsebino v imenskem prostoru [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-validation-schema-title": "Shema JSON", + "smw-schema-summary-title": "Povzetek", + "smw-schema-title": "Shema", + "smw-schema-usage": "Uporaba", + "smw-schema-type": "Tip sheme", + "smw-schema-type-description": "Opis vrste", + "smw-schema-description": "Opis sheme", + "smw-schema-description-link-format-schema": "Ta tip sheme podpira opredelitev značilnosti za ustvarjanje na kontekst odzivnih povezav v povezavi z dodeljeno lastnostjo [[Property:Formatter schema|sheme oblikovalnika]].", + "smw-schema-description-search-form-schema": "Ta vrsta sheme podpira opredelitev vnosnih obrazcev in lastnosti za profil [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch razširjenega iskanja], pri čemer vsebuje navodila za generiranje vnosnih polj, opredelitev privzetih imenskih prostov ali pripis predponskih izrazov iskalnemu zahtevku.", + "smw-schema-description-property-profile-schema": "Ta tip sheme podpira opredelitev profila za pripis značilnosti dodeljeni lastnosti in njenim označevalnim vrednostim.", + "smw-schema-description-facetedsearch-profile-schema": "Ta tip shem podpira definicijo profilov, ki se uporabljajo kot del okolja [[Special:FacetedSearch|fasetnega iskanja]].", + "smw-schema-description-property-group-schema": "Ta vrsta sheme podpira opredelitev [https://www.semantic-mediawiki.org/wiki/Help:Property_group lastnosti skupin] za pomoč pri strukturiranju [https://www.semantic-mediawiki.org/wiki/Help:Special:Browse brskalnega] vmesnika.", + "smw-schema-description-property-constraint-schema": "To podpira definicijo omejitvenih pravil za primerek lastnosti in vrednosti, ki so mu dodeljene.", + "smw-schema-description-class-constraint-schema": "Ta tip sheme podpira opredelitev omejevalnih pravil za skupinsko instanco (tj. kategorijo).", + "smw-schema-tag": "{{PLURAL:$1|Oznaka|Oznake}}", + "smw-property-predefined-constraint-schema": "»$1« je vnaprej določena lastnost za opredelitev omejitvene sheme, ki jo zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-schema-desc": "»$1« je vnaprej določena lastnost za shranjevanje opisa sheme, ki jo zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-schema-def": "»$1« je vnaprej določena lastnost za shranjevanje vsebine sheme, ki jo zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-schema-tag": "»$1« je vnaprej določena lastnost, ki jo za identifikacijo zbirke shem zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-schema-tag": "Oznaka, ki označuje sheme s podobno vsebino ali značilnostmi.", + "smw-property-predefined-schema-type": "»$1« je vnaprej določena lastnost, ki opisuje tip predstavnosti naložene datoteke, ki jo zagotavlja [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantični MediaWiki].", + "smw-property-predefined-long-schema-type": "Vsak [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type tip] uporablja lastno interpretacijo skladenjskih elementov in aplikacijskih pravil ter ga je mogoče izraziti z [https://www.semantic -mediawiki.org/wiki/Help:Schema#validation validacijsko shemo].", + "smw-ask-title-keyword-type": "Iskanje ključne besede", + "smw-ask-message-keyword-type": "To iskanje se ujema s poogojem $1.", + "smw-remote-source-unavailable": "Ni mogoče vzpostaviti povezave z oddaljenim ciljem »$1«.", + "smw-remote-source-disabled": "Vir '''$1''' je onemogočil podporo za oddaljene zahtevke!", + "smw-remote-source-unmatched-id": "Vir '''$1''' se ne ujema z različico Semantičnega MediaWikija, ki podpira oddaljeni zahtevek.", + "smw-remote-request-note": "Rezultat je pridobljen iz '''$1''' oddaljenega vira in verjetno bo ustvarjena vsebina vsebovala informacije, ki niso na voljo znotraj trenutnega vikija.", + "smw-remote-request-note-cached": "Rezultat je '''predpomnjen''' iz oddaljenega vira '''$1''' in verjetno bo ustvarjena vsebina vsebovala informacije, ki niso na voljo znotraj trenutnega vikija.", + "smw-parameter-missing": "Manjka parameter »$1«.", + "smw-property-tab-usage": "Uporaba", + "smw-property-tab-profile-schema": "Profilna shema", + "smw-property-tab-redirects": "Sopomenke", + "smw-property-tab-subproperties": "Podlastnosti", + "smw-property-tab-errors": "Neustrezne dodelitve", + "smw-property-tab-constraint-schema": "Omejitvena shema", + "smw-property-tab-constraint-schema-title": "Prevedena omejitvena shema", + "smw-property-tab-specification": ".. več", + "smw-concept-tab-list": "Seznam", + "smw-concept-tab-errors": "Napake", + "smw-ask-tab-result": "Rezultat", + "smw-ask-tab-extra": "Dodatno", + "smw-ask-tab-debug": "Razhrošči", + "smw-ask-tab-code": "Koda", + "smw-install-incomplete-tasks-title": "Nedokončana administrativna opravila", + "smw-install-incomplete-intro": "{{PLURAL:$2|1 opravilo je nedokončano|$2 opravili sta nedokončani|$2 opravila so nedokončana|$2 opravil je nedokončanih}} ali [[Special:PendingTaskList|{{PLURAL:$2|čaka|čakata|čakajo|čaka}}]] na dokončanje {{PLURAL:$1|namestitve|nadgradnje}} [https://www.semantic-mediawiki.org Semantičnega MediaWikija]. Dokonča {{PLURAL:$2|ga|ju|jih}} lahko administrator ali uporabnik z ustreznimi pravicami. To je treba storiti pred dodajanjem novih podatkov, da se izognete nedoslednostim.", + "smw-install-incomplete-intro-note": "To sporočilo bo izginilo, ko bodo razrešena vsa ustrezna opravila.", + "smw-pendingtasks-intro-empty": "Nobeno opravilo ni razvrščeno kot čakajoče, nepopolno ali odprto v povezavi s Semantičnim MediaWikijem.", + "smw-pendingtasks-intro": "Ta stran zagotavlja informacije o opravilih, ki so razvrščena kot čakajoča, nepopolna ali odprta v povezavi s Semantičnim MediaWikijem.", + "smw-pendingtasks-setup-no-tasks-intro": "Namestitev (ali nadgradnja) je končana; trenutno ni čakajočih ali odprtih opravil.", + "smw-pendingtasks-tab-setup": "Nastavitev", + "smw-updateentitycollation-incomplete": "Pred kratkim je bila spremenjena nastavitev [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] in zahteva, da se izvede skript [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php], da bodo entitete posodobljene in bodo vsebovale pravilno vrednost razvrstilnega polja.", + "smw-updateentitycountmap-incomplete": "V nedavni izdaji je bilo dodano polje smw_countmap in zahteva, da se izvede skript [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php], da lahko funkcije dostopajo do vsebine tega polja.", + "smw-populatehashfield-incomplete": "Izpolnitev polja smw_hash je bila med nastavitvijo preskočena. Izvesti je treba skript [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php].", + "smw-install-incomplete-populate-hash-field": "Izpolnitev polja smw_hash je bila med nastavitvijo preskočena. Izvesti je treba skript [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php].", + "smw-install-incomplete-elasticstore-indexrebuild": "ElasticStore je bil izbran kot [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore privzeta shramba], vendar razširitev ni mogla najti nobenega zapisa, da je bil izveden skript [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php]; po navodilih zaženite skript.", + "smw-elastic-rebuildelasticindex-run-incomplete": "ElasticStore je bil izbran kot [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore privzeta shramba], vendar razširitev ni mogla najti nobenega zapisa, da je bil izveden skript [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php]; po navodilih zaženite skript.", + "smw-pendingtasks-setup-intro": "{{PLURAL:$1|Namestitev|Nadgradnja}} Semantičnega MediaWikija je naslednja opravila razvrstila kot [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade nepopolna] in naj jih razreši administrator (ali uporabnik z ustreznimi pravicami), preden uporabniki nadaljujejo ustvarjanje ali spreminjanje vsebine.", + "smw-pendingtasks-setup-tasks": "Opravila", + "smw-filter-count": "Število filtrov", + "smw-es-replication-check": "Preverjanje replikacije (Elasticsearch)", + "smw-es-replication-error": "Težava z replikacijo Elasticsearch", + "smw-es-replication-file-ingest-error": "Težava pri indeksiranju datoteke", + "smw-es-replication-maintenance-mode": "Vzdrževanje Elasticsearch", + "smw-es-replication-error-missing-id": "Pri spremljanju replikacije je bilo ugotovljeno, da v zaledju Elasticsearch manjka članek »$1« (ID: $2).", + "smw-es-replication-error-divergent-date": "Pri spremljanju replikacije je bilo ugotovljeno, da datum modifikacije pri članku »$1« (ID: $2) kaže neskladnost.", + "smw-es-replication-error-divergent-date-short": "Za primerjavo so bili uporabljeni naslednji podatki o datumu:", + "smw-es-replication-error-divergent-date-detail": "Referenčni datum spremembe:\n*Elasticsearch: $1 \n*Podatkovna zbirka: $2", + "smw-es-replication-error-divergent-revision": "Pri spremljanju replikacije je bilo ugotovljeno, da povezana redakcija članka »$1« (ID: $2) kaže neskladnost.", + "smw-es-replication-error-divergent-revision-short": "Za primerjavo so bili uporabljeni naslednji podatki o povezani redakciji:", + "smw-es-replication-error-divergent-revision-detail": "Referencirana povezana redakcija:\n*Elasticsearch: $1 \n*Baza podatkov: $2", + "smw-es-replication-error-maintenance-mode": "Replikacija Elasticsearch je trenutno omejena, ker deluje v [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode načinu vzdrževanja]; spremembe entitet in strani niso takoj vidne, zadetki poizvedb pa lahko vsebujejo zastarele informacije.", + "smw-es-replication-error-no-connection": "Nadzor replikacije ne more izvesti nobenega preverjanja, ker ne more vzpostaviti povezave z gručo Elasticsearch.", + "smw-es-replication-error-bad-request-exception": "Obravnavalnik povezave Elasticsearch je izvrgel izjemo slabega zahtevka (»napaka navzkrižja http 400«), ki kaže na vztrajno težavo pri podvajanju in iskalnih zahtevkih.", + "smw-es-replication-error-other-exception": "Obravnavalnik povezav ElasticSearch je izvrgel izjemo »$1«.", + "smw-es-replication-error-suggestions": "Priporočljivo je, da stran uredite ali osvežite, da odstranite neskladje. Če težava vztraja, preverite samo gručo Elasticsearch (alokator, izjeme, diskovni prostor idr.).", + "smw-es-replication-error-suggestions-maintenance-mode": "Predlagamo, da se obrnete na administratorja vikija, da preveri, ali trenutno poteka [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild obnova indeksa] ali pa parameter refresh_interval ni nastavljen na pričakovano privzeto vrednost.", + "smw-es-replication-error-suggestions-no-connection": "Predlagamo, da se obrnete na administratorja vikija in prijavite težavo »ni povezave«.", + "smw-es-replication-error-suggestions-exception": "Preverite dnevnike za informacije o statusu Elasticsearch, njihovih indeksih in morebitnih težavah z napačno konfiguracijo.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "Pri nadzoru replikacije je bilo ugotovljeno, da »$1« manjka označitev [[Property:File attachment|datotečne priloge]], kar kaže, da se procesor za indeksiranje datotek ni zagnal ali ni končal.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "Zagotovite, da je opravilo [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion indeksiranja datotek] načrtovano in se izvede, preden sta označitev in indeks datoteke na voljo.", + "smw-report": "Poročilo", + "smw-legend": "Legenda", + "smw-datavalue-constraint-schema-category-invalid-type": "Označena shema »$1« ni veljavna za kategorijo; potreben je tip »$2«.", + "smw-datavalue-constraint-schema-property-invalid-type": "Označena shema »$1« ni veljavna za lastnost; potreben je tip »$2«.", + "smw-entity-examiner-check": "V ozadju se {{PLURAL:$1|izvaja preverjanje podatkov|izvajajo preverjanja podatkov}}.", + "smw-entity-examiner-indicator": "Plošča za težave z datotekami", + "smw-entity-examiner-deferred-check-awaiting-response": "Preverjanje podatkov »$1« trenutno čaka na odgovor zaledja.", + "smw-entity-examiner-deferred-elastic-replication": "Elastic", + "smw-entity-examiner-deferred-constraint-error": "Omejitev", + "smw-entity-examiner-associated-revision-mismatch": "Redakcija", + "smw-entity-examiner-deferred-fake": "Lažni prikaz", + "smw-entity-examiner-indicator-suggestions": "Pri preverjanju entitete {{PLURAL:$1|je bila najdena naslednja težava|sta bili najdeni naslednji težavi|so bile najdene naslednje težave}}. Predlagamo, da {{PLURAL:$1|jo|ju|jih}} natančno pregledate in ustrezno {{PLURAL:$1|ukrepate}}.", + "smw-indicator-constraint-violation": "{{PLURAL:$1|Omejitev|Omejitve}}", + "smw-indicator-revision-mismatch": "Redakcija", + "smw-indicator-revision-mismatch-error": "Preverjanje [https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner redakcij strani] je odkrilo neujemanje med redakcijo, navedeno v MediaWikiju, in tisto, ki je za to entiteto povezana v Semantičnem MediaWikiju.", + "smw-indicator-revision-mismatch-comment": "Neujemanje običajno pomeni, da je nek proces prekinil operacijo shranjevanja v Semantičnem MediaWikiju. Priporočljivo je, da pregledate strežniške dnevnike in poiščete izjeme ali druge napake.", + "smw-facetedsearch-intro-text": "[https://www.semantic-mediawiki.org/wiki/Faceted_search Fasetno iskanje ] Semantičnega MediaWikija uporabnikom ponuja preprost vmesnik za hitro zožitev zadetkov poizvedbe iz pogoja z uporabo fasetnih prikazov, ustvarjenih iz odvisnih lastnosti in kategorij.", + "smw-facetedsearch-intro-tips": "* Za iskanje razpoložljivih kategorij, lastnosti ali konceptov za izdelavo nabora pogojev uporabite category:? , property:? ali concept:?.\n* Za opis stanja uporabite skladnjo #ask (npr. [[Category:Foo]] )\n* Za ustvarjanje zapletenih pogojev uporabite »ALI«, »IN« ali druge poizvedbene izraze.\n* Za ujemanja celotnega besedila je mogoče uporabiti izraze, kot je in: ali phrase:, če je izbran [https ://www.semantic-mediawiki.org/wiki/Query_engine poizvedbeni pogon], ki podpira te izraze.", + "smw-facetedsearch-profile-label-default": "Privzeti profil", + "smw-facetedsearch-intro-tab-explore": "Raziskuj", + "smw-facetedsearch-intro-tab-search": "Išči", + "smw-facetedsearch-explore-intro": "Izberite zbirko in začnite brskati.", + "smw-facetedsearch-profile-options": "Možnosti profila", + "smw-facetedsearch-size-options": "Možnosti ostranjevanja", + "smw-facetedsearch-order-options": "Možnosti razvrščanja", + "smw-facetedsearch-format-options": "Možnosti prikaza", + "smw-facetedsearch-format-table": "Tabela", + "smw-facetedsearch-input-filter-placeholder": "Filtriranje ...", + "smw-facetedsearch-no-filters": "Brez filtrov.", + "smw-facetedsearch-no-filter-range": "Brez razpona filtra.", + "smw-facetedsearch-no-output": "Za izbrani format »$1« ni bil na voljo noben izhod.", + "smw-facetedsearch-clear-filters": "Počisti {{PLURAL:$1|filter|filtre}}", + "smw-specials-facetedsearch-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Special:FacetedSearch", + "smw-search-placeholder": "Iskanje ...", + "smw-listingcontinuesabbrev": "nadalj.", + "smw-showingresults": "Prikazujem do '''$1''' {{PLURAL:$1|zadetek|zadetka|zadetke|zadetkov}}, začenši s št. '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sli.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sli.json new file mode 100644 index 0000000..0bc6116 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sli.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Äberlausitzer" + ] + }, + "smw-categories": "Kategorien", + "browse": "Semantisches Browsen", + "smw-livepreview-loading": "Loada…", + "smw-listingcontinuesabbrev": "(Furtsetzung)", + "smw-showingresults": "Hier {{PLURAL:$1|ies '''1''' Ergebnis|sein '''$1''' Ergebnisse}}, beginnend miet Nummer '''$2.'''" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sq.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sq.json new file mode 100644 index 0000000..38ea76d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sq.json @@ -0,0 +1,27 @@ +{ + "@metadata": { + "authors": [ + "Arianit", + "Besnik b", + "Edlira", + "GretaDoci", + "Liridon" + ] + }, + "smw_finallistconjunct": "dhe", + "smw_isspecprop": "Ky tipar është një tipar i veçantë në këtë wiki.", + "smw_concept_description": "Përshkrim i konceptit \"$1\"", + "smw_no_concept_namespace": "Konceptet mund të përcaktohen vetëm në faqet në namespace Concept:", + "smw_multiple_concepts": "Çdo faqe koncepti mund të ketë vetëm një përkufizim të konceptit.", + "smw_concept_cache_miss": "Koncepti \"$1\" nuk mund të përdoret në këtë moment, pasi konfigurimi i wiki kërkon që ai të llogaritet off-line.\nNëse problemi nuk do të iki pas një farë kohe, pyesni administratorin e faqes tuaj për ta vënë në dispozicion këtë koncept.", + "smw_noinvannot": "Vlerat nuk mund të caktohen për tiparet e anasjelltë.", + "smw_baduri": "URI të formës \"$1\" nuk lejohen.", + "smw_printername_csv": "Eksport CSV", + "smw_printername_dsv": "Eksport DSV", + "smw-categories": "Kategori", + "browse": "Shfletoni wiki", + "smw-admin-bugsreport": "Të metat mund të njoftohen te ndjekësi i problemeve, faqja e njoftimit të të metave jep ca ndihmë mbi se si të shkruhet një raport efikas të mete.", + "smw-livepreview-loading": "Duke punuar…", + "smw-listingcontinuesabbrev": "vazh.", + "smw-showingresults": "Më poshtë tregohen {{PLURAL:$1|'''1''' përfundim|'''$1''' përfundime}} duke filluar nga #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sr-ec.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sr-ec.json new file mode 100644 index 0000000..fe2f020 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sr-ec.json @@ -0,0 +1,375 @@ +{ + "@metadata": { + "authors": [ + "Aca", + "Acamicamacaraca", + "BadDog", + "Kghbln", + "Kizule", + "Meno25", + "Milicevic01", + "Obsuser", + "Prevodim", + "Rancher", + "Sasa Stefanovic", + "Slaven Kosanovic", + "Srdjan m", + "Srđan", + "Zenfiric", + "Zoranzoki21", + "Жељко Тодоровић", + "Милан Јелисавчић", + "Михајло Анђелковић", + "Сербијана" + ] + }, + "smw-desc": "Чини вики приступачним — за машине „и” људе ([https://www.semantic-mediawiki.org/wiki/Help:User_manual документација на мрежи])", + "smw-error": "Грешка", + "smw-upgrade-error-title": "Грешка » Семантички Медијавики", + "smw-upgrade-error-why-title": "Зашто видим ову страницу?", + "smw-upgrade-error-how-title": "Како да исправим ову грешку?", + "smw-upgrade-maintenance-why-title": "Зашто видим ову страницу?", + "smw-semantics-not-enabled": "Функционалност Семантичког MediaWiki-ја није омогућена за овај вики.", + "smw_viewasrdf": "RDF фид", + "smw_finallistconjunct": " и", + "smw-factbox-head": "… више о страници „$1”", + "smw-factbox-facts": "Чињенице", + "smw-factbox-attachments": "Прилози", + "smw-factbox-attachments-help": "Приказује доступне прилоге", + "smw_isspecprop": "Ово својство је посебно на овом викију.", + "smw-concept-cache-header": "Употреба кеша", + "smw-concept-no-cache": "Није доступан кеш.", + "smw_concept_description": "Опис концепта „$1”", + "smw_no_concept_namespace": "Концепти једино могу да се дефинишу на страницама у именском простору Concept:", + "smw_multiple_concepts": "Свака страница концепта сме да има само једну дефиницију концепта.", + "smw_concept_cache_miss": "Концепт \"$1\" се тренутно не може користити, пошто конфигурација викија захтева да буде компутован офлајн.\nАко проблем не нестане за неко време, затражите од администратора сајта да учини овај концепт доступним.", + "smw_noinvannot": "На обртна својства не могу да се доделе вредности.", + "version-semantic": "Семантички додаци", + "smw_baduri": "URI-ји за облик „$1“ нису дозвољени.", + "smw_printername_count": "Резултат бројања", + "smw_printername_csv": "CSV извоз", + "smw_printername_dsv": "DSV извоз", + "smw_printername_debug": "Упит за отклањање грешака (за стручњаке)", + "smw_printername_embedded": "Угради садржај странице", + "smw_printername_json": "JSON извоз", + "smw_printername_list": "Списак", + "smw_printername_plainlist": "Обична листа", + "smw_printername_ol": "Нумерисани списак", + "smw_printername_ul": "Набројиви списак", + "smw_printername_table": "Табела", + "smw_printername_broadtable": "Широка табела", + "smw_printername_template": "Шаблон", + "smw_printername_templatefile": "Датотека шаблона", + "smw_printername_rdf": "RDF извоз", + "smw_printername_category": "Категорија", + "validator-type-class-SMWParamSource": "текст", + "smw-paramdesc-limit": "Највећи број резултата који ће бити враћени", + "smw-paramdesc-mainlabel": "Етикета која ће се користити за име главне странице", + "smw-paramdesc-link": "Прикажи вредности у облику веза", + "smw-paramdesc-intro": "Текст који треба да се прикаже пре резултата упита (у случају потребе)", + "smw-paramdesc-outro": "Текст који треба да се прикаже иза резултата упита (у случају потребе)", + "smw-paramdesc-default": "Текст који треба да се прикаже у случају да упит није дао резултате", + "smw-paramdesc-sep": "Раздвајач између резултата", + "smw-paramdesc-columns": "Број колона у којима ће се приказати резултати", + "smw-paramdesc-embedonly": "Не приказуј заглавља", + "smw-paramdesc-searchlabel": "Текст везе с резултатима", + "smw-paramdesc-template-arguments": "Подешавање испоруке именованих параметара до шаблона", + "smw_iq_disabled": "Семантички упити су онемогућени на овом викију.", + "smw_iq_moreresults": "... више резултата", + "smw_parseerror": "Дата вредност није схваћена.", + "smw_decseparator": ",", + "smw_kiloseparator": ".", + "smw_notitle": "\"$1\" се не може користити за име странице на овом викију.", + "smw_wrong_namespace": "Само странице из именског простора \"$1\" су дозвољене овде.", + "smw_manytypes": "Више од једног типа је дефинисано за ову особину.", + "smw_emptystring": "Празни стрингови нису прихватљиви.", + "smw_notinenum": "„$1” није на листи ($2) [[Property:Allows value|могућих вредности]] за својство „$3”.", + "smw_noboolean": "\"$1\" није препознат као Болова вредност (истинито/неистинито).", + "smw_true_words": "истинито, и, да, д", + "smw_false_words": "неистинито, н, не, н", + "smw_nofloat": "\"$1\" није број.", + "smw_infinite": "Бројеви дужине као \"$1\" нису подржани.", + "smw_novalues": "Нема назначене вредности.", + "smw_nodatetime": "Формат датума \"$1\" није разумљив.", + "smw_toomanyclosing": "Изгледа да је превише случајева типа \"$1\" у упиту.", + "smw_noclosingbrackets": "Неке угласте заграде \"[[\" у вашем упиту, нису затворене одговарајућим \"]]\".", + "smw_misplacedsymbol": "Симбол \"$1\" је искоришћен на месту где није од користи.", + "smw_unexpectedpart": "Део упита \"$1\" није схваћен.\nРезултати могу бити неочекивани.", + "smw_emptysubquery": "Неки подупити не садрже ваљане услове.", + "smw_misplacedsubquery": "Неки подупити су коришћени на месту где подупити нису дозвољени.", + "smw_valuesubquery": "За вредности особине \"$1\", подупити нису подржани.", + "smw_badqueryatom": "Један део \"[[…]]\" упита није схваћен.", + "smw_propvalueproblem": "Вредност за особину \"$1\" није схваћена.", + "smw_noqueryfeature": "Неки делови овог упита нису подржани на овом викију, те је део упита изостављен ($1).", + "smw_noconjunctions": "Конјукције у упитима нису подржане на овом викију, те је део упита изостављен ($1).", + "smw_nodisjunctions": "Дисјункције у упитима нису подржане на овом викију, те је део упита изостављен ($1).", + "smw_querytoolarge": "Није могуће разматрати {{PLURAL:$2|следећи услов упита $2|следеће услове упита $2}} због ограничења викија на величину и дубину упита: $1.", + "smw_notemplategiven": "Понудите вредност за параметар ”шаблон”, како би овај формат упита дао резултат.", + "smw_type_header": "Особине типа \"$1\"", + "smw_typearticlecount": "Приказ $1 {{PLURAL:$1|особине|особина}} за овај тип.", + "smw_attribute_header": "Странице које користе особину \"$1\"", + "smw_attributearticlecount": "Приказ $1 {{PLURAL:$1|странице|страница}} које користе ову особину.", + "smw-propertylist-subproperty-header": "Подсвојства", + "smw-propertylist-redirect-header": "Синоними", + "specialpages-group-smw_group": "Семантички Медијавики", + "specialpages-group-smw_group-maintenance": "Одржавање", + "exportrdf": "Извоз страница у RDF", + "smw_exportrdf_docu": "Ова страница омогућава преузимање података с неке странице у формату RDF.\nДа бисте извезли странице, унесите наслове у кућицу испод (по један наслов у сваком реду).", + "smw_exportrdf_recursive": "Рекурзивно извези све сродне странице.\nИмајте на уму да резултат може бити веома обиман.", + "smw_exportrdf_backlinks": "Такође извези све странице које вежу на већ извезене странице.\nГенерише RDF који је могуће прегледати.", + "smw_exportrdf_lastdate": "Не извози странице које нису мењане од датог момента.", + "smw_exportrdf_submit": "Извоз", + "uriresolver": "URI резолвер", + "properties": "Својства", + "smw-categories": "Категоријe", + "smw_properties_docu": "Следеће особине се користе на викију.", + "smw_property_template": "$1 типа $2 ($3 {{PLURAL:$3|употреба|употребе|употреба}})", + "smw_propertylackspage": "Све особине требају имати описну страницу!", + "smw_propertylackstype": "Нема дефинисаног типа за ову особину (за сада усвајам тип $1).", + "smw_propertyhardlyused": "Ова особина једва да се користи на овом викију!", + "smw-special-property-searchform-options": "Опције", + "smw-special-wantedproperties-filter-label": "Филтер:", + "smw-special-wantedproperties-filter-none": "Ништа", + "smw-special-wantedproperties-filter-unapproved": "Неодобрено", + "concepts": "Концепти", + "smw-special-concept-header": "Листа концепата", + "smw-special-concept-empty": "Није пронађен ниједан концепт.", + "unusedproperties": "Неискоришћене особине", + "smw-unusedproperty-template": "$1 типа $2", + "wantedproperties": "Тражене особине", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|употреба|употреба}})", + "smw_purge": "Освежи", + "smw-purge-failed": "Семантички Медијавики је покушао да освежи страницу, али није успео у томе", + "types": "Типови", + "smw_types_docu": "Листа [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes доступних типова података] са сваким [https://www.semantic-mediawiki.org/wiki/Help:Datatype типом] представља јединствен скуп атрибута који описују вредност у смислу карактеристика чување и излагање које су наследне по додељеним својствима.", + "smw-statistics": "Семантичка статистика", + "smw-statistics-query-size": "Величина упита", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Концепт|Концепти}}", + "ask": "Семантичка претрага", + "smw_ask_sortby": "Поређај у колоне (опционално)", + "smw_ask_ascorder": "Растући", + "smw_ask_descorder": "Опадајући", + "smw-ask-order-rand": "Случајна", + "smw_ask_submit": "Пронађи резултате", + "smw_ask_editquery": "Уреди упит", + "smw_add_sortcondition": "[Додај услове сортирања]", + "smw-ask-sort-add-action": "Додај услове сортирања", + "smw_ask_hidequery": "Сакриј упит (компактни приказ)", + "smw_ask_help": "Упит у странице помоћи", + "smw_ask_queryhead": "Услов", + "smw_ask_printhead": "Избор штампе", + "smw_ask_printdesc": "(додај једно име особине по линији)", + "smw_ask_format_as": "Обликуј као:", + "smw_ask_defaultformat": "подразумевано", + "smw_ask_otheroptions": "Друге опције", + "smw_ask_show_embed": "Прикажи уграђени код", + "smw_ask_hide_embed": "Сакриј уградбени код", + "smw_ask_embed_instr": "За непосредно гнеждење овог упита у страницу викија, користи доњи код.", + "smw-ask-delete": "Уклони", + "smw-ask-sorting": "Ређање", + "smw-ask-options": "Опције", + "smw-ask-options-sort": "Опције сортирања", + "smw-ask-format-options": "Формат и опције", + "smw-ask-parameters": "Параметри", + "smw-ask-search": "Претрага", + "smw-ask-result": "Резултат", + "smw-ask-empty": "Очисти све уносе", + "smw-ask-format": "Формат", + "smw-ask-query-search-info": "На упит $1 одговорио је {{PLURAL:$3|1=$2 (из кеша)|$2 (из кеша)|$2}} за $4 {{PLURAL:$4|секунд|секунда|секунди}}.", + "smw-ask-extra-other": "Друго", + "searchbyproperty": "Претрага по својствима", + "smw_sbv_docu": "Претражи све странице које поседују дату особину и вредност.", + "smw_sbv_novalue": "Унесите ваљану вредност за ову особину, или погледајте све вредности особине за \"$1\".", + "smw_sbv_displayresultfuzzy": "Листа свих страница које садрже својство „$1” са вредношћу „$2”.\nПошто је пронађено само неколико резултата, такође су приказане приближне вредности.", + "smw_sbv_property": "Својство:", + "smw_sbv_value": "Вредност:", + "smw_sbv_submit": "Пронађи резултате", + "browse": "Преглед викија", + "smw_browselink": "Преглед својстава", + "smw_browse_article": "Унесите име почетне странице за претрагу.", + "smw_browse_go": "Иди", + "smw_browse_show_incoming": "Прикажи долазна својства", + "smw_browse_hide_incoming": "Сакриј долазна својства", + "smw_browse_no_outgoing": "Ова страница нема својства.", + "smw_browse_no_incoming": "Нема особина које вежу на ову страницу.", + "smw-browse-show-group": "Прикажи групе", + "smw-browse-hide-group": "Сакриј групе", + "smw_inverse_label_default": "$1 од", + "smw_inverse_label_property": "Обрнута ознака својства", + "pageproperty": "Страница за претрагу својства", + "pendingtasklist": "Списак задатака на чекању", + "smw_pp_docu": "Претражи све вредности особине на датој страници.\nУнесите обоје, и страницу, и особину.", + "smw_pp_from": "Са странице:", + "smw_pp_type": "Својство:", + "smw_pp_submit": "Пронађени резултати", + "smw_result_prev": "Претходних", + "smw_result_next": "Следећих", + "smw_result_results": "Резултати", + "smw_result_noresults": "Нема резултата.", + "smwadmin": "Контролна табла Семантичког Медијавикија", + "smw-admin-statistics-job-title": "Статистика послова", + "smw-admin-setupsuccess": "Машина за складиштење је постављена.", + "smw_smwadmin_return": "Назад на $1", + "smw_smwadmin_updatestarted": "Нов процес ажурирања за освежавање семантичких података је започет.\nСви сачувани подаци ће бити поново изграђени или поправљени по потреби.\nМожете да пратите ток ажурирања на овој посебној страници.", + "smw_smwadmin_updatenotstarted": "Већ је у току један процес ажурирања.\nНе покрећите други.", + "smw_smwadmin_updatestopped": "Сви постојећи процеси ажурирања су обустављени.", + "smw_smwadmin_updatenotstopped": "Како бисте обуставили покренути процес ажурирања, морате кликнути на квадратић да бисте потврдили да сте сигурни.", + "smw-admin-docu": "Ова посебна страница вам помаже приликом инсталирања, ажурирања, одржавања и коришћења Семантичког медијавикија и такође обезбеђује додатне функције администрације и задатке, као и статистику.\nНе заборавите да направите копију вредних података пре него покренете функције администрације.", + "smw-admin-db": "Подешавање базе података", + "smw-admin-dbdocu": "Семантички Медијавики захтева своју структуру базе података (која је независна од Медијавикијеве, те стога не обухвата остатак инсталације Медијавикија), како би могли да се чувају семантички подаци.\nОва функција инсталирања се може покретати више пута без бојазни да ће нанети неку штету, али је неопходна само једном приликом инсталирања или ажурирања.", + "smw-admin-permissionswarn": "Ако се операција заврши са SQL грешкама, корисник базе података (погледајте вашу LocalSettings.php датотеку) вероватно нема довољно дозвола за извршавање неопходних операција.\nИли дајте неопходне дозволе том кориснику како би могао да прави и брише табеле у бази, привремено се пријавите као корен базе података у LocalSettings.php датотеци, или користите скрипту за одржавање setupStore.php, која може користити акредитације администратора.", + "smw-admin-dbbutton": "Покретање или ажурирање табела", + "smw-admin-announce": "Најавите Вашу викију", + "smw-admin-deprecation-notice-title": "Напомене о застаревању", + "smw-admin-deprecation-notice-docu": "Следећа секција садржи подешавања која су застарела или су уклоњена али су детектована као активна на овој Вики. Очекује се да ће се неким будућим ажурирањем уклонити подрша за ова подешавања.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] је застарео параметар и биће уклоњен у верзији $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] је замењен параметар са параметром [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] је уклоњен параметар у верзији $2", + "smw-admin-deprecation-notice-title-notice": "Застарела подешавања", + "smw-admin-deprecation-notice-title-replacement": "Замењена или преименована подешавања", + "smw-admin-deprecation-notice-title-removal": "Уклоњена подешавања", + "smw-admin-deprecation-notice-section-legend": "Легенда", + "smw_smwadmin_datarefresh": "Поправљање података", + "smw_smwadmin_datarefreshdocu": "Постоји могућност за враћање свих података семантичког Медијавикија који су засновани на тренутном садржају викија.\nОво је корисно за исправку оштећених података или за обнову података ако је унутрашњи формат промењен као резултат доградње софтвера.\nАжурирање се врши за сваку страницу понаособ, и треба да прође неко време како би се све вратило у нормалу.\nИспод је приказано да ли је ажурирање у току, а то вам омогућава да започнете или зауставите доградње (осим ако ту могућност није искључио администратор).", + "smw_smwadmin_datarefreshprogress": "Једно ажурирање је већ у току.\nНормално је да ажурирање напредује споро, пошто се само освежавају мали делови података сваки пут када корисник приступи викију.\nДа би се ово ажурирање брже завршило, можете покренути скрипту за одржавање Медијавикија runJobs.php (користите опцију --maxjobs 1000 за ограничење броја ажурирања у једном пакету).\nПроцена напредовања тренутног ажурирања:", + "smw_smwadmin_datarefreshbutton": "Закажи поновну иградњу података", + "smw_smwadmin_datarefreshstop": "Заустави ово ажурирање", + "smw_smwadmin_datarefreshstopconfirm": "Да, {{GENDER:$1|сигуран|сигурна}} сам.", + "smw-admin-support": "Добијање подршке", + "smw-admin-supportdocu": "Обезбеђени су разни ресурси да би вам помогли у случају проблемâ:", + "smw-admin-installfile": "Ако наиђете на проблем при инсталацији, најпре прочитајте смернице у датотеци INSTALL и страници за инсталацију.", + "smw-admin-smwhomepage": "Потпуна корисничка документација за Семантички медијавики је на semantic-mediawiki.org.", + "smw-admin-bugsreport": "Грешке могу да се пријављују на пратиоцу грешака. Страница „Пријављивање грешака” пружа неке смернице о томе како да напишете ефективан извештај о грешци.", + "smw-admin-questions": "Ако имате даљих питања или предлога, укључите се у дискусију на корисничкој мејлинг листи.", + "smw-admin-other-functions": "Друге функције", + "smw-admin-supplementary-section-subtitle": "Подржане основне функције", + "smw-admin-supplementary-settings-title": "Конфигурација и подешавања", + "smw-admin-supplementary-operational-statistics-title": "Оперативна статистика", + "smw-admin-supplementary-operational-statistics-cache-title": "Статистика кеширања", + "smw-admin-supplementary-elastic-functions": "Подржане функције", + "smw-admin-supplementary-elastic-settings-title": "Подешавања (индиције)", + "smw-admin-supplementary-elastic-mappings-summary": "Резиме", + "smw-admin-supplementary-elastic-statistics-title": "Статистика", + "smw_adminlinks_datastructure": "Структура података", + "smw_adminlinks_displayingdata": "Приказивање података", + "smw_adminlinks_inlinequerieshelp": "Помоћ за непосредне упите", + "smw-info-par-message": "Порука за приказ.", + "prefs-smw": "Семантички Медијавики", + "prefs-general-options": "Опште опције", + "smw-ui-tooltip-title-info": "Информације", + "smw-ui-tooltip-title-warning": "Упозорење", + "smw-ui-tooltip-title-error": "Грешка", + "smw-ui-tooltip-title-parameter": "Параметар", + "smw-ui-tooltip-title-event": "Догађај", + "smw-ui-tooltip-title-note": "Напомена", + "smw-ui-tooltip-title-legend": "Легенда", + "smw-ui-tooltip-title-reference": "Референца", + "smw_unknowntype": "„$1” тип овог својства је неважећи.", + "smw_concept_header": "Странице концепта \"$1\"", + "smw_conceptarticlecount": "Приказ $1 {{PLURAL:$1|странице|страница}} које припадају том концепту.", + "right-smw-admin": "приступање администраторским задацима (Семантички Медијавики)", + "action-smw-patternedit": "уређујете регуларне изразе које користи Семантички Медијавики", + "group-smwadministrator": "Администратори (Семантички Медијавики)", + "grouppage-smwadministrator": "{{ns:project}}:Администратори (Семантички Медијавики)", + "smw-sp-properties-header-label": "Списак својстава", + "smw-sp-admin-settings-button": "Генериши листу подешавања", + "smw-admin-idlookup-input": "Претрага:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Преглед", + "smw-admin-tab-maintenance": "Одржавање", + "smw-admin-tab-supplement": "Допунске функције", + "smw-admin-tab-registry": "Регистар", + "smw-admin-tab-alerts": "Упозорења", + "smw-admin-alerts-tab-maintenancealerts": "Упозорења одржавања", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Застарели ентитети", + "smw-admin-maintenance-no-description": "Без описа.", + "smw-livepreview-loading": "Учитавам…", + "smw-sp-searchbyproperty-resultlist-header": "Листа резултата", + "smw-search-syntax": "Синтакса", + "smw-search-profile-tooltip": "Претражите функције у вези Семантичког Медијавикија", + "smw-search-profile-sort-title": "Наслов", + "smw-search-profile-extended-help-query-link": "За више детаља, користите $1.", + "smw-search-profile-extended-help-find-forms": "доступни облици", + "smw-search-profile-extended-section-sort": "Поређај по", + "smw-search-profile-extended-section-form": "Обрасци", + "smw-search-profile-extended-section-namespace": "Именски простор", + "smw-search-profile-extended-section-query": "Упит", + "smw-search-profile-link-caption-query": "израда упита", + "smw-search-show": "Прикажи", + "smw-search-hide": "Сакриј", + "log-name-smw": "Дневник Семантичког Медијавикија", + "log-show-hide-smw": "$1 дневник Семантичког Медијавикија", + "logeventslist-smw-log": "Дневник Семантичког Медијавикија", + "smw-type-tab-properties": "Својства", + "smw-type-tab-types": "Типови", + "smw-type-tab-errors": "Грешке", + "smw-type-no-group": "Некласификовано", + "smw-limitreport-intext-parsertime": "[SMW] Време рашчлањивања унутартекстуалних анотација", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|секунд|секунда|секунди}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|секунд|секунде|секунди}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|секунд|секунда|секунди}}", + "smw-datavalue-allows-value-list-missing-marker": "Садржају листе „$1” недостају ставке са * као означивачем листе.", + "smw-datavalue-wikipage-invalid-title": "Унесена вредност типа странице „$1” садржи невалидне карактере или је некомплетна и стога може да узрокује неочекиване резултате током претраге или процеса означавања.", + "smw-datavalue-wikipage-property-invalid-title": "Својство „$1” (као тип странице) са унесеном вредношћу „$2” садржи невалидне карактере или је некомплетно и стога може да узрокује неочекиване резултате током претраге или процеса означавања.", + "smw-clipboard-copy-link": "Копирај везу на клипборд", + "smw-data-lookup": "Добављање података...", + "smw-no-data-available": "Нема података.", + "smw-format-datatable-emptytable": "Нема доступних података у табели", + "smw-format-datatable-info": "Приказ _START_ до _END_ од _TOTAL_ ставки", + "smw-format-datatable-infoempty": "Приказ 0 до 0 од 0 ставки", + "smw-format-datatable-infofiltered": "(филтрирано од _MAX_ укупно ставки)", + "smw-format-datatable-infothousands": ".", + "smw-format-datatable-lengthmenu": "Прикажи _MENU_ ставки", + "smw-format-datatable-loadingrecords": "Учитавање...", + "smw-format-datatable-processing": "Обрада...", + "smw-format-datatable-search": "Претрага:", + "smw-format-datatable-zerorecords": "Нема нађених одговарајућих података", + "smw-format-datatable-first": "Први", + "smw-format-datatable-last": "Последњи", + "smw-format-datatable-next": "Следећи", + "smw-format-datatable-previous": "Претходни", + "smw-format-datatable-sortascending": ": укључите да бисте растуће поређали колоне", + "smw-format-datatable-sortdescending": ": укључите да бисте опадајуће поређали колоне", + "smw-format-datatable-toolbar-export": "Извоз", + "smw-property-reserved-category": "Категорија", + "smw-category": "Категорија", + "smw-filter": "Филтер", + "smw-help": "Помоћ", + "smw-processing": "Обрађивање...", + "smw-loading": "Учитавање...", + "smw-fetching": "Добављање...", + "smw-preparing": "Припремање...", + "smw-expand": "Прошири", + "smw-collapse": "Скупи", + "smw-copy": "Копирај", + "smw-copy-clipboard-title": "Копира садржај у оставу", + "smw-jsonview-expand-title": "Шири JSON приказ", + "smw-jsonview-collapse-title": "Скупља JSON приказ", + "smw-types-title": "Врста: $1", + "smw-schema-error-title": "Провера {{PLURAL:$1|грешке|грешака}}", + "smw-schema-error-violation": "[„$1”, „$2”]", + "smw-schema-title": "Шема", + "smw-schema-type": "Тип шеме", + "smw-schema-tag": "{{PLURAL:$1|Ознака|Ознаке}}", + "smw-property-tab-usage": "Употреба", + "smw-property-tab-redirects": "Синоними", + "smw-property-tab-subproperties": "Подсвојства", + "smw-property-tab-specification": "… више", + "smw-concept-tab-list": "Списак", + "smw-concept-tab-errors": "Грешке", + "smw-ask-tab-extra": "Додатно", + "smw-ask-tab-code": "Кôд", + "smw-pendingtasks-setup-tasks": "Задаци", + "smw-es-replication-error-divergent-date-short": "Следеће информације о датуму коришћене су ради поређења:", + "smw-facetedsearch-profile-label-default": "Подразумеван профил", + "smw-facetedsearch-intro-tab-search": "Претрага", + "smw-facetedsearch-profile-options": "Опције профила", + "smw-facetedsearch-order-options": "Опције сортирања", + "smw-facetedsearch-format-options": "Опције приказа", + "smw-facetedsearch-format-table": "Табела", + "smw-facetedsearch-input-filter-placeholder": "Филтрирај...", + "smw-facetedsearch-no-filters": "Нема филтера.", + "smw-search-placeholder": "Претрага...", + "smw-listingcontinuesabbrev": "наст.", + "smw-showingresults": "{{PLURAL:$1|1=Приказан је један резултат|Приказан је $1 резултат|Приказана су $1 резултата|Приказано је $1 резултата}}; број прве ставке: $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sr-el.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sr-el.json new file mode 100644 index 0000000..96e5eb3 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sr-el.json @@ -0,0 +1,366 @@ +{ + "@metadata": { + "authors": [ + "Acamicamacaraca", + "Kghbln", + "Kizule", + "Liangent", + "Michaello", + "Milicevic01", + "Obsuser", + "Rancher", + "Slaven Kosanovic", + "Sociologist", + "Zoranzoki21" + ] + }, + "smw-desc": "Čini viki pristupačnim — za mašine „i” ljude ([https://www.semantic-mediawiki.org/wiki/Help:User_manual dokumentacija na mreži])", + "smw-error": "Greška", + "smw-upgrade-error-title": "Greška » Semantički Medijaviki", + "smw-upgrade-error-why-title": "Zašto vidim ovu stranicu?", + "smw-upgrade-error-how-title": "Kako da ispravim ovu grešku?", + "smw-upgrade-maintenance-why-title": "Zašto vidim ovu stranicu?", + "smw-semantics-not-enabled": "Funkcionalnost Semantičkog MediaWiki-ja nije omogućena za ovaj viki.", + "smw_viewasrdf": "RDF fid", + "smw_finallistconjunct": " i", + "smw-factbox-head": "… više o stranici „$1”", + "smw-factbox-facts": "Činjenice", + "smw-factbox-attachments": "Prilozi", + "smw-factbox-attachments-help": "Prikazuje dostupne priloge", + "smw_isspecprop": "Ovo svojstvo je posebno na ovom vikiju.", + "smw-concept-cache-header": "Upotreba keša", + "smw-concept-no-cache": "Nije dostupan keš.", + "smw_concept_description": "Opis koncepta „$1”", + "smw_no_concept_namespace": "Koncepti jedino mogu da se definišu na stranicama u imenskom prostoru Concept:", + "smw_multiple_concepts": "Svaka stranica koncepta sme da ima samo jednu definiciju koncepta.", + "smw_concept_cache_miss": "Koncept \"$1\" se trenutno ne može koristiti, pošto konfiguracija vikija zahteva da bude komputovan oflajn.\nAko problem ne nestane za neko vreme, zatražite od administratora sajta da učini ovaj koncept dostupnim.", + "smw_noinvannot": "Na obrtna svojstva ne mogu da se dodele vrednosti.", + "version-semantic": "Semantički dodaci", + "smw_baduri": "URI-ji za oblik „$1“ nisu dozvoljeni.", + "smw_printername_count": "Rezultat brojanja", + "smw_printername_csv": "CSV izvoz", + "smw_printername_dsv": "DSV izvoz", + "smw_printername_debug": "Upit za otklanjanje grešaka (za stručnjake)", + "smw_printername_embedded": "Ugradi sadržaj stranice", + "smw_printername_json": "JSON izvoz", + "smw_printername_list": "Spisak", + "smw_printername_plainlist": "Obična lista", + "smw_printername_ol": "Numerisani spisak", + "smw_printername_ul": "Nabrojivi spisak", + "smw_printername_table": "Tabela", + "smw_printername_broadtable": "Široka tabela", + "smw_printername_template": "Šablon", + "smw_printername_templatefile": "Datoteka šablona", + "smw_printername_rdf": "RDF izvoz", + "smw_printername_category": "Kategorija", + "validator-type-class-SMWParamSource": "tekst", + "smw-paramdesc-limit": "Najveći broj rezultata koji će biti vraćeni", + "smw-paramdesc-mainlabel": "Etiketa koja će se koristiti za ime glavne stranice", + "smw-paramdesc-link": "Prikaži vrednosti u obliku veza", + "smw-paramdesc-intro": "Tekst koji treba da se prikaže pre rezultata upita (u slučaju potrebe)", + "smw-paramdesc-outro": "Tekst koji treba da se prikaže iza rezultata upita (u slučaju potrebe)", + "smw-paramdesc-default": "Tekst koji treba da se prikaže u slučaju da upit nije dao rezultate", + "smw-paramdesc-sep": "Razdvajač između rezultata", + "smw-paramdesc-columns": "Broj kolona u kojima će se prikazati rezultati", + "smw-paramdesc-embedonly": "Ne prikazuj zaglavlja", + "smw-paramdesc-searchlabel": "Tekst veze s rezultatima", + "smw-paramdesc-template-arguments": "Podešavanje isporuke imenovanih parametara do šablona", + "smw_iq_disabled": "Semantički upiti su onemogućeni na ovom vikiju.", + "smw_iq_moreresults": "... više rezultata", + "smw_parseerror": "Data vrednost nije shvaćena.", + "smw_decseparator": ",", + "smw_kiloseparator": ".", + "smw_notitle": "\"$1\" se ne može koristiti za ime stranice na ovom vikiju.", + "smw_wrong_namespace": "Samo stranice iz imenskog prostora \"$1\" su dozvoljene ovde.", + "smw_manytypes": "Više od jednog tipa je definisano za ovu osobinu.", + "smw_emptystring": "Prazni stringovi nisu prihvatljivi.", + "smw_notinenum": "„$1” nije na listi ($2) [[Property:Allows value|mogućih vrednosti]] za svojstvo „$3”.", + "smw_noboolean": "\"$1\" nije prepoznat kao Bolova vrednost (istinito/neistinito).", + "smw_true_words": "istinito, i, da, d", + "smw_false_words": "neistinito, n, ne, n", + "smw_nofloat": "\"$1\" nije broj.", + "smw_infinite": "Brojevi dužine kao \"$1\" nisu podržani.", + "smw_novalues": "Nema naznačene vrednosti.", + "smw_nodatetime": "Format datuma \"$1\" nije razumljiv.", + "smw_toomanyclosing": "Izgleda da je previše slučajeva tipa \"$1\" u upitu.", + "smw_noclosingbrackets": "Neke uglaste zagrade \"[[\" u vašem upitu, nisu zatvorene odgovarajućim \"]]\".", + "smw_misplacedsymbol": "Simbol \"$1\" je iskorišćen na mestu gde nije od koristi.", + "smw_unexpectedpart": "Deo upita \"$1\" nije shvaćen.\nRezultati mogu biti neočekivani.", + "smw_emptysubquery": "Neki podupiti ne sadrže valjane uslove.", + "smw_misplacedsubquery": "Neki podupiti su korišćeni na mestu gde podupiti nisu dozvoljeni.", + "smw_valuesubquery": "Za vrednosti osobine \"$1\", podupiti nisu podržani.", + "smw_badqueryatom": "Jedan deo \"[[…]]\" upita nije shvaćen.", + "smw_propvalueproblem": "Vrednost za osobinu \"$1\" nije shvaćena.", + "smw_noqueryfeature": "Neki delovi ovog upita nisu podržani na ovom vikiju, te je deo upita izostavljen ($1).", + "smw_noconjunctions": "Konjukcije u upitima nisu podržane na ovom vikiju, te je deo upita izostavljen ($1).", + "smw_nodisjunctions": "Disjunkcije u upitima nisu podržane na ovom vikiju, te je deo upita izostavljen ($1).", + "smw_querytoolarge": "Nije moguće razmatrati {{PLURAL:$2|sledeći uslov upita $2|sledeće uslove upita $2}} zbog ograničenja vikija na veličinu i dubinu upita: $1.", + "smw_notemplategiven": "Ponudite vrednost za parametar ”šablon”, kako bi ovaj format upita dao rezultat.", + "smw_type_header": "Osobine tipa \"$1\"", + "smw_typearticlecount": "Prikaz $1 {{PLURAL:$1|osobine|osobina}} za ovaj tip.", + "smw_attribute_header": "Stranice koje koriste osobinu \"$1\"", + "smw_attributearticlecount": "Prikaz $1 {{PLURAL:$1|stranice|stranica}} koje koriste ovu osobinu.", + "smw-propertylist-subproperty-header": "Podsvojstva", + "smw-propertylist-redirect-header": "Sinonimi", + "specialpages-group-smw_group": "Semantički Medijaviki", + "specialpages-group-smw_group-maintenance": "Održavanje", + "exportrdf": "Izvoz stranica u RDF", + "smw_exportrdf_docu": "Ova stranica omogućava preuzimanje podataka s neke stranice u formatu RDF.\nDa biste izvezli stranice, unesite naslove u kućicu ispod (po jedan naslov u svakom redu).", + "smw_exportrdf_recursive": "Rekurzivno izvezi sve srodne stranice.\nImajte na umu da rezultat može biti veoma obiman.", + "smw_exportrdf_backlinks": "Takođe izvezi sve stranice koje vežu na već izvezene stranice.\nGeneriše RDF koji je moguće pregledati.", + "smw_exportrdf_lastdate": "Ne izvozi stranice koje nisu menjane od datog momenta.", + "smw_exportrdf_submit": "Izvoz", + "uriresolver": "URI rezolver", + "properties": "Svojstva", + "smw-categories": "Kategorije", + "smw_properties_docu": "Sledeće osobine se koriste na vikiju.", + "smw_property_template": "$1 tipa $2 ($3 {{PLURAL:$3|upotreba|upotrebe|upotreba}})", + "smw_propertylackspage": "Sve osobine trebaju imati opisnu stranicu!", + "smw_propertylackstype": "Nema definisanog tipa za ovu osobinu (za sada usvajam tip $1).", + "smw_propertyhardlyused": "Ova osobina jedva da se koristi na ovom vikiju!", + "smw-special-property-searchform-options": "Opcije", + "smw-special-wantedproperties-filter-label": "Filter:", + "smw-special-wantedproperties-filter-none": "Ništa", + "smw-special-wantedproperties-filter-unapproved": "Neodobreno", + "concepts": "Koncepti", + "smw-special-concept-header": "Lista koncepata", + "smw-special-concept-empty": "Nije pronađen nijedan koncept.", + "unusedproperties": "Neiskorišćene osobine", + "smw-unusedproperty-template": "$1 tipa $2", + "wantedproperties": "Tražene osobine", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|upotreba|upotreba}})", + "smw_purge": "Osveži", + "smw-purge-failed": "Semantički Medijaviki je pokušao da osveži stranicu, ali nije uspeo u tome", + "types": "Tipovi", + "smw_types_docu": "Lista [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes dostupnih tipova podataka] sa svakim [https://www.semantic-mediawiki.org/wiki/Help:Datatype tipom] predstavlja jedinstven skup atributa koji opisuju vrednost u smislu karakteristika čuvanje i izlaganje koje su nasledne po dodeljenim svojstvima.", + "smw-statistics": "Semantička statistika", + "smw-statistics-query-size": "Veličina upita", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Koncept|Koncepti}}", + "ask": "Semantička pretraga", + "smw_ask_sortby": "Poređaj u kolone (opcionalno)", + "smw_ask_ascorder": "Rastući", + "smw_ask_descorder": "Opadajući", + "smw-ask-order-rand": "Slučajna", + "smw_ask_submit": "Pronađi rezultate", + "smw_ask_editquery": "Uredi upit", + "smw_add_sortcondition": "[Dodaj uslove sortiranja]", + "smw-ask-sort-add-action": "Dodaj uslove sortiranja", + "smw_ask_hidequery": "Sakrij upit (kompaktni prikaz)", + "smw_ask_help": "Upit u stranice pomoći", + "smw_ask_queryhead": "Uslov", + "smw_ask_printhead": "Izbor štampe", + "smw_ask_printdesc": "(dodaj jedno ime osobine po liniji)", + "smw_ask_format_as": "Oblikuj kao:", + "smw_ask_defaultformat": "podrazumevano", + "smw_ask_otheroptions": "Druge opcije", + "smw_ask_show_embed": "Prikaži ugrađeni kod", + "smw_ask_hide_embed": "Sakrij ugradbeni kod", + "smw_ask_embed_instr": "Za neposredno gneždenje ovog upita u stranicu vikija, koristi donji kod.", + "smw-ask-delete": "Ukloni", + "smw-ask-sorting": "Ređanje", + "smw-ask-options": "Opcije", + "smw-ask-options-sort": "Opcije sortiranja", + "smw-ask-format-options": "Format i opcije", + "smw-ask-parameters": "Parametri", + "smw-ask-search": "Pretraga", + "smw-ask-result": "Rezultat", + "smw-ask-empty": "Očisti sve unose", + "smw-ask-format": "Format", + "smw-ask-query-search-info": "Na upit $1 odgovorio je {{PLURAL:$3|1=$2 (iz keša)|$2 (iz keša)|$2}} za $4 {{PLURAL:$4|sekund|sekunda|sekundi}}.", + "smw-ask-extra-other": "Drugo", + "searchbyproperty": "Pretraga po svojstvima", + "smw_sbv_docu": "Pretraži sve stranice koje poseduju datu osobinu i vrednost.", + "smw_sbv_novalue": "Unesite valjanu vrednost za ovu osobinu, ili pogledajte sve vrednosti osobine za \"$1\".", + "smw_sbv_displayresultfuzzy": "Lista svih stranica koje sadrže svojstvo „$1” sa vrednošću „$2”.\nPošto je pronađeno samo nekoliko rezultata, takođe su prikazane približne vrednosti.", + "smw_sbv_property": "Svojstvo:", + "smw_sbv_value": "Vrednost:", + "smw_sbv_submit": "Pronađi rezultate", + "browse": "Pregled vikija", + "smw_browselink": "Pregled svojstava", + "smw_browse_article": "Unesite ime početne stranice za pretragu.", + "smw_browse_go": "Idi", + "smw_browse_show_incoming": "Prikaži dolazna svojstva", + "smw_browse_hide_incoming": "Sakrij dolazna svojstva", + "smw_browse_no_outgoing": "Ova stranica nema svojstva.", + "smw_browse_no_incoming": "Nema osobina koje vežu na ovu stranicu.", + "smw-browse-show-group": "Prikaži grupe", + "smw-browse-hide-group": "Sakrij grupe", + "smw_inverse_label_default": "$1 od", + "smw_inverse_label_property": "Obrnuta oznaka svojstva", + "pageproperty": "Stranica za pretragu svojstva", + "pendingtasklist": "Spisak zadataka na čekanju", + "smw_pp_docu": "Pretraži sve vrednosti osobine na datoj stranici.\nUnesite oboje, i stranicu, i osobinu.", + "smw_pp_from": "Sa stranice:", + "smw_pp_type": "Svojstvo:", + "smw_pp_submit": "Pronađeni rezultati", + "smw_result_prev": "Prethodnih", + "smw_result_next": "Sledećih", + "smw_result_results": "Rezultati", + "smw_result_noresults": "Nema rezultata.", + "smwadmin": "Kontrolna tabla Semantičkog Medijavikija", + "smw-admin-statistics-job-title": "Statistika poslova", + "smw-admin-setupsuccess": "Mašina za skladištenje je postavljena.", + "smw_smwadmin_return": "Nazad na $1", + "smw_smwadmin_updatestarted": "Nov proces ažuriranja za osvežavanje semantičkih podataka je započet.\nSvi sačuvani podaci će biti ponovo izgrađeni ili popravljeni po potrebi.\nMožete da pratite tok ažuriranja na ovoj posebnoj stranici.", + "smw_smwadmin_updatenotstarted": "Već je u toku jedan proces ažuriranja.\nNe pokrećite drugi.", + "smw_smwadmin_updatestopped": "Svi postojeći procesi ažuriranja su obustavljeni.", + "smw_smwadmin_updatenotstopped": "Kako biste obustavili pokrenuti proces ažuriranja, morate kliknuti na kvadratić da biste potvrdili da ste sigurni.", + "smw-admin-docu": "Ova posebna stranica vam pomaže prilikom instaliranja, ažuriranja, održavanja i korišćenja Semantičkog medijavikija i takođe obezbeđuje dodatne funkcije administracije i zadatke, kao i statistiku.\nNe zaboravite da napravite kopiju vrednih podataka pre nego pokrenete funkcije administracije.", + "smw-admin-db": "Podešavanje baze podataka", + "smw-admin-dbdocu": "Semantički Medijaviki zahteva svoju strukturu baze podataka (koja je nezavisna od Medijavikijeve, te stoga ne obuhvata ostatak instalacije Medijavikija), kako bi mogli da se čuvaju semantički podaci.\nOva funkcija instaliranja se može pokretati više puta bez bojazni da će naneti neku štetu, ali je neophodna samo jednom prilikom instaliranja ili ažuriranja.", + "smw-admin-permissionswarn": "Ako se operacija završi sa SQL greškama, korisnik baze podataka (pogledajte vašu LocalSettings.php datoteku) verovatno nema dovoljno dozvola za izvršavanje neophodnih operacija.\nIli dajte neophodne dozvole tom korisniku kako bi mogao da pravi i briše tabele u bazi, privremeno se prijavite kao koren baze podataka u LocalSettings.php datoteci, ili koristite skriptu za održavanje setupStore.php, koja može koristiti akreditacije administratora.", + "smw-admin-dbbutton": "Pokretanje ili ažuriranje tabela", + "smw-admin-announce": "Najavite Vašu vikiju", + "smw-admin-deprecation-notice-title": "Napomene o zastarevanju", + "smw-admin-deprecation-notice-docu": "Sledeća sekcija sadrži podešavanja koja su zastarela ili su uklonjena ali su detektovana kao aktivna na ovoj Viki. Očekuje se da će se nekim budućim ažuriranjem ukloniti podrša za ova podešavanja.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] je zastareo parametar i biće uklonjen u verziji $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] je zamenjen parametar sa parametrom [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] je uklonjen parametar u verziji $2", + "smw-admin-deprecation-notice-title-notice": "Zastarela podešavanja", + "smw-admin-deprecation-notice-title-replacement": "Zamenjena ili preimenovana podešavanja", + "smw-admin-deprecation-notice-title-removal": "Uklonjena podešavanja", + "smw-admin-deprecation-notice-section-legend": "Legenda", + "smw_smwadmin_datarefresh": "Popravljanje podataka", + "smw_smwadmin_datarefreshdocu": "Postoji mogućnost za vraćanje svih podataka semantičkog Medijavikija koji su zasnovani na trenutnom sadržaju vikija.\nOvo je korisno za ispravku oštećenih podataka ili za obnovu podataka ako je unutrašnji format promenjen kao rezultat dogradnje softvera.\nAžuriranje se vrši za svaku stranicu ponaosob, i treba da prođe neko vreme kako bi se sve vratilo u normalu.\nIspod je prikazano da li je ažuriranje u toku, a to vam omogućava da započnete ili zaustavite dogradnje (osim ako tu mogućnost nije isključio administrator).", + "smw_smwadmin_datarefreshprogress": "Jedno ažuriranje je već u toku.\nNormalno je da ažuriranje napreduje sporo, pošto se samo osvežavaju mali delovi podataka svaki put kada korisnik pristupi vikiju.\nDa bi se ovo ažuriranje brže završilo, možete pokrenuti skriptu za održavanje Medijavikija runJobs.php (koristite opciju --maxjobs 1000 za ograničenje broja ažuriranja u jednom paketu).\nProcena napredovanja trenutnog ažuriranja:", + "smw_smwadmin_datarefreshbutton": "Zakaži ponovnu igradnju podataka", + "smw_smwadmin_datarefreshstop": "Zaustavi ovo ažuriranje", + "smw_smwadmin_datarefreshstopconfirm": "Da, {{GENDER:$1|siguran|sigurna}} sam.", + "smw-admin-support": "Dobijanje podrške", + "smw-admin-supportdocu": "Obezbeđeni su razni resursi da bi vam pomogli u slučaju problemâ:", + "smw-admin-installfile": "Ako naiđete na problem pri instalaciji, najpre pročitajte smernice u datoteci INSTALL i stranici za instalaciju.", + "smw-admin-smwhomepage": "Potpuna korisnička dokumentacija za Semantički medijaviki je na semantic-mediawiki.org.", + "smw-admin-bugsreport": "Greške mogu da se prijavljuju na pratiocu grešaka. Stranica „Prijavljivanje grešaka” pruža neke smernice o tome kako da napišete efektivan izveštaj o grešci.", + "smw-admin-questions": "Ako imate daljih pitanja ili predloga, uključite se u diskusiju na korisničkoj mejling listi.", + "smw-admin-other-functions": "Druge funkcije", + "smw-admin-supplementary-section-subtitle": "Podržane osnovne funkcije", + "smw-admin-supplementary-settings-title": "Konfiguracija i podešavanja", + "smw-admin-supplementary-operational-statistics-title": "Operativna statistika", + "smw-admin-supplementary-operational-statistics-cache-title": "Statistika keširanja", + "smw-admin-supplementary-elastic-functions": "Podržane funkcije", + "smw-admin-supplementary-elastic-settings-title": "Podešavanja (indicije)", + "smw-admin-supplementary-elastic-mappings-summary": "Rezime", + "smw-admin-supplementary-elastic-statistics-title": "Statistika", + "smw_adminlinks_datastructure": "Struktura podataka", + "smw_adminlinks_displayingdata": "Prikazivanje podataka", + "smw_adminlinks_inlinequerieshelp": "Pomoć za neposredne upite", + "smw-info-par-message": "Poruka za prikaz.", + "prefs-smw": "Semantički Medijaviki", + "prefs-general-options": "Opšte opcije", + "smw-ui-tooltip-title-info": "Informacije", + "smw-ui-tooltip-title-warning": "Upozorenje", + "smw-ui-tooltip-title-error": "Greška", + "smw-ui-tooltip-title-parameter": "Parametar", + "smw-ui-tooltip-title-event": "Događaj", + "smw-ui-tooltip-title-note": "Napomena", + "smw-ui-tooltip-title-legend": "Legenda", + "smw-ui-tooltip-title-reference": "Referenca", + "smw_unknowntype": "„$1” tip ovog svojstva je nevažeći.", + "smw_concept_header": "Stranice koncepta \"$1\"", + "smw_conceptarticlecount": "Prikaz $1 {{PLURAL:$1|stranice|stranica}} koje pripadaju tom konceptu.", + "right-smw-admin": "pristupanje administratorskim zadacima (Semantički Medijaviki)", + "action-smw-patternedit": "uređujete regularne izraze koje koristi Semantički Medijaviki", + "group-smwadministrator": "Administratori (Semantički Medijaviki)", + "grouppage-smwadministrator": "{{ns:project}}:Administratori (Semantički Medijaviki)", + "smw-sp-properties-header-label": "Spisak svojstava", + "smw-sp-admin-settings-button": "Generiši listu podešavanja", + "smw-admin-idlookup-input": "Pretraga:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Pregled", + "smw-admin-tab-maintenance": "Održavanje", + "smw-admin-tab-supplement": "Dopunske funkcije", + "smw-admin-tab-registry": "Registar", + "smw-admin-tab-alerts": "Upozorenja", + "smw-admin-alerts-tab-maintenancealerts": "Upozorenja održavanja", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Zastareli entiteti", + "smw-admin-maintenance-no-description": "Bez opisa.", + "smw-livepreview-loading": "Učitavam…", + "smw-sp-searchbyproperty-resultlist-header": "Lista rezultata", + "smw-search-syntax": "Sintaksa", + "smw-search-profile-tooltip": "Pretražite funkcije u vezi Semantičkog Medijavikija", + "smw-search-profile-sort-title": "Naslov", + "smw-search-profile-extended-help-query-link": "Za više detalja, koristite $1.", + "smw-search-profile-extended-help-find-forms": "dostupni oblici", + "smw-search-profile-extended-section-sort": "Poređaj po", + "smw-search-profile-extended-section-form": "Obrasci", + "smw-search-profile-extended-section-namespace": "Imenski prostor", + "smw-search-profile-extended-section-query": "Upit", + "smw-search-profile-link-caption-query": "izrada upita", + "smw-search-show": "Prikaži", + "smw-search-hide": "Sakrij", + "log-name-smw": "Dnevnik Semantičkog Medijavikija", + "log-show-hide-smw": "$1 dnevnik Semantičkog Medijavikija", + "logeventslist-smw-log": "Dnevnik Semantičkog Medijavikija", + "smw-type-tab-properties": "Svojstva", + "smw-type-tab-types": "Tipovi", + "smw-type-tab-errors": "Greške", + "smw-type-no-group": "Neklasifikovano", + "smw-limitreport-intext-parsertime": "[SMW] Vreme raščlanjivanja unutartekstualnih anotacija", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|sekund|sekunda|sekundi}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|sekund|sekunde|sekundi}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|sekund|sekunda|sekundi}}", + "smw-datavalue-allows-value-list-missing-marker": "Sadržaju liste „$1” nedostaju stavke sa * kao označivačem liste.", + "smw-datavalue-wikipage-invalid-title": "Unesena vrednost tipa stranice „$1” sadrži nevalidne karaktere ili je nekompletna i stoga može da uzrokuje neočekivane rezultate tokom pretrage ili procesa označavanja.", + "smw-datavalue-wikipage-property-invalid-title": "Svojstvo „$1” (kao tip stranice) sa unesenom vrednošću „$2” sadrži nevalidne karaktere ili je nekompletno i stoga može da uzrokuje neočekivane rezultate tokom pretrage ili procesa označavanja.", + "smw-clipboard-copy-link": "Kopiraj vezu na klipbord", + "smw-data-lookup": "Dobavljanje podataka...", + "smw-no-data-available": "Nema podataka.", + "smw-format-datatable-emptytable": "Nema dostupnih podataka u tabeli", + "smw-format-datatable-info": "Prikaz _START_ do _END_ od _TOTAL_ stavki", + "smw-format-datatable-infoempty": "Prikaz 0 do 0 od 0 stavki", + "smw-format-datatable-infofiltered": "(filtrirano od _MAX_ ukupno stavki)", + "smw-format-datatable-infothousands": ".", + "smw-format-datatable-lengthmenu": "Prikaži _MENU_ stavki", + "smw-format-datatable-loadingrecords": "Učitavanje...", + "smw-format-datatable-processing": "Obrada...", + "smw-format-datatable-search": "Pretraga:", + "smw-format-datatable-zerorecords": "Nema nađenih odgovarajućih podataka", + "smw-format-datatable-first": "Prvi", + "smw-format-datatable-last": "Poslednji", + "smw-format-datatable-next": "Sledeći", + "smw-format-datatable-previous": "Prethodni", + "smw-format-datatable-sortascending": ": uključite da biste rastuće poređali kolone", + "smw-format-datatable-sortdescending": ": uključite da biste opadajuće poređali kolone", + "smw-format-datatable-toolbar-export": "Izvoz", + "smw-property-reserved-category": "Kategorija", + "smw-category": "Kategorija", + "smw-filter": "Filter", + "smw-help": "Pomoć", + "smw-processing": "Obrađivanje...", + "smw-loading": "Učitavanje...", + "smw-fetching": "Dobavljanje...", + "smw-preparing": "Pripremanje...", + "smw-expand": "Proširi", + "smw-collapse": "Skupi", + "smw-copy": "Kopiraj", + "smw-copy-clipboard-title": "Kopira sadržaj u ostavu", + "smw-jsonview-expand-title": "Širi JSON prikaz", + "smw-jsonview-collapse-title": "Skuplja JSON prikaz", + "smw-types-title": "Vrsta: $1", + "smw-schema-error-title": "Provera {{PLURAL:$1|greške|grešaka}}", + "smw-schema-error-violation": "[„$1”, „$2”]", + "smw-schema-title": "Šema", + "smw-schema-type": "Tip šeme", + "smw-schema-tag": "{{PLURAL:$1|Oznaka|Oznake}}", + "smw-property-tab-usage": "Upotreba", + "smw-property-tab-redirects": "Sinonimi", + "smw-property-tab-subproperties": "Podsvojstva", + "smw-property-tab-specification": "… više", + "smw-concept-tab-list": "Spisak", + "smw-concept-tab-errors": "Greške", + "smw-ask-tab-extra": "Dodatno", + "smw-ask-tab-code": "Kôd", + "smw-pendingtasks-setup-tasks": "Zadaci", + "smw-es-replication-error-divergent-date-short": "Sledeće informacije o datumu korišćene su radi poređenja:", + "smw-facetedsearch-profile-label-default": "Podrazumevan profil", + "smw-facetedsearch-intro-tab-search": "Pretraga", + "smw-facetedsearch-profile-options": "Opcije profila", + "smw-facetedsearch-order-options": "Opcije sortiranja", + "smw-facetedsearch-format-options": "Opcije prikaza", + "smw-facetedsearch-format-table": "Tabela", + "smw-facetedsearch-input-filter-placeholder": "Filtriraj...", + "smw-facetedsearch-no-filters": "Nema filtera.", + "smw-search-placeholder": "Pretraga...", + "smw-listingcontinuesabbrev": "nast.", + "smw-showingresults": "{{PLURAL:$1|1=Prikazan je jedan rezultat|Prikazan je $1 rezultat|Prikazana su $1 rezultata|Prikazano je $1 rezultata}}; broj prve stavke: $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/stq.json b/mediawiki/extensions/SemanticMediaWiki/i18n/stq.json new file mode 100644 index 0000000..e6427b4 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/stq.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Maartenvdbent" + ] + }, + "smw-categories": "Kategorien", + "smw-livepreview-loading": "Leede …", + "smw-listingcontinuesabbrev": "(Foutsättenge)", + "smw-showingresults": "Hier {{PLURAL:$1|is '''1''' Resultoat|sunt '''$1''' Resultoate}}, ounfangend mäd Nuumer '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/su.json b/mediawiki/extensions/SemanticMediaWiki/i18n/su.json new file mode 100644 index 0000000..877ad68 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/su.json @@ -0,0 +1,41 @@ +{ + "@metadata": { + "authors": [ + "Dipusparaga", + "Kandar", + "Uchup19" + ] + }, + "smw_true_words": "bener,t,nya,y", + "smw-categories": "Kategori", + "smw-special-property-searchform": "Témbongkeun properti anu ngandung:", + "smw-special-property-searchform-options": "Pilihan", + "smw-special-wantedproperties-filter-label": "Saringan:", + "smw-special-wantedproperties-filter-none": "Taya", + "smw-special-wantedproperties-filter-unapproved": "Teu disatujuan", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|make}})", + "smw-ask-order-rand": "Acak", + "smw-ask-sort-add-action": "Tambah kondisi susun", + "smw_ask_queryhead": "Kondisi", + "smw-ask-delete": "Pupus", + "smw-ask-options": "Pilihan", + "smw-ask-options-sort": "Pilihan susun", + "smw-ask-debug": "Debug", + "smw-ask-result": "Hasil", + "smw-ask-empty": "Kosong", + "smw-ask-format": "Format", + "browse": "Sungsi wiki", + "smw-admin-deprecation-notice-title-notice": "Ilikan", + "smw-admin-deprecation-notice-title-replacement": "Gagantian", + "smw-admin-deprecation-notice-title-removal": "Alihan", + "smw_smwadmin_datarefreshstopconfirm": "Nya, kuring {{GENDER:$1|yakin}}", + "smw-livepreview-loading": "Ngamuat…", + "smw-format-datatable-emptytable": "Euweuh data dina tabel", + "smw-format-datatable-loadingrecords": "Ngamuat…", + "smw-format-datatable-search": "Paluruh", + "smw-format-datatable-first": "mimiti", + "smw-format-datatable-last": "Pamungkas", + "smw-format-datatable-next": "Saterusna", + "smw-listingcontinuesabbrev": "(samb.)", + "smw-showingresults": "Di handap ieu némbongkeun {{PLURAL:$1|'''1''' hasil|'''$1''' hasil}}, dimimitianku #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sv.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sv.json new file mode 100644 index 0000000..a056f2d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sv.json @@ -0,0 +1,673 @@ +{ + "@metadata": { + "authors": [ + "Ainali", + "Bengtsson96", + "Boivie", + "Dan Koehl", + "Dhallin", + "Eliasb", + "Flrn", + "Freked", + "Gabbe.g", + "Habj", + "Jopparn", + "Josve05a", + "Lejonel", + "Leo Johannes", + "Lokal Profil", + "M.M.S.", + "Macofe", + "MagnusA", + "Martinwiss", + "McDutchie", + "Mjälten", + "Najami", + "Nemo bis", + "Per", + "Rockyfelle", + "Rotsee", + "Sabelöga", + "Sannab", + "Skalman", + "Umeaboy", + "WikiPhoenix", + "아라" + ] + }, + "smw-desc": "Gör din wiki mer tillgänglig – för både maskiner och människor ([https://www.semantic-mediawiki.org/wiki/Help:User_manual dokumentation online])", + "smw-error": "Fel", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] installerade och aktiverades men saknar en lämplig [https://www.semantic-mediawiki.org/wiki/Help:Upgrade uppgraderingsnyckel].", + "smw-upgrade-release": "Utgåva", + "smw-upgrade-progress": "Framsteg", + "smw-upgrade-error-title": "Fel » Semantic MediaWiki", + "smw-upgrade-error-why-title": "Varför ser jag denna sida?", + "smw-upgrade-error-how-title": "Hur kan jag åtgärda felet?", + "smw-extensionload-error-why-title": "Varför ser jag denna sida?", + "smw-extensionload-error-how-title": "Hur kan jag åtgärda felet?", + "smw-upgrade-maintenance-why-title": "Varför ser jag denna sida?", + "smw-semantics-not-enabled": "Semantic MediaWiki-funktionalitet är inte aktiverad på denna wiki.", + "smw_viewasrdf": "RDF-matning", + "smw_finallistconjunct": "och", + "smw-factbox-head": "... mer om \"$1\"", + "smw-factbox-facts": "Fakta", + "smw-factbox-facts-help": "Visar påståenden och fakta som en användare har skapat", + "smw-factbox-attachments": "Bilagor", + "smw-factbox-attachments-value-unknown": "N/A", + "smw-factbox-attachments-is-local": "Är lokal", + "smw-factbox-attachments-help": "Visa tillgängliga bilagor", + "smw-factbox-facts-derived": "Avledd fakta", + "smw-factbox-facts-derived-help": "Visar fakta som har avletts från regler eller med hjälp av andra resonemangsverktyg.", + "smw_isspecprop": "Den här egenskapen är en specialegenskap på den här wikin.", + "smw-concept-cache-header": "Cacheanvändning", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count Konceptcachen] innehåller {{PLURAL:$1|'''en''' entitet|'''$1''' entiteter}} ($2).", + "smw-concept-no-cache": "Ingen tillgänglig cache.", + "smw_concept_description": "Beskrivning av konceptet ”$1”", + "smw_no_concept_namespace": "Koncept kan endast defineras på sidor i namnrymden Concept:", + "smw_multiple_concepts": "Varje konceptsida kan endast ha en konceptdefinition.", + "smw_concept_cache_miss": "Konceptet \"$1\" kan inte användas för tillfället, eftersom wiki-konfigurationen kräver att det beräknas off-line.\nOm problemet inte försvinner efter någon tid, så be din administratör att göra konceptet tillgängligt.", + "smw_noinvannot": "Värden kan inte tilldelas inverterade egenskaper.", + "version-semantic": "Semantiska tillägg", + "smw_baduri": "Beklagar, URI:er på formen \"$1\" är inte tillåtna.", + "smw_printername_count": "Antal", + "smw_printername_csv": "CSV", + "smw_printername_dsv": "DSV", + "smw_printername_debug": "Debug (för experter)", + "smw_printername_embedded": "Bädda in sidinnehåll", + "smw_printername_json": "JSON", + "smw_printername_list": "Lista", + "smw_printername_plainlist": "Vanlig lista", + "smw_printername_ol": "Numrerad lista", + "smw_printername_ul": "Punktlista", + "smw_printername_table": "Tabell", + "smw_printername_broadtable": "Bred tabell", + "smw_printername_template": "Mall", + "smw_printername_templatefile": "Mallfil", + "smw_printername_rdf": "RDF", + "smw_printername_category": "Kategori", + "validator-type-class-SMWParamSource": "text", + "smw-paramdesc-limit": "Maximalt antal resultat att visa", + "smw-paramdesc-offset": "Vilket resultat i ordningen ska visas som det första?", + "smw-paramdesc-headers": "Visa rubriker/egenskapsnamn", + "smw-paramdesc-mainlabel": "Etiketten som ska ges till huvudsidans namn", + "smw-paramdesc-link": "Visa värden som länkar", + "smw-paramdesc-intro": "Text som ska visas före resultatet (om det finns något)", + "smw-paramdesc-outro": "Text som ska visas efter resultatet (om det finns något)", + "smw-paramdesc-default": "Text som ska visas om det inte finns något resultat", + "smw-paramdesc-sep": "Skiljetecken mellan resultaten", + "smw-paramdesc-showsep": "Visa skiljetecken högst upp i CSV-filen (\"sep=\")", + "smw-paramdesc-distribution": "Räkna och visa antalet förekomster istället för att visa alla värden.", + "smw-paramdesc-distributionsort": "Sortera värdena efter hur ofta de förekommer.", + "smw-paramdesc-distributionlimit": "Begränsa värdefördelningen till vissa värdens antal", + "smw-paramdesc-template": "Namnet på den mall som ska skriva ut resultatet", + "smw-paramdesc-columns": "Antalet kolumner som ska visa resultat", + "smw-paramdesc-userparam": "Ett värde som skickas till varje mall, om mallar används", + "smw-paramdesc-introtemplate": "Mall som ska ska visas före resultatet, om det finns något", + "smw-paramdesc-outrotemplate": "Mall som ska visas efter resultatet, som det finns något", + "smw-paramdesc-embedformat": "HTML-element för rubriker", + "smw-paramdesc-embedonly": "Visa inga rubriker", + "smw-paramdesc-table-class": "Ytterligare CSS-klass som ska användas för tabellen", + "smw-paramdesc-table-transpose": "Visa tabellrubriker vertikalt och resultat horisontellt", + "smw-paramdesc-rdfsyntax": "RDF-syntax som ska användas", + "smw-paramdesc-csv-sep": "Anger en kolumnseparator", + "smw-paramdesc-csv-valuesep": "Anger en värdeseparator", + "smw-paramdesc-dsv-separator": "Skiljetecken att använda", + "smw-paramdesc-dsv-filename": "Namn på DSV-filen", + "smw-paramdesc-filename": "Namn på filen", + "smw-smwdoc-description": "Visar en tabell med alla parametrar som kan användas för det angivna resultatformatet, samt standardvärden och beskrivningar.", + "smw-smwdoc-par-format": "Resultatformatet som parameter-dokumentation ska visas för.", + "smw-smwdoc-par-parameters": "Vilka parametrar som ska visas. Välj ”specific” för sådana som hör till det här formatet, ”base” för sådana som är tillgängliga för alla format, och ”all” för samtliga parametrar.", + "smw-paramdesc-sort": "Egenskap som resultatet ska sorteras efter", + "smw-paramdesc-order": "Hur ska resultaten sorteras?", + "smw-paramdesc-searchlabel": "Text för att visa ytterligare resultat", + "smw-paramdesc-named_args": "Namnet på de argument som ska ges till mallen", + "smw-paramdesc-export": "Export-alternativ", + "smw-paramdesc-prettyprint": "”Pretty-print”-version med indrag och radbrytningar", + "smw-paramdesc-source": "Alternativ frågekälla", + "smw-paramdesc-jsonsyntax": "JSON-syntax som ska användas", + "smw-printername-feed": "RSS- och Atom-feed", + "smw-paramdesc-feedtype": "Feed-typ", + "smw-paramdesc-feedtitle": "Texten som ska användas som rubrik för feeden", + "smw-paramdesc-feeddescription": "Texten som ska användas som beskrivning av feeden", + "smw-paramdesc-feedpagecontent": "Sidinnehåll som ska visas tillsammans med feeden", + "smw-label-feed-description": "$1 $2-feed", + "smw-paramdesc-mimetype": "Mediatypen (MIMI-typen) för utmatningsfilen", + "smw_iq_disabled": "Beklagar. Semantiska sökning har slagits av på den här wikin.", + "smw_iq_moreresults": "… ytterligare resultat", + "smw_parseerror": "Det angivna värdet förstods inte.", + "smw_notitle": "\"$1\" kan inte användas som sidnamn på den här wikin.", + "smw_noproperty": "”$1” kan inte användas som namn på en egenskap på den här wikin.", + "smw_wrong_namespace": "Endast sidor i namnrymden \"$1\" tillåts här.", + "smw_manytypes": "Mer än en typ definierad för egenskapen.", + "smw_emptystring": "Tomma stränger accepteras inte.", + "smw_notinenum": "\"$1\" är inte i listan ($2) över [[Property:Allows value|tillåtna värden]] för egenskapen \"$3\".", + "smw-datavalue-constraint-error-allows-value-list": "\"$1\" finns inte i listan ($2) över [[Property:Allows value|tillåtna värden]] för egenskapen \"$3\".", + "smw-datavalue-constraint-error-allows-value-range": "\"$1\" är inte inom intervallet för \"$2\" som specificeras av begränsningen [[Property:Allows value|tillåtna värden]] för egenskapen \"$3\".", + "smw_noboolean": "\"$1\" är inte ett giltigt booleskt värde (sant/falskt).", + "smw_true_words": "sant,s,ja,j", + "smw_false_words": "falskt,f,nej,n", + "smw_nofloat": "\"$1\" är inte ett tal.", + "smw_infinite": "Tal så stora som \"$1\" stödjs inte.", + "smw_unitnotallowed": "”$1” är ingen giltigt måttenhet för den här egenskapen.", + "smw_nounitsdeclared": "Inga måttenheter har definierats för den här egenskapen.", + "smw_novalues": "Inga värden angivna.", + "smw_nodatetime": "Datumet \"$1\" förstods inte.", + "smw_toomanyclosing": "\"$1\" uppträder för många gånger i efterfrågningen.", + "smw_noclosingbrackets": "Användningen av \"[[\" i din efterfrågning stängdes inte av \"]]\".", + "smw_misplacedsymbol": "Symbolen \"$1\" användes på en plats där den inte är användbar.", + "smw_unexpectedpart": "Delen \"$1\" av efterfrågningen förstods inte.\nVissa resultat kan bli oväntade.", + "smw_emptysubquery": "Någon underfråga har inget giltigt villkor.", + "smw_misplacedsubquery": "Någon underfråga användes på ett ställe där inga underfrågor tillåts.", + "smw_valuesubquery": "Underfrågor stöds inte för värden på egenskapen “$1”.", + "smw_badqueryatom": "Någon del “[[…]]” av frågan förstods inte.", + "smw_propvalueproblem": "Värdet på egenskap “$1” förstods inte.", + "smw_noqueryfeature": "För någon frågefunktion saknades det stöd i denna wikin och delar av frågan hoppades över ($1).", + "smw_noconjunctions": "För konjunktioner i frågor saknas det stöd i denna wikin och delar av frågan hoppades över ($1).", + "smw_nodisjunctions": "För disjunktioner i frågor saknas det stöd i denna wikin och delar av frågan hoppades över ($1).", + "smw_querytoolarge": "Följande {{PLURAL:$2|frågevillkor|$2 frågevillkor}} kunde inte tas hänsyn till på grund av wikins begränsningar i frågestorlek eller -djup: $1.", + "smw_notemplategiven": "För att den här frågan ska fungera behöver du ange ett värde på parametern \"template\".", + "smw_db_sparqlqueryproblem": "Svaren på frågan kunde inte fås från SPARQL-databasen. Det här felet kan vara tillfälligt eller också så kan det bero på ett permanent fel med databasen.", + "smw_db_sparqlqueryincomplete": "Den här frågan visade sig vara för komplex, och har arbetet med att besvara den har avbrutits. En del resultat kan saknas. Försök om möjligt med en enklare fråga.", + "smw_type_header": "Egenskaper av typen “$1”", + "smw_typearticlecount": "Visar $1 {{PLURAL:$1|egenskap|egenskaper}} som använder den här typen.", + "smw_attribute_header": "Sidor som använder egenskapen \"$1\"", + "smw_attributearticlecount": "Visar $1 {{PLURAL:$1|sida|sidor}} som använder den här egenskapen.", + "smw-propertylist-subproperty-header": "Underegenskaper", + "smw-propertylist-redirect-header": "Synonymer", + "smw-propertylist-count": "Visar $1 {{PLURAL:$1|relaterad entitet|relaterade entiteter}}.", + "smw-propertylist-count-with-restricted-note": "Visar $1 {{PLURAL:$1|relaterad entitet|relaterade entiteter}} (fler finns tillgängliga men antalet som visas begränsas till \"$2\").", + "smw-propertylist-count-more-available": "Visar $1 {{PLURAL:$1|relaterad entitet|relaterade entiteter}} (fler finns tillgängliga).", + "specialpages-group-smw_group-maintenance": "Underhåll", + "specialpages-group-smw_group-search": "Bläddra och sök", + "exportrdf": "Exportera sidor till RDF", + "smw_exportrdf_docu": "Den här sidan låter dig hämta data från en sida i RDF-format.\nSkriv sidtitlar i textrutan härunder för att exportera sidor (en titel per rad).", + "smw_exportrdf_recursive": "Exportera alla relaterade sidor rekursivt.\nObservera att resultatet kan bli stort!", + "smw_exportrdf_backlinks": "Exportera också alla sidor som refererar till de exporterade sidorna.\nSkapar en RDF som kan gås igenom.", + "smw_exportrdf_lastdate": "Exportera inte sidor som inte ändrats efter den uppgivna tidpunkten.", + "smw_exportrdf_submit": "Exportera", + "uriresolver": "URI-lösare", + "properties": "Egenskaper", + "smw-categories": "Kategorier", + "smw_properties_docu": "Följande egenskaper används i wikin", + "smw_property_template": "$1 av typen $2 ($3 {{PLURAL:$3| gång| gånger}})", + "smw_propertylackspage": "Alla egenskaper ska beskrivas av en sida!", + "smw_propertylackstype": "Ingen typ specificerades för denna egenskap (antar typ $1 tills vidare).", + "smw_propertyhardlyused": "Denna egenskap används knappt i wikin!", + "smw-property-name-invalid": "Egenskapen $1 kan inte användas (ogiltigt egenskapsnamn).", + "smw-property-name-reserved": "\"$1\" har listats som ett reservat namn och bör inte användas som en egenskap. Följande [https://www.semantic-mediawiki.org/wiki/Help:Property_naming hjälpsida] kan innehålla information om varför detta namn reserverades.", + "smw-sp-property-searchform": "Visa egenskaper som innehåller:", + "smw-sp-property-searchform-inputinfo": "Indata är skiftlägeskänsligt och, när den används för filtrering, visas endast egenskaper som matchar villkoret.", + "smw-special-property-searchform": "Visa egenskaper som innehåller:", + "smw-special-property-searchform-inputinfo": "Indata är skiftlägeskänsligt och, när den används för filtrering, visas endast egenskaper som matchar villkoret.", + "smw-special-property-searchform-options": "Alternativ", + "smw-special-wantedproperties-filter-label": "Filter:", + "smw-special-wantedproperties-filter-none": "Ingen", + "smw-special-wantedproperties-filter-unapproved": "Inte godkänd", + "smw-special-wantedproperties-filter-unapproved-desc": "Filtreringsalternativ som används i anslutning med auktoriseringsläget.", + "concepts": "Begrepp", + "smw-special-concept-docu": "Ett [https://www.semantic-mediawiki.org/wiki/Help:Concepts koncept] är ett slags ”dynamisk katagori”, det vill säga en samling sidor som skapas automatiskt utifrån en semantisk sökning", + "smw-special-concept-header": "Lista över begrepp", + "smw-special-concept-count": "Följande {{PLURAL:$1|begrepp|$1 begrepp}} {{PLURAL:$1|är}} listade.", + "smw-special-concept-empty": "Inget begrepp hittades.", + "unusedproperties": "Oanvända egenskaper", + "smw-unusedproperties-docu": "Denna sida listar [https://www.semantic-mediawiki.org/wiki/Unused_properties oanvända egenskaper] som finns fastän ingen annan sida använder dem. For en annan vy, se specialsidorna [[Special:Properties|alla]] eller [[Special:WantedProperties|önskade egenskaper]].", + "smw-unusedproperty-template": "$1 av typen $2", + "wantedproperties": "Önskade egenskaper", + "smw-wantedproperties-docu": "Denna sida listar [https://www.semantic-mediawiki.org/wiki/Wanted_properties önskade egenskaper] som används i wikin men har ännu inte en sida som beskriver dem. För en annan vy, se specialsidorna [[Special:Properties|alla]] eller [[Special:UnusedProperties|oanvända egenskaper]].", + "smw-wantedproperty-template": "$1 (använd $2 {{PLURAL:$2|gång|gånger}})", + "smw-special-wantedproperties-docu": "Denna sida listar [https://www.semantic-mediawiki.org/wiki/Wanted_properties önskade egenskaper] som används i wikin men har ännu inte en sida som beskriver dem. För en annan vy, se specialsidorna [[Special:Properties|alla]] eller [[Special:UnusedProperties|oanvända egenskaper]].", + "smw-special-wantedproperties-template": "$1 (används $2 {{PLURAL:$2|gång|gånger}})", + "smw_purge": "Uppdatera", + "smw-purge-failed": "Uppdatering misslyckades", + "types": "Typer", + "smw_types_docu": "Lista över [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes tillgängliga datatyper] där varje [https://www.semantic-mediawiki.org/wiki/Help:Datatype typ] representerar en unik uppsättning attribut för att beskriva ett värde i termer av hur det lagras och visas, som ärvs av en tilldelad egenskap.", + "smw-special-types-no-such-type": "Den angivna datatypen finns inte", + "smw-statistics": "Semantisk statistik", + "smw-statistics-property-instance": "Egenskaps{{PLURAL:$1|värde|värden}} (totalt)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Egenskap|Egenskaper}}]] (totalt)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Egenskap|Egenskaper}} (totalt)", + "smw-statistics-property-used": "{{PLURAL:$1|Egenskap|Egenskaper}} (används med minst ett värde)", + "smw-statistics-property-page": "{{PLURAL:$1|Egenskap|Egenskaper}} (som har en egen sida)", + "smw-statistics-property-type": "{{PLURAL:$1|Egenskap|Egenskaper}} (som har tilldelats en datatyp)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Fråga|Frågor}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Förfråga|Förfrågningar}}]]", + "smw-statistics-query-size": "Frågestorlek", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Koncept}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Koncept}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Underobjekt}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Underobjekt}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Datatyp|Datatyper}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Egenskapsvärde|Egenskapsvärden}} ([[Special:ProcessingErrorList|{{PLURAL:$1|felaktig annotering|felaktiga annoteringar}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Egenskapsvärde|Egenskapsvärden}} ({{PLURAL:$1|felaktig kommentar|felaktiga kommentarer}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Föråldrad entitet|Föråldrade entiteter}}]", + "smw_uri_doc": "The URI resolver implements the [$1 W3C TAG finding on httpRange-14].\nIt takes care that humans do not turn into websites.", + "ask": "Semantisk sökning", + "smw_ask_sortby": "Sortera efter kolumn (valfritt)", + "smw_ask_ascorder": "Stigande", + "smw_ask_descorder": "Fallande", + "smw-ask-order-rand": "Slumpartad", + "smw_ask_submit": "Sök", + "smw_ask_editquery": "Redigera fråga", + "smw_add_sortcondition": "[Lägg till sorteringsvillkor]", + "smw-ask-sort-add-action": "Lägg till sorteringsvillkor", + "smw_ask_hidequery": "Dölj fråga (kompakt vy)", + "smw_ask_help": "Frågehjälp", + "smw_ask_queryhead": "Villkor", + "smw_ask_printhead": "Urval för utskrift", + "smw_ask_printdesc": "(lägg till varje egenskap på en egen rad)", + "smw_ask_format_as": "Formatera som:", + "smw_ask_defaultformat": "standard", + "smw_ask_otheroptions": "Andra alternativ", + "smw-ask-otheroptions-info": "Den här delen innehåller alternativ som påverkar ”printout statements”. Beskrivningar av parametrarna visas när du för muspekaren över dem.", + "smw-ask-otheroptions-collapsed-info": "Använd plus-tecknet för att visa alla tillgänliga alternativ.", + "smw_ask_show_embed": "Visa inbäddad kod", + "smw_ask_hide_embed": "Göm inbäddad kod", + "smw_ask_embed_instr": "Använd koden nedan för att lägga in den här frågan i en wiki-sida.", + "smw-ask-delete": "Ta bort", + "smw-ask-sorting": "Sortering", + "smw-ask-options": "Alternativ", + "smw-ask-options-sort": "Sorteringsalternativ", + "smw-ask-format-options": "Format och alternativ", + "smw-ask-parameters": "Parametrar", + "smw-ask-search": "Sök", + "smw-ask-debug": "Felsökning", + "smw-ask-debug-desc": "Skapar felsökningsinformation för fråga", + "smw-ask-no-cache": "Inaktivera frågecache", + "smw-ask-no-cache-desc": "Resultat utan frågecache", + "smw-ask-result": "Resultat", + "smw-ask-empty": "Rensa bort alla poster", + "smw-ask-download-link-desc": "Ladda ned frågeresultat i formatet $1", + "smw-ask-format": "Format", + "smw-ask-format-selection-help": "Hjälp med det valda formatet $1.", + "smw-ask-condition-change-info": "Villkoret förändrades och sökmotorn behöver köra frågan igen för att producera resultat som matchar de nya kraven.", + "smw-ask-input-assistance": "Inmatningassistans", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Inmatnings assistans] tillhandahålls för utskrifter, sortering och villkorsfält. Villkorsfältet kräver att en av följande prefix används:", + "smw-ask-condition-input-assistance-property": "p: för att hämta egenskapsförslag (t.ex. [[p:Har …)", + "smw-ask-condition-input-assistance-category": "c: för att hämta kategoriförslag", + "smw-ask-condition-input-assistance-concept": "con: för att hämta konceptsökningar", + "smw-ask-query-search-info": "Frågan $1 besvarades av {{PLURAL:$3|1=$2 (från cachen)|$2 (från cachen)|$2}} i $4 {{PLURAL:$4|sekund|sekunder}}.", + "searchbyproperty": "Sökning per egenskap", + "processingerrorlist": "Lista över bearbetningsfel", + "smw-processingerrorlist-intro": "Följande lista tillhandahåller en översikt över bearbetningsfelen som uppstod i anslutning med [https://www.semantic-mediawiki.org/ Semantic MediaWiki]. Det är rekommenderat att övervaka denna lista då och då och korrigera annoteringar om ogiltiga värden.", + "smw_sbv_docu": "Sök efter alla sidor som har en given egenskap och värde.", + "smw_sbv_novalue": "Skriv in ett giltigt värde för egenskapen, eller visa alla egenskapsvärden för ”$1”.", + "smw_sbv_displayresultfuzzy": "En lista över alla sidor som har egenskapen ”$1” med värdet ”$2”.\nEftersom det bara finns ett fåtal resultat, visas även snarlika värden.", + "smw_sbv_property": "Egenskap:", + "smw_sbv_value": "Värde:", + "smw_sbv_submit": "Sök", + "browse": "Bläddra igenom wikin", + "smw_browselink": "Bläddra genom egenskaper", + "smw_browse_article": "Skriv namnet på sidan du vill börja bläddra från.", + "smw_browse_go": "Visa", + "smw_browse_show_incoming": "Visa inkommande egenskaper", + "smw_browse_hide_incoming": "Dölj inkommande egenskaper", + "smw_browse_no_outgoing": "Denna sida har inga egenskaper.", + "smw_browse_no_incoming": "Inga egenskaper länkar till den här sidan.", + "smw-browse-show-group": "Visa grupper", + "smw-browse-hide-group": "Dölj grupper", + "smw_inverse_label_default": "$1 av", + "smw_inverse_label_property": "Benämning på inverterad egenskap", + "pageproperty": "Sidegenskapssökning", + "smw_pp_docu": "Ange antingen en sida och egenskap, eller bara en egenskap för att hämta alla tilldelade värden.", + "smw_pp_from": "Från sidan:", + "smw_pp_type": "Egenskap:", + "smw_pp_submit": "Hitta resultat", + "smw_result_prev": "Föregående", + "smw_result_next": "Nästa", + "smw_result_results": "Resultat", + "smw_result_noresults": "Beklagar, inga resultat.", + "smwadmin": "Administrativa och underhållsorienterande funktioner", + "smw-admin-statistics-job-title": "Jobbstatistik", + "smw-admin-statistics-job-docu": "Jobbstatistiken visar information om schemalagda Semantic MediaWiki-jobb som inte ännu har utförts. Antalet jobb kan vara något felaktiga eller innehålla misslyckade försök, läs [https://www.mediawiki.org/wiki/Manual:Job_queue manualen] för mer information.", + "smw-admin-statistics-semanticdata-overview": "Översikt", + "smw-admin-setupsuccess": "Lagringsmotorn har satts upp.", + "smw_smwadmin_return": "Gå tillbaka till $1", + "smw_smwadmin_updatestarted": "Nu har en ny process för att uppdatera semantiska data påbörjats.\nAlla semantiska data kommer att återuppbyggas och repareras där så behövs.\nDu kan följa processen på den här specialsidan.", + "smw_smwadmin_updatenotstarted": "Process för att uppdatera pågår.\nStartar ingen ny process.", + "smw_smwadmin_updatestopped": "Alla uppdateringsprocesser har avslutats.", + "smw_smwadmin_updatenotstopped": "För att avsluta uppdaterings-processen måste du aktivera kryss-rutan.", + "smw-admin-docu": "Denna specialsida hjälper dig under installation, uppgradering, underhåll och användning av Semantic MediaWiki och tillhandahåller också ytterligare administrativa funktioner och uppgifter, såväl som statistik.\nKom ihåg att säkerhetskopiera värdefull data innan du kör administrativa funktioner!", + "smw-admin-environment": "Programvarumiljö", + "smw-admin-db": "Inställning av databas", + "smw-admin-dbdocu": "Semantic's MediaWiki kräver sin egen databas-struktur (och är oberoende från MediaWiki vilket inte påverkar resten av MediaWiki-installationen) för att kunna lagra semantic-datan.\nDet här installationsfunktionen kan exekveras flerfaldiga gånger utan att det gör någon skada, men det behövs endast en gång i installation eller uppgradering.", + "smw-admin-permissionswarn": "Om operationen misslyckas och visar SQL-fel så har din användare för databasen (kolla inställningarna i filen \"LocalSettings.php\") förmodligen inte tillräckliga rättigheter.\nDet finns tre sätt att åtgärda detta: Ge rättigheter till användaren att skapa och radera tabeller, ändra temporärt användaren till ''root'' i \"LocalSettings.php\", eller använd underhålls-scriptet setupStore.php, vilken kan använda rättigheterna för en administratör.", + "smw-admin-dbbutton": "Initialisera eller uppgradera tabeller", + "smw-admin-announce": "Meddela att din wiki finns", + "smw-admin-announce-text": "Om din wiki är offentligt kan du registrera den på WikiApiary, wikin som listar upp wikier.", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] kommer ta bort eller ersätta följande {{PLURAL:$2|val}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 rekommenderas inte och kommer tas bort i $2", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] ersattes av $2", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|val}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 ersätts av $2", + "smw-admin-deprecation-notice-title-notice": "Kommande ändringar", + "smw-admin-deprecation-notice-title-replacement": "Ersatta eller omdöpta inställningar", + "smw-admin-deprecation-notice-title-replacement-explanation": "Följande avsnitt innehåller inställningar som har döpts om eller annars förändrats och rekommenderas att uppdatera deras namn eller format omedelbart.", + "smw-admin-deprecation-notice-title-removal": "Borttagna inställningar", + "smw-admin-deprecation-notice-title-removal-explanation": "Inställningarna som listas har tagits bort i en tidigare utgåva men användning har upptäckts på denna wiki.", + "smw-admin-deprecation-notice-section-legend": "Teckenförklaring", + "smw-smwadmin-refresh-title": "Datareparation och -uppdatering", + "smw_smwadmin_datarefresh": "Datauppbyggning", + "smw_smwadmin_datarefreshdocu": "Det är möjligt att återställa all Semantic MediaWiki-data baserat på det aktuella innehållet för din wiki.\nDetta kan vara användbart för att reparera eller fräscha upp data om det interna formatet har ändrats på grund av programuppdateringar.\nUppdateringen utförs sida för sida och blir inte klar omedelbart.\nDet följande visar om en uppdatering pågår och tillåter dig att starta eller stoppa uppdateringar (såvida inte denna finess har stängts av av administratören).", + "smw_smwadmin_datarefreshprogress": "En uppdatering pågår redan.\nDet är normalt att uppdateringen fortskrider långsamt, eftersom den endast uppdaterar data i små bitar åt gången varje gång en användare använder wikin.\nFör att avsluta uppdateringen snabbare, kan du köra MediaWiki-scriptet runJobs.php (använd valet --maxjobs 1000 för att begränsa antalet uppdateringar per körning).\nUppskattning av hur långt uppdateringen har kommit:", + "smw_smwadmin_datarefreshbutton": "Schemalägg återuppbyggnad av data", + "smw_smwadmin_datarefreshstop": "Stoppa denna uppdatering", + "smw_smwadmin_datarefreshstopconfirm": "Ja, jag är {{GENDER:$1|säker}}.", + "smw-admin-support": "Få support", + "smw-admin-supportdocu": "Diverse resurser tillhandahålls för kan hjälpa dig, om du får problem:", + "smw-admin-installfile": "Om du har problem med din installation, börja med att läsa instruktionerna i installationsfilen och installationssidan.", + "smw-admin-smwhomepage": "Den kompletta användardokumentationen till Semantic MediaWiki finns på semantic-mediawiki.org.", + "smw-admin-bugsreport": "Fel kan rapporteras på ärendehanteraren, sidan för att rapportera buggar tillhandahåller lite hjälp om hur man skriver en effektiv ärenderapport.", + "smw-admin-questions": "Om du har ytterligare frågor eller förslag, diskutera dem på Semantic MediaWiki användarsändlista!", + "smw-admin-other-functions": "Andra funktioner", + "smw-admin-statistics-extra": "Ytterligare statistik", + "smw-admin-statistics": "Statistik", + "smw-admin-supplementary-section-title": "Extra funktioner", + "smw-admin-supplementary-section-subtitle": "Kärnfunktioner som stöds", + "smw-admin-supplementary-section-intro": "Vissa av de listades funktionerna i detta avsnitt kan vara begränsade och är därför otillgängliga på denna wiki.", + "smw-admin-supplementary-settings-title": "Konfiguration och inställningar", + "smw-admin-supplementary-operational-statistics-title": "Driftstatistik", + "smw-admin-supplementary-operational-statistics-intro": "$1 visar en utvidgad samling statistik", + "smw-admin-supplementary-duplookup-title": "Duplicera entiteter", + "smw-admin-supplementary-operational-statistics-cache-title": "Cachestatistik", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 visar cacherelaterad statistik", + "smw-admin-supplementary-operational-table-statistics-title": "Tabellstatistik", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count totala antalet rader i en tabell", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "\n* last_id senaste ID som används för närvarande\n* duplicate_count antal dubbletter som finns i id_table (se också [[Special:SemanticMediaWiki/duplicate-lookup|Duplicate entities lookup]]) \n* rows.rev_count antal rader som har ett revisions_id tilldelat som indikerar en direkt wikipage-länk\n* rows.smw_namespace_group_by_count antal aggregerade rader för namnområden som används i tabellen\n* rows.smw_proptable_hash.query_match_count antal frågeobjekt med en motsvarande tabellreferens\n* rows.smw_proptable_hash.query_null_count antal frågeobjekt utan tabellreferens (länkad, flytande referens)", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "\n* unique_terms_occurrence_in_percent procent av termer som är unika (en låg procentandel anger att repetitiva termer upptar tabellinnehållet och indexet) \n* rows.terms_occurrence.single_occurrence_total_count antal termer som bara visas en gång\n* rows.terms_occurrence.multi_occurrence_total_count antal termer som visas mer än en gång", + "smw-admin-supplementary-elastic-version-info": "Version", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 visar detaljer om inställningar och indexstatistik", + "smw-admin-supplementary-elastic-docu": "Denna sida innehåller information om inställningar, mappningar, hälsa och indexstatistik relaterad till ett Elasticsearch-kluster som är kopplat till Semantic MediaWiki och dess [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Funktioner som stöds", + "smw-admin-supplementary-elastic-settings-title": "Inställningar (index)", + "smw-admin-supplementary-elastic-settings-intro": "$1 används av Elasticsearch för att hantera Semantic MediaWiki-index", + "smw-admin-supplementary-elastic-mappings-title": "Kartläggningar", + "smw-admin-supplementary-elastic-mappings-intro": "$1 för att lista index och fältmappningar", + "smw-admin-supplementary-elastic-mappings-docu": "Denna sida innehåller fältmappningsinformation som används av det aktuella indexet. Det rekommenderas att övervaka kartläggningarna i samband med index.mapping.total_fields.limit (anger det maximala antalet fält i ett index som är tillåtet).", + "smw-admin-supplementary-elastic-mappings-docu-extra": "Koden property_fields refererar till antalet indexerade kärnfält medan nested_fields refererar till ett ackumulerat antal ytterligare fält som tilldelats ett kärnfält för att stödja specifika strukturerade sökmönster.", + "smw-admin-supplementary-elastic-mappings-summary": "Sammanfattning", + "smw-admin-supplementary-elastic-mappings-fields": "Fältmappningar", + "smw-admin-supplementary-elastic-nodes-title": "Noder", + "smw-admin-supplementary-elastic-nodes-intro": "$1 visar nodstatistik", + "smw-admin-supplementary-elastic-indices-title": "Index", + "smw-admin-supplementary-elastic-indices-intro": "$1 ger en översikt över tillgängliga index och deras statistik", + "smw-admin-supplementary-elastic-statistics-title": "Statistik", + "smw-admin-supplementary-elastic-statistics-intro": "$1 visar statistik på indexnivå", + "smw-admin-supplementary-elastic-statistics-docu": "Denna sida ger en inblick i indexstatistik för olika operationer som sker på indexnivå, den returnerade statistiken aggregeras med primärsatser och totala aggregeringar. [Https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html hjälpsida] innehåller en detaljerad beskrivning av tillgänglig indexstatistik.", + "smw-admin-supplementary-elastic-status-replication": "Replikationsstatus", + "smw-admin-supplementary-elastic-status-last-active-replication": "Senaste aktiva replikering: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Uppdateringsintervall: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Återställningsjobb: $1 (uppskattning)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Ingång (fil) jobb eftersläpning: $1 (uppskattning)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Replikering låst: $1 (ombyggnad pågår)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Replikeringsövervakning (aktiv): $1", + "smw-admin-supplementary-elastic-replication-header-title": "Replikationsstatus", + "smw-admin-supplementary-elastic-replication-function-title": "Replikation", + "smw-admin-supplementary-elastic-replication-intro": "$1 visar information om misslyckade repliker", + "smw-admin-supplementary-elastic-replication-docu": "Denna sida ger information om [https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring replikeringsstatus] för enheter som rapporterades ha problem med Elasticsearch-klustret. Det rekommenderas att granska listade enheter och rensa innehållet för att bekräfta att det var ett tillfälligt problem.", + "smw-admin-supplementary-elastic-replication-files-docu": "Det bör noteras att för listan över filer måste jobbet [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion file ingest] köras först och måste slutföra behandlingen.", + "smw-admin-supplementary-elastic-replication-files": "Filer", + "smw-admin-supplementary-elastic-replication-pages": "Sidor", + "smw-admin-supplementary-elastic-endpoints": "Slutpunkter", + "smw-admin-supplementary-elastic-config": "Konfigurationer", + "smw-admin-supplementary-elastic-no-connection": "Wikin är för närvarande ''oförmögen'' att upprätta en anslutning till Elasticsearch -klustret. Vänligen kontakta wiki -administratören för att undersöka problemet eftersom det gör att index och sökförmåga för systemet inte fungerar.", + "smw-list-count": "Listan innehåller $1 {{PLURAL:$1|element}}.", + "smw-property-label-uniqueness": "Etiketten \"$1\" matchades med minst en annan fastighetsrepresentation. Se [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness-hjälpsidan] om hur du löser detta problem.", + "smw-property-label-similarity-title": "Fastighetsetikett likhetsrapport", + "smw-property-label-similarity-intro": "$1 beräknar liknelser för befintliga egenskapsetiketter", + "smw-property-label-similarity-threshold": "Gränsvärde:", + "smw-property-label-similarity-type": "Visa typ-ID", + "smw-property-label-similarity-noresult": "Inga resultat hittades för de valda alternativen.", + "smw-property-label-similarity-docu": "Denna sida jämför [https://www.semantic-mediawiki.org/wiki/Property_similarity distans] (för att inte förväxla med en semantisk eller lexikal likhet) mellan fastighetsetiketter och rapporterar dem om de överskrider tröskeln. Rapporten kan hjälpa till att filtrera felstavade eller motsvarande egenskaper som representerar samma koncept (se specialsidan [[Special:Properties|properties]] för att klargöra koncept och användning av rapporterade egenskaper). Tröskeln kan justeras för att vidga eller begränsa avståndet som används för den ungefärliga matchningen. [[Property:$1|$1]] används för att undanta egenskaper från analysen.", + "smw-admin-operational-statistics": "Denna sida innehåller driftsstatistik samlad i eller från Semantic MediaWiki-relaterade funktioner. En utökad lista med wiki-specifik statistik kan hittas [[Special:Statistics|here]].", + "smw_adminlinks_datastructure": "Datastruktur", + "smw_adminlinks_displayingdata": "Datavisning", + "smw_adminlinks_inlinequerieshelp": "Hjälp för inbäddade frågor", + "smw-page-indicator-usage-count": "Uppskattat [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count användningsantal]: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "{{PLURAL:$1|Användardefinierad|Systemdefinierad}} egenskap", + "smw-property-indicator-last-count-update": "Uppskattat användningsantal\nSenast uppdaterad: $1", + "smw-concept-indicator-cache-update": "Cachemängd\nSenast uppdaterad: $1", + "smw-createproperty-isproperty": "Det här är en egenskap av typen $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Det tillåtna värdet|De tillåtna värdena}} för den här egenskapen är:", + "smw-paramdesc-category-delim": "Skiljetecken", + "smw-paramdesc-category-template": "Mall att formatera resultatet med", + "smw-paramdesc-category-userparam": "Parameter till mallen", + "smw-info-par-message": "Meddelande att skriva ut.", + "smw-info-par-icon": "Ikon att visa, antingen \"info\" eller \"warning\".", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Allmänna alternativ", + "prefs-extended-search-options": "Utökad sökning", + "prefs-ask-options": "Semantisk sökning", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] och tillhörande tillägg ger individuella preferenser för en grupp valda funktioner och funktioner. En lista över enskilda inställningar med deras beskrivning och egenskaper finns på följande [https://www.semantic-mediawiki.org/wiki/Help:User_preferences help page].", + "smw-prefs-ask-options-tooltip-display": "Visa parametertext som ett infoverktygstips på #ask [[Special:Ask|query builder]] specialsida.", + "smw-prefs-ask-options-compact-view-basic": "Aktivera grundläggande kompaktvy", + "smw-prefs-help-ask-options-compact-view-basic": "Om det är aktiverat, visas en minskad uppsättning länkar i Special:Ask kompaktvyn.", + "smw-prefs-general-options-time-correction": "Aktivera tidskorrigering för speciella sidor med hjälp av den lokala [[Special:Preferences#mw-prefsection-rendering|time offset]] preferens", + "smw-prefs-general-options-jobqueue-watchlist": "Visa bevakningslistan för jobbkön i min personliga bar", + "smw-prefs-help-general-options-jobqueue-watchlist": "Om den är aktiverad visas en [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist lista över] väntande utvalda jobb tillsammans med deras beräknade kö-storlekar.", + "smw-prefs-general-options-disable-editpage-info": "Inaktivera introduktionstexten på redigeringssidan.", + "smw-prefs-general-options-disable-search-info": "Stäng av syntaxstödsinformation på standardsöksidan", + "smw-prefs-general-options-suggester-textinput": "Aktivera ingångshjälp för semantiska enheter", + "smw-prefs-help-general-options-suggester-textinput": "Om den är aktiverad kan du använda en [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance input assistance] för att hitta egenskaper, begrepp och kategorier från ett input-sammanhang.", + "smw-ui-tooltip-title-property": "Egenskap", + "smw-ui-tooltip-title-quantity": "Enhetskonvertering", + "smw-ui-tooltip-title-info": "Information", + "smw-ui-tooltip-title-service": "Service-länkar", + "smw-ui-tooltip-title-warning": "Varning", + "smw-ui-tooltip-title-error": "Fel", + "smw-ui-tooltip-title-parameter": "Parameter", + "smw-ui-tooltip-title-event": "Händelse", + "smw-ui-tooltip-title-note": "Anteckning", + "smw-ui-tooltip-title-legend": "Förklaring", + "smw-ui-tooltip-title-reference": "Referens", + "smw_unknowntype": "Typen \"$1\" för denna egenskap är ogiltig", + "smw-concept-cache-text": "Det här konceptet har totalt {{PLURAL:$1|en sida|$1 sidor}}, och uppdaterades senast $3, $2.", + "smw_concept_header": "Sidor som hör till konceptet \"$1\"", + "smw_conceptarticlecount": "Visar {{PLURAL:$1|en sida|$1 sidor}}", + "smw-qp-empty-data": "Önskad data kunde inte visas på grund av att vissa urvalskriterier är otillräckliga.", + "right-smw-admin": "Tillgång till administrativa uppgifter (Semantisk MediaWiki)", + "right-smw-patternedit": "Redigera åtkomst för att behålla tillåtna reguljära uttryck och mönster (Semantic MediaWiki)", + "right-smw-pageedit": "Redigeringsåtkomst för sidor med annoteringen Är redigeringsskyddad (Semantic MediaWiki)", + "right-smw-schemaedit": "Redigera [https://www.semantic-mediawiki.org/wiki/Help:Schema schemasidor] (Semantic MediaWiki)", + "right-smw-viewjobqueuewatchlist": "Åtkomst till jobbkön [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist watchlist] funktion (Semantic MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "Åtkomstinformation om en enhetsassocierad revisionsfel (Semantic MediaWiki)", + "right-smw-vieweditpageinfo": "Visa [https://www.semantic-mediawiki.org/wiki/Help:Edit_help redigera hjälp] (Semantic MediaWiki)", + "restriction-level-smw-pageedit": "skyddad (endast berättigade användare)", + "action-smw-patternedit": "redigera reguljära uttryck som Semantic MediaWiki använder", + "action-smw-pageedit": "redigera sidor annoterade med Is edit protected (Semantic MediaWiki)", + "group-smwadministrator": "Administratörer (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|administratör (Semantic MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:Administratörer (Semantic MediaWiki)", + "group-smwcurator": "Kuratorer (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|kurator (Semantic MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:Kuratorer (Semantic MediaWiki)", + "group-smweditor": "Redaktörer (Semantic MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|editor (Semantic MediaWiki)}}", + "grouppage-smweditor": "{{ns:project}}:Editors (Semantic MediaWiki)", + "action-smw-admin": "komma åt Semantisk MediaWikis administrationsåtgärder", + "action-smw-ruleedit": "redigera regelsidor (Semantic MediaWiki)", + "smw-property-namespace-disabled": "Fastigheten [https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks namespace] är inaktiverad, det är inte möjligt att försöka deklarera en typ eller andra egenskapsspecifika egenskaper för den här egenskapen.", + "smw-property-predefined-default": "\"$1\" är en fördefinierad egenskap av typ $2.", + "smw-property-predefined-common": "Den här egenskapen är förutplacerad (även känd som [https://www.semantic-mediawiki.org/wiki/Help:Special_properties special property]) och har ytterligare administratörsrättigheter men kan användas precis som alla andra [https:/ /www.semantic-mediawiki.org/wiki/Property användardefinierad egenskap].", + "smw-property-predefined-ask": "\"$1\" är en fördefinierad egenskap som representerar metainformation (i form av ett [https://www.semantic-mediawiki.org/wiki/Subobject underobjektet]) om individuella förfrågningar och tillhandahålls av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksi": "\"$1\" är en fördefinierad egenskap som samlar antalet villkor som används i en fråga och tillhandahålls av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askde": "\"$ 1\" är en fördefinierad egenskap som informerar om djupet i en fråga och tillhandahålls av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askde": "Det är ett numeriskt värde beräknat på grundval av underfrågans häckning, fastighetskedjor och tillgängliga beskrivningselement där utförandet av en fråga begränsas av [https://www.semantic-mediawiki.org/wiki/Help: $ smwgQMaxDepth $ smwgQMaxDepth] konfigurationsparameter.", + "smw-property-predefined-askpa": "\"$1\" är en fördefinierad egenskap som beskriver parametrar som påverkar ett sökresultat och tillhandahålls av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-askpa": "Det är en del av en samling egenskaper som anger en [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler frågeprofil].", + "smw-sp-properties-docu": "Denna sida visar [https://www.semantic-mediawiki.org/wiki/Property egenskaper] och deras användningsantal finns tillgängliga för denna wiki. För uppdaterad räknarstatistik rekommenderas att [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics fastighetsstatistik] underhållskript körs regelbundet. För en differentierad vy, se [[Special:UnusedProperties|unused]] eller [[Special:WantedProperties|wanted properties]] specialsidor.", + "smw-sp-properties-cache-info": "Listad data har hämtats från [https://www.semantic-mediawiki.org/wiki/Caching cache], och uppdaterades sist $1.", + "smw-sp-properties-header-label": "Lista med egenskaper", + "smw-admin-settings-docu": "Visar en lista över alla standard- och lokaliserade inställningar som är relevanta för den semantiska MediaWiki-miljön. För detaljer om individuella inställningar, rådfråga hjälpsidan för [https://www.semantic-mediawiki.org/wiki/Help:Configuration konfiguration].", + "smw-sp-admin-settings-button": "Generera lista med inställningar", + "smw-admin-idlookup-title": "Kolla upp", + "smw-admin-idlookup-docu": "Det här avsnittet visar tekniska detaljer om en enskild enhet (wiki-sida, delobjekt, egendom, etc.) i Semantic MediaWiki. Inmatningen kan vara ett numeriskt ID eller ett strängvärde som matchar det relevanta sökfältet, men alla ID -referenser avser Semantic MediaWiki och inte MediaWikis sida eller revisions-ID.", + "smw-admin-iddispose-title": "Förfogande", + "smw-admin-iddispose-docu": "Det bör noteras att bortskaffningsoperationen är obegränsad och kommer att ta bort enheten från lagringsmotorn tillsammans med alla dess referenser i väntande tabeller, om den bekräftas. Utför den här uppgiften med '' '' försiktighet '' 'och endast efter att [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal dokumentation] har konsulterats.", + "smw-admin-iddispose-done": "ID \"$1\" togs bort från lagringsbackend.", + "smw-admin-iddispose-references": "ID \"$1\" har {{PLURAL:$2|ingen|minst en}} aktiv referens till ID \"$1\".", + "smw-admin-iddispose-references-multiple": "Lista över matcher med minst en aktiv referenspost.", + "smw-admin-iddispose-no-references": "Sökningen kunde inte matcha \"$1\" till en tabellpost.", + "smw-admin-idlookup-input": "Sök:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "Översikt", + "smw-admin-tab-notices": "Meddelanden om avskrivning", + "smw-admin-tab-maintenance": "Underhåll", + "smw-admin-tab-supplement": "Kompletterande funktioner", + "smw-admin-tab-registry": "Register", + "smw-admin-tab-alerts": "Varningar", + "smw-admin-alerts-tab-deprecationnotices": "Meddelanden om avskrivning", + "smw-admin-alerts-tab-maintenancealerts": "Underhållsaviseringar", + "smw-admin-alerts-section-intro": "Det här avsnittet visar varningar och meddelanden relaterade till inställningar, funktioner och andra aktiviteter som har klassificerats för att kräva uppmärksamhet från en administratör eller användare med tilldelade rättigheter.", + "smw-admin-maintenancealerts-section-intro": "Följande varningar och meddelanden bör lösas och även om det inte är nödvändigt förväntas det bidra till att förbättra system- och driftsunderhåll.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Tabelloptimering", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "Systemet har funnit att den senaste [https://www.semantic-mediawiki.org/wiki/Table_optimization-tabelloptimeringen] kördes för $2 dagar sedan (rekord från $1) som överstiger $3 dagars underhållströskel. Som nämnts i dokumentationen kommer körningsoptimeringar att göra det möjligt för frågeplaneraren att fatta bättre beslut om frågor, därför rekommenderas det att köra tabelloptimeringen regelbundet.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Föråldrade enheter", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "Systemet har räknat $1 [https://www.semantic-mediawiki.org/wiki/Outdated_entities föråldrade enheter] och nått en kritisk nivå av obevakat underhåll genom att överskrida tröskeln på $2. Det rekommenderas att köra [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php ] underhållskript.", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Ogiltiga enheter", + "smw-admin-maintenancealerts-invalidentities-alert": "Systemet matchade $1 [https://www.semantic-mediawiki.org/wiki/Invalid_entities {{PLURAL:$1|entity|entities}}] till en [https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace unmaintained namespace] och det rekommenderas att köra [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php ] eller [https: //www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php ] underhållsskript.", + "smw-admin-deprecation-notice-section": "Semantic MediaWiki", + "smw-admin-configutation-tab-settings": "Inställningar", + "smw-admin-configutation-tab-namespaces": "Namnutrymmen", + "smw-admin-configutation-tab-schematypes": "Schematyper", + "smw-admin-maintenance-tab-tasks": "Uppgifter", + "smw-admin-maintenance-tab-scripts": "Underhållsskript", + "smw-admin-maintenance-no-description": "Ingen beskrivning.", + "smw-admin-maintenance-script-section-title": "Lista över tillgängliga underhållsskript", + "smw-admin-maintenance-script-section-intro": "Följande underhållsskript kräver en administratör och åtkomst till kommandoraden för att kunna utföra listade skript.", + "smw-admin-maintenance-script-description-dumprdf": "RDF-export av befintliga tripplar.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "Detta skript används för att hantera konceptcacher för Semantic MediaWiki där det kan skapa, ta bort och uppdatera utvalda cacher.", + "smw-admin-maintenance-script-description-rebuilddata": "Återskapar alla semantiska data i databasen genom att bläddra igenom alla sidor som kan ha semantiska data.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "Återskapar Elasticsearch-indexet (endast för installationer som använder ElasticStore ) genom att bläddra igenom alla enheter som har semantisk data.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Hitta saknade enheter i Elasticsearch (endast för installationer som använder ElasticStore ) och schemalägg lämpliga uppdateringsjobb.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "Återställer SQLStore söktextindex (för installationer där inställningen har aktiverats.", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Återskapar användningsstatistiken för alla egendomsenheter.", + "smw-admin-maintenance-script-description-removeduplicateentities": "Tar bort dubbletter som finns i utvalda tabeller som inte har några aktiva referenser.", + "smw-livepreview-loading": "Laddar…", + "smw-sp-searchbyproperty-description": "Denna sida erbjuder ett enkelt [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces navigeringsgränssnitt] för att hitta entiteter som beskrivs av en egenskap och ett namngivet värde. Andra tillgängliga sökgränssnitt inkluderar [[Special:PageProperty|sidegenskapssök]] och [[Special:Ask|ask-förfrågningsbyggare]].", + "smw-sp-searchbyproperty-resultlist-header": "Lista med resultat", + "smw-sp-searchbyproperty-nonvaluequery": "En lista över värden som har tilldelats egenskapen \"$1\".", + "smw-sp-searchbyproperty-valuequery": "En lista över sidor som har egenskapen \"$1\" med värdet \"$2\" annoterat.", + "smw-datavalue-number-nullnotallowed": "\"$1\" returnerades med \"NULL\" som inte tillåts som en siffra.", + "smw-search-input": "Inmatning och sökning", + "smw-search-syntax": "Syntax", + "smw-search-profile": "Utökad", + "smw-search-profile-sort-best": "Bästa träff", + "smw-search-profile-sort-recent": "Senaste", + "smw-search-profile-sort-title": "Titel", + "smw-search-profile-extended-help-query": "Länk till: $1", + "smw-search-profile-extended-help-query-link": "(För mer detaljer $1).", + "smw-search-profile-extended-help-find-forms": "tillgängliga formulär", + "smw-search-profile-extended-section-sort": "Sortera efter", + "smw-search-profile-extended-section-form": "Formulär", + "smw-search-profile-extended-section-search-syntax": "Sökinmatning", + "smw-search-profile-extended-section-namespace": "Namnrymd", + "smw-search-profile-extended-section-query": "Förfrågan", + "smw-search-profile-link-caption-query": "se", + "smw-search-show": "Visa", + "smw-search-hide": "Dölj", + "log-name-smw": "Semantic MediaWiki-logg", + "log-show-hide-smw": "$1 Semantic MediaWiki-logg", + "logeventslist-smw-log": "Semantic MediaWiki-logg", + "log-description-smw": "Aktiviteter för [https://www.semantic-mediawiki.org/wiki/Help:Logging aktiverade händelstyper] som har rapporterats av Semantic MediaWiki och dess underkomponenter.", + "logentry-smw-maintenance": "Underhållsrelaterade händelser som utelämnas av Semantic MediaWiki", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|$1 importering]]", + "smw-datavalue-import-invalid-value": "\"$1\" är inte ett giltig format och förväntas vara \"namnrymd\":\"identifierare\" (d.v.s \"foaf:namn\").", + "smw-datavalue-import-invalid-format": "Förväntade att strängen \"$1\" skulle delas upp i fyra delar men formatet uppfattades inte.", + "smw-property-predefined-impo": "\"$1\" är en fördefinierade egenskap som beskriver ett förhållande till en [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary importerad ordlista] och tillhandahålls av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-type": "\"$1\" är en fördefinierad egenskap som beskriver [[Special:Types|datatypen]] av en egenskap och tillhandahålls av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-datavalue-property-invalid-character": "\"$1\" innehåller tecknet \"$2\" som del av en egenskapsetikett och har klassificerats som ogiltig.", + "smw-datavalue-property-invalid-chain": "\"$1\" tillåts inte användas som en egenskapskedja under kommentarsprocessen.", + "smw-datavalue-restricted-use": "Datavärdet \"$1\" har märkts för begränsad användning.", + "smw-datavalue-invalid-number": "\"$1\" kan inte tolkas som ett nummer.", + "smw-types-list": "Lista över datatyper", + "smw-types-default": "\"$1\" är en inbyggd datatyp.", + "smw-type-boo": "\"$1\" är en primitiv datatyp för att beskriva ett värde som kan vara sant/falskt.", + "smw-type-tab-properties": "Egenskaper", + "smw-type-tab-types": "Typer", + "smw-type-tab-errors": "Fel", + "smw-type-primitive": "Grundläggande", + "smw-type-container": "Behållare", + "smw-types-extra-mlt-lcode": "Datatypen {{PLURAL:$2|kräver inte}} en språkkod (t.ex. {{PLURAL:$2|ett värde utan en språkkod accepteras inte}}).", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|sekund|sekunder}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|sekund|sekunder}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|sekund|sekunder}}", + "smw_allows_pattern": "Den här sidan är förväntad att innehålla en lista av referenser (följt av [https://en.wikipedia.org/wiki/Regular_expression regular expressions]) och att bli tillgänglig genom att använda [[Property:Allows pattern|Allows pattern]] egenskap.", + "smw-datavalue-time-invalid-date-components-empty": "\"$1\" innehåller några tomma komponenter.", + "smw-datavalue-time-invalid-date-components-three": "\"$1\" innehåller mer än tre komponenter.", + "smw-datavalue-time-invalid-ampm": "\"$1\" innehåller \"$2\" som timmeselement som är ogiltigt för en 12-timmarskonvention.", + "smw-datavalue-external-formatter-invalid-uri": " \"$1\" är en ogiltig URL.", + "smw-property-preferred-label-language-combination-exists": "\"$1\" kan inte användas som en föredragen etikett eftersom språket \"$2\" är redan tilldelat till etiketten \"$3\".", + "smw-clipboard-copy-link": "Kopiera länk till urklipp", + "smw-data-lookup": "Hämtar data...", + "smw-no-data-available": "Ingen tillgänglig data.", + "smw-property-req-error-list": "Egenskapen innehåller följande fel eller varningar:", + "protect-level-smw-pageedit": "Tillåt endast användare med sidredigeringsbehörighet (Semantic MediaWiki)", + "smw-edit-protection-auto-update": "Semantic MediaWiki har uppdaterat skyddsstatusen enligt egenskapen `Är redigeringsskyddad`.", + "smw-edit-protection-enabled": "Redigeringsskyddad (Semantic MediaWiki)", + "smw-patternedit-protection": "Denna sida skyddas och kan endast redigeras av användare med den lämpliga [https://www.semantic-mediawiki.org/wiki/Help:Permissions behörigheten smw-patternedit].", + "smw-property-predefined-edip": "\"$1\" är en fördefinierad egenskap tillhandahållen av [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] för att indikera om redigering är skyddad eller inte.", + "smw-format-datatable-emptytable": "Ingen data tillgänglig i tabellen", + "smw-format-datatable-info": "Visar _START_ till _END_ av _TOTAL_ poster", + "smw-format-datatable-infoempty": "Visar 0 till 0 av 0 poster", + "smw-format-datatable-infofiltered": "(filtrerat från _MAX_ totala poster)", + "smw-format-datatable-infothousands": " ", + "smw-format-datatable-lengthmenu": "Visar _MENU_ poster", + "smw-format-datatable-loadingrecords": "Läser in...", + "smw-format-datatable-processing": "Bearbetar...", + "smw-format-datatable-search": "Sök:", + "smw-format-datatable-zerorecords": "Inga matchande poster hittades", + "smw-format-datatable-first": "Första", + "smw-format-datatable-last": "Sista", + "smw-format-datatable-next": "Nästa", + "smw-format-datatable-previous": "Föregående", + "smw-format-datatable-sortascending": ": aktivera för att sortera kolumnen stigande", + "smw-format-datatable-sortdescending": ": aktivera för att sortera kolumnen fallande", + "smw-format-datatable-toolbar-export": "Exportera", + "smw-category-invalid-redirect-target": "Kategorin \"$1\" innehåller en ogiltigt omdirigeringsmål till en namnrymd som inte är en kategori.", + "smw-postproc-queryref": "Sidan markerades för att uppdateras p.g.a. behov av efterbehandling.", + "smw-api-invalid-parameters": "Ogiltiga parametrar, \"$1\"", + "smw-property-page-list-count": "Visar $1 {{PLURAL:$1|sida|sidor}} som använder den här egenskapen.", + "smw-property-page-list-search-count": "Visar $1 {{PLURAL:$1|sida|sidor}} som använder den här egenskapen med det matchande värdet \"$2\".", + "smw-property-reserved-category": "Kategori", + "smw-category": "Kategori", + "smw-browse-property-group-title": "Egenskapsgrupp", + "smw-browse-property-group-label": "Etikett för egenskapsgrupp", + "smw-browse-property-group-description": "Beskrivning för egenskapsgrupp", + "smw-filter": "Filter", + "smw-section-expand": "Expandera avsnittet", + "smw-section-collapse": "Stäng avsnittet", + "smw-ask-format-help-link": "Formatet [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Hjälp", + "smw-cheat-sheet": "Lathund", + "smw-personal-jobqueue-watchlist": "Bevakningslista (jobbkö)", + "smw-property-predefined-label-skey": "Sorteringsnyckel", + "smw-processing": "Bearbetar...", + "smw-jsonview-search-label": "Sök:", + "smw-types-title": "Typ: $1", + "smw-schema-error-title": "Validerings{{PLURAL:$1|fel}}", + "smw-schema-validation-schema-title": "JSON-schema", + "smw-schema-summary-title": "Sammanfattning", + "smw-schema-title": "Schema", + "smw-schema-usage": "Användning", + "smw-schema-type": "Schematyp", + "smw-schema-tag": "{{PLURAL:$1|Märke|Märken}}", + "smw-ask-title-keyword-type": "Nyckelordssökning", + "smw-ask-message-keyword-type": "Denna sökning matchar villkoret $1.", + "smw-parameter-missing": "Parametern \"$1\" saknas.", + "smw-property-tab-usage": "Användning", + "smw-property-tab-redirects": "Synonymer", + "smw-property-tab-subproperties": "Underegenskaper", + "smw-property-tab-errors": "Felaktiga tilldelningar", + "smw-concept-tab-list": "Lista", + "smw-concept-tab-errors": "Fel", + "smw-ask-tab-result": "Resultat", + "smw-ask-tab-extra": "Extra", + "smw-ask-tab-debug": "Felsökning", + "smw-ask-tab-code": "Kod", + "smw-pendingtasks-setup-tasks": "Uppgifter", + "smw-report": "Rapportera", + "smw-legend": "Teckenförklaring", + "smw-listingcontinuesabbrev": "forts.", + "smw-showingresults": "Nedan visas upp till {{PLURAL:$1|1 resultat|$1 resultat}} från och med nummer $2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/sw.json b/mediawiki/extensions/SemanticMediaWiki/i18n/sw.json new file mode 100644 index 0000000..62768c6 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/sw.json @@ -0,0 +1,19 @@ +{ + "@metadata": { + "authors": [ + "Hussein m mmbaga", + "Kisare", + "Kwisha", + "Rance" + ] + }, + "smw-categories": "Jamii", + "browse": "vinjari na wiki", + "smw-ui-tooltip-title-legend": "Simulizi", + "smw-ui-tooltip-title-reference": "Rejeo", + "smw-livepreview-loading": "Inapakizwa...", + "smw-filter": "Chuja", + "smw-property-tab-usage": "Matumizi", + "smw-listingcontinuesabbrev": "endelea", + "smw-showingresults": "{{PLURAL:$1|Tokeo '''1''' linaonyeshwa|matokeo '''$1''' yanaonyeshwa}} chini, kuanzia na namba '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/szl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/szl.json new file mode 100644 index 0000000..56e5e83 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/szl.json @@ -0,0 +1,14 @@ +{ + "@metadata": { + "authors": [ + "Krol111", + "Lajsikonik", + "Uostofchuodnego" + ] + }, + "smw-categories": "Kategoryje", + "browse": "Przeglōndej wiki", + "smw-livepreview-loading": "Trwo uadowańy…", + "smw-listingcontinuesabbrev": "cd.", + "smw-showingresults": "To lista na keryj je {{PLURAL:$1|'''1''' wyńik|'''$1''' wyńikůw}}, sztartujůnc uod nůmery '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ta.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ta.json new file mode 100644 index 0000000..58c37ce --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ta.json @@ -0,0 +1,72 @@ +{ + "@metadata": { + "authors": [ + "ElangoRamanujam", + "Fahimrazick", + "Karthi.dr", + "Logicwiki", + "Nisha", + "Shanmugamp7", + "TRYPPN" + ] + }, + "smw-upgrade-error-title": "பிழை", + "smw-upgrade-maintenance-title": "மேம்படுத்தல் மற்றும் பராமரிப்பு", + "smw_finallistconjunct": ", மற்றும்", + "smw_printername_count": "எண்ணிக்கை முடிவுகள்", + "smw_printername_csv": "CSV ஏற்றுமதி", + "smw_printername_dsv": "DSV ஏற்றுமதி", + "smw_printername_list": "பட்டியல்", + "smw_printername_table": "பட்டியல்", + "smw_printername_template": "வார்ப்புரு", + "smw_printername_category": "பகுப்பு", + "smw_exportrdf_submit": "ஏற்றுமதி செய்", + "properties": "பண்புகள்", + "smw-categories": "பகுப்புகள்", + "smw_ask_ascorder": "ஏறுவரிசை", + "smw_ask_descorder": "இறங்குவரிசை", + "smw_ask_submit": "முடிவுகளைத் தேடு", + "smw_ask_defaultformat": "பொதுவானது", + "smw_ask_otheroptions": "மற்றத் தெரிவுகள்", + "smw-ask-delete": "[நீக்கு]", + "smw-ask-sorting": "வரிசைப்படுத்துதல்", + "smw_sbv_property": "உடமை:", + "smw_sbv_value": "மதிப்பு:", + "smw_sbv_submit": "முடிவுகளைத் தேடு", + "browse": "விக்கியில் உலாவு", + "smw_browselink": "உடமைகளில் உலாவு", + "smw_browse_article": "உலாவத் தொடங்கப் போகும் பக்கத்தின் பெயரை உள்ளிடுக.", + "smw_browse_go": "செல்", + "smw_browse_show_incoming": "இங்கு இணைக்கப்பட்டுள்ள உடமைகளைக் காண்பிக்கவும்", + "smw_browse_hide_incoming": "இங்கு இணைக்கப்பட்டுள்ள உடமைகளைக் மறைக்கவும்", + "smw_browse_no_outgoing": "இந்தப் பக்கத்திற்கு உடமைகள் ஏதுமில்லை.", + "smw_browse_no_incoming": "இந்தப் பக்கத்திற்கு உடமைகள் ஏதும் இணைக்கப்படவில்லை.", + "smw_pp_from": "பக்கத்திலிருந்து", + "smw_pp_type": "உடமை", + "smw_pp_submit": "முடிவுகளைத் தேடு", + "smw_result_prev": "முந்திய", + "smw_result_next": "அடுத்து", + "smw_result_results": "முடிவுகள்", + "smw_result_noresults": "முடிவுகள் ஏதுமில்லை.", + "smw-admin-statistics-job-title": "பணிப் புள்ளிவிவரங்கள்", + "smw_smwadmin_datarefreshbutton": "தரவுகளை புதுப்பிக்க ஆரம்பிக்கவும்", + "smw_smwadmin_datarefreshstop": "இந்த புதுப்பித்தலை நிறுத்தவும்", + "smw_smwadmin_datarefreshstopconfirm": "ஆம், நான் உறுதியாக உள்ளேன்.", + "smw-admin-support": "ஆதரவு பெறுதல்", + "smw-admin-supplementary-duplookup-title": "நகல் உள்ளீடுகளை தேடு/பார்", + "smw-admin-supplementary-duplookup-docu": "பட்டியலிடப்பட்ட தேர்ந்தெடுக்கப்பட்ட அட்டவணையில் இருந்து இந்த பக்கம் உள்ளீடுகளை, கீழ்க்கண்டவாறு பட்டியலிடுகிறது [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities duplicates]. நகல் உள்ளீடுகள் (அனைத்து சந்தர்ப்பங்கள் என்றால் மட்டுமே) ஏற்படும் தருணம், நிறுத்தப்பட்ட புதுப்பிப்பு அல்லது தோல்வியுற்ற பின்வாங்கல் பரிவர்த்தனை போன்ற அரிய சந்தர்ப்பங்களில் நிகழும் தன்மை உடையதாக மட்டுமே உள்ளது.", + "smw-ui-tooltip-title-property": "உடமை", + "smw-ui-tooltip-title-quantity": "அளவு", + "smw-ui-tooltip-title-info": "தகவல்", + "smw-ui-tooltip-title-service": "சேவைத் தொடுப்புகள்", + "smw-ui-tooltip-title-warning": "பிழை", + "smw-ui-tooltip-title-parameter": "அளபுரு", + "smw-ui-tooltip-title-event": "நிகழ்ச்சி", + "smw-ui-tooltip-title-note": "குறிப்பு", + "smw_unknowntype": "இந்த உடமையின் வகை செல்லாதது", + "smw-livepreview-loading": "ஏற்றப்படுகிறது…", + "smw-no-data-available": "தரவேதும் கிடைக்கப்பெறவில்லை", + "smw-property-req-violation-missing-fields": "விடுபட்ட சொத்து \"$1\" [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] இந்த \"$2\" வகைக்கான அறிவிப்பு தேவைப்படுகிறது.", + "smw-listingcontinuesabbrev": "தொடரும்.", + "smw-showingresults": "'''$2''' இலிருந்து தொடங்கும் {{PLURAL:$1|'''1''' முடிவு கீழே காட்டப்பட்டுள்ளது|'''$1''' முடிவுகள் கீழே காட்டப்பட்டுள்ளன}}." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/tcy.json b/mediawiki/extensions/SemanticMediaWiki/i18n/tcy.json new file mode 100644 index 0000000..214df94 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/tcy.json @@ -0,0 +1,53 @@ +{ + "@metadata": { + "authors": [ + "BHARATHESHA ALASANDEMAJALU", + "Babitha", + "ChiK", + "Chidananda Kampa", + "Kiranpoojary", + "Mahaveer Indra", + "Ravi Mundkur", + "VASANTH S.N.", + "Vishwanatha Badikana" + ] + }, + "smw_finallistconjunct": ", ಬೊಕ್ಕ", + "smw_printername_list": "ಪಟ್ಟಿ", + "smw_printername_table": "ಪಟ್ಟಿ", + "smw_printername_template": "ಟೆಂಪ್ಲೇಟ್", + "smw_printername_category": "ವರ್ಗೊ", + "validator-type-class-SMWParamSource": "ಪಟ್ಯೊ", + "smw-propertylist-redirect-header": "ಸಮಾನೋ ಅರ್ಥೋ", + "smw_exportrdf_submit": "ರಫ್ತು ಮಲ್ಪುಲೆ", + "smw-categories": "ವರ್ಗೊಲು", + "unusedproperties": "ಗಲಸಂದಿನ ಗುಣಲಕ್ಷಣಲು", + "wantedproperties": "ಬೋಡಾಯಿನ ಗುಣಲಕ್ಷಣಲು", + "smw-statistics-property-total-info": "ನೋಂದಾಯಿನ ಗುಣಲಕ್ಷಣೊಲೆನ ಒಟ್ಟು ಸಂಖ್ಯೆ", + "smw_uri_doc": "ಯುಆರ್‌ಐ ಪರಿಹಾರಕೊ [$1 W3C TAG finding httpRange-14] ಡ್ ಸೇರಾವೊಂಡು.\nವಿನಂತಿನ್ ಅವಲಂಬಿಸದ್ ಆರ್‌ಡಿಎಫ್ ಪ್ರಾತಿನಿದ್ಯೊನು (ಯಂತ್ರೊಲೆಗಾದ್) ಅತ್ತಂಡ ವಿಕಿ ಪುಟೊನು (ಮಾನ್ಯೆರೆಗಾದ್) ತಲುಪಿಸವುನೆಂದ್ ಉಂದು ಕಚಿತೊ ಮಲ್ಪುಂಡು.", + "smw-ask-delete": "ದೆಪ್ಪುಲೆ", + "smw-ask-search": "ನಾಡ್‍ಲೆ", + "smw_sbv_value": "ಮೌಲ್ಯ:", + "browse": "ವಿಕಿನ್ ನಾಡ್‍ಲೆ", + "smw_browse_go": "ಪೋಲೆ", + "smw_result_prev": "ದುಂಬುತಾ", + "smw_result_next": "ನನತಾ", + "smw-admin-supplementary-elastic-mappings-docu": "ಈ ಪುಟೊಡು ಚಾಲ್ತಿ ವಿಷಯಸೂಚಿ ಉಪಯೋಗಿಸಾವುನ ಕ್ಷೇತ್ರ ನಕ್ಷಿಕರಣ ವಿವರೊಲು ಉಂಡು.ನಕ್ಷಿಕರಣೊನು index.mapping.total_fields.limit ಅಂಕೇತದ ಒಟ್ಟುಗು ಉಂದೆನ್ ಪರಿವೀಕ್ಷಿಸಾವೊಡುಂದು ಶಿಫಾರಸು ಮಲ್ದ್ಂಡ್.(ಒಂಜಿ ವಿಷಯಸೂಚಿಡ್ ಸಮ್ಮತವಾಯಿನ ಗರಿಷ್ಟ ಕ್ಷೇತ್ರೊಲೆನ ಸಂಖ್ಯೆ ತೆರಿಪಾವುಂಡು).", + "smw-ui-tooltip-title-info": "ಮಾಹಿತಿ", + "smw-ui-tooltip-title-warning": "ಎಚ್ಚರಿಕೆ", + "smw-ui-tooltip-title-note": "ಟಿಪ್ಪಣಿ", + "smw-livepreview-loading": "ದಿಂಜಾವೊಂದುಂಡು......", + "smw-help": "ಸಕಾಯೊ", + "smw-processing": "ಆವೊಂದುಂಡು...", + "smw-loading": "ದಿಂಜಾವೊಂದುಂಡು...", + "smw-fetching": "ದೆತೊಣೊಂದುಂಡು...", + "smw-preparing": "ತಯಾರೊಂದುಂಡು...", + "smw-expand": "ವಿಸ್ತಾರ ಮಲ್ಪುಲೆ", + "smw-collapse": "ಕುಸಿತ", + "smw-copy": "ನಕಲ್ ಮಲ್ಪುಲೆ", + "smw-copy-clipboard-title": "ವಿಷಯಾಂಶೊನು ಪತಿಪಲಯಿಗ್ ನಕಲುಂಡು", + "smw-jsonview-expand-title": "JSON ನೋಟನು ವಿಸ್ತಾರ ಮಲ್ಪುಂಡು.", + "smw-jsonview-collapse-title": "JSON ನೋಟನು ಪತನ ಮಲ್ಪುಂಡು", + "smw-listingcontinuesabbrev": "ದುಂಬು.", + "smw-showingresults": "#$2ರ್ದ್ ಸುರುವಾಪಿನ, {{PLURAL:$1|1 ಫಲಿತಾಂಶ|$1ಫಲಿತಾಂಶೊಲು}} ಮುಟ್ಟದವೆನ್ ಈ ತಿರ್ತ್ ತೋಜಾವುಂಡು ." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/te.json b/mediawiki/extensions/SemanticMediaWiki/i18n/te.json new file mode 100644 index 0000000..dd4d8ff --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/te.json @@ -0,0 +1,162 @@ +{ + "@metadata": { + "authors": [ + "Chaduvari", + "Mpradeep", + "Ravichandra", + "Veeven", + "రహ్మానుద్దీన్" + ] + }, + "smw-desc": "వికీ మరింత చేరువగా చేసేందుకు - యంత్రాలకూ మనుషులకూ ([https://www.semantic-mediawiki.org/wiki/Help:User_manual online documentation])", + "smw-error": "లోపం", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ సెమాంటిక్ మీడియావికీ] స్థాపించబడి, చేతనంగా ఉంది. కానీ అందులో సరైన [https://www.semantic-mediawiki.org/wiki/Help:Upgrade అప్‌గ్రేడ్ కీ] లేదు.", + "smw-upgrade-release": "విడుదల", + "smw-upgrade-progress": "పురోగతి", + "smw-upgrade-progress-create-tables": "పట్టికలను, ఇండెక్సులను సృష్టిస్తున్నాం (తాజాకరిస్తున్నాం) ...", + "smw-upgrade-progress-post-creation": "సృష్టించిన తదుపరి చేసే పనులను చేస్తున్నాం ...", + "smw-upgrade-progress-table-optimization": "పట్టికల ఆప్టిమైజేషన్లను నడుపుతున్నాం ...", + "smw-upgrade-error-title": "లోపం » సెమాంటిక్ మీడియావికీ", + "smw-upgrade-error-why-title": "ఈ పేజీ ఎందుకు కనిపిస్తోంది?", + "smw-upgrade-error-how-title": "ఈ లోపాన్ని సరిచెయ్యడం ఎలా?", + "smw-upgrade-error-how-explain-links": "మరింత సహాయం కోసం కింది పేజీలను చూడవచ్చు:\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation Installation] సూచనలు\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting Troubleshooting] సహాయం పేజీ", + "smw-extensionload-error-why-title": "ఈ పేజీ ఎందుకు కనిపిస్తోంది?", + "smw-extensionload-error-how-title": "ఈ లోపాన్ని సరిచెయ్యడం ఎలా?", + "smw-upgrade-maintenance-title": "నిర్వహణ » సెమాంటిక్ మీడియావికీ", + "smw-upgrade-maintenance-why-title": "ఈ పేజీ ఎందుకు కనిపిస్తోంది?", + "smw-semantics-not-enabled": "ఈ వికీలో సెమాంటిక్ మీడియావికీ ఫంక్షనాలిటీ చేతనంగా లేదు.", + "smw_viewasrdf": "RDF వడ్డన", + "smw_finallistconjunct": ",", + "smw-factbox-head": "... \"$1\" గురించి మరికొంత", + "smw-factbox-facts": "వాస్తవాలు", + "smw-factbox-facts-help": "వాడుకరి సృష్టించిన స్టేట్‌మెంట్లు, వాస్తవాలను చూపిస్తుంది", + "smw-factbox-attachments": "జోడింపులు", + "smw-factbox-attachments-value-unknown": "N/A", + "smw-factbox-attachments-is-local": "స్థానికం", + "smw-factbox-attachments-help": "అందుబాటులో ఉన్న జోడింపులను చూపిస్తుంది", + "smw-factbox-facts-derived": "ఉత్పన్నమైన వాస్తవాలు", + "smw_isspecprop": "ఈ లక్షణం ఈ వికీలో ప్రత్యేకం", + "smw-concept-cache-header": "కాషె వాడుక", + "smw_concept_description": "\"$1\" భావన యొక్క వివరణ", + "smw_printername_list": "జాబితా", + "smw_printername_table": "పట్టిక", + "smw_printername_template": "మూస", + "smw_printername_category": "వర్గం", + "smw-paramdesc-embedonly": "శీర్షికలను చూపించకు", + "smw-paramdesc-feedtype": "ఫీడు రకం", + "smw-label-feed-description": "$1 $2 ఫీడు", + "smw_iq_moreresults": "… మరిన్ని ఫలితాలు", + "smw_parseerror": "ఇచ్చిన విలువ అర్థం కాలేదు.", + "smw_notitle": "\"$1\"ని ఈ వికీలో పేజీ పేరుగా ఉపయోగించలేరు.", + "smw_wrong_namespace": "\"$1\" అనే పేరుబరితో ఉన్న పేజీలను మాత్రమే ఇక్కడ అనుమతిస్తాం.", + "smw_emptystring": "ఖాళీ పదాలను అనుమతించం.", + "smw_true_words": "true,t,yes,y,అవును,సత్యం", + "smw_false_words": "false,f,no,n,కాదు,అసత్యం", + "smw_nofloat": "“$1” అనేది సంఖ్య కాదు.", + "smw_nodatetime": "\"$1\" అనే తేదీ ఏమిటో అర్థంకాలేదు.", + "smw_toomanyclosing": "క్వెరీలో \"$1\" మరీ ఎక్కువ సార్లు వచ్చినట్లుగా ఉంది.", + "smw_noclosingbrackets": "మీ క్వెరీలో \"[[\" వాడారు. కానీ దాని ముగింపు జోడీ అయిన \"]]\" ను వాడలేదు.", + "smw_misplacedsymbol": "\"$1\" అనే సంకేతాన్ని ఉపయోగం లేని చోట వాడారు.", + "smw_unexpectedpart": "క్వెరీ లోని \"$1\" భాగం అర్థం కాలేదు.\nఫలితాలు అనుకున్నట్టుగా ఉండకపోవచ్చు.", + "smw_emptysubquery": "ఓ సబ్‌క్వెరీలో సరైన కండిషన్ లేదు.", + "smw_misplacedsubquery": "సబ్‌క్వెరీలను వాడటానికి అనుమతి లేని చోట ఓ సబ్‌క్వెరీని వాడారు.", + "smw_valuesubquery": "\"$1\" అనే లక్షణపు విలువలుగా సబ్‌క్వెరీలకు అనుమతి లేదు.", + "smw_badqueryatom": "క్వెరీ లోని \"[[...]]\" భాగం అర్థం కాలేదు.", + "smw_propvalueproblem": "\"$1\" లక్షణపు విలువ అర్థం కాలేదు.", + "smw_type_header": "\"$1\" రకపు లక్షణాలు", + "smw_typearticlecount": "ఈ రకాన్ని వాడుతున్న $1 {{PLURAL:$1|లక్షణాన్ని|లక్షణాలని}} చూపిస్తున్నాం.", + "smw_attribute_header": "\"$1\" లక్షణాన్ని వాడుతున్న పేజీలు", + "smw_attributearticlecount": "ఈ లక్షణాన్ని వాడుతున్న $1 {{PLURAL:$1|పేజీని|పేజీలను}} చూపిస్తున్నాం.", + "smw-propertylist-subproperty-header": "ఉపలక్షణాలు", + "smw-propertylist-redirect-header": "సమానార్థాలు", + "smw-propertylist-count-more-available": "$1 సంబంధిత {{PLURAL:$1|ఎన్టిటీని|ఎన్టిటీలను}} చూపిస్తున్నాం (ఇంకా ఉన్నాయి).", + "specialpages-group-smw_group-maintenance": "నిర్వహణ", + "smw_exportrdf_submit": "ఎగుమతించు", + "properties": "లక్షణాలు", + "smw-categories": "వర్గాలు", + "smw_properties_docu": "ఈ వికీలో ఈ క్రింది లక్షణాలను ఉపయోగించారు.", + "smw_property_template": "$1 $2 వ రకం ($3 {{PLURAL:$3|వాడుక|వాడుకలు}})", + "smw_propertyhardlyused": "ఈ లక్షణాన్ని ఈ వికీలో ఎక్కడోగానీ వాడలేదు!", + "smw-special-property-searchform-options": "ఎంపికలు", + "smw-special-wantedproperties-filter-label": "వడపోత:", + "smw-special-wantedproperties-filter-none": "ఏమీలేవు", + "unusedproperties": "ఉపయోగించని లక్షణాలు", + "smw-unusedproperties-docu": "ఈ క్రింది లక్షణాలు ఉన్నా వాటిని పేజీలలోనూ వాడలేదు.", + "smw-unusedproperty-template": "$2 రకపు $1", + "wantedproperties": "కావాల్సిన లక్షణాలు", + "smw-wantedproperties-docu": "ఈ క్రింది లక్షణాలను ఈ వికీలో ఉపయోగించారు కానీ ఇంకా వాటి గురించి వివరించే పేజీలేమీ లేవు.", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|వాడుక|వాడుకలు}})", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|వాడుక|వాడుకలు}})", + "smw_purge": "తాజాకరించు", + "smw-purge-failed": "తాజాకరణ విఫలమైంది", + "types": "రకాలు", + "smw-statistics-property-instance": "లక్షణం {{PLURAL:$1|విలువ|విలువలు}} (మొత్తం)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|లక్షణం|లక్షణాలు}}]] (మొత్తం)", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|లక్షణం|లక్షణాలు}} (మొత్తం)", + "smw-statistics-property-used": "[[Special:Properties|{{PLURAL:$1|లక్షణం|లక్షణాలు}}]] (used with at least one value)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|క్వెరీ|క్వెరీలు}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|క్వెరీ|క్వెరీలు}}]]", + "smw-statistics-query-size": "క్వెరీ పరిమాణం", + "smw_ask_ascorder": "ఆరోహణ", + "smw_ask_descorder": "అవరోహణ", + "smw_ask_printhead": "చూపించాల్సిన అదనపు భోగట్టా", + "smw_ask_defaultformat": "అప్రమేయం", + "smw_ask_otheroptions": "ఇతర ఎంపికలు", + "smw-ask-delete": "తీసివేయి", + "smw-ask-options": "ఎంపికలు", + "smw-ask-parameters": "పరామితులు", + "smw-ask-search": "వెతుకు", + "smw-ask-result": "ఫలితం", + "smw_sbv_property": "లక్షణం:", + "smw_sbv_value": "విలువ:", + "browse": "వికీని శోధించండి", + "smw_browse_go": "వెళ్ళు", + "smw_browse_no_outgoing": "ఈ పేజీలో లక్షణాలేమీ లేవు.", + "smw_browse_no_incoming": "ఈ పేజీకి లంకె వేస్తున్న లక్షణాలేమీ లేవు.", + "smw_pp_from": "పేజీ నుండి", + "smw_pp_type": "లక్షణం", + "smw-prev": "మునుపటి {{PLURAL:$1|$1}}", + "smw-next": "తదుపరి {{PLURAL:$1|$1}}", + "smw_result_prev": "గత", + "smw_result_next": "తదుపరి", + "smw_result_results": "ఫలితాలు", + "smw_result_noresults": "ఫలితాలేమీ లేవు.", + "smw-admin-db": "డాటాబేసు స్థాపన మరియు నవీకరణ", + "smw-admin-announce": "మీ వికీని ప్రకటించండి", + "smw_smwadmin_datarefreshbutton": "భోగట్టాను తాజాకరించడం మొదలుపెట్టు", + "smw-admin-support": "తోడ్పాటుని పొందడం", + "smw-admin-other-functions": "ఇతర ప్రమేయాలు", + "smw-admin-supplementary-settings-title": "స్వరూపణ అమరికలు", + "smw-admin-supplementary-operational-statistics-title": "కార్యాచరణ గణాంకాలు", + "smw-admin-supplementary-operational-statistics-cache-title": "క్యాషె గణాంకాలు", + "smw-admin-supplementary-elastic-settings-title": "అమరికలు", + "smw-admin-supplementary-elastic-statistics-title": "గణాంకాలు", + "smw-ui-tooltip-title-quantity": "ప్రమాణం మార్పు", + "smw-ui-tooltip-title-info": "సమాచారం", + "smw-ui-tooltip-title-warning": "హెచ్చరిక", + "smw-ui-tooltip-title-parameter": "పరామితి", + "smw-ui-tooltip-title-event": "ఘటన", + "smw-ui-tooltip-title-note": "గమనిక", + "smw-admin-tab-maintenance": "నిర్వహణ", + "smw-admin-configutation-tab-settings": "అమరికలు", + "smw-admin-configutation-tab-namespaces": "పేరుబరులు", + "smw-livepreview-loading": "లోడవుతోంది...", + "smw-sp-searchbyproperty-resultlist-header": "ఫలితాల జాబితా", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|సెకండు|సెకండ్లు}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|సెకండు|సెకండ్లు}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|సెకండు|సెకండ్లు}}", + "smw-datavalue-time-invalid-values": "\"$1\" విలువలో అర్థంకాని సమాచరమేదో \"$2\" రూపంలో ఉంది.", + "smw-datavalue-time-invalid-date-components-common": "\"$1\" లో అర్థం కాని సమాచారామేదో ఉంది.", + "smw-datavalue-time-invalid-date-components-dash": "\"$1\" లో అర్థం కాని డాష్ ఏదో ఉంది.", + "smw-format-datatable-loadingrecords": "వస్తోంది…", + "smw-format-datatable-first": "మొదటి", + "smw-format-datatable-last": "చివరి", + "smw-format-datatable-next": "తదుపరి", + "smw-format-datatable-previous": "మునుపటి", + "smw-property-reserved-category": "వర్గం", + "smw-category": "వర్గం", + "smw-help": "సహాయం", + "smw-types-title": "రకం: $1", + "smw-listingcontinuesabbrev": "(కొనసాగింపు)", + "smw-showingresults": "#$2 నుండి మొదలుకొని {{PLURAL:$1|ఒక్క ఫలితాన్ని|$1 ఫలితాలను}} కింద చూపించాం." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/tet.json b/mediawiki/extensions/SemanticMediaWiki/i18n/tet.json new file mode 100644 index 0000000..6b3895f --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/tet.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "MF-Warburg" + ] + }, + "smw_true_words": "loos,l,sin,s", + "smw_false_words": "sala,s,lae,la", + "smw-categories": "Kategoria sira", + "smw_result_prev": "Molok", + "smw_result_next": "Oinmai", + "smw-listingcontinuesabbrev": "kont." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/tg-cyrl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/tg-cyrl.json new file mode 100644 index 0000000..b0a4712 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/tg-cyrl.json @@ -0,0 +1,63 @@ +{ + "@metadata": { + "authors": [ + "Ibrahim", + "ToJack", + "Vashgird" + ] + }, + "smw-error": "Иштибоҳ", + "smw_printername_list": "Рӯйхат", + "smw_printername_plainlist": "Рӯйхати одӣ", + "smw_printername_ol": "Номбар", + "smw_printername_ul": "Феҳрист", + "smw_printername_table": "Ҷадвал", + "smw_printername_template": "Шаблон", + "smw_printername_templatefile": "Файли шаблон", + "smw_printername_category": "Гурӯҳ", + "validator-type-class-SMWParamSource": "матн", + "smw-categories": "Гурӯҳҳо", + "smw_propertylackspage": "Ҳамаи хусусиятҳо бояд саҳифаи тавзеҳоти худро дошта бошанд.", + "smw-special-property-searchform-options": "Ихтиёрот", + "smw-special-wantedproperties-filter-label": "Филтр:", + "smw-special-wantedproperties-filter-none": "Ҳеҷ кадом", + "smw_ask_ascorder": "Назулӣ", + "smw-ask-order-rand": "Тасодуфӣ", + "smw_ask_submit": "Ёфтани натиҷа", + "smw-ask-delete": "Пок кардан", + "smw-ask-options": "Ихтиёрот", + "smw-ask-parameters": "Параметрҳо", + "smw-ask-search": "Ҷустуҷӯ", + "smw-ask-result": "Натиҷа", + "smw_sbv_property": "Хусусият:", + "smw_sbv_value": "Қимат:", + "browse": "Мурури вики", + "smw_pp_type": "Хусусият", + "smw_result_prev": "Пешина", + "smw_result_next": "Баъдӣ", + "smw_result_results": "Натиҷаҳо", + "smw_result_noresults": "Ҳеҷ натиҷа", + "smw-admin-statistics": "Омор", + "smw-createproperty-isproperty": "Ин як вижагӣ аз навъи $1 аст.", + "smw-ui-tooltip-title-property": "Хусусият", + "smw-ui-tooltip-title-info": "Иттилоот", + "smw-ui-tooltip-title-warning": "Ҳушдор", + "smw-ui-tooltip-title-error": "Иштибоҳ", + "smw-ui-tooltip-title-parameter": "Параметр", + "smw-ui-tooltip-title-event": "Ҳодиса", + "smw-ui-tooltip-title-legend": "Легенда", + "smw-admin-idlookup-input": "Ҷустуҷӯ:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-maintenance": "Асосӣ", + "smw-livepreview-loading": "Дар ҳоли бор шудан…", + "smw-search-profile-extended-section-form": "Шаклҳо", + "smw-search-profile-extended-section-namespace": "Фазоином", + "smw-search-show": "Нишон додан", + "smw-search-hide": "Пинҳон намудан", + "smw-type-tab-properties": "Хусусиятҳо", + "smw-format-datatable-search": "Ҷустуҷӯ:", + "smw-format-datatable-toolbar-export": "Берунбарӣ", + "smw-schema-summary-title": "Хулоса", + "smw-listingcontinuesabbrev": "идома", + "smw-showingresults": "Намоиши {{PLURAL:$1|'''1''' натиҷа|'''$1''' натоиҷ}} дар зер оғоз аз #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/tg-latn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/tg-latn.json new file mode 100644 index 0000000..ee8e507 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/tg-latn.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Liangent" + ] + }, + "smw-categories": "Gurūhho", + "smw-livepreview-loading": "Dar holi bor şudan…", + "smw-listingcontinuesabbrev": "idoma", + "smw-showingresults": "Namoişi {{PLURAL:$1|'''1''' natiça|'''$1''' natoiç}} dar zer oƣoz az #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/th.json b/mediawiki/extensions/SemanticMediaWiki/i18n/th.json new file mode 100644 index 0000000..d7d405b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/th.json @@ -0,0 +1,83 @@ +{ + "@metadata": { + "authors": [ + "Aefgh39622", + "Ans", + "B20180", + "Horus", + "Passawuth", + "Prem4826" + ] + }, + "smw-desc": "ทำให้วิกิของคุณเข้าถึงได้ง่ายสำหรับเครื่อง''และ''มนุษย์ ([https://www.semantic-mediawiki.org/wiki/Help:User_manual คู่มือการใช้งานแบบออนไลน์)", + "smw-upgrade-error-why-title": "เหตุใดฉันจึงเห็นข้อผิดพลาดนี้", + "smw-upgrade-error-how-title": "ฉันจะแก้ไขข้อผิดพลาดนี้ได้อย่างไร", + "smw_viewasrdf": "ฟีด RDF", + "smw_finallistconjunct": " และ", + "smw_concept_description": "คำอธิบายของภาพรวม \"$1\"", + "smw_printername_csv": "การส่งออก CSV", + "smw_printername_dsv": "การส่งออก DSV", + "smw_printername_json": "การส่งออก JSON", + "smw_printername_list": "รายการ", + "smw_printername_table": "ตาราง", + "smw_printername_template": "แม่แบบ", + "smw_printername_rdf": "การส่งออก RDF", + "smw_printername_category": "หมวดหมู่", + "validator-type-class-SMWParamSource": "ข้อความ", + "smw-paramdesc-mimetype": "ประเภทสื่อ (ประเภท MIME) สำหรับไฟล์ที่ส่งออก", + "smw_iq_moreresults": "... ผลลัพธ์เพิ่มเติม", + "smw_parseerror": "ไม่เข้าใจค่าที่ระบุ", + "smw_emptystring": "ไม่ยอมรับสตริงเปล่า", + "smw_notinenum": "\"$1\" ไม่อยู่ในรายการ ($2) [[Property:Allows value|ค่าที่อนุญาต]]สำหรับคุณสมบัติ \"$3\"", + "smw_nofloat": "\"$1\" ไม่ใช่ตัวเลข", + "smw_infinite": "ไม่สนับสนุนตัวเลข \"$1\" ซึ่งมีขนาดใหญ่เกินไป", + "smw_nodatetime": "ไม่เข้าใจวันที่ \"$1\"", + "smw_type_header": "คุณสมบัติของประเภท \"$1\"", + "smw_attribute_header": "หน้าที่ใช้คุณสมบัติ \"$1\"", + "exportrdf": "ส่งออกหน้าเป็น RDF", + "smw_exportrdf_submit": "ส่งออก", + "uriresolver": "ตัวแปลงที่อยู่ URI", + "properties": "คุณสมบัติ", + "smw-categories": "หมวดหมู่", + "unusedproperties": "คุณสมบัติที่ไม่ได้ใช้", + "smw-unusedproperty-template": "$1 ของประเภท $2", + "wantedproperties": "คุณสมบัติที่ต้องการ", + "smw_purge": "ล้างแคช", + "types": "ประเภท", + "smw_ask_submit": "ค้นหาผลลัพธ์", + "smw_ask_editquery": "แก้ไขคิวรี", + "smw_ask_format_as": "รูปแบบเป็น:", + "smw_ask_defaultformat": "ค่าเริ่มต้น", + "smw-ask-delete": "เอาออก", + "searchbyproperty": "ค้นหาตามคุณสมบัติ", + "smw_sbv_property": "คุณสมบัติ:", + "smw_sbv_value": "ค่า:", + "smw_sbv_submit": "ค้นหาผลลัพธ์", + "browse": "ค้นดูวิกิ", + "smw_browselink": "เรียกดูคุณสมบัติ", + "smw_browse_no_outgoing": "หน้านี้ไม่มีคุณสมบัติ", + "smw_inverse_label_default": "$1 ของ", + "smw_pp_from": "ตั้งแต่หน้า:", + "smw_pp_type": "คุณสมบัติ:", + "smw_pp_submit": "ค้นหาผลลัพธ์", + "smw_result_prev": "ก่อนหน้า", + "smw_result_next": "ถัดไป", + "smw_result_results": "ผลลัพธ์", + "smw_result_noresults": "ไม่มีผลลัพธ์", + "smw_smwadmin_return": "ย้อนกลับไปยัง $1", + "smw_smwadmin_datarefreshstop": "หยุดการอัปเดตนี้", + "smw_smwadmin_datarefreshstopconfirm": "ใช่ ฉัน{{GENDER:$1|แน่ใจ}}", + "smw-admin-supplementary-duplookup-docu": "หน้านี้แสดงรายการหน่วยจาก[https://www.semantic-mediawiki.org/wiki/Help:Entity_table ตารางเอนทิตี]ซึ่งจัดหมวดหมู่เป็นสำเนา หน่วยสำเนาควรเกิดเฉพาะในโอกาสพบน้อยซึ่งอาจเกิดจากกระบวนการที่ถูกยกเลิกระหว่างการปรับฐานข้อมูลหรือการย้อนรวดเดียวอันตรกิริยาที่ไม่สำเร็จ", + "smw_adminlinks_datastructure": "โครงสร้างข้อมูล", + "smw-info-par-message": "ข้อความที่จะแสดง", + "prefs-general-options": "ตัวเลือกทั่วไป", + "smw-ui-tooltip-title-property": "คุณสมบัติ", + "smw-ui-tooltip-title-parameter": "พารามิเตอร์", + "smw-ui-tooltip-title-event": "เหตุการณ์", + "smw-ui-tooltip-title-note": "หมายเหตุ", + "smw-livepreview-loading": "กำลังค้นหา…", + "smw-install-incomplete-intro": "การติดตั้ง (หรืออัปเกรด) ของ ความหมายมีเดียวิกิ ยังไม่สิ้นสุดและผู้ดูแลระบบควรดำเนินงานต่อไปนี้เพื่อป้องกันข้อมูลที่ไม่สอดคล้องกันก่อนที่ผู้ใช้จะสร้างหรือแก้ไขเนื้อหาต่อไป", + "smw-install-incomplete-populate-hash-field": "smw_hash วงประชากรถูกข้ามไปในระหว่างการตั้งค่า สคริปต์ [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] จะต้องมีการดำเนินการ", + "smw-listingcontinuesabbrev": "ต่อ", + "smw-showingresults": "ด้านล่างแสดง 1 ผลลัพธ์ เริ่มตั้งแต่รายการที่ $2" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/tk.json b/mediawiki/extensions/SemanticMediaWiki/i18n/tk.json new file mode 100644 index 0000000..f011396 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/tk.json @@ -0,0 +1,16 @@ +{ + "@metadata": { + "authors": [ + "Hanberke", + "TayfunEt.", + "Zolgoyo" + ] + }, + "smw-categories": "Kategoriýalar", + "browse": "Wiki göz aýlaň", + "smw_browse_go": "Git", + "smw_result_prev": "Öňki", + "smw-livepreview-loading": "Ýüklenýär...", + "smw-listingcontinuesabbrev": "(dowamy)", + "smw-showingresults": "Aşakda №'''$2''' netijeden başlap, {{PLURAL:$1|'''1''' netije|'''$1''' netije}} görkezilýär." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/tl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/tl.json new file mode 100644 index 0000000..156f2ae --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/tl.json @@ -0,0 +1,245 @@ +{ + "@metadata": { + "authors": [ + "AnakngAraw", + "Brazal.dang", + "Emem.calist", + "GinawaSaHapon", + "Qwrop", + "Sky Harbor", + "아라" + ] + }, + "smw-desc": "Ginagawang mas napupuntahan ang wiki mo - para sa ([https://www.semantic-mediawiki.org/wiki/Help:User_manual dokumentasyon habang nasa Internet]) ng mga makina ''at'' mga tao", + "smw-upgrade-error-why-title": "Bakit ko nakikita ang pahinang ito?", + "smw-upgrade-error-how-title": "Paano ko aayusin ang mali dito?", + "smw-extensionload-error-why-title": "Bakit ko nakikita ang pahinang ito?", + "smw-extensionload-error-how-title": "Paano ko aayusin ang mali dito?", + "smw-upgrade-maintenance-why-title": "Bakit ko nakikita ang pahinang ito?", + "smw_viewasrdf": "Pasubo/pakaing RDF", + "smw_finallistconjunct": ", at", + "smw-factbox-facts": "Mga katunayan", + "smw_isspecprop": "Ang pag-aaring ito ay isang natatanging pag-aari sa wiking ito.", + "smw_concept_description": "Paglalarawan ng diwa/konseptong \"$1\"", + "smw_no_concept_namespace": "Mabibigyang kahulugan lamang ang mga diwa (konsepto) sa ibabaw ng mga pahinang nasa loob ng Diwa: espasyo ng pangalan.", + "smw_multiple_concepts": "Magkakaroon lamang ng isang kahulugang pangkonsepto ang bawat isang pahina ng diwa.", + "smw_concept_cache_miss": "Hindi magagamit sa sandaling ito ang diwang \"$1\", dahil sa kinakailangan ng pagkakaayos ng wiki na tuusin ito habang hindi nakaugnay sa internet.\nKapag hindi nawala/naalis ang suliranin makalipas ang ilang panahon, pakihiling sa iyong tagapangasiwa na gawing makukuha ang diwang ito.", + "smw_noinvannot": "Ang mga halaga ay hindi maitatalaga sa mga katangiang pabaligtad.", + "version-semantic": "Mga dugtong na semantiko", + "smw_baduri": "Hindi pinapahintulutan ang mga URI ng pormularyong \"$1\".", + "smw_printername_count": "Bilangin ang mga kinalabasan", + "smw_printername_csv": "Luwas ng CSV", + "smw_printername_dsv": "Pagluluwas ng DSV", + "smw_printername_debug": "Tanggalan ng depekto ang tanong (para sa mga dalubhasa)", + "smw_printername_embedded": "Ibaon ang mga nilalaman ng pahina", + "smw_printername_json": "Luwas ng JSON", + "smw_printername_list": "Talaan", + "smw_printername_ol": "Pagtatala", + "smw_printername_ul": "Pag-iisa-isa", + "smw_printername_table": "Tabla", + "smw_printername_broadtable": "Malawak na tabla", + "smw_printername_template": "Suleras", + "smw_printername_rdf": "Angkat ng RDF", + "smw_printername_category": "Kategorya", + "smw-paramdesc-limit": "Ang pinakamataas na bilang ng mga resultang ibabalik", + "smw-paramdesc-offset": "Ang timbang na pambalanse ng unang resulta", + "smw-paramdesc-headers": "Ipakita ang mga pangalan ng paulo/katangiang-ari", + "smw-paramdesc-mainlabel": "Ang tatak na ibibigay sa pangalan ng pangunahing pahina", + "smw-paramdesc-link": "Ipakita ang mga halaga bilang mga kawing", + "smw-paramdesc-intro": "Ang tekstong ipapakita bago ang mga resulta ng pagtatanong, kung mayroon", + "smw-paramdesc-outro": "Ang tekstong ipapakita pagkaraan ng mga resulta ng pagtatanong, kung mayroon", + "smw-paramdesc-default": "Ang tekstong ipapakita kung walang mga resulta ng pagtatanong", + "smw-paramdesc-sep": "Ang panghiwalay ng mga halaga", + "smw-paramdesc-distribution": "Sa halip na ipakita ang lahat ng mga halaga, bilangin ang pagsipot ng mga ito, at ipakita ang mga ito.", + "smw-paramdesc-distributionsort": "Iayos ang pamumudmod ng halaga ayon sa bilang ng pagsipot.", + "smw-paramdesc-distributionlimit": "Hanggahan ang pamumudmod ng halaga sa bilang ng ilang mga halaga lamang.", + "smw-paramdesc-template": "Ang pangalan ng isang suleras kung saan ipapakita ang mga inilimbag", + "smw-paramdesc-columns": "Ang bilang ng mga haligi kung saan ipapakita ang mga resulta (likas na nakatakda ang $1)", + "smw-paramdesc-userparam": "Isang halagang pinadaraan papasok sa bawat pagtawag ng suleras, kapag ginamit ang isang suleras", + "smw-paramdesc-introtemplate": "Ang pangalan ng isang suleras na ipapakita bago ang mga resulta ng pagtatanong, kung mayroon", + "smw-paramdesc-outrotemplate": "Ang suleras na ipapakita pagkaraan ng mga resulta ng pagtatanong, kung mayroon", + "smw-paramdesc-embedformat": "Ang ginagamit na tatak ng HTML upang ilarawan ang mga paulo", + "smw-paramdesc-embedonly": "Huwag magpakita ng mga paulo", + "smw-paramdesc-table-class": "Isang karagdagang klase ng Mga Pilas ng Estilong Lumalagaslas na itatalaga para sa talahanayan", + "smw-paramdesc-rdfsyntax": "Ang gagamiting palaugnayan ng RDF", + "smw-paramdesc-csv-sep": "Ang panghiwalay na gagamitin", + "smw-paramdesc-dsv-separator": "Ang panghiwalay na gagamitin", + "smw-paramdesc-dsv-filename": "Ang pangalan para sa talaksan ng DSV", + "smw-smwdoc-description": "Nagpapakita ng isang talahanayan ng lahat ng mga parametro na magagamit para sa tinukoy na kaanyuan ng resulta na kasama ang likas na nakatakdang mga halaga at mga paglalarawan.", + "smw-smwdoc-par-format": "Ang kaanyuan ng resulta na pagpapakitaan ng kasulatan ng parametro.", + "smw-smwdoc-par-parameters": "Kung aling mga parametro ang ipapakita. \"specific\" para sa mga idinagdag ayon sa kaanyuan, \"base\" para sa mga makukuha na nasa lahat ng mga kaanyuan, at \"all\" para sa dalawang mga ito.", + "smw-paramdesc-sort": "Kaarian na pag-aayusan ng pag-uusisa", + "smw-paramdesc-order": "Pagkakasunud-sunod ng pagkakaayos ng pag-uusisa", + "smw-paramdesc-searchlabel": "Tekstong para sa pagpapatuloy ng paghahanap", + "smw-paramdesc-named_args": "Pangalanan ang mga pangangatwiran na ipinasang papunta sa suleras", + "smw-paramdesc-export": "Mapagpipilian ng pag-angkat", + "smw-paramdesc-prettyprint": "Isang kalalabasang maganda ang pagkakalimbag na nagpapakita ng karagdagang mga pag-urong at bagong mga guhit", + "smw-paramdesc-source": "Panghaliling pinagmulan ng pag-uusisa", + "smw-paramdesc-jsonsyntax": "Gagamiting palaugnayan ng JSON", + "smw_iq_disabled": "Hindi pinagana ang mga katanungang hinggil sa kahulugan ng salita (semantiko) para sa wiking ito.", + "smw_iq_moreresults": "… karagdagang mga resulta/kinalabasan", + "smw_parseerror": "Hindi naunawaan ang ibinigay na halaga.", + "smw_notitle": "Hindi magagamit sa loob ng wiking ito ang \"$1\" bilang isang pangalan ng pahina.", + "smw_noproperty": "Hindi magagamit sa loob ng wiking ito ang \"$1\" bilang isang pangalan ng pag-aari.", + "smw_wrong_namespace": "Tanging mga pahinang nasa espasyo ng pangalang \"$1\" ang pinapahintulutan dito.", + "smw_manytypes": "Mahigit sa isang uri ang binigyang kahulugan para sa pag-aari.", + "smw_emptystring": "Hindi tinatanggap ang mga bagting na walang laman.", + "smw_notinenum": "Ang \"$1\" ay wala sa loob ng talaan ng maaaring maging mga halaga ($2) para sa pag-aaring ito.", + "smw_noboolean": "Ang \"$1\" ay hindi kinikilala bilang isang halaga ng ''Boolean'' (tama/mali).", + "smw_true_words": "totoo,t,oo,o", + "smw_false_words": "mali,m,hindi,h", + "smw_nofloat": "Hindi isang bilang ang \"$1\".", + "smw_infinite": "Hindi tinatangkilik ang mga bilang na kasinlaki ng \"$1\".", + "smw_unitnotallowed": "Ang \"$1\" ay hindi ipinahayag bilang isang katanggap-tanggap na yunit ng pagsukat para sa pag-aaring ito.", + "smw_nounitsdeclared": "Walang ipinahayag na mga yunit ng sukat para sa pag-aaring ito.", + "smw_novalues": "Walang tinukoy na mga halaga.", + "smw_nodatetime": "Hindi naunawaan ang petsang \"$1\".", + "smw_toomanyclosing": "Tila mayroong napakaraming mga kaganapan ng \"$1\" sa loob ng katanungan.", + "smw_noclosingbrackets": "Ilang mga paggamit ng \"[[\" sa loob ng iyong katanungan ang hindi naisara sa pamamagitan ng isang tumutugmang \"]]\".", + "smw_misplacedsymbol": "Ginamit ang sagisag na \"$1\" sa loob ng isang pook na hindi naman ito magagamit (walang pakinabang).", + "smw_unexpectedpart": "Hindi naunawaan ang bahaging \"$1\" ng katanungan.\nMaaaring hindi inaasahan ang magiging mga kinalabasan.", + "smw_emptysubquery": "Walang tanggap na kalagayan (kalakaran) ang kabahaging katanungan.", + "smw_misplacedsubquery": "Hindi ginamit ang ilang kabahaging mga katanungan sa loob ng isang pook kung saan hindi pinapahintulutan ang mga kabahaging katanungan.", + "smw_valuesubquery": "Hindi tinatangkilik ang kabahaging mga katanungan para sa mga halaga ng pag-aaring \"$1\".", + "smw_badqueryatom": "Hindi naunawaan ang ilang bahaging \"[[…]]\" ng katanungan.", + "smw_propvalueproblem": "Hindi naunawaan ang halaga ng pag-aaring \"$1\".", + "smw_noqueryfeature": "Ilang katangiang-kasangkapan ng katanungan ay hindi tinatangkilik sa wiking ito at inilaglag na ang bahagi ng katanungan ($1).", + "smw_noconjunctions": "Hindi tinatangkilik sa wiking ito ang mga pangatnig at inilaglag na ang bahagi ng katanungan ($1).", + "smw_nodisjunctions": "Hindi tinatangkilik sa wiking ito ang pagkakakalas-kalas sa mga katanungan at inilaglag na ang bahgi ng katanungan ($1).", + "smw_querytoolarge": "Hindi maisasaalang-alang ang sumusunod na mga kalagayan ng katanungan dahil sa mga hangganan ng mga wiki sa sukat o lalim ng katanungan: $1.", + "smw_notemplategiven": "Magbigay ng isang halaga para sa parametrong \"suleras\" upang gumana/maganap ang ganitong anyo/pormat ng katanungan.", + "smw_db_sparqlqueryproblem": "Ang resulta ng pagsisiyasat ay hindi makamtan mula sa kalipunan ng dato ng SPARQL. Ang kamaliang ito ay maaaring pansamantala o nagpapahiwatig ng isang depekto sa loob ng sopwer ng kalipunan ng dato.", + "smw_db_sparqlqueryincomplete": "Ang pagsagot sa pagsisiyasat ay lumitaw na napakahirap at pinaglubay. Maaaring nawawala ang ilang mga resulta. Kung maaari, sa halip ay subukang gumamit ng isang mas payak na pagsisiyasat.", + "smw_type_header": "Mga pag-aari ng uring \"$1\"", + "smw_typearticlecount": "Nagpapakita ng $1 na {{PLURAL:$1|pag-aari|mga pag-aari}}ng ginagamitan ng ganitong uri.", + "smw_attribute_header": "Mga pahinang gumagamit na pag-aaring \"$1\"", + "smw_attributearticlecount": "Nagpapakita ng $1 {{PLURAL:$1|pahina|mga pahina}}ng ginagamitan ng ganitong ari-arian.", + "specialpages-group-smw_group": "Semantikong MediaWiki", + "exportrdf": "Iluwas/Ipadala ang mga pahina patungo sa RDF", + "smw_exportrdf_docu": "Ipinapahintulot ng pahinang ito na makakuha ka ng dato mula sa isang pahinang nasa anyong RDF.\nUpang makapagluwas ng mga pahina, ipasok ang mga pamagat sa loob ng kahong pangtekstong nasa ibaba, isang pamagat bawat guhit/hanay.", + "smw_exportrdf_recursive": "Tumatawag sa sarili na angkatin ang lahat ng kaugnay na mga pahina.\nTandaan lamang na maaaring malaki ang kinalabasan/resulta!", + "smw_exportrdf_backlinks": "Nagluluwas din ng lahat ng mga pahinang tumutukoy sa iniluwas na mga pahina.\nGumagawa ng matitingnan-tingnang RDF.", + "smw_exportrdf_lastdate": "Huwag iluwas ang mga pahinang hindi nabago mula sa isang ibinigay na sandali sa loob ng panahon/oras.", + "smw_exportrdf_submit": "Iluwas", + "uriresolver": "tagalutas ng URI", + "properties": "Mga pag-aari", + "smw-categories": "Mga kategorya", + "smw_properties_docu": "Ginagamit sa wiki ang sumusunod na mga pahina ng pag-aari.", + "smw_property_template": "$1 ng uring $2 ($3)", + "smw_propertylackspage": "Lahat ng mga pag-aari ay dapat na nilalarawan ng isang pahina!", + "smw_propertylackstype": "Walang uring tinukoy para sa pag-aaring ito (ipapalagay na nasa uring $1 muna sa ngayon).", + "smw_propertyhardlyused": "Madalang gamitin ang ganitong pag-aari sa loob ng wiking ito!", + "unusedproperties": "Mga pag-aaring hindi pa nagagamit", + "smw-unusedproperties-docu": "Umiiral ang sumusunod na mga pag-aari bagaman wala namang ibang pahinang gumagamit ng mga ito.", + "smw-unusedproperty-template": "$1 ng uring $2", + "wantedproperties": "Ninanais na mga ari-arian", + "smw-wantedproperties-docu": "Ginagamit sa loob ng wiki ang sumusunod na mga pag-aari ngunit wala pang isang pahinang naglalarawan sa kanila.", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|gamit|mga gamit}})", + "smw_purge": "Sariwain", + "types": "Mga uri", + "smw_types_docu": "Ang sumusunod ay isang talaan ng lahat ng mga uri ng dato na maaaring italaga sa mga pag-aari.", + "smw_uri_doc": "Ipinatutupad ng tagapaglutas na URI ang [$1 Paghahanap ng W3C TAG sa httpRange-14].\nPinag-iingatan nitong huwag maging mga sityo ng web (websayt) ang mga tao.", + "ask": "Paghahanap hinggil sa kahulugan ng mga salita (semantiko)", + "smw_ask_sortby": "Pagpangkat-pangkating ayon sa pahabang kahanayan (maaaring wala nito)", + "smw_ask_ascorder": "Tumataas", + "smw_ask_descorder": "Bumababa", + "smw_ask_submit": "Hanapin ang mga kinalabasan/resulta", + "smw_ask_editquery": "Baguhin ang katanungan", + "smw_add_sortcondition": "[Idagdag ang kalagayang pampagpapangkat-pangkat]", + "smw_ask_hidequery": "Itago ang katanungan", + "smw_ask_help": "Tulong sa pagtatanong", + "smw_ask_queryhead": "Katanungan", + "smw_ask_printhead": "Karagdagang mga datong ipapakita", + "smw_ask_printdesc": "(magdagdag ng isang pangalan ng ari-arian sa bawat guhit)", + "smw_ask_format_as": "Iayos bilang:", + "smw_ask_defaultformat": "likas na katakdaan", + "smw_ask_otheroptions": "Iba pang mga mapagpipilian", + "smw-ask-otheroptions-info": "Ang seksiyong ito ay naglalaman ng mga mapagpipilian na nakapagpapabago sa mga pahayag ng nakalimbag na kinalabasan. Ang mga paglalarawan ng paraemetro ay maaaring tingnan sa pamamagitan ng pag-aligid sa ibabaw ng mga ito.", + "smw-ask-otheroptions-collapsed-info": "Paki gamitin ang kinatawang larawan ng pagdaragdag upang makita ang lahat ng makukuhang mga mapagpipilian", + "smw_ask_show_embed": "Ipakita ang kodigong pambaon", + "smw_ask_hide_embed": "Ibaong nakakubli ang kodigo", + "smw_ask_embed_instr": "Upang maibaon ang katanungang ito sa loob ng guhit papasok sa isang pahina ng wiki, gamitin ang kodigong nasa ibaba.", + "smw-ask-delete": "[Burahin]", + "smw-ask-sorting": "Pagbubukud-bukod", + "searchbyproperty": "Maghanap ayon sa pag-aari", + "smw_sbv_docu": "Hanapin ang lahat ng mga pahinang may isang ibinigay na pag-aari at halaga.", + "smw_sbv_novalue": "Maglagay/magpasok ng isang tanggap na halaga para sa pag-aari, o tingnan ang lahat ng mga halaga ng ari-arian para sa \"$1\".", + "smw_sbv_displayresultfuzzy": "Isang talaan ng lahat ng mga pahinang may pag-aaring \"$1\" na may halagang \"$2\".\nDahil mayroong mangilan-ngilang mga kinalabasan lamang, ipinakikita rin ang kalapit na mga halaga.", + "smw_sbv_property": "Pag-aari:", + "smw_sbv_value": "Halaga:", + "smw_sbv_submit": "Hanapin ang mga kinalabasan", + "browse": "Maglibot sa wiki", + "smw_browselink": "Tumingin-tingin sa mga pag-aari", + "smw_browse_article": "Ipasok/ilagay ang pangalan ng pahinang pagsisimulan ng pagtingin-tingin.", + "smw_browse_go": "Gawin na", + "smw_browse_show_incoming": "ipakita ang mga pag-aaring kumakawing (umuugnay) dito", + "smw_browse_hide_incoming": "itago ang mga pag-aaring kumakawing (umuugnay) dito", + "smw_browse_no_outgoing": "Walang mga pag-aari ang pahinang ito.", + "smw_browse_no_incoming": "Walang mga pag-aaring nakakawing (umuugnay) patungo sa pahinang ito.", + "smw_inverse_label_default": "$1 ng", + "smw_inverse_label_property": "Ibinaligtad na tatak ng pag-aari", + "pageproperty": "Paghahanap sa pag-aari ng pahina", + "smw_pp_docu": "Hanapin ang lahat ng mga pampuno ng isang pag-aari sa isang ibinigay na pahina.\nKapwa ipasok ang isang pahina at isang pag-aari.", + "smw_pp_from": "Mula sa pahina", + "smw_pp_type": "Pag-aari", + "smw_pp_submit": "Hanapin ang mga resulta", + "smw_result_prev": "Sinundan", + "smw_result_next": "Susunod", + "smw_result_results": "Mga kinalabasan (resulta)", + "smw_result_noresults": "Walang mga kinalabasan/resulta.", + "smwadmin": "Mga punsiyon para sa pangangasiwa at pagpapanatili", + "smw-admin-setupsuccess": "Matagumpay na naihanda ang makina ng pagtatago.", + "smw_smwadmin_return": "Magbalik sa $1", + "smw_smwadmin_updatestarted": "Sinimulan ang isang bagong proseso ng pagsasapanahon para sa pagsasariwa ng datong semantiko.\nLahat ng nakatabing mga dato ay muling bubuuin o kukumpunihin kung saan kailangan.\nMasusundan mo ang pagsulong ng pagsasapanahon sa natatanging pahinang ito.\n\nBumalik sa $1.", + "smw_smwadmin_updatenotstarted": "Mayroon nang isang tumatakbong proseso ng pagsasapanahon.\nHindi na lilikha ng isa pa.\n\nBumalik sa $1.", + "smw_smwadmin_updatestopped": "Inihinto ang lahat ng umiiral na mga proseso ng pagsasapanahon.\n\nBumalik sa $1.", + "smw_smwadmin_updatenotstopped": "Upang mapahinto ang tumatakbong proseso ng pagsasapanahon, dapat mong pasiglahin ang kahong lagayan ng tsek upang maipahiwatig na talagang nakatitiyak ka.\n\nBumalik sa $1.", + "smw-admin-docu": "Tumutulong ang natatanging pahinang ito sa iyo sa panahon ng pagluluklok at pagtataas ng uri ng Semantic MediaWiki.\nHuwag kalimutang gumawa ng karagdagang sipi ng mahalagang dato bago isagawa ang mga tungkuling pangtagapangasiwa.", + "smw-admin-db": "Pagpapanatili ng kalipunan ng datos", + "smw-admin-dbdocu": "Nangangailangan ang Semantikong Mediawiki ng ilang mga karugtong sa kalipunan ng dato ng MediaWiki upang maitabi ang datong hinggil sa kahulugan ng mga salita.\nTinitiyak ng tungkuling nasa ibaba na tama ang pagkakahanda ng kalipunan ng dato mo.\nHindi nakakaapekto ang mga pagbabagong ginawa sa hakbang na ito sa iba pang mga bahagi ng kalipunan ng dato ng MediaWiki, at madaling/maginhawang maibabalik kung nanaisin.\nMaaaring isagawa ng maramihang ulit ang tungkulin ng paghahandang ito na hindi nakapagdurulot ng anumang pinsala, subalit isang ulit lamang itong kailangan sa pagluluklok/instalasyon o pagtataas ng uri/grado.", + "smw-admin-permissionswarn": "Kapag nabigo ang pagsasagawa na mayroong mga kamalian ng SQL, maaaring walang sapat na mga kapahintulutan ang tagagamit ng kalipunan ng dato na hinirang ng wiki mo (siyasatin ang iyong LocalSettings.php).\nMaaaring pagkalooban ang tagagamit na ito ng karagdagang mga kapahintulutan upang makalikha at makapagbura ng mga talahanayan, pansamantalang ipasok ang panglagda ng iyong ugat ng kalipunan ng dato sa LocalSettings.php, o gamitin ang panitik ng pagpapanatili na setupStore.php na makakagamit ng mga kredensiyal ng isang tagapangasiwa.", + "smw-admin-dbbutton": "Umpisahan o itaas ang uri (klase) ng mga tabla", + "smw-admin-announce": "Ipahayag ang wiki mo", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] ay napatanggal sa $2", + "smw_smwadmin_datarefresh": "Pagkukumpuni at pagtataas ng uri (grado/klase) ng dato", + "smw_smwadmin_datarefreshdocu": "Maaaring maibalik muli ang lahat ng dato ng Semantikong MediaWiki batay sa pangkasalukuyang mga nilalaman ng wiki.\nMagiging gamitin ito sa pagaayos/pagkukumpuni ng nasirang dato o upang masariwa ang dato kung nabago ang panloob na kaanyuan/pormat dahil sa ilang mga pagtataas ng uri ng sopwer.\nIsinasakatuparan ang pagsasapanahon ng pahina sa pahina at hindi agad-agarang mabubuo.\nIpinapakita ng sumusunod kung sumusulong na ang isang pagsasapanahon at magpapahintulot sa iyo upang simulan o pahintuin ang mga pagsasapanahon (maliban na lamang kung hindi pinagana/pinaandar ng tagapangasiwa ng sityo/sayt ang katangiang-kasangkapang ito).", + "smw_smwadmin_datarefreshprogress": "Sumusulong na ang isang pagsasapanahon.
    \nPangkaraniwan lamang na mabagal ang pagsulong ng pagsasapanahon dahil sinasariwa lamang nito ang maliliit na tipak ng dato sa bawat panahong pumupunta sa wiki ang isang tagagamit.\nUpang mas mabilisang matapos ang pagsasapanahong ito, maaari mong tawagin ang panitik na pangpagpapanatiling runJobs.php (gamitin ang pagpipiliang --maxjobs 1000 ng MediaWiki upang mabigyan ng hangganan ang bilang ng mga pagsasapanahong ginagawa sa bawat isang bungkos).\nTinatayang progreso ng pangkasalukuyang pagsasapanahon:", + "smw_smwadmin_datarefreshbutton": "Umpisahang isapanahon ang dato", + "smw_smwadmin_datarefreshstop": "Ihinto ang pagsasapanahong ito", + "smw_smwadmin_datarefreshstopconfirm": "Oo, nakatitiyak ako.", + "smw-admin-support": "Pagkuha ng suporta", + "smw-admin-supportdocu": "Maaaring makatulong sa iyo ang sari-saring kapakipakinabang na mga bagay-bagay kung sakaling magkaroon ng mga suliranin:", + "smw-admin-installfile": "Kung sakaling makaranas ka ng mga suliranin sa pagluluklok mo, magsimula sa pamamagitan ng pagsusuri ng mga patnubay na nasa loob ng ILUKLOK ang talaksan.", + "smw-admin-smwhomepage": "Ang buong kasulatang pantagagamit ng Semantikong Mediawiki ay nasa semantic-mediawiki.org.", + "smw-admin-bugsreport": "Maaaring iulat ang mga depekto/sira (''bug'') sa GitHub.", + "smw-admin-questions": "Kung mayroon ka pang karagdagang mga katanungan o mga mungkahi, makilahok sa usapang nasa Pangmadlang talakayan ng tagagamit ng MediaWiking Semantiko.", + "smw-admin-supplementary-elastic-functions": "Mapagpipiliang mga tungkulin", + "smw_adminlinks_datastructure": "Kayarian ng dato", + "smw_adminlinks_displayingdata": "Pagpapakita ng dato", + "smw_adminlinks_inlinequerieshelp": "Tulong sa mga katanungang nasa guhit", + "smw-createproperty-isproperty": "Isa itong pag-aari ng uring $1.", + "smw-createproperty-allowedvals": "Ang pinahihintulutang {{PLURAL:$1|halaga para sa pag-aaring ito ay|mga halaga para sa pag-aaring ito ay}}:", + "smw-paramdesc-category-delim": "Ang pantakda ng hangganan", + "smw-paramdesc-category-template": "Isang suleras na pangbigay ng kaanyuan sa mga bagay", + "smw-paramdesc-category-userparam": "Isang parametro na ipapasa sa suleras", + "smw-info-par-message": "Mensaheng ipapakita.", + "smw-info-par-icon": "Kinatawang larawan na ipapakita, maaaring \"kabatiran\" o \"babala\".", + "prefs-smw": "Semantikong MediaWiki", + "prefs-ask-options": "Mga mapagpipilian ng semantikong paghahanap", + "smw-prefs-ask-options-tooltip-display": "Ipakita ang teksto ng parametro bilang pangkabatiran na payo sa kasangkapan", + "smw_unknowntype": "Hindi katanggap-tanggap ang uri ng pag-aaring ito", + "smw_concept_header": "Mga pahina ng diwang \"$1\"", + "smw_conceptarticlecount": "Nagpapakita ng $1 {{PLURAL:$1|pahina|mga pahina}}ng kasali sa ganyang diwa.", + "smw-livepreview-loading": "Ikinakarga...", + "logeventslist-smw-log": "Log ng Semantikong MediaWiki", + "smw-format-datatable-emptytable": "Walang 'data'ng maipakita sa hapagkainan", + "smw-format-datatable-infoempty": "Ipinapakita na 0 hanggang 0 na 0 -ng resulta", + "smw-format-datatable-loadingrecords": "Ikinakasa...", + "smw-format-datatable-search": "Maghanap:", + "smw-format-datatable-last": "Dulo", + "smw-filter": "Pansala", + "smw-help": "Makatulong", + "smw-remote-source-unavailable": "Hindi mai-'connect' sa 'remote \"$1\" target'.", + "smw-listingcontinuesabbrev": "karugtong", + "smw-showingresults": "Ipinapakita sa ibaba ang magpahanggang sa {{PLURAL:$1|'''1''' resultang|'''$1''' mga resultang}} nagsisimula sa #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/tly.json b/mediawiki/extensions/SemanticMediaWiki/i18n/tly.json new file mode 100644 index 0000000..fad32e2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/tly.json @@ -0,0 +1,24 @@ +{ + "@metadata": { + "authors": [ + "Patriot Kor", + "Patriot Kur", + "Гусейн" + ] + }, + "smw_finallistconjunct": ", ијән", + "smw_printername_list": "Сијоһи", + "smw_printername_template": "Šablon", + "smw_printername_category": "Kategorijə", + "smw_exportrdf_submit": "İxroc", + "smw-categories": "Kategorijon", + "smw_purge": "Тожә кардеј", + "browse": "Səhifon dijə karde", + "smw-admin-supplementary-elastic-version-info": "Versiya", + "smw-ui-tooltip-title-info": "Məlumot", + "smw-format-datatable-toolbar-export": "İxroc", + "smw-property-reserved-category": "Kategorijə", + "smw-category": "Kategorijə", + "smw-entity-examiner-deferred-fake": "Pesoxtə", + "smw-listingcontinuesabbrev": "dəvom" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/tr.json b/mediawiki/extensions/SemanticMediaWiki/i18n/tr.json new file mode 100644 index 0000000..3c8d268 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/tr.json @@ -0,0 +1,1105 @@ +{ + "@metadata": { + "authors": [ + "BaRaN6161 TURK", + "Bulgu", + "Chansey", + "Cobija", + "Emperyan", + "Erdemaslancan", + "HakanIST", + "Hbseren", + "Hedda", + "Incelemeelemani", + "Joseph", + "Karduelis", + "LisafBia", + "McDutchie", + "Mirzali", + "MuratTheTurkish", + "SaldırganSincap", + "Sayginer", + "Sezgin İbiş", + "Suvarioglu", + "Trockya", + "Vito Genovese" + ] + }, + "smw-desc": "Vikinizi makineler ''ve'' insanlar için daha erişilebilir hale getirmesi ([https://www.semantic-mediawiki.org/wiki/Help:User_manual çevrimiçi belge])", + "smw-error": "Hata", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] yüklendi ve etkinleştirildi, ancak uygun bir [https://www.semantic-mediawiki.org/wiki/Help:Upgrade yükseltme anahtarı eksik].", + "smw-upgrade-release": "Sürüm", + "smw-upgrade-progress": "İlerleme", + "smw-upgrade-progress-explain": "Veri deposunun boyutuna ve mevcut donanıma bağlı olduğundan ve daha büyük vikilerin tamamlanması biraz zaman alabileceğinden, yükseltmenin ne zaman tamamlanacağına ilişkin bir tahmin yapmak zordur.\n\nİlerleme hakkında daha fazla bilgi almak için lütfen yerel hizmetlisine başvurun.", + "smw-upgrade-progress-create-tables": "Tablo ve endeks oluşturuluyor (veya güncelleniyor) ...", + "smw-upgrade-progress-post-creation": "Posta oluşturma görevleri çalıştırılıyor ...", + "smw-upgrade-progress-table-optimization": "Tablo optimizasyonları çalıştırılıyor ...", + "smw-upgrade-progress-supplement-jobs": "Ek işler ekleniyor ...", + "smw-upgrade-error-title": "Hata » Semantic MediaWiki", + "smw-upgrade-error-why-title": "Bu sayfayı neden görüyorum?", + "smw-upgrade-error-why-explain": "Semantic MediaWiki'nin dahili veritabanı yapısı değişti ve bazı ayarların tamamen işlevsel olmasını gerektiriyor. Aşağıdakiler dahil çeşitli nedenler olabilir:\n* Ek sabit özellikler (ek tablo kurulumu gerektirir) eklendi\n* Yükseltme, verilere erişmeden önce müdahaleyi zorunlu kılan tablolarda veya endekslerde bazı değişiklikler içerir\n* Depolama veya sorgu motorundaki değişiklikler", + "smw-upgrade-error-how-title": "Bu hatayı nasıl düzeltirim?", + "smw-upgrade-error-how-explain-admin": "Bir hizmetli (veya hizmetli haklarına sahip herhangi bir kişi) ya MediaWiki'nin [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] ya da Semantic MediaWiki'nin [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] bakım betik çalıştırması gerekir.", + "smw-upgrade-error-how-explain-links": "Daha fazla yardım için aşağıdaki sayfalara da bakabilirsiniz:\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation Kurulumu] talimatları\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting Sorun giderme] yardım sayfası", + "smw-extensionload-error-why-title": "Bu sayfayı neden görüyorum?", + "smw-extensionload-error-why-explain": "Uzantı enableSemantics kullanılarak yüklenmedi ve bunun yerine doğrudan wfLoadExtension('SemanticMediaWiki') kullanımı gibi başka yollarla etkinleştirildi.", + "smw-extensionload-error-how-title": "Bu hatayı nasıl düzeltirim?", + "smw-extensionload-error-how-explain": "Uzantıyı etkinleştirmek ve ad alanı bildirimleri ve bekleyen yapılandırmalarla ilgili sorunları önlemek için, uzantıyı ExtensionRegistry aracılığıyla yüklemeden önce gerekli değişkenlerin ayarlanmasını sağlayacak enableSemantics kullanılması gerekir.\n\nDaha fazla yardım için lütfen [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics/tr enableSemantics] yardım sayfasına bakın.", + "smw-upgrade-maintenance-title": "Bakım » Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "Bu sayfayı neden görüyorum?", + "smw-upgrade-maintenance-note": "Sistem şu anda veri deposu ile birlikte [https://www.semantic-mediawiki.org/ Semantic MediaWiki] uzantısının [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/tr yükseltmesi] geçiriyor ve sizden sabrınızı istemek ve vikinin tekrar erişilebilir hale getirilmesinden önce bakımın devam etmesini sağlamak istiyoruz.", + "smw-upgrade-maintenance-explain": "Bu uzantı, bakım görevlerini update.php işleminin ardına atarak gecikmeyi ve etki süresini azaltmaya çalışır. Fakat veritabanıyla alakalı bazı değişikliklerin, veri uyumsuzluğu yaratmaması amacıyla öncelikli olarak yapılması gerekir. Şu değişikliler dahil olabilir:\n* Yeni alan eklemek veya var olanı değiştirmek gibi tablo değişimleri\n* Tablo indekslerinin değiştirilmesi veya eklenmesi\n* Tablo iyileştirmelirini çalıştırmak (etkin olduğu zaman)", + "smw-semantics-not-enabled": "Bu viki için Semantic MediaWiki işlevselliği etkinleştirilmedi.", + "smw_viewasrdf": "RDF beslemesi", + "smw_finallistconjunct": " ve", + "smw-factbox-head": "... ''$1'' hakkında daha fazla", + "smw-factbox-facts": "Gerçekler", + "smw-factbox-facts-help": "Bir kullanıcı tarafından oluşturulan ifadeleri ve gerçekleri gösterir.", + "smw-factbox-attachments": "Ekler", + "smw-factbox-attachments-value-unknown": "Bilinmiyor", + "smw-factbox-attachments-is-local": "Yerel", + "smw-factbox-attachments-help": "Kullanılabilir ekleri gösterir", + "smw-factbox-facts-derived": "Türetilmiş gerçekler", + "smw-factbox-facts-derived-help": "Kurallardan veya diğer akıl yürütme tekniklerinin yardımıyla elde edilen gerçekleri gösterir.", + "smw_isspecprop": "Bu özellik, bu vikideki özel bir özelliktir.", + "smw-concept-cache-header": "Önbellek kullanımı", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count Kavram önbelleği] {{PLURAL:$1|'''bir''' varlık |'''$1''' varlık}} içeriyor ($2).", + "smw-concept-no-cache": "Önbellek yok.", + "smw_concept_description": "\"$1\" kavramının tanımı", + "smw_no_concept_namespace": "Kavramlar yalnızca kavram sayfalarında tanımlanabilir: ad alanı", + "smw_multiple_concepts": "Tüm kavram sayfaları sadece birer kavram tanımına sahip olabilir.", + "smw_concept_cache_miss": "\"$1\" kavramı şu anda kullanılamıyor, çünkü viki yapılandırması çevrimdışı hesaplanmasını gerektiriyor.\nSorun bir süre sonra ortadan kalkmazsa, site hizmetlisinden bu kavramı kullanılabilir yapmasını isteyin.", + "smw_noinvannot": "Değerler ters özelliklere atanamaz.", + "version-semantic": "Semantic uzantıları", + "smw_baduri": "\"$1\" form URL'sine izin verilmiyor.", + "smw_printername_count": "Sonuçları say", + "smw_printername_csv": "CSV aktarımı", + "smw_printername_dsv": "DSV aktarımı", + "smw_printername_debug": "Hata ayıklama sorgusu (uzmanlar için)", + "smw_printername_embedded": "Sayfa içeriklerini yerleştir", + "smw_printername_json": "JSON aktarımı", + "smw_printername_list": "Liste", + "smw_printername_plainlist": "Düz liste", + "smw_printername_ol": "Numaralı liste", + "smw_printername_ul": "Madde işaretli liste", + "smw_printername_table": "Tablo", + "smw_printername_broadtable": "Geniş tablo", + "smw_printername_template": "Şablon", + "smw_printername_templatefile": "Şablon dosyası", + "smw_printername_rdf": "RDF aktarımı", + "smw_printername_category": "Kategori", + "validator-type-class-SMWParamSource": "metin", + "smw-paramdesc-limit": "Döndürülecek en fazla sonuç sayısı", + "smw-paramdesc-offset": "İlk sonucun ofseti", + "smw-paramdesc-headers": "Başlıkları/özellik adlarını göster", + "smw-paramdesc-mainlabel": "Anasayfa ismine verilecek etiket", + "smw-paramdesc-link": "Değerleri bağlantı olarak göster", + "smw-paramdesc-intro": "Sorgu sonuçlarından önce görüntülenecek metin, varsa", + "smw-paramdesc-outro": "Sorgu sonuçlarından sonra görüntülenecek metin, varsa", + "smw-paramdesc-default": "Sorgu sonucu bulunmuyorsa görüntülenecek metin", + "smw-paramdesc-sep": "Sonuçlar arasındaki ayırıcı", + "smw-paramdesc-propsep": "Bir sonuç girişinin özellikleri arasındaki ayırıcı", + "smw-paramdesc-valuesep": "Bir sonucun bir özelliği için değerler arasındaki ayırıcı", + "smw-paramdesc-showsep": "CSV dosyasının üstünde ayırıcıyı göster (\"sep=\")", + "smw-paramdesc-distribution": "Tüm değerleri görüntülemek yerine, bunların oluşumlarını sayın ve bunları gösterin.", + "smw-paramdesc-distributionsort": "Değer dağılımını olay sayısına göre sıralayın.", + "smw-paramdesc-distributionlimit": "Değer dağılımını yalnızca bazı değerlerin sayısıyla sınırlayın.", + "smw-paramdesc-aggregation": "Toplamanın ne ile ilgili olması gerektiğini belirtin", + "smw-paramdesc-template": "Çıkışların görüntüleneceği bir şablonun adı", + "smw-paramdesc-columns": "Sonuçların görüntüleneceği sütun sayısı", + "smw-paramdesc-userparam": "Şablon kullanılıyorsa, her şablon çağrısına iletilen bir değer", + "smw-paramdesc-class": "Liste için ayarlanacak ek bir CSS sınıfı", + "smw-paramdesc-introtemplate": "Varsa, sorgu sonuçlarından önce görüntülenecek şablonun adı", + "smw-paramdesc-outrotemplate": "Varsa, sorgu sonuçlarından sonra görüntülenecek bir şablonun adı", + "smw-paramdesc-embedformat": "Başlıkları tanımlamak için kullanılan HTML etiketi", + "smw-paramdesc-embedonly": "Başlık gösterme", + "smw-paramdesc-table-class": "Tablo için ayarlanacak ek bir CSS sınıfı", + "smw-paramdesc-table-transpose": "Tablo başlıklarını dikey ve sonuçları yatay olarak görüntüle", + "smw-paramdesc-rdfsyntax": "Kullanılacak RDF sözdizimi", + "smw-paramdesc-csv-sep": "Bir sütun ayırıcı belirtir", + "smw-paramdesc-csv-valuesep": "Bir değer ayırıcı belirtir", + "smw-paramdesc-csv-merge": "Satırları ve sütun değerlerini aynı konu tanımlayıcıyla (ilk sütun olarak da bilinir) birleştirme", + "smw-paramdesc-csv-bom": "Çıkış dosyasının üstüne bir malzeme listesi (sinyal endianitesine karakter) ekleyin", + "smw-paramdesc-dsv-separator": "Kullanılacak ayırıcı", + "smw-paramdesc-dsv-filename": "DSV dosyasının adı", + "smw-paramdesc-filename": "Çıkış dosyasının adı", + "smw-smwdoc-description": "Varsayılan değer ve açıklamalarla birlikte, belirtilen sonuç biçimi için kullanılabilecek tüm parametrelerin bir tablosunu gösterir.", + "smw-smwdoc-default-no-parameter-list": "Bu sonuç biçimi, formata özgü parametreler sağlamaz.", + "smw-smwdoc-par-format": "İçin parametre belgelerini görüntülemek için sonuç biçimi.", + "smw-smwdoc-par-parameters": "Hangi parametrelerin gösterileceği. biçime eklenenler için \"specific\", tüm biçimlerde bulunanlar için \"base\" ve her ikisi için de \"all\".", + "smw-paramdesc-sort": "Sorguyu sıralama ölçütü", + "smw-paramdesc-order": "Sorgu sıralamasının sırası", + "smw-paramdesc-searchlabel": "Aramanın devam etmesi için metin", + "smw-paramdesc-named_args": "Şablona iletilen bağımsız değişkenleri adlandırın", + "smw-paramdesc-template-arguments": "Adlandırılmış bağımsız değişkenlerin şablona nasıl aktarılacağını ayarlar", + "smw-paramdesc-import-annotation": "Bir ekin ayrıştırılması sırasında ek açıklamalı veriler kopyalanacaktır", + "smw-paramdesc-export": "Aktarım seçeneği", + "smw-paramdesc-prettyprint": "Ek girintiler ve yeni satırlar görüntüleyen güzel baskı çıkışı", + "smw-paramdesc-json-unescape": "Çıkış karakteri olmayan eğik çizgiler ve çok baytlı Unicode karakterler içeren çıkış", + "smw-paramdesc-json-type": "Serileştirme türü", + "smw-paramdesc-source": "Alternatif sorgu kaynağı", + "smw-paramdesc-jsonsyntax": "Kullanılacak JSON sözdizimi", + "smw-printername-feed": "RSS ve Atom beslemesi", + "smw-paramdesc-feedtype": "Besleme türü", + "smw-paramdesc-feedtitle": "Beslemenin başlığı olarak kullanılacak metin", + "smw-paramdesc-feeddescription": "Beslemenin açıklaması olarak kullanılacak metin", + "smw-paramdesc-feedpagecontent": "Besleme ile görüntülenecek sayfa içeriği", + "smw-label-feed-description": "$1 $2 beslemesi.", + "smw-paramdesc-mimetype": "Çıkış dosyası için ortam türü (MIME türü)", + "smw_iq_disabled": "Bu viki için anlamsal sorgular devre dışı bırakıldı.", + "smw_iq_moreresults": "... ek sonuçlar", + "smw_parseerror": "Verilen değer anlaşılmadı.", + "smw_notitle": "\"$1\" bu vikide sayfa adı olarak kullanılamaz.", + "smw_noproperty": "\"$1\" bu vikide özellik adı olarak kullanılamaz.", + "smw_wrong_namespace": "Burada yalnızca \"$1\" ad alanındaki sayfalara izin verilir.", + "smw_manytypes": "Özellik için birden fazla tür tanımlandı.", + "smw_emptystring": "Boş dizgiler kabul edilmemektedir.", + "smw_notinenum": "\"$1\", \"$3\" özelliği için [[Property:Allows value|izin verilen değerler]] listesinde ($2) değil.", + "smw-datavalue-constraint-error-allows-value-list": "\"$1\", \"$3\" özelliği için [[Property:Allows value|izin verilen değerler]] listesinde ($2) değil.", + "smw-datavalue-constraint-error-allows-value-range": "\"$1\", \"$3\" özelliği için [[Property:Allows value|değere izin verilen]] kısıtlaması tarafından belirtilen \"$2\" aralığı içinde değil.", + "smw-constraint-error": "Kısıtlama sorunu", + "smw-constraint-error-suggestions": "Lütfen tüm kısıtlama gereksinimlerinin karşılandığından emin olmak için listelenen ihlalleri ve özellikleri ek açıklama değerleriyle birlikte kontrol edin.", + "smw-constraint-error-limit": "Liste maksimum $1 ihlal içerecek.", + "smw_noboolean": "\"$1\", bir Boole (true/false) değeri olarak tanınmıyor.", + "smw_true_words": "true,t,yes,y", + "smw_false_words": "false,f,no,n", + "smw_nofloat": "\"$1\" bir sayı değil.", + "smw_infinite": "\"$1\" kadar büyük sayılar desteklenmez.", + "smw_unitnotallowed": "\"$1\", bu özellik için geçerli bir ölçüm birimi olarak ilan edilmedi.", + "smw_nounitsdeclared": "Bu özellik için hiçbir ölçü birimi bildirilmedi.", + "smw_novalues": "Değer belirtilmedi.", + "smw_nodatetime": "\"$1\" tarihi anlaşılmadı.", + "smw_toomanyclosing": "Sorguda çok fazla \"$1\" kullanımı mevcut.", + "smw_noclosingbrackets": "Sorgunuzda bazı \"[[\" kullanımı, eşleşen \"]]\" tarafından kapatılmadı.", + "smw_misplacedsymbol": "\"$1\" sembolü, yararlı olmadığı bir noktada kullanıldı.", + "smw_unexpectedpart": "Sorgunun \"$1\" kısmı anlaşılmadı.\nSonuçlar beklendiği gibi olmayabilir.", + "smw_emptysubquery": "Bazı alt sorguların geçerli bir koşulu yoktur.", + "smw_misplacedsubquery": "Alt sorgulara izin verilmeyen bir yerde bazı alt sorgu kullanılmıştır.", + "smw_valuesubquery": "\"$1\" özellik değerleri için alt sorgular desteklenmiyor.", + "smw_badqueryatom": "Sorgunun bir kısmı \"[[...]]\" anlaşılmadı.", + "smw_propvalueproblem": "\"$1\" özelliğin değeri anlaşılmadı.", + "smw_noqueryfeature": "Bu vikide bazı sorgu özellikleri desteklenmedi ve sorgunun bir kısmı bırakıldı ($1).", + "smw_noconjunctions": "Sorgulardaki bağlaçlar bu vikide desteklenmiyor ve sorgunun bir kısmı kaldırıldı ($1).", + "smw_nodisjunctions": "Sorgulardaki kesintiler bu vikide desteklenmiyor ve sorgunun bir kısmı düşürüldü ($1).", + "smw_querytoolarge": "Aşağıdaki {{PLURAL:$2|sorgu koşulu|$2 sorgu koşulu}}, bu vikinin sorgu boyutu veya derinliği üzerindeki kısıtlamaları nedeniyle dikkate alınamadı: $1.", + "smw_notemplategiven": "Bu sorgu biçiminin çalışması için \"template\" parametresi için bir değer girin.", + "smw_db_sparqlqueryproblem": "Sorgu sonucu SPARQL veritabanından alınamadı. Bu hata geçici olabilir veya veritabanı yazılımında bir hata olduğunu gösterebilir.", + "smw_db_sparqlqueryincomplete": "Sorguyu cevaplamak çok zor oldu ve iptal edildi. Bazı sonuçlar eksik olabilir. Mümkünse, bunun yerine daha basit bir sorgu kullanmayı deneyin.", + "smw_type_header": "\"$1\" türünün özellikleri", + "smw_typearticlecount": "Bu türü kullanarak $1 özellik gösteriliyor.", + "smw_attribute_header": "\"$1\" özelliğini kullanan sayfalar", + "smw_attributearticlecount": "Bu özelliği kullanarak $1 sayfa gösteriliyor.", + "smw-propertylist-subproperty-header": "Alt özellikleri", + "smw-propertylist-redirect-header": "Eşanlamlılar", + "smw-propertylist-error-header": "Yanlış atamaları olan sayfalar", + "smw-propertylist-count": "$1 ile ilgili varlık gösteriliyor.", + "smw-propertylist-count-with-restricted-note": "$1 ile ilgili varlık gösteriliyor (daha fazlası var ancak ekran \"$2\" ile sınırlıdır).", + "smw-propertylist-count-more-available": "$1 ile ilgili varlık (daha fazlası mevcut) gösteriliyor.", + "specialpages-group-smw_group-maintenance": "Bakım", + "specialpages-group-smw_group-properties-concepts-types": "Özellikler, kavramlar ve türler", + "specialpages-group-smw_group-search": "Göz at ve ara", + "exportrdf": "Sayfaları RDF'ye aktar", + "smw_exportrdf_docu": "Bu sayfa, RDF formatındaki bir sayfadan veri almanıza izin verir.\nSayfaları dışa aktarmak için, aşağıdaki metin kutusuna, satır başına bir başlık olan başlıkları girin.", + "smw_exportrdf_recursive": "İlgili tüm sayfaları tekrar tekrar dışa aktarın.\nSonucun büyük olabileceğini unutmayın!", + "smw_exportrdf_backlinks": "Ayrıca, dışa aktarılan sayfalara başvuran tüm sayfaları dışa aktarın.\nGöz atılabilir RDF oluşturur.", + "smw_exportrdf_lastdate": "Süre olarak belirtilen noktadan bu yana değiştirilmemiş sayfaları dışa aktarmayın.", + "smw_exportrdf_submit": "Dışa aktar", + "uriresolver": "URIResolver", + "properties": "Özellikler", + "smw-categories": "Kategoriler", + "smw_properties_docu": "Vikide aşağıdaki özellikler kullanılıyor.", + "smw_property_template": "$1 tipi $2 ($3 {{PLURAL:$1|kullanım|kullanım}})", + "smw_propertylackspage": "Tüm özellikler bir sayfa tarafından açıklanmalıdır!", + "smw_propertylackstype": "Bu özellik için tür belirtilmedi (şimdilik $1 olduğu varsayılarak).", + "smw_propertyhardlyused": "Bu özellik, viki dahilinde nadiren kullanılmaktadır!", + "smw-property-name-invalid": "$1 özelliği kullanılamaz (geçersiz özellik adı).", + "smw-property-name-reserved": "\"$1\" ayrılmış ad olarak listelendi ve özellik olarak kullanılmamalıdır. Aşağıdaki [https://www.semantic-mediawiki.org/wiki/Help:Property_naming yardım sayfası], bu adın neden ayrıldığına ilişkin bilgiler içerebilir.", + "smw-sp-property-searchform": "Şunları içeren görüntüleme özellikleri:", + "smw-sp-property-searchform-inputinfo": "Giriş büyük/küçük harfe duyarlıdır ve filtreleme için kullanıldığında, yalnızca koşulla eşleşen özellikler görüntülenir.", + "smw-special-property-searchform": "Şunları içeren görüntüleme özellikleri:", + "smw-special-property-searchform-inputinfo": "Giriş büyük/küçük harfe duyarlıdır ve filtreleme için kullanıldığında, yalnızca koşulla eşleşen özellikler görüntülenir.", + "smw-special-property-searchform-options": "Seçenekler", + "smw-special-wantedproperties-filter-label": "Filtre:", + "smw-special-wantedproperties-filter-none": "Hiçbiri", + "smw-special-wantedproperties-filter-unapproved": "Onaylanmamış", + "smw-special-wantedproperties-filter-unapproved-desc": "Yetkili mod ile bağlantılı olarak kullanılan filtre seçeneği.", + "concepts": "Kavramlar", + "smw-special-concept-docu": "Bir [https://www.semantic-mediawiki.org/wiki/Help:Concepts kavramı] \"dinamik kategori\" olarak, yani manüel olarak oluşturulmayan, ancak Semantic MediaWiki tarafından hesaplanan sayfaların bir toplamı olarak görülebilir.", + "smw-special-concept-header": "Kavram listesi", + "smw-special-concept-count": "Aşağıdaki {{PLURAL:$1|kavram|$1 kavram}} listeleniyor.", + "smw-special-concept-empty": "Hiçbir kavram bulunamadı.", + "unusedproperties": "Kullanılmayan özellikler", + "smw-unusedproperties-docu": "Bu sayfada, başka hiçbir sayfa kullanılmadığı halde beyan edilen [https://www.semantic-mediawiki.org/wiki/Unused_properties kullanılmayan özellikler] listelenmektedir. Farklılaştırılmış görünüm için [[Special:Properties|tümünü]] veya [[Special:WantedProperties|istenen özellikler]] özel sayfalarına bakın.", + "smw-unusedproperty-template": "$1 türü $2", + "wantedproperties": "İstenen özellikler", + "smw-wantedproperties-docu": "Bu sayfada, vikide kullanılan ancak bunları açıklayan bir sayfası bulunmayan [https://www.semantic-mediawiki.org/wiki/Help:Special:WantedProperties/tr istenen özellikler] listelenir. Farklılaştırılmış bir görünüm için [[Special:Properties|tümünü]] veya [[Special:UnusedProperties|kullanılmayan özellikler]] özel sayfalarına bakın.", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|kullanım|kullanım}})", + "smw-special-wantedproperties-docu": "Bu sayfada, vikide kullanılan ancak bunları açıklayan bir sayfası bulunmayan [https://www.semantic-mediawiki.org/wiki/Help:Special:WantedProperties/tr aranan özellikler] listelenir, ancak bunları açıklayan bir sayfanız yok. Farklılaştırılmış bir görünüm için [[Special:Properties|tümünü]] veya [[Special:UnusedProperties|kullanılmayan özellikler]] özel sayfalarına bakın.", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|kullanım|kullanım}})", + "smw_purge": "Yenile", + "smw-purge-update-dependencies": "Semantic MediaWiki, güncelleştirme gerektiren bazı eski bağımlılıklar nedeniyle geçerli sayfayı temizliyor.", + "smw-purge-failed": "Semantic MediaWiki sayfayı temizlemeye çalıştı ancak başarısız oldu", + "types": "Türler", + "smw_types_docu": "[https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes Kullanılabilir veri türleri] ve her biri [https://www.semantic-mediawiki.org/wiki/Help:Datatype tür] ile atanmış bir özellik için kalıtsal olan depolama ve görüntüleme özellikleri açısından bir değeri tanımlayan özellikler.", + "smw-special-types-no-such-type": "\"$1\" bilinmiyor veya geçerli veri türü olarak belirtilmedi.", + "smw-statistics": "Semantik istatistikleri", + "smw-statistics-cached": "Semantik istatistikleri (önbelleğe alınmış)", + "smw-statistics-entities-total": "Varlıklar (toplam)", + "smw-statistics-entities-total-info": "Varlıkların tahmini satır sayısı. Özellikler, kavramlar veya kimlik ataması gerektiren herhangi bir kayıtlı nesne temsilini içerir.", + "smw-statistics-property-instance": "Özellik {{PLURAL:$1|değeri|değeri}} (toplam)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Özellik|Özellik}}]] (toplam)", + "smw-statistics-property-total-info": "Kayıtlı özelliklerin toplamı.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Özellik|Özellik}} (toplam)", + "smw-statistics-property-used": "{{PLURAL:$1|Özellik|Özellik}} (en az bir değerle kullanılır)", + "smw-statistics-property-page": "{{PLURAL:$1|Özellik|Özellik}} (bir sayfaya kayıtlı)", + "smw-statistics-property-page-info": "Özel bir sayfası ve açıklaması olan özellikleri sayın.", + "smw-statistics-property-type": "{{PLURAL:$1|Özellik|Özellik}} (bir veri tipine atanmış)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Sorgu|Sorgu}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Sorgu|Sorgu}}]] (gömülü, toplam)", + "smw-statistics-query-format": "$1 biçimi", + "smw-statistics-query-size": "Sorgu boyutu", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Kavram|Kavram}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Kavram|Kavram}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Alt nesne|Alt nesne}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Alt nesne|Alt nesne}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Veri türü|Veri türü}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Özellik değeri|Özellik değeri}} ([[Special:ProcessingErrorList|{{PLURAL:$1|uygunsuz ek açıklama|uygunsuz ek açıklama}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Özellik değeri|Özellik değeri}} ({{PLURAL:$1|uygunsuz ek açıklama|uygunsuz ek açıklama}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities Eski {{PLURAL:$1|varlık|varlık}}]", + "smw-statistics-delete-count-info": "Çıkarılmak üzere işaretlenmiş ve verilen bakım betikleri kullanılarak düzenli olarak imha edilmesi gereken kuruluşlar.", + "smw_uri_doc": "URI çözümleyici [$1 W3C TAG finding on httpRange-14] uygular.\nİnsanların web sitelerine dönüşmemesine özen gösterir.", + "ask": "Anlamsal arama", + "smw-ask-help": "Bu bölüm, #ask sözdiziminin nasıl kullanılacağını açıklamaya yardımcı olacak bazı bağlantılar içerir.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Sayfa seçimi] seçilen sayfaların nasıl oluşturulacağını ve koşulların nasıl oluşturulacağını açıklar\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Arama operatörleri], aralık ve joker karakter sorguları da dahil olmak üzere mevcut arama operatörlerini listeler\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Bilgi görüntüleme], çıktı ifadelerinin ve biçimlendirme seçeneklerinin kullanımını ana hatlarıyla belirtir", + "smw_ask_sortby": "Sütuna göre sırala (isteğe bağlı)", + "smw_ask_ascorder": "Artan", + "smw_ask_descorder": "Azalan", + "smw-ask-order-rand": "Rastgele", + "smw_ask_submit": "Sonuçları bul", + "smw_ask_editquery": "Sorguyu düzenle", + "smw_add_sortcondition": "[Sıralama koşulu ekle]", + "smw-ask-sort-add-action": "Sıralama koşulu ekle", + "smw_ask_hidequery": "Sorguyu gizle (kavram görünüm)", + "smw_ask_help": "Sorgulama yardımı", + "smw_ask_queryhead": "Şart", + "smw_ask_printhead": "Çıkış seçimi", + "smw_ask_printdesc": "(satır başına bir özellik adı girin)", + "smw_ask_format_as": "Biçim olarak:", + "smw_ask_defaultformat": "varsayılan", + "smw_ask_otheroptions": "Diğer seçenekler", + "smw-ask-otheroptions-info": "Bu bölüm, çıkış ifadelerini değiştiren seçenekler içerir. Parametre açıklamaları, üzerine getirilerek görüntülenebilir.", + "smw-ask-otheroptions-collapsed-info": "Mevcut tüm seçenekleri görüntülemek için lütfen artı simgesini kullanın", + "smw_ask_show_embed": "Yerleştirme kodunu göster", + "smw_ask_hide_embed": "Yerleştirme kodunu gizle", + "smw_ask_embed_instr": "Bu sorguyu satır içi bir viki sayfasına gömmek için aşağıdaki kodu kullanın.", + "smw-ask-delete": "Kaldır", + "smw-ask-sorting": "Sıralama", + "smw-ask-options": "Seçenekler", + "smw-ask-options-sort": "Sıralama seçenekleri", + "smw-ask-format-options": "Biçim ve seçenekler", + "smw-ask-parameters": "Parametreler", + "smw-ask-search": "Ara", + "smw-ask-debug": "Ayıkla", + "smw-ask-debug-desc": "Sorgu hata ayıklama bilgileri oluşturur", + "smw-ask-no-cache": "Sorgu önbelleğini devre dışı bırak", + "smw-ask-no-cache-desc": "Sorgu önbelleği olmayan sonuçlar", + "smw-ask-result": "Sonuç", + "smw-ask-empty": "Tüm girişleri temizle", + "smw-ask-download-link-desc": "Sorgulanan sonuçları $1 biçiminde indir", + "smw-ask-format": "Biçim", + "smw-ask-format-selection-help": "Seçilen biçimle ilgili yardım: $1", + "smw-ask-condition-change-info": "Koşul değiştirildi ve arama motoru, yeni gereksinimlerle eşleşen sonuçlar üretmek için sorguyu yeniden çalıştırmayı gerektiriyor.", + "smw-ask-input-assistance": "Giriş yardımı", + "smw-ask-condition-input-assistance": "Çıkış, sıralama ve koşul alanı için [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Giriş yardımı] sağlanır. Koşul alanı, aşağıdaki öneklerden birini kullanmayı gerektirir:", + "smw-ask-condition-input-assistance-property": "Özellik önerilerini almak için p: (ör. [[p:Has ...)", + "smw-ask-condition-input-assistance-category": "kategori önerilerini getirmek için c:", + "smw-ask-condition-input-assistance-concept": "kavram önerilerini getirmek için con:", + "smw-ask-format-change-info": "Biçim değiştirildi ve yeni parametreleri ve görselleştirme seçeneklerini eşleştirmek için sorguyu yeniden yürütmek gerekiyor.", + "smw-ask-format-export-info": "Seçilen biçim, görsel temsili olmayan bir dışa aktarma biçimidir, bu nedenle sonuçlar yalnızca karşıdan yükleme olarak sağlanır.", + "smw-ask-query-search-info": "$1 sorgusu {{PLURAL:$3|1=$2 (önbellekten)|$2}} tarafından $4 saniye cevaplandı.", + "smw-ask-extra-query-log": "Sorgu günlüğü", + "smw-ask-extra-other": "Diğer", + "searchbyproperty": "Özelliğe göre ara", + "processingerrorlist": "İşleme hataları listesi", + "constrainterrorlist": "Kısıtlama hata listesi", + "propertylabelsimilarity": "Özellik etiketine benzerlik raporu", + "missingredirectannotations": "Eksik yönlendirme ek açıklamaları", + "smw-processingerrorlist-intro": "Aşağıdaki listede, [https://www.semantic-mediawiki.org/ Semantic MediaWiki] ile bağlantılı olarak ortaya çıkan [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors/tr işleme hataları] hakkında bir genel bakış sunulmaktadır. Bu listenin düzenli olarak izlenmesi ve geçersiz değer ek açıklamalarının düzeltilmesi önerilir.", + "smw-processingerrorlist-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Processing_errors/tr", + "smw-constrainterrorlist-intro": "Aşağıdaki liste, [https://www.semantic-mediawiki.org/ Semantic MediaWiki] ile bağlantılı olarak görünen [https://www.semantic-mediawiki.org/wiki/Help:Constraint_errors/tr kısıtlama hataları] hakkında genel bir bakış sunar. Bu listeyi düzenli aralıklarla izlemeniz ve geçersiz değer açıklamalarını düzeltmeniz önerilir.", + "smw-constrainterrorlist-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Constraint_error/tr", + "smw-missingredirects-intro": "Aşağıdaki bölüm, Semantic MediaWiki'de [https://www.semantic-mediawiki.org/wiki/Redirects yönlendirmesi] ek açıklamaları eksik olan sayfaları listeler (MediaWiki'de depolanan bilgilerle karşılaştırılarak) ve bu ek açıklamaları manüel olarak geri yüklemek için [https://www.semantic-mediawiki.org/wiki/Help:Purge temizleme] sayfasına gidin veya rebuildData.php bakım betiğini çalıştırın (--redirects seçeneğiyle).", + "smw-missingredirects-list": "Ek açıklamaları olmayan sayfalar", + "smw-missingredirects-list-intro": "Yönlendirme ek açıklamaları eksik olan $1 sayfa gösteriliyor.", + "smw-missingredirects-noresult": "Eksik yönlendirme ek açıklaması bulunamadı.", + "smw_sbv_docu": "Belirtilen özellik ve değere sahip tüm sayfaları ara.", + "smw_sbv_novalue": "Özellik için geçerli bir değer girin ya da \"$1\" için tüm özellik değerlerini görün.", + "smw_sbv_displayresultfuzzy": "\"$1\" özelliğine sahip \"$2\" özelliğine sahip tüm sayfaların listesi.\nÇok az sonuç olduğu için yakındaki değerler de görüntülenir.", + "smw_sbv_property": "Özellik:", + "smw_sbv_value": "Değer:", + "smw_sbv_submit": "Sonuçları bul", + "browse": "Vikiye göz at", + "smw_browselink": "Özelliklere göz at", + "smw_browse_article": "Göz atmaya başlamak için sayfanın adını girin.", + "smw_browse_go": "Git", + "smw_browse_show_incoming": "Gelen özellikleri göster", + "smw_browse_hide_incoming": "Yeni özellikleri gizle", + "smw_browse_no_outgoing": "Bu sayfa özelliğe sahip değil.", + "smw_browse_no_incoming": "Bu sayfaya bağlantı veren özellik yok.", + "smw-browse-from-backend": "Şu anda arka uçtan bilgi alınıyor.", + "smw-browse-intro": "Bu sayfa bir konu ya da varlık vakası hakkında ayrıntılar sağlar, lütfen denetlenecek nesnenin adını girin.", + "smw-browse-invalid-subject": "Konu doğrulaması \"$1\" hatasıyla döndü.", + "smw-browse-api-subject-serialization-invalid": "Konu geçersiz bir serileştirme biçimine sahip.", + "smw-browse-js-disabled": "JavaScript'in devre dışı olduğundan veya kullanılamadığından şüpheleniliyor ve bunun desteklendiği bir tarayıcı kullanmanızı öneririz. Diğer seçenekler [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi/tr $smwgBrowseByApi] yapılandırma parametresi sayfasında ele alınmıştır.", + "smw-browse-show-group": "Grupları göster", + "smw-browse-hide-group": "Grupları gizle", + "smw-noscript": "Bu sayfa veya işlem JavaScript'in çalışmasını gerektiriyor, lütfen tarayıcınızda JavaScript'i etkinleştirin veya işlevselliğin sunulabilmesi ve istendiği gibi sağlanabilmesi için bunun desteklendiği bir tarayıcı kullanın. Daha fazla yardım için lütfen [https://www.semantic-mediawiki.org/wiki/Help:Noscript/tr noscript] yardım sayfasına göz atın.", + "smw_inverse_label_default": "$1", + "smw_inverse_label_property": "Ters özellik etiketi", + "pageproperty": "Sayfa özelliği arama", + "pendingtasklist": "Bekleyen görevlerin listesi", + "smw_pp_docu": "Bir sayfa ve özellik girin ya da yalnızca atanan tüm değerleri almak için bir özellik girin.", + "smw_pp_from": "Sayfadan:", + "smw_pp_type": "Özellik:", + "smw_pp_submit": "Sonuçları bul", + "smw-prev": "önceki {{PLURAL:$1|$1}}", + "smw-next": "sonraki {{PLURAL:$1|$1}}", + "smw_result_prev": "Önceki", + "smw_result_next": "sonraki", + "smw_result_results": "Sonuçlar", + "smw_result_noresults": "Sonuç yok.", + "smwadmin": "Semantic MediaWiki Gösterge Tablosu", + "smw-admin-statistics-job-title": "İş istatistikleri", + "smw-admin-statistics-job-docu": "İş istatistikleri, henüz yürütülmemiş planlanmış Semantic MediaWiki işleri hakkında bilgi görüntüler. İş sayısı biraz yanlış olabilir veya başarısız denemeler içerebilir, daha fazla bilgi için lütfen [https://www.mediawiki.org/wiki/Manual:Job_queue/tr kılavuzuna] bakın.", + "smw-admin-statistics-querycache-title": "Sorgu önbelleği", + "smw-admin-statistics-querycache-disabled": "Bu vikide [https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] etkinleştirilmedi ve bu nedenle istatistik mevcut değil.", + "smw-admin-statistics-querycache-legend": "Önbellek istatistikleri, aşağıdakileri içeren geçici kümülatif ve türetilmiş verileri içerecektir:\n* ulaşılamayan yanıtlarla önbellekten toplam veri alma girişimi olarak \"misses\", doğrudan depo (DB, üçlü depolama vb.)\n* önbellek tahliye işlemlerinin toplam miktarı olarak \"deletes\" (temizleme veya sorgu bağımlılığı yoluyla)\n* \"hits\", katıştırılmış (viki sayfasından çağrılan sorgular) veya katıştırılmamış (etkinleştirilmişse, Özel: Sor veya API gibi sayfalar tarafından talep edilen) kaynaklardan önbellek alma miktarını içerir\n* \"medianRetrievalResponseTime\", toplama işleminin süresi boyunca önbelleğe alınmış ve önbelleğe alınmamış alma istekleri için ortalama yanıt süresinin (saniye cinsinden) bir oryantasyon değeridir.\n* \"noCache\", sonuçları önbellekten almak için deneme isteği olmadığını (limit=0 sorgu, 'no-cache' seçeneği vb.) belirtir", + "smw-admin-statistics-section-explain": "Bu bölüm hizmetliler için ek istatistikler sağlar.", + "smw-admin-statistics-semanticdata-overview": "Genel bakış", + "smw-admin-permission-missing": "Bu sayfaya erişim eksik izinler nedeniyle engellendi, lütfen gerekli ayarlarla ilgili ayrıntılar için [https://www.semantic-mediawiki.org/wiki/Help:Permissions izinler] yardım sayfasına bakın.", + "smw-admin-setupsuccess": "Depolama motoru kuruldu.", + "smw_smwadmin_return": "$1 sayfasına geri dön", + "smw_smwadmin_updatestarted": "Anlamsal verileri yenilemek için yeni bir güncelleme işlemi başlatıldı.\nSaklanan tüm veriler gerektiğinde yeniden oluşturulur veya onarılır.\nGüncellemenin ilerlemesini bu özel sayfada takip edebilirsiniz.", + "smw_smwadmin_updatenotstarted": "Çalışan bir güncelleme işlemi zaten var.\nBaşka bir tane oluşturmuyor.", + "smw_smwadmin_updatestopped": "Mevcut tüm güncelleme işlemleri durduruldu.", + "smw_smwadmin_updatenotstopped": "Çalışan güncelleme işlemini durdurmak için, gerçekten emin olduğunuzu belirtmek üzere onay kutusunu etkinleştirmeniz gerekir.", + "smw-admin-docu": "Bu özel sayfa, Semantic MediaWiki'nin kurulumu, yükseltilmesi, bakımı ve kullanımı sırasında size yardımcı olur ve ayrıca istatistiklerin yanı sıra daha fazla yönetici işlevi ve görevi de sağlar.\nYönetim işlevlerini yerine getirmeden önce değerli verileri yedeklemeyi unutmayın.", + "smw-admin-environment": "Yazılım ortamı", + "smw-admin-db": "Veritabanı kurulumu", + "smw-admin-db-preparation": "Tablo başlatma devam ediyor ve boyut ve olası tablo optimizasyonlarına kadar sonuçların görüntülenmesi biraz zaman alabilir.", + "smw-admin-dbdocu": "Semantic MediaWiki, anlamsal verileri saklamak için kendi veritabanı yapısını gerektirir (ve MediaWiki'den bağımsızdır, dolayısıyla MediaWiki kurulumunun geri kalanını etkilemez).\nBu kurulum işlevi, herhangi bir zarar vermeden birden çok kez yürütülebilir, ancak kurulum veya yükseltme sırasında yalnızca bir kez gereklidir.", + "smw-admin-permissionswarn": "İşlem SQL hatalarıyla başarısız olursa, vikiniz tarafından kullanılan veritabanı kullanıcısının (\"LocalSettings.php\" dosyanızı kontrol edin) muhtemelen yeterli izinlere sahip değildir.\nBu kullanıcıya tablo oluşturma ve silme için ek izinler verin, geçici olarak veritabanı kökünüzün girişini \"LocalSettings.php\" dosyasına girin veya kimlik bilgilerini kullanabilen setupStore.php bakım betiğini kullanın.", + "smw-admin-dbbutton": "Tabloları başlat veya yükselt", + "smw-admin-announce": "Vikinizi duyurun", + "smw-admin-announce-text": "Vikiniz herkese açıksa, WikiApiary isimli viki takip vikisinde kaydını yapabilirsiniz.", + "smw-admin-deprecation-notice-title": "Kullanımdan kaldırma bildirimleri", + "smw-admin-deprecation-notice-docu": "Aşağıdaki bölüm, kullanımdan kaldırılmış veya kaldırılmış ancak bu vikide etkin olduğu tespit edilen ayarları içerir. Gelecekteki sürümlerin bu yapılandırmalar için desteği kaldırması beklenmektedir.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] kullanımdan kaldırıldı ve $2 sürümünde kaldırılacaktır", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|seçenek|seçenek}} aşağıdakileri kaldıracak (veya değiştirecek):", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 kullanımdan kaldırıldı ve $2 sürümünde kaldırılacaktır", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1], [https://www.semantic-mediawiki.org/wiki/Help:$2 $2] değiştirildi", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1], $2 tarafından değiştirildi", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|seçenek|seçenek}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1, $2 ile değiştiriliyor", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] $2 sürümünde kaldırıldı", + "smw-admin-deprecation-notice-title-notice": "Kullanımdan kaldırılmış ayarlar", + "smw-admin-deprecation-notice-title-notice-explanation": "Kullanımdan kaldırılmış ayarlar, bu vikide kullanıldığı tespit edilen ve gelecekteki bir sürümde kaldırılması veya değiştirilmesi planlanan ayarları gösterir.", + "smw-admin-deprecation-notice-title-replacement": "Değiştirilen veya yeniden adlandırılan ayarlar", + "smw-admin-deprecation-notice-title-replacement-explanation": "Değiştirilen veya yeniden adlandırılan ayarlar, yeniden adlandırılan veya başka bir şekilde değiştirilen ayarları içerir ve adlarının veya biçimlerinin önceden güncellenmesi önerilir.", + "smw-admin-deprecation-notice-title-removal": "Kaldırılan ayarlar", + "smw-admin-deprecation-notice-title-removal-explanation": "Kaldırılan ayarlar, önceki bir sürümde kaldırılan ancak bu vikide kullanıldığı tespit edilen ayarları tanımlar.", + "smw-admin-deprecation-notice-section-legend": "Gösterge", + "smw-smwadmin-refresh-title": "Veri onarma ve güncelleme", + "smw_smwadmin_datarefresh": "Verileri yeniden oluştur", + "smw_smwadmin_datarefreshdocu": "Vikinin mevcut içeriğine bağlı olarak tüm Semantic MediaWiki verilerini geri yüklemek mümkündür.\nBu, bazı yazılım yükseltmeleri nedeniyle dahili format değiştiyse bozuk verileri onarmak veya verileri yenilemek için yararlı olabilir.\nGüncelleme sayfa sayfa yürütülür ve hemen tamamlanmaz.\nAşağıda bir güncellemenin devam edip etmediği gösterilir ve güncellemeleri başlatmanıza veya durdurmanıza izin verir (bu özellik site yöneticisi tarafından devre dışı bırakılmadığı sürece).", + "smw_smwadmin_datarefreshprogress": "Bir güncelleme zaten sürüyor.\nBir kullanıcı vikiye her eriştiğinde verileri yalnızca küçük parçalar halinde yenilediğinden güncellemenin yalnızca yavaş ilerlemesi normaldir.\nBu güncelleştirmeyi daha hızlı bir şekilde bitirmek için, MediaWiki bakım komut dosyasını runJobs.php çağırabilirsiniz (bir toplu işte yapılan güncelleme sayısını kısıtlamak için --maxjobs 1000 seçeneğini kullanın).\nMevcut güncellemenin tahmini ilerlemesi:", + "smw_smwadmin_datarefreshbutton": "Verilerin yeniden oluşturulmasını zamanla", + "smw_smwadmin_datarefreshstop": "Bu güncellemeyi durdur", + "smw_smwadmin_datarefreshstopconfirm": "Evet, {{GENDER:$1|eminim}}.", + "smw-admin-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/tr", + "smw-admin-job-scheduler-note": "Bu bölümdeki görevler (etkin olanlar), yürütme sırasında kilitlenme durumlarından kaçınmak için iş kuyruğu aracılığıyla gerçekleştirilir. İşlemden [https://www.mediawiki.org/wiki/Manual:Job_queue/tr iş kuyruğu] sorumludur ve runJobs.php bakım betiğinin uygun bir kapasiteye sahip olması önemlidir (ayrıca $wgRunJobsAsync yapılandırma parametresini bakın).", + "smw-admin-outdateddisposal-title": "Eski varlıkların elden çıkarılması", + "smw-admin-outdateddisposal-intro": "Bazı etkinlikler (bir özellik türünde değişiklik, vikisayfaların kaldırılması veya hata değerlerinin düzeltilmesi) [https://www.semantic-mediawiki.org/wiki/Outdated_entities/tr eski varlıklar] ile sonuçlanır ve ilişkili tablo alanını boşaltmak için bunların periyodik olarak kaldırılması önerilir.", + "smw-admin-outdateddisposal-active": "Eski bir varlık imha işi planlandı.", + "smw-admin-outdateddisposal-button": "Bertarafı planlayın", + "smw-admin-feature-disabled": "Bu özellik bu vikide devre dışı bırakıldı, lütfen ayarlar yardım sayfasına bakın veya sistem hizmetlisine başvurun.", + "smw-admin-propertystatistics-title": "Özellik istatistiklerinin yeniden oluşturulması", + "smw-admin-propertystatistics-intro": "Tüm özellik kullanım istatistiklerini yeniden oluşturur ve buradaki özelliklerin [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count kullanım sayısını] günceller ve düzeltir.", + "smw-admin-propertystatistics-active": "Özellik istatistiklerini yeniden oluşturma işi zamanlandı.", + "smw-admin-propertystatistics-button": "İstatistiklerin yeniden oluşturulmasını zamanla", + "smw-admin-fulltext-title": "Tam metin aramayı yeniden oluşturma", + "smw-admin-fulltext-intro": "Arama dizinini, etkin bir [https://www.semantic-mediawiki.org/wiki/Help:Full-text_search/tr tam metin araması] veri türüyle özellik tablolarından yeniden oluşturur. Dizin kurallarında (değiştirilmiş stopwords, yeni stemmer vb.) ve/veya yeni eklenen veya değiştirilen bir tabloda yapılan değişiklikler, bu işin tekrar çalıştırılmasını gerektirir.", + "smw-admin-fulltext-active": "Tam metin aramayı yeniden oluşturma işi zamanlandı.", + "smw-admin-fulltext-button": "Tam metin yeniden oluşturmayı zamanla", + "smw-admin-support": "Destek alma", + "smw-admin-supportdocu": "Sorun olması durumunda size yardımcı olacak çeşitli kaynaklar sunulmaktadır:", + "smw-admin-installfile": "Kurulumunuzla ilgili sorunlar yaşıyorsanız, INSTALL dosyasındaki yönergeleri kontrol ederek ve kurulum sayfasına kontrol ederek başlayın.", + "smw-admin-smwhomepage": "Semantic MediaWiki ile ilgili tüm kullanıcı belgeleri semantic-mediawiki.org adresindedir.", + "smw-admin-bugsreport": "Hatalar sorun izleyiciye, hata bildirme sayfasında, etkili bir sorun raporunun nasıl yazılacağı konusunda bazı bilgiler verilmektedir.", + "smw-admin-questions": "Başka sorularınız veya önerileriniz varsa Semantic MediaWiki kullanıcı posta listesindeki tartışmaya katılın.", + "smw-admin-other-functions": "Diğer işlevler", + "smw-admin-statistics-extra": "İstatistik işlevleri", + "smw-admin-statistics": "İstatistikler", + "smw-admin-supplementary-section-title": "Tamamlayıcı işlevler", + "smw-admin-supplementary-section-subtitle": "Desteklenen çekirdek işlevler", + "smw-admin-supplementary-section-intro": "Bu bölüm, bakım faaliyetleri kapsamı dışında ek işlevler sağlar ve listelenen bazı işlevlerin ([https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions/tr belgeyi] bakın) kısıtlanmış veya kullanılamaz ve bu nedenle bu vikide erişilemez.", + "smw-admin-supplementary-settings-title": "Yapılandırma ve ayarları", + "smw-admin-supplementary-settings-intro": "$1 Semantic MediaWiki'nin davranışını tanımlayan parametreleri gösterir", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Operasyonel istatistikler", + "smw-admin-supplementary-operational-statistics-short-title": "operasyonel istatistikler", + "smw-admin-supplementary-operational-statistics-intro": "Genişletilmiş bir $1 kümesi görüntüler", + "smw-admin-supplementary-idlookup-title": "Varlık arama ve elden çıkarma", + "smw-admin-supplementary-idlookup-short-title": "varlık arama ve elden çıkarma", + "smw-admin-supplementary-idlookup-intro": "Basit bir $1 işlevini destekler", + "smw-admin-supplementary-duplookup-title": "Çift varlıklar araması", + "smw-admin-supplementary-duplookup-intro": "Seçilen tablo matrisi için kopya olarak kategorilenmiş varlıkları bulmak için $1", + "smw-admin-supplementary-duplookup-docu": "Bu sayfada, [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities/tr kopyaları] olarak kategorize edilmiş seçili tablolardan girişler listelenmektedir. Kopyalanan girişler (eğer varsa) yalnızca sonlandırılmış bir güncelleme veya başarısız geri alma işleminden kaynaklanabilecek nadir durumlarda gerçekleşmelidir.", + "smw-admin-supplementary-duplookup-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities/tr", + "smw-admin-supplementary-operational-statistics-cache-title": "Önbellek istatistikleri", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 önbellekle ilgili seçili istatistikleri gösterir", + "smw-admin-supplementary-operational-table-statistics-title": "Tablo istatistikleri", + "smw-admin-supplementary-operational-table-statistics-short-title": "tablo istatistikleri", + "smw-admin-supplementary-operational-table-statistics-intro": "Seçilen bir tablo kümesi için $1 oluşturur", + "smw-admin-supplementary-operational-table-statistics-explain": "Bu bölüm, yöneticilerin ve veri küratörlerinin arka uç ve depolama motoru durumu hakkında bilinçli kararlar vermelerine yardımcı olmak için seçilen tablo istatistiklerini içerir.", + "smw-admin-supplementary-operational-table-statistics-legend": "Gösterge, tablo istatistikleri için kullanılan bazı anahtarları açıklar ve şunları içerir:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count bir tablodaki toplam satır sayısı", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id şu anda kullanımda olan son kimlik\n* duplicate_count id_table içinde bulunan kopya sayısı (ayrıca bakınız: [[Special:SemanticMediaWiki/duplicate-lookup|Çift varlık araması]]) \n* rows.rev_count doğrudan vikisayfa bağlantısını gösteren bir revision_id atanmış satır sayısı\n* rows.smw_namespace_group_by_count tabloda kullanılan ad alanları için birleştirilmiş satırların sayısı\n* rows.smw_proptable_hash.query_match_count tablo referansına sahip sorgu alt nesnelerinin sayısı\n* rows.smw_proptable_hash.query_null_count tablo başvurusu olmayan sorgu alt nesnelerinin sayısı (bağlantısız, kayan kaynak)", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent benzersiz olan terimlerin yüzdesi (düşük yüzde oranı, yinelenen terimlerin tablo içeriğini ve dizini işgal ettiğini gösterir)\n* rows.terms_occurrence.single_occurrence_total_count yalnızca bir kez görünen terimlerin sayısı\n* rows.terms_occurrence.multi_occurrence_total_count birden fazla görünen terim sayısı", + "smw-admin-supplementary-elastic-version-info": "Sürüm", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 ayarlar ve dizin istatistikleri hakkındaki ayrıntıları gösterir", + "smw-admin-supplementary-elastic-docu": "Bu sayfa, Semantic MediaWiki'ye ve onun [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore]'a bağlı bir Elasticsearch kümesine ilişkin ayarlar, eşlemeler, sağlık ve dizin istatistikleri hakkında bilgi içerir.", + "smw-admin-supplementary-elastic-functions": "Desteklenen işlevler", + "smw-admin-supplementary-elastic-settings-title": "Ayarlar (indisler)", + "smw-admin-supplementary-elastic-settings-intro": "Semantic MediaWiki endekslerini yönetmek için Elasticsearch tarafından kullanılan $1", + "smw-admin-supplementary-elastic-mappings-title": "Eşlemeler", + "smw-admin-supplementary-elastic-mappings-intro": "Endeksleri ve alan eşlemelerini listelemek için $1", + "smw-admin-supplementary-elastic-mappings-docu": "Bu sayfa, geçerli dizin tarafından kullanılan alan eşleme ayrıntılarını içerir. Eşlemelerin index.mapping.total_fields.limit ile bağlantılı olarak izlenmesi önerilir (bir dizindeki izin verilen maksimum alan sayısını belirtir).", + "smw-admin-supplementary-elastic-mappings-docu-extra": "property_fields, dizinlenmiş çekirdek alanların sayısını belirtirken, nested_fields, belirli yapılandırılmış arama modellerini desteklemek için bir çekirdek alana atanan ek alanların toplam sayısını gösterir.", + "smw-admin-supplementary-elastic-mappings-summary": "Özet", + "smw-admin-supplementary-elastic-mappings-fields": "Alan eşlemeleri", + "smw-admin-supplementary-elastic-nodes-title": "Noktalar", + "smw-admin-supplementary-elastic-nodes-intro": "$1 düğüm istatistiklerini gösteriyor", + "smw-admin-supplementary-elastic-indices-title": "Endeksler", + "smw-admin-supplementary-elastic-indices-intro": "$1 mevcut endekslere ve istatistiklerine genel bir bakış sunar", + "smw-admin-supplementary-elastic-statistics-title": "İstatistikler", + "smw-admin-supplementary-elastic-statistics-intro": "$1 dizin seviyesi istatistiklerini gösterir", + "smw-admin-supplementary-elastic-statistics-docu": "Bu sayfa, bir dizin düzeyinde gerçekleşen farklı işlemler için endeks istatistikleri hakkında bir fikir verir, döndürülen istatistikler primerler ve toplam toplamalarla toplanır. [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html Yardım sayfası] mevcut indeks istatistiklerinin ayrıntılı bir açıklamasını içerir.", + "smw-admin-supplementary-elastic-status-replication": "Çoğaltma durumu", + "smw-admin-supplementary-elastic-status-last-active-replication": "Son aktif çoğaltma: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Yenileme aralığı: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Kurtarma işi biriktirme listesi: $1 (tahmin)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Besleme (dosya) iş biriktirme listesi: $1 (tahmin)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Çoğaltma kilitlendi: $1 (yeniden oluşturma devam ediyor)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Çoğaltma izleme (aktif): $1", + "smw-admin-supplementary-elastic-replication-header-title": "Çoğaltma durumu", + "smw-admin-supplementary-elastic-replication-function-title": "Çoğaltma", + "smw-admin-supplementary-elastic-replication-intro": "$1 başarısız çoğaltmalarla ilgili bilgileri gösterir", + "smw-admin-supplementary-elastic-replication-docu": "Bu sayfa, Elasticsearch kümesiyle ilgili sorunları olduğu bildirilen varlıkların [https://www.semantic-mediawiki.org/wiki/Help:Replication_moncessing/tr çoğaltma durumu] hakkında bilgi sağlar. Geçici bir sorun olduğunu doğrulamak için listelenen varlıkları incelemeniz ve içeriği temizlemeniz önerilir.", + "smw-admin-supplementary-elastic-replication-files-docu": "Dosya listesi için, ilk önce [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion dosya alma] işinin yürütülmesi ve işleminin tamamlanması gerektiği unutulmamalıdır.", + "smw-admin-supplementary-elastic-replication-files": "Dosyalar", + "smw-admin-supplementary-elastic-replication-pages": "Sayfalar", + "smw-admin-supplementary-elastic-endpoints": "Bitiş noktaları", + "smw-admin-supplementary-elastic-config": "Yapılandırmalar", + "smw-admin-supplementary-elastic-no-connection": "Viki şu anda Elasticsearch kümesine bağlantı '''kuramıyor''', lütfen sistemin dizin ve sorgu yeteneğini etkisiz hale getirdiğinden sorunu araştırmak için viki yöneticisine başvurun.", + "smw-list-count": "Liste $1 giriş içeriyor.", + "smw-property-label-uniqueness": "\"$1\" etiketi en az bir diğer mülk gösterimiyle eşleştirildi. Lütfen bu sorunun nasıl çözüleceğine ilişkin [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness yardım sayfasına] bakın.", + "smw-property-label-similarity-title": "Özellik etiketi benzerlik raporu", + "smw-property-label-similarity-intro": "$1 mevcut özellik etiketleri için benzerlikleri hesaplar", + "smw-property-label-similarity-threshold": "Eşik:", + "smw-property-label-similarity-type": "Ekran Türü Kimliği", + "smw-property-label-similarity-noresult": "Seçilen seçenekler için sonuç bulunamadı.", + "smw-property-label-similarity-docu": "Bu sayfalar, özellik etiketleri arasındaki [https://www.semantic-mediawiki.org/wiki/Help:Property_similarity/tr benzerlik mesafesini] (anlamsal veya sözcüksel benzerlikle karıştırılmamalıdır) karşılaştırır ve eşiği aşmaları halinde bunları bildirir. Rapor, aynı kavramı temsil eden yanlış yazılmış veya eşdeğer özellikleri filtrelemeye yardımcı olabilir (bildirilen özelliklerin kavramını ve kullanımını netleştirmeye yardımcı olması için [[Special:Properties|özellikler]] özel sayfasına bakın). Eşik, yaklaşık eşleştirme için kullanılan mesafeyi genişletmek veya daraltmak için ayarlanabilir. [[Property:$1|$1]], özellikleri analizden muaf tutmak için kullanılır.", + "smw-admin-operational-statistics": "Bu sayfa, Semantic MediaWiki ile ilgili işlevlerde veya bunlardan toplanan işlem istatistiklerini içerir. Vikiye özgü istatistiklerin geniş bir listesini [[Special:Statistics|burada]] bulabilirsiniz.", + "smw_adminlinks_datastructure": "Veri yapısı", + "smw_adminlinks_displayingdata": "Veri görüntüleme", + "smw_adminlinks_inlinequerieshelp": "Satıriçi sorgu yardımı", + "smw-page-indicator-usage-count": "Tahmini [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count kullanım sayısı]: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "{{PLURAL:$1|Kullanıcı|Sistem}} tanımlı özellik", + "smw-property-indicator-last-count-update": "Tahmini kullanım sayısı\nSon güncelleme: $1", + "smw-concept-indicator-cache-update": "Önbellek sayısı\nSon güncelleme: $1", + "smw-createproperty-isproperty": "$1 türünde bir özelliktir.", + "smw-createproperty-allowedvals": "Bu özellik için izin verilen {{PLURAL:$1|değeri bu özellik için olan değer|değeri bu özellik için olan değerler}}:", + "smw-paramdesc-category-delim": "Sınırlayıcı", + "smw-paramdesc-category-template": "Öğeleri biçimlendirmek için bir şablon", + "smw-paramdesc-category-userparam": "Şablona iletilecek bir parametre", + "smw-info-par-message": "Görüntülenecek mesaj.", + "smw-info-par-icon": "Gösterilecek simge, \"info\" veya \"warning\".", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "Genel seçenekler", + "prefs-extended-search-options": "Detaylı arama", + "prefs-ask-options": "Anlamsal arama", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] ve ilişkili uzantılar, bir grup seçili özellik ve işlev için bireysel tercihler sağlar. Açıklamaları ve özellikleriyle birlikte bireysel ayarların bir listesi aşağıdaki [https://www.semantic-mediawiki.org/wiki/Help:User_preferences/tr yardım sayfasında] mevcuttur.", + "smw-prefs-ask-options-tooltip-display": "Parametre metnini #ask [[Special:Ask|sorgu oluşturucusu]] özel sayfasında bir bilgi ipucu olarak görüntüleyin.", + "smw-prefs-ask-options-compact-view-basic": "Temel kavram görünümü etkinleştir", + "smw-prefs-help-ask-options-compact-view-basic": "Etkinleştirilirse, Special:Ask küçük boyutlu sor görünümünde azaltılmış bir bağlantı kümesi görüntüler.", + "smw-prefs-general-options-time-correction": "Yerel [[Special:Preferences#mw-prefsection-rendering|zaman ofseti]] tercihini kullanarak özel sayfalar için zaman düzeltmesini etkinleştirin", + "smw-prefs-general-options-jobqueue-watchlist": "İş sırasındaki izleme listemi kişisel çubuğumda göster", + "smw-prefs-help-general-options-jobqueue-watchlist": "Etkinleştirilirse, seçilen bekleyen işlerin tahmini kuyruk boyutlarıyla birlikte bekleyen [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist listesini] gösterir.", + "smw-prefs-general-options-disable-editpage-info": "Düzenleme sayfasındaki tanıtım metnini devre dışı bırakın", + "smw-prefs-general-options-disable-search-info": "Standart arama sayfasındaki sözdizimi destek bilgilerini devre dışı bırakın", + "smw-prefs-general-options-suggester-textinput": "Anlamsal varlıklar için giriş yardımını etkinleştir", + "smw-prefs-help-general-options-suggester-textinput": "Etkinleştirilirse, bir giriş bağlamındaki özellikleri, kavramları ve kategorileri bulmak için bir [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance giriş yardımı] kullanılmasına izin verir.", + "smw-ui-tooltip-title-property": "Özellik", + "smw-ui-tooltip-title-quantity": "Birim dönüştürme", + "smw-ui-tooltip-title-info": "Bilgi", + "smw-ui-tooltip-title-service": "Hizmet bağlantıları", + "smw-ui-tooltip-title-warning": "Uyarı", + "smw-ui-tooltip-title-error": "Hata", + "smw-ui-tooltip-title-parameter": "Parametre", + "smw-ui-tooltip-title-event": "Olay", + "smw-ui-tooltip-title-note": "Not", + "smw-ui-tooltip-title-legend": "Gösterge", + "smw-ui-tooltip-title-reference": "Kaynak", + "smw_unknowntype": "Bu özelliğin \"$1\" türü geçersiz", + "smw-concept-cache-text": "Kavram toplam $1 sayfa ve son olarak $3, $2 tarihinde güncellendi.", + "smw_concept_header": "\"$1\" kavramın sayfaları", + "smw_conceptarticlecount": "Aşağıda $1 sayfa gösteriliyor.", + "smw-qp-empty-data": "Bazı yetersiz seçim kriterleri nedeniyle istenen veriler görüntülenemedi.", + "right-smw-admin": "Yönetim görevlerine erişin (Semantic MediaWiki)", + "right-smw-patternedit": "İzin verilen düzenli ifadeleri ve kalıpları korumak için erişimi düzenleyin (Semantic MediaWiki)", + "right-smw-pageedit": "Açıklamalı sayfalar Düzenleme korumalı için düzenleme erişimi (Semantic MediaWiki)", + "right-smw-schemaedit": "[https://www.semantic-mediawiki.org/wiki/Help:Schema Şema sayfaları] düzenle (Semantic MediaWiki)", + "right-smw-viewjobqueuewatchlist": "İş kuyruğuna [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist izleme listesi] özelliğine erişin (Semantic MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "Bir kuruluşla ilişkili revizyon uyumsuzluğu hakkındaki bilgilere erişin (Semantic MediaWiki)", + "right-smw-vieweditpageinfo": "[https://www.semantic-mediawiki.org/wiki/Help:Edit_help Düzenleme yardımı] görüntüle (Semantic MediaWiki)", + "restriction-level-smw-pageedit": "korumalı (yalnızca uygun kullanıcılar)", + "action-smw-patternedit": "Semantic MediaWiki tarafından kullanılan normal ifadeleri düzenle", + "action-smw-pageedit": "Düzenleme korumalı ile açıklamalı sayfaları düzenle (Semantic MediaWiki)", + "group-smwadministrator": "Hizmetliler (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|hizmetli (Semantic MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:Hizmetliler (Semantic MediaWiki)", + "group-smwcurator": "Küratörler (Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|kuratör (Semantic MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:Kuratörler (Semantic MediaWiki)", + "group-smweditor": "Editörler (Semantic MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|düzenleyici (Semantic MediaWiki)}}", + "grouppage-smweditor": "{{ns:project}}:Editörler (Semantic MediaWiki)", + "action-smw-admin": "Semantic MediaWiki yönetim görevlerine erişim", + "action-smw-ruleedit": "kural sayfalarını düzenle (Semantic MediaWiki)", + "smw-property-namespace-disabled": "[https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks Ad alanı] özelliği devre dışı bırakıldı, bu mülk için bir tür veya özelliği özgü özellikler bildirmeye çalışmak mümkün değil.", + "smw-property-predefined-default": "\"$1\", $2 türünün önceden tanımlanmış bir özelliğidir.", + "smw-property-predefined-common": "Bu özellik önceden konuşlandırılmıştır ([https://www.semantic-mediawiki.org/wiki/Help:Special_properties özel özellik] olarak da bilinir) ve ek yönetici ayrıcalıklarıyla birlikte gelir ancak diğer tüm yetkiler [https://www.semantic-mediawiki.org/wiki/Property kullanıcı tanımlı özellik] gibi kullanılabilir.", + "smw-property-predefined-ask": "\"$1\", tek tek sorgular hakkında meta bilgileri ([https://www.semantic-mediawiki.org/wiki/Subobject alt nesnesi şeklinde]) temsil eden ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] biçiminde temsil eden önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-asksi": "\"$1\", bir sorguda kullanılan koşulların sayısını toplayan ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-askde": "\"$1\", bir sorgunun derinliği hakkında bilgi veren ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-long-askde": "[https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth/tr $smwgQMaxDepth] yapılandırma parametresi tarafından kısıtlanan bir sorgunun yürütülmesi ile alt sorgu yuvalaması, özellik zincirleri ve kullanılabilir açıklama öğeleri temelinde hesaplanan sayısal bir değerdir.", + "smw-property-predefined-askpa": "\"$1\", bir sorgu sonucunu etkileyen parametreleri açıklayan önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-long-askpa": "[https://www.semantic-mediawiki.org/wiki/Help:Query_profiler Sorgu profilini] belirten bir özellik koleksiyonunun parçasıdır.", + "smw-sp-properties-docu": "Bu sayfada [https://www.semantic-mediawiki.org/wiki/Property özellikleri] ve bu viki için kullanılabilecek kullanım sayıları listelenmektedir. Güncel sayım istatistikleri için [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics özellik istatistikleri] bakım betiğin düzenli olarak çalıştırılması önerilir. Farklı bir görünüm için [[Special:UnusedProperties|kullanılmayan]] veya [[Special:WantedProperties|istenen özellikler]] özel sayfalarına bakın.", + "smw-sp-properties-cache-info": "Listelenen veriler [https://www.semantic-mediawiki.org/wiki/Caching önbellek] üzerinden alındı ve en son $1 tarihinde güncellendi.", + "smw-sp-properties-header-label": "Özellikler listesi", + "smw-admin-settings-docu": "Semantic MediaWiki ortamıyla ilgili tüm varsayılan ve yerel ayarların bir listesini görüntüler. Kişisel ayarlarla ilgili ayrıntılar için lütfen [https://www.semantic-mediawiki.org/wiki/Help:Configuration yapılandırma] yardım sayfasına bakın.", + "smw-sp-admin-settings-button": "Ayarlar listesi oluştur", + "smw-admin-idlookup-title": "Arama", + "smw-admin-idlookup-docu": "Bu bölüm, Semantic MediaWiki'deki tek bir varlık (vikisayfa, alt nesne, özellik, vb.) hakkında teknik ayrıntıları gösterir. Giriş, ilgili arama alanıyla eşleşen sayısal bir kimlik veya dize değeri olabilir, ancak herhangi bir kimlik kaynağı MediaWiki'nin sayfası veya revizyon kimliğiyle değil Semantic MediaWiki ile ilgilidir.", + "smw-admin-iddispose-title": "Bertaraf", + "smw-admin-iddispose-docu": "Elden çıkarma işleminin sınırsız olduğu ve onaylanması halinde, bekleyen tablolardaki tüm kaynaklarıyla birlikte varlığı depolama motorundan çıkaracağı unutulmamalıdır. Lütfen bu görevi '''dikkatlice''' ve yalnızca [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal/tr belgelere] okuduktan sonra gerçekleştirin.", + "smw-admin-iddispose-done": "\"$1\" kimliği depolama arka ucundan kaldırıldı.", + "smw-admin-iddispose-references": "\"$1\" kimliğinde {{PLURAL:$2|en az bir}} etkin kaynak var:", + "smw-admin-iddispose-references-multiple": "En az bir etkin kaynak kaydına sahip eşleşmelerin listesi.", + "smw-admin-iddispose-no-references": "Arama \"$1\" ifadesini bir tablo girişiyle eşleştiremedi.", + "smw-admin-idlookup-input": "Ara:", + "smw-admin-objectid": "Kimlik:", + "smw-admin-tab-general": "Genel bakış", + "smw-admin-tab-notices": "Kullanımdan kaldırma bildirimleri", + "smw-admin-tab-maintenance": "Bakım", + "smw-admin-tab-supplement": "Tamamlayıcı işlevler", + "smw-admin-tab-registry": "Kayıt", + "smw-admin-tab-alerts": "Uyarılar", + "smw-admin-alerts-tab-deprecationnotices": "Kullanımdan kaldırma bildirimleri", + "smw-admin-alerts-tab-maintenancealerts": "Bakım uyarıları", + "smw-admin-alerts-section-intro": "Bu bölüm, uygun haklara sahip bir yönetici veya kullanıcıdan dikkat gerektirecek şekilde sınıflandırılmış ayarlar, işlemler ve diğer etkinliklerle ilgili uyarıları ve bildirimleri gösterir.", + "smw-admin-maintenancealerts-section-intro": "Aşağıdaki uyarılar ve bildirimler çözülmelidir ve gerekli olmasa da, sistemin ve operasyonel sürdürülebilirliğin iyileştirilmesine yardımcı olması beklenmektedir.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Tablo optimizasyonu", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "Sistem, son [https://www.semantic-mediawiki.org/wiki/Database/Table optimization/tr tablo optimizasyonun] $2 gün önce ($1 üzerinden başlayan) $3 günlük bakım eşiğini aştığını tespit etti. Belgelerde belirtildiği gibi, optimizasyonların çalıştırılması, sorgu planlayıcının sorgular hakkında daha iyi kararlar vermesini sağlayacaktır, bu nedenle tablo optimizasyonunun düzenli olarak çalıştırılması önerilir.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Eski varlıklar", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "Sistem $1 saydığı [https://www.semantic-mediawiki.org/wiki/Outdated_entities eski varlıklar] ve $2 eşiğini aşarak kritik bir katılımsız bakım düzeyine ulaştı. [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] bakım betiğini çalıştırmanız önerilir.", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Geçersiz varlıklar", + "smw-admin-maintenancealerts-invalidentities-alert": "Sistem $1 [https://www.semantic-mediawiki.org/wiki/Invalid_entities varlık] ile bir [https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace saklanmamış ad alanı] ile eşleşti ve [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] veya [https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php] bakım betiği çalıştırmasını önerilir.", + "smw-admin-deprecation-notice-section": "Semantic MediaWiki", + "smw-admin-configutation-tab-settings": "Ayarlar", + "smw-admin-configutation-tab-namespaces": "Ad alanları", + "smw-admin-configutation-tab-schematypes": "Şema türleri", + "smw-admin-maintenance-tab-tasks": "Görevler", + "smw-admin-maintenance-tab-scripts": "Bakım betikleri", + "smw-admin-maintenance-no-description": "Açıklama yok.", + "smw-admin-maintenance-script-section-title": "Kullanılabilir bakım betiklerin listesi", + "smw-admin-maintenance-script-section-intro": "Aşağıdaki bakım betikleri, listelenen komut dosyalarını yürütebilmek için bir yönetici ve komut satırına erişim gerektirir.", + "smw-admin-maintenance-script-description-dumprdf": "Mevcut üçlülerin RDF dışa aktarımı.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "Bu betik, seçilen önbellekleri oluşturabileceği, kaldırabileceği ve güncelleyebileceği Semantic MediaWiki için kavram önbelleklerini yönetmek için kullanılır.", + "smw-admin-maintenance-script-description-rebuilddata": "Anlamsal verilere sahip olabilecek tüm sayfalar arasında dolaşarak veritabanındaki tüm anlamsal verileri yeniden oluşturur.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "Anlamsal verileri olan tüm varlıklar arasında geçiş yaparak Elasticsearch dizinini (yalnızca ElasticStore kullanan kurulumlar için) yeniden oluşturur.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Elasticsearch'te eksik varlıkları bulun (yalnızca ElasticStore kullanan kurulumlar için) ve uygun güncelleme işlerini zamanlayın.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "SQLStore tam metin arama dizinini yeniden oluşturur (ayarın etkinleştirildiği kurulumlar için.", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Tüm özellik varlıklarının kullanım istatistiklerini yeniden oluşturur.", + "smw-admin-maintenance-script-description-removeduplicateentities": "Etkin kaynakça olmayan seçili tablolarda bulunan yinelenen varlıkları kaldırır.", + "smw-admin-maintenance-script-description-setupstore": "Depolama alanı ve sorgu arka ucunu LocalSettings.php içinde tanımlandığı şekilde ayarlar.", + "smw-admin-maintenance-script-description-updateentitycollation": "SQLStore içindeki smw_sort alanını günceller ([https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] ayarına göre).", + "smw-admin-maintenance-script-description-populatehashfield": "Değeri eksik satırlar için smw_hash alanını doldurur.", + "smw-admin-maintenance-script-description-purgeentitycache": "Bilinen varlıklar ve ilişkili verileri için önbellek girdilerini temizleyin.", + "smw-admin-maintenance-script-description-updatequerydependencies": "Sorguları ve sorgu bağımlılıklarını güncelleyin ([https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore] ayarına bakın).", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "Eski varlıkları ve sorgu bağlantılarını atın.", + "smw-admin-maintenance-script-description-runimport": "Otomatik olarak keşfedilen içeriği [https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs] adresinden doldurun ve içe aktarın.", + "smw-admin-maintenance-script-section-update": "Betikleri güncelle", + "smw-admin-maintenance-script-section-rebuild": "Betikleri yeniden oluştur", + "smw-livepreview-loading": "Yükleniyor...", + "smw-sp-searchbyproperty-description": "Bu sayfa, bir özellik ve adlandırılmış bir değer tarafından tanımlanan varlıkları bulmak için basit bir [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces/tr tarama arayüzü] sağlar. Kullanılabilir diğer arama arayüzleri arasında [[Special:PageProperty|sayfa özellik arama]] ve [[Special:Ask|ask sorgu oluşturucu]] yer alır.", + "smw-sp-searchbyproperty-resultlist-header": "Sonuç listesi", + "smw-sp-searchbyproperty-nonvaluequery": "\"$1\" özelliğine atanmış değerlerin listesi.", + "smw-sp-searchbyproperty-valuequery": "\"$1\" özelliği eklenmiş \"$2\" değerine sahip sayfaların listesi.", + "smw-datavalue-number-textnotallowed": "\"$1\", $2 değerine sahip beyan edilmiş bir sayı türüne atanamaz.", + "smw-datavalue-number-nullnotallowed": "\"$1\", sayı olarak izin verilmeyen bir \"NULL\" ile döndü.", + "smw-editpage-annotation-enabled": "Bu sayfa, Semantic MediaWiki tarafından sağlanan yapılandırılmış ve sorgulanabilir içerik oluşturmak için semantik metin içi ek açıklamaları (örn. \"[[Is specified as::World Heritage Site]]\") destekler. Ek açıklamaların veya #ask ayrıştırıcı işlevinin nasıl kullanılacağına ilişkin kapsamlı bir açıklama için lütfen [https://www.semantic-mediawiki.org/wiki/Help:Getting_started başlarken], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation metin içi ek açıklama] veya [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries satır içi sorgular] yardım sayfalarına bakın.", + "smw-editpage-annotation-disabled": "Bu sayfa, ad alanı kısıtlamaları nedeniyle semantik metin içi ek açıklamalar için etkinleştirilmedi. Ad alanının nasıl etkinleştirileceğiyle ilgili ayrıntılar [https://www.semantic-mediawiki.org/wiki/Help:Configuration yapılandırma] yardım sayfasında bulunabilir.", + "smw-editpage-property-annotation-enabled": "Bu özellik, bir veri türü (ör. \"[[Has type::Page]]\") veya diğer destekleyici bildirimler (örn. \"[[Subproperty of::dc:date]]\") belirtmek için anlamsal ek açıklamalar kullanılarak genişletilebilir. Bu sayfanın nasıl artırılacağına ilişkin açıklama için [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration bir mülk beyanı] veya [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes kullanılabilir veri türlerinin listesi] yardım sayfalarına bakın.", + "smw-editpage-property-annotation-disabled": "Bu özellik, önceden tanımlandığı için bir veri türü ek açıklamasıyla (ör. \"[[Has type::Page]]\") genişletilemez ([https://www.semantic-mediawiki.org/wiki/Help:Special_properties özel özellikleri] yardım sayfasına bakın).", + "smw-editpage-concept-annotation-enabled": "Bu kavram #concept ayrıştırıcı işlevi kullanılarak genişletilebilir. #concept'in nasıl kullanılacağına ilişkin açıklama için [https://www.semantic-mediawiki.org/wiki/Help:Concepts kavramı] yardım sayfasına bakın.", + "smw-search-syntax-support": "Arama girişi, Semantic MediaWiki'yi kullanarak sonuçları eşleştirmeye yardımcı olmak için anlamsal [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search sorgu sözdizimi] kullanımını destekler.", + "smw-search-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Giriş yardımcısı] da kullanılabilir özelliklerin ve kategorilerin ön seçimini kolaylaştırmak için etkinleştirilmiştir.", + "smw-search-help-intro": "Bir [[ ... ]] girişi, Semantic MediaWiki arama arka ucunu kullanmak için giriş işlemcisine sinyal gönderir. [[ ... ]] ile [[ ... ]] desteklenmez VEYA Lorem ipsum gibi yapılandırılmamış bir metin aramasıyla birleştirildiğine dikkat edilmelidir.", + "smw-search-help-structured": "Yapısal aramalar:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] ([https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context filtrelenmiş içerik] olarak)\n\n*[[Has text::~*lorem*]] ([https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context sorgu içeriği] ile)", + "smw-search-help-proximity": "Yakınlık aramaları (bir özellik bilinmemektedir, '''yalnızca''' tam metin araması entegrasyonu sağlayan arka uçlar için kullanılabilir):\n\n* [[in:lorem ipsum]] (tüm dokümanlarda dizine eklenen \"lorem\" ve \"ipsum\" kelimelerini arayın)\n\n* [[phrase:lorem ipsum]] (\"lorem ipsum\" ifadesini ifade olarak eşleştirin)", + "smw-search-help-ask": "Aşağıdaki bağlantılar, #ask sözdiziminin nasıl kullanılacağını açıklar.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Sayfa seçimi] seçilen sayfaların nasıl oluşturulacağını ve koşulların nasıl oluşturulacağını açıklar\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Search_operators Arama operatörleri], aralık ve joker karakter sorguları da dahil olmak üzere mevcut arama operatörlerini listeler", + "smw-search-input": "Giriş ve arama", + "smw-search-help-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance/tr Giriş yardımı], giriş alanı için sağlanmıştır ve aşağıdaki öneklerden birini kullanmasını gerektirir:\n\n* özellik önerilerini etkinleştirmek için p: (ör. [[p:Has...)\n\n* kategori önerilerini etkinleştirmek için c:\n\n* kavram önerilerini etkinleştirmek için con:", + "smw-search-syntax": "Sözdizim", + "smw-search-profile": "Genişletilmiş", + "smw-search-profile-tooltip": "Semantic MediaWiki ile bağlantılı işlevleri ara", + "smw-search-profile-sort-best": "En iyi eşleşme", + "smw-search-profile-sort-recent": "En yeni", + "smw-search-profile-sort-title": "Başlık", + "smw-search-profile-extended-help-intro": "Special:Search [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile genişletilmiş profili] Semantic MediaWiki ve onun desteklenen sorgu arka ucuna özgü arama işlevlerine erişim sağlar.", + "smw-search-profile-extended-help-sort": "Sonuç ekranı için aşağıdakileri içeren bir sıralama tercihi belirtir:", + "smw-search-profile-extended-help-sort-title": "* Sıralama ölçütü olarak sayfa başlığını (veya görünen başlığı) kullanan \"Başlık\"", + "smw-search-profile-extended-help-sort-recent": "* \"En son\" önce en son değiştirilen varlıkları gösterecektir (bu varlıklar bir [[Property:Modification date|Değişiklik tarihi]] ile açıklanmadığından alt nesne varlıkları bastırılacaktır)", + "smw-search-profile-extended-help-sort-best": "* \"En iyi eşleşme\", varlıkları arka uç tarafından sağlanan puanlara göre [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy alaka düzeyine] göre sıralar", + "smw-search-profile-extended-help-form": "Giriş sürecini daraltmak ve kullanıcıların bir arama isteğine devam etmesini kolaylaştırmak için farklı özellik ve değer alanlarını göstererek belirli kullanım örneklerini eşleştirmek için formlar sağlanır (korunuyorsa). ($1 bakın)", + "smw-search-profile-extended-help-namespace": "Ad alanı seçim kutusu, bir form seçilir seçilmez gizlenir ancak \"göster/gizle\" düğmesiyle görünür hale getirilebilir.", + "smw-search-profile-extended-help-search-syntax": "Arama giriş alanı, Semantik MediaWiki'ye özgü bir arama bağlamı tanımlamak için #ask sözdiziminin kullanılmasını destekler. Yararlı ifadeler şunları içerir:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: \"...\" içeren bir şey bulmak için kullanılır ve özellikle ilgili arama bağlamı veya özellikleri bilinmediğinde yararlıdır (örneğin in:(lorem && ipsum) [[~~*lorem*]] && [[~~*ipsum*]]) ile eşdeğerdir.", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: ile aynı sırayla \"...\" içeren herhangi bir şey bulun", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: herhangi bir varlığı \"...\" özelliğiyle eşleştirmek içindir (örn. (Foo && Bar), [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not:, \"...\" içeren hiçbir öğeyle eşleşmez", + "smw-search-profile-extended-help-search-syntax-prefix": "* Aşağıdaki gibi ek özel önekler mevcuttur ve tanımlanmıştır: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* $1 gibi bazı ifadeler saklıdır.", + "smw-search-profile-extended-help-search-syntax-note": "''Listelenen işlemlerden bazıları yalnızca etkin bir tam metin dizini veya ElasticStore ile bağlantılı olarak kullanışlıdır.''", + "smw-search-profile-extended-help-query": "Sorgu olarak $1 kullanıldı.", + "smw-search-profile-extended-help-query-link": "Daha fazla ayrıntı için lütfen $1 kullanın.", + "smw-search-profile-extended-help-find-forms": "mevcut formlar", + "smw-search-profile-extended-section-sort": "Sıralama ölçütü:", + "smw-search-profile-extended-section-form": "Formlar", + "smw-search-profile-extended-section-search-syntax": "Arama girişi", + "smw-search-profile-extended-section-namespace": "Ad alanı", + "smw-search-profile-extended-section-query": "Sorgu", + "smw-search-profile-link-caption-query": "sorgu oluşturucu", + "smw-search-show": "Göster", + "smw-search-hide": "Gizle", + "log-name-smw": "Semantic MediaWiki günlüğü", + "log-show-hide-smw": "Semantic MediaWiki günlüğü $1", + "logeventslist-smw-log": "Semantik MediaWiki günlüğü", + "log-description-smw": "Semantic MediaWiki ve bileşenleri tarafından bildirilen [https://www.semantic-mediawiki.org/wiki/Help:Logging etkin olay türleri] etkinlikleri.", + "logentry-smw-maintenance": "Semantic MediaWiki tarafından sağlanan bakımla ilgili etkinlikler", + "smw-datavalue-import-unknown-namespace": "\"$1\" içe aktarma ad alanı bilinmiyor. Lütfen OWL içe aktarma ayrıntılarının [[MediaWiki:Smw import $1]] aracılığıyla erişilebilir olduğundan emin olun", + "smw-datavalue-import-missing-namespace-uri": "[[MediaWiki:Smw import $1|$1 aktarımda]] \"$1\" ad alanı URI'si bulunamadı.", + "smw-datavalue-import-missing-type": "[[MediaWiki:Smw import $2|$2 aktarımda]] \"$1\" için tür tanımı bulunamadı.", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|$1 aktarımı]]", + "smw-datavalue-import-invalid-value": "\"$1\" geçerli bir biçim değil ve \"namespace\":\"identifier\" (ör. \"foaf:name\") içermesi bekleniyor.", + "smw-datavalue-import-invalid-format": "\"$1\" dizesinin dört parçaya bölünmesi bekleniyordu, ancak biçim anlaşılamadı.", + "smw-property-predefined-impo": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary ithal edilen kelime haznesi] ile bir ilişkiyi tanımlayan önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanmaktadır.", + "smw-property-predefined-type": "\"$1\", bir özelliğin [[Special:Types|veri türünü]] tanımlayan ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-sobj": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Help:Container konteyner] yapısını temsil eden önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanmaktadır.", + "smw-property-predefined-long-sobj": "Kapsayıcı, normal bir viki sayfasınınkine benzer ancak katıştırma konusuna bağlıyken farklı bir varlık alanında özellik değeri atamalarının biriktirilmesine izin verir.", + "smw-property-predefined-errp": "\"$1\", düzensiz değer ek açıklamaları için giriş hatalarını izleyen ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-long-errp": "Çoğu durumda bir tür uyumsuzluğu veya [[Property:Allows value|değer]] kısıtlaması neden olur.", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value \"$1\"], bir özelliğe ilişkin değer atamalarını kısıtlamak için izin verilen değerlerin bir listesini tanımlayabilen önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list \"$1\"], bir mülke ilişkin değer atamalarını kısıtlamak için izin verilen değerleri tutan bir listeye başvuru belirtebilecek ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanmaktadır.", + "smw-datavalue-property-restricted-annotation-use": "\"$1\" özelliği sınırlı bir uygulama alanına sahip ve kullanıcı tarafından ek açıklama özelliği olarak kullanılamaz.", + "smw-datavalue-property-restricted-declarative-use": "\"$1\" özelliği, bildirim niteliğindeki bir özelliktir ve yalnızca bir mülk veya kategori sayfasında kullanılabilir.", + "smw-datavalue-property-create-restriction": "\"$1\" özelliği mevcut değil ve kullanıcının onaylanmamış değerleri oluşturmak veya bunlara ek açıklama eklemek için \"$2\" izni yok ([https://www.semantic-mediawiki.org/wiki/Help:Authority_mode yetki modu] sayfasına bakın).", + "smw-datavalue-property-invalid-character": "\"$1\", özellik etiketinin bir parçası olarak listelenen \"$2\" karakterini içerir ve bu nedenle geçersiz olarak sınıflandırılmıştır.", + "smw-datavalue-property-invalid-chain": "Ek açıklama işlemi sırasında özellik zinciri olarak \"$1\" kullanılmasına izin verilmez.", + "smw-datavalue-restricted-use": "Veri değeri \"$1\", sınırlı kullanım için işaretlendi.", + "smw-datavalue-invalid-number": "\"$1\" sayı olarak yorumlanamaz.", + "smw-query-condition-circular": "\"$1\" içinde olası bir dairesel durum tespit edildi.", + "smw-query-condition-empty": "Sorgu açıklamasının durumu boş.", + "smw-types-list": "Veri türleri listesi", + "smw-types-default": "\"$1\" yerleşik bir veri tipidir.", + "smw-types-help": "Daha fazla bilgi ve örnekler bu [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 yardım sayfasında] bulunabilir.", + "smw-type-anu": "\"$1\", [[Special:Types/URL|URL]] veri türünün bir çeşididir ve çoğunlukla ''owl:AnnotationProperty'' dışa aktarma bildirimi için kullanılır.", + "smw-type-boo": "\"$1\", true/false değerini tanımlayan temel bir veri türüdür.", + "smw-type-cod": "\"$1\", kaynak kodu listeleri gibi isteğe bağlı uzunluktaki teknik metinler için kullanılacak [[Special:Types/Metin|Metin]] veri türünün bir çeşididir.", + "smw-type-geo": "\"$1\", coğrafi konumları tanımlayan ve genişletilmiş bir işlevsellik sağlamak için [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"] uzantısını gerektiren bir veri türüdür.", + "smw-type-tel": "\"$1\", RFC 3966'ya göre uluslararası telefon numaralarını tanımlayan özel bir veri türüdür.", + "smw-type-txt": "\"$1\", rastgele uzunluktaki dizeleri tanımlayan temel bir veri türüdür.", + "smw-type-dat": "\"$1\" zaman içindeki noktaları birleşik bir formatta temsil eden temel bir veri tipidir.", + "smw-type-ema": "\"$1\", bir e-postayı temsil eden özel bir veri türüdür.", + "smw-type-tem": "\"$1\", sıcaklığı temsil eden özel bir sayısal veri tipidir.", + "smw-type-qty": "\"$1\", sayısal temsili ve ölçü birimiyle miktarları tanımlayan bir veri türüdür.", + "smw-type-rec": "\"$1\", yazılan özelliklerin listesini sabit bir sırayla belirten bir kapsayıcı veri türüdür.", + "smw-type-extra-tem": "Dönüşüm şeması Kelvin, Celsius, Fahrenheit ve Rankine gibi desteklenen birimleri içerir.", + "smw-type-tab-properties": "Özellikler", + "smw-type-tab-types": "Türler", + "smw-type-tab-type-ids": "Tür kimlikleri", + "smw-type-tab-errors": "Hatalar", + "smw-type-primitive": "Temel", + "smw-type-contextual": "Bağlamsal", + "smw-type-compound": "Bileşik", + "smw-type-container": "Konteyner", + "smw-type-no-group": "Sınıflandırılmamış", + "smw-special-pageproperty-helplink": "https://www.semantic-mediawiki.org/wiki/Help:Special:PageProperty/tr", + "smw-special-pageproperty-description": "Bu sayfa, bir özelliğin ve belirli bir sayfanın tüm değerlerini bulmak için bir tarama arayüzü sağlar. Diğer kullanılabilir arama arayüzleri arasında [[Special:SearchByProperty|özellik arama]] ve [[Special:Ask|ask sorgu oluşturucu]] yer alır.", + "smw-property-predefined-errc": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Help:Special_properties/tr Semantic MediaWiki] tarafından sağlanan önceden tanımlanmış bir özelliktir ve uygun olmayan değer ek açıklamaları veya giriş işlemleriyle bağlantılı olarak ortaya çıkan hataları temsil eder.", + "smw-property-predefined-long-errc": "Hatalar, tutarsızlığa neden olan özellik kaynağı içerebilecek bir [https://www.semantic-mediawiki.org/wiki/Help:Container kapsayıcısı] içinde toplanır.", + "smw-property-predefined-errt": "\"$1\", bir hatanın metinsel açıklamasını içeren önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-subobject-parser-invalid-naming-scheme": "Kullanıcı tanımlı bir alt nesne, geçersiz bir adlandırma düzeni içeriyordu. İlk beş karakterde kullanılan nokta gösterimi ($1) uzantılar için ayrılmıştır. Bir [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects/tr#Adlandırılmış_tanımlayıcı adlandırılmış tanımlayıcı] ayarlayabilirsiniz.", + "smw-datavalue-record-invalid-property-declaration": "Kayıt tanımı, kendisi kayıt türü olarak bildirilen ve buna izin verilmeyen \"$1\" özelliğini içerir.", + "smw-property-predefined-mdat": "\"$1\", bir konunun son değiştirilme tarihine karşılık gelen ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-cdat": "\"$1\", bir konunun ilk revizyon tarihine karşılık gelen ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-newp": "\"$1\", bir konunun yeni olup olmadığını belirten ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-ledt": "\"$1\", son düzeltmeyi oluşturan ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan kullanıcının sayfa adını içeren önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-mime": "\"$1\", yüklenen bir dosyanın MIME türünü tanımlayan ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-media": "\"$1\", yüklenen bir dosyanın ortam türünü açıklayan ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan, önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-askfo": "\"$1\", bir sorguda kullanılan sonuç biçiminin adını tutan ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan, önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-askst": "\"$1\", sorgunun koşullarını dize olarak tanımlayan önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-askdu": "\"$1\", sorgu yürütmesini tamamlamak için gereken ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan bir zaman değeri (saniye cinsinden) içeren önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-asksc": "\"$1\", alternatif (ör. uzak, birleşik) sorgu kaynaklarını tanımlayan [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan, önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-askco": "\"$1\", bir sorgunun veya bileşenlerinin durumunu tanımlamak için [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan, önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-long-askco": "Atanan numara veya numaralar [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler yardım sayfasında] açıklanan dahili bir kodlanmış durumu temsil eder.", + "smw-property-predefined-prec": "\"$1\", sayısal veri türleri için bir [https://www.semantic-mediawiki.org/wiki/Help:Display_precision görüntü hassasiyeti]ni (ondalık basamaklarla) açıklayan önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-attch-link": "\"$1\", bir sayfada bulunan gömülü dosya ve resim bağlantılarını toplayan ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-inst": "\"$1\", MediaWiki'den bağımsız kategori bilgilerini depolayan ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan önceden tanımlı dahili bir özelliktir.", + "smw-property-predefined-unit": "\"$1\", sayısal yazılan özellikler için görüntüleme birimlerini tanımlamak üzere önceden tanımlanmış bir tanımlayıcı özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-long-unit": "Virgülle ayrılmış bir liste, ekran için kullanılacak birimleri veya biçimleri açıklamaya olanak tanır.", + "smw-property-predefined-conv": "\"$1\", fiziksel bir miktarın bazı birimleri için dönüşüm faktörünü tanımlayan önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-serv": "\"$1\", bir özellik hizmet bağlantıları eklemek için önceden tanımlanmış, tanımlayıcı bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-redi": "\"$1\", yönlendirmeleri kaydetmek için önceden tanımlanmış dahili bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-subp": "\"$1\", bir özellik diğerinin [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of alt özelliği] olduğunu ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-subc": "\"$1\", bir kategorinin diğerinin [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of alt kategorisi] olduğunu ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından tanımlandığı önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-conc": "\"$1\", ilişkili bir kavramı tanımlamak için önceden tanımlanmış dahili bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-err-type": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors işleme hataları] grubunu veya sınıfını tanımlamak için önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-skey": "\"$1\", bir sıralama başvurusu yapmak için önceden tanımlanmış dahili bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantik MediaWiki] tarafından sağlanır.", + "smw-property-predefined-pplb": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label tercih edilen mülk etiketi] belirtmek için önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help: Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-chgpro": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation değişiklik yayılımı] bilgilerini tutmak için önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-schema-link": " ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-format-schema": " ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-profile-schema": " ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-trans": " ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-trans-source": " ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-trans-group": " ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-cont-len": "\"$1\", uzunluk bilgilerini depolamak için önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-long-cont-len": "Uzunluk bilgilerini toplamak ve saklamak için [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ve [https://www.semantic-mediawiki.org/Attachment_processor bağlantı işlemcisi]) ile bağlantılı olarak kullanılır alınan bir dosyadan alınır (varsa).", + "smw-property-predefined-cont-lang": "\"$1\", dil bilgilerini saklamak için önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-long-cont-lang": "Dil bilgilerini toplamak ve depolamak için [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ve [https://www.semantic-mediawiki.org/Attachment_processor ek işlemcisi]) ile bağlantılı olarak kullanılır alınan bir dosyadan alınır (varsa).", + "smw-property-predefined-cont-title": "\"$1\" başlık bilgisini saklamak için önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-long-cont-title": "Başlık bilgilerini toplamak ve saklamak için [https://www.semantic-mediawiki.org/ElasticStore Elastik Mağazası] (ve [https://www.semantic-mediawiki.org/Attachment_processor ek işlemcisi]) ile bağlantılı olarak kullanılır alınan bir dosyadan alınır (varsa).", + "smw-property-predefined-cont-author": "\"$1\", yazar bilgilerini depolamak için önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-long-cont-author": "Yazar bilgilerini toplamak ve depolamak için [https://www.semantic-mediawiki.org/ElasticStore Elastik Mağazası] (ve [https://www.semantic-mediawiki.org/Attachment_processor ek işlemcisi]) ile bağlantılı olarak kullanılır alınan bir dosyadan alınır (varsa).", + "smw-property-predefined-cont-date": "\"$1\", tarih bilgilerini saklamak için önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-long-cont-date": "Tarih bilgilerini toplamak ve depolamak için [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ve [https://www.semantic-mediawiki.org/Attachment_processor ek işlemcisi]) ile bağlantılı olarak kullanılır alınan bir dosyadan alınır (varsa).", + "smw-property-predefined-cont-type": "\"$1\", dosya türü bilgilerini depolamak için önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-long-cont-type": "Tür bilgilerini toplamak ve saklamak için [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ve [https://www.semantic-mediawiki.org/Attachment_processor ek işlemcisi]) ile bağlantılı olarak kullanılır alınan bir dosyadan alınır (varsa).", + "smw-property-predefined-cont-keyw": "\"$1\", anahtar kelimeleri temsil etmek için önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-long-cont-keyw": "Alınan anahtar kelimeleri toplamak ve saklamak için [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ve [https://www.semantic-mediawiki.org/Attachment_processor ek işlemcisi]) ile bağlantılı olarak kullanılan dosya (sağlanmışsa).", + "smw-property-predefined-file-attch": "\"$1\", ek bilgilerini depolayan ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan bir kapsayıcıyı temsil eden önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-long-file-attch": "İçeriğe özgü tüm bilgileri toplamak için [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (ve [https://www.semantic-mediawiki.org/Attachment_processor ek işlemcisi]) ile bağlantılı olarak kullanılır alınan bir dosyadan alınabilir (varsa).", + "smw-types-extra-geo-not-available": "[https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\" uzantısı] tespit edilmediğinden, \"$1\" çalışma kapasitesiyle sınırlandırıldı.", + "smw-datavalue-monolingual-dataitem-missing": "Tek dilli bir bileşik değer oluşturmak için beklenen bir öğe eksik.", + "smw-datavalue-languagecode-missing": "\"$1\" ek açıklaması için ayrıştırıcı bir dil kodu belirleyemedi (yani \"foo@en\").", + "smw-datavalue-languagecode-invalid": "\"$1\", desteklenen bir dil kodu olarak tanınmadı.", + "smw-property-predefined-lcode": "\"$1\", BCP47 biçimli bir dil kodunu temsil eden ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan, önceden tanımlanmış bir özelliktir.", + "smw-type-mlt-rec": "\"$1\", bir metin değerini belirli bir [[Property:Language code|dil kodu]] ile ilişkilendiren bir [https://www.semantic-mediawiki.org/wiki/Help:Container kapsayıcısı] veri türüdür.", + "smw-types-extra-mlt-lcode": "Veri türü bir dil kodunu {{PLURAL:$2|gerektirir|gerektirmez}} yapar (yani {{PLURAL:$2|dil kodu olmayan bir değer ek açıklaması kabul edilmez|dil kodu olmayan bir değer ek açıklaması kabul edilir}}).", + "smw-property-predefined-text": "\"$1\", rastgele uzunluktaki metni temsil eden ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan, önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-pdesc": "\"$1\", bir özelliği bir dil bağlamında tanımlamaya izin veren önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-list": "\"$1\", [[Special:Types/Kayıt|Kayıt]] türünde bir mülkle kullanılan özelliklerin listesini tanımlamak için önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-limitreport-intext-parsertime": "[SMW] Metin içi ek açıklama ayrıştırıcısı zamanı", + "smw-limitreport-intext-postproctime": "[SMW] işlem sonrası süresi", + "smw-limitreport-intext-parsertime-value": "$1 saniye", + "smw-limitreport-intext-postproctime-value": "$1 saniye", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Mağaza güncelleme süresi (sayfa temizleme)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 saniye", + "smw_allows_pattern": "Bu sayfanın, [[Property:Allows pattern|Desene izin verme]] özelliği tarafından kullanılabilecek kaynakların bir listesini (ardından [https://tr.wikipedia.org/wiki/Düzenli_ifade düzenli ifadeler]) içermesi beklenir. Bu sayfayı düzenlemek için smw-patternedit hakkı gerekir.", + "smw-datavalue-allows-pattern-mismatch": "\"$1\", \"$2\" normal ifadesi tarafından geçersiz olarak sınıflandırıldı.", + "smw-datavalue-allows-pattern-reference-unknown": "\"$1\" kalıp referansı, [[MediaWiki:Smw allows pattern]] içindeki bir girişle eşleştirilemedi.", + "smw-datavalue-allows-value-list-unknown": "\"$1\" liste kaynağı [[MediaWiki:Smw allows list $1]] sayfasıyla eşleştirilemedi.", + "smw-datavalue-allows-value-list-missing-marker": "\"$1\" liste içeriğinde * liste işaretçisi olan öğeler eksik.", + "smw-datavalue-feature-not-supported": "\"$1\" özelliği bu vikide desteklenmiyor veya devre dışı bırakıldı.", + "smw-property-predefined-pvap": "\"$1\", [https://tr.wikipedia.org/wiki/Düzenli_ifade düzenli ifade] eşleşmesini uygulamak için [[MediaWiki:Smw allows pattern|desen kaynağı]] belirleyebilen önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-dtitle": "\"$1\", bir varlığa farklı bir ekran başlığı atayabilen önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-pvuc": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından, her örneğin benzersiz (veya en fazla bir) değer atamasını kısıtlamak için önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-long-pvuc": "Benzersizlik, iki değer değişmez temsillerinde eşit olmadığında belirlenir ve bu kısıtlamanın herhangi bir ihlali hata olarak sınıflandırılır.", + "smw-datavalue-constraint-uniqueness-violation": "\"$1\" özelliği sadece benzersiz değer atamalarını kabul eder ve ''$2'' halihazırda \"$3\" konusu için atanmış durumda.", + "smw-datavalue-constraint-uniqueness-violation-isknown": "\"$1\" özelliği yalnızca benzersiz değer ek açıklamalarına izin verir, ''$2'' zaten atanmış bir değer içeriyor. \"$3\" benzersizlik kısıtlamasını ihlal ediyor.", + "smw-datavalue-constraint-violation-non-negative-integer": "\"$1\" özelliği \"negatif olmayan bir tamsayı\" kısıtlamasına sahip ve ''$2'' değeri bu gereksinimi ihlal ediyor.", + "smw-datavalue-constraint-violation-must-exists": "\"$1\" özelliğinin bir must_exists kısıtlaması var ve ''$2'' değeri bu gereksinimi ihlal ediyor.", + "smw-datavalue-constraint-violation-single-value": "\"[[Property:$1|$1]]\" özelliğinin bir single_value kısıtlaması var ve \"$2\" değeri bu gereksinimi ihlal ediyor.", + "smw-constraint-violation-uniqueness": "Yalnızca benzersiz değer atamalarına izin veren \"[[Property:$1|$1]]\" özelliğine bir unique_value_constraint kısıtlaması atanmıştır ve ''$2'' değer ek açıklamasının \"$3\" konusu.", + "smw-constraint-violation-uniqueness-isknown": "Bir unique_value_constraint kısıtlaması, \"[[Property:$1|$1]]\" özelliğine tabidir, bu nedenle yalnızca benzersiz değer ek açıklamalarına izin verir, ''$2'' zaten \"$3\" ile şimdiki özne için teklik kısıtı.", + "smw-constraint-violation-non-negative-integer": "\"[[Property:$1|$1]]\" özelliğine bir non_negative_integer kısıtlaması atanmıştır ve ''$2'' değer ek açıklaması sınırlama gereksinimini ihlal etmektedir.", + "smw-constraint-violation-must-exists": "\"[[Property:$1|$1]]\" özelliğine bir must_exists kısıtlaması atanmıştır ve ''$2'' değer ek açıklaması sınırlama gereksinimini ihlal etmektedir.", + "smw-constraint-violation-single-value": "\"[[Property:$1|$1]]\" özelliğine bir single_value kısıtlaması atandı ve \"$2\" değer ek açıklaması, sınırlama gereksinimini ihlal ediyor.", + "smw-constraint-violation-class-shape-constraint-missing-property": "property anahtarıyla \"[[:$1]]\" kategorisine bir shape_constraint atanır, gerekli \"$2\" özelliği eksik.", + "smw-constraint-violation-class-shape-constraint-wrong-type": "shape_constraint anahtarıyla \"[[:$1]]\" kategorisine bir property_type atanır, \"$2\" özelliği, \"$3\".", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "max_cardinality anahtarına sahip \"[[:$1]]\" kategorisine bir shape_constraint atanır, \"$2\" özelliği, \"$3\".", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "min_textlength anahtarıyla \"[[:$1]]\" kategorisine bir shape_constraint atanır, \"$2\" özelliği uzunluk \"$3\" gereksinimiyle eşleşmez.", + "smw-constraint-violation-class-mandatory-properties-constraint": "\"[[:$1]]\" kategorisine bir mandatory_properties kısıtlaması atanmıştır ve aşağıdaki zorunlu özellikleri gerektirir: $2", + "smw-constraint-violation-allowed-namespace-no-match": "\"[[Property:$1|$1]]\" özelliğine bir allowed_namespaces kısıtlaması atanır ve \"$2\" ad alanı gereksinimini ihlal eder, yalnızca aşağıdaki \"$3\" ad alanlarına izin verilir.", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "allowed_namespaces kısıtlaması bir sayfa türü gerektirir.", + "smw-constraint-schema-category-invalid-type": "Açıklamalı \"$1\" şeması bir kategori için geçersiz, \"$2\" türü gerektiriyor.", + "smw-constraint-schema-property-invalid-type": "Ek açıklamalı \"$1\" şeması bir mülk için geçersiz, \"$2\" türü gerektiriyor.", + "smw-constraint-error-allows-value-list": "\"$1\", \"$3\" özelliği için [[Property:Allows value|izin verilen değerlere izin verir]] listesinde ($2) değil.", + "smw-constraint-error-allows-value-range": "\"$1\", \"$3\" özelliği için [[Property:Allows value|değere izin verir]] kısıtlaması tarafından belirtilen \"$2\" aralığı içinde değil.", + "smw-property-predefined-boo": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan ve boole değerlerini temsil eden önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-num": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sayısal değerleri temsil etmek için sağlanan [[Special:Types/Number|tür]] ve önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-dat": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından tarih değerlerini göstermek için sağlanan [[Special:Types/Date|tür]] ve önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-uri": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından URI/URL değerlerini temsil etmek üzere sağlanan [[Special:Types/URL|tür]] ve önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-qty": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından miktar değerlerini temsil etmek için sağlanan [[Special:Types/Quantity|tür]] ve önceden tanımlanmış bir özelliktir.", + "smw-datavalue-time-invalid-offset-zone-usage": "\"$1\", desteklenmeyen bir uzaklık ve bölge tanımlayıcısı içeriyor.", + "smw-datavalue-time-invalid-values": "\"$1\" değeri \"$2\" biçiminde yorumlanamayan bilgiler içeriyor.", + "smw-datavalue-time-invalid-date-components-common": "\"$1\" yorumlanamayan bazı bilgiler içeriyor.", + "smw-datavalue-time-invalid-date-components-dash": "\"$1\", tarih yorumu için geçersiz bir dış çizgi veya başka karakterler içeriyor.", + "smw-datavalue-time-invalid-date-components-empty": "\"$1\" bazı boş bileşenler içeriyor.", + "smw-datavalue-time-invalid-date-components-three": "\"$1\" bir tarih yorumu için üçten fazla bileşen içeriyor.", + "smw-datavalue-time-invalid-date-components-sequence": "\"$1\", tarih bileşenleri için kullanılabilir bir eşleşme matrisine yorumlanamayan bir dizi içeriyor.", + "smw-datavalue-time-invalid-ampm": "\"$1\", 12 saatlik bir kural için geçersiz saat öğesi olarak \"$2\" içerir.", + "smw-datavalue-time-invalid-jd": "\"$1\" giriş değeri, \"$2\" bildirildiği şekilde geçerli JD (Julian günü) numarası olarak yorumlanamıyor.", + "smw-datavalue-time-invalid-prehistoric": "Tarih öncesi \"$1\" giriş değeri yorumlanamıyor. Örneğin, yıllar veya bir takvim modeli belirtmek, tarih öncesi bir bağlamda beklenmedik sonuçlar döndürebilir.", + "smw-datavalue-time-invalid": "\"$1\" giriş değeri, \"$2\" bildirildiği şekilde geçerli tarih veya saat bileşeni olarak yorumlanamıyor.", + "smw-datavalue-external-formatter-uri-missing-placeholder": "Formatter URI'sında ''$1'' yer tutucu eksik.", + "smw-datavalue-external-formatter-invalid-uri": "\"$1\" geçersiz bir URL.", + "smw-datavalue-external-identifier-formatter-missing": "Özellikte [[Property:External formatter uri|\"Harici biçimlendirici URI\"]] ataması eksik.", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "\"$1\" harici tanımlayıcısı çok alanlı bir ikame bekler, ancak geçerli \"$2\" değerinde gereksinimi karşılamak için en az bir değer parametresi eksik.", + "smw-datavalue-keyword-maximum-length": "Anahtar kelime maksimum uzunluğu $1 {{PLURAL:$1|karakter|karakter}} aştı.", + "smw-property-predefined-eid": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından harici tanımlayıcıları temsil etmek için sağlanan [[Special:Types/Harici tanımlayıcı|tür]] ve önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-peid": "\"$1\", harici bir tanımlayıcı belirten ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan, önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-pefu": "\"$1\", bir yer tutucuyla harici bir kaynak belirtmek için [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan, önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-long-pefu": "URI'nin, geçerli bir kaynak başvurusu oluşturmak için [[Special:Types/Harici tanımlayıcı|harici tanımlayıcı]] değeriyle ayarlanacak bir yer tutucu içermesi beklenir.", + "smw-type-eid": "\"$1\", harici kaynakları (URI tabanlı) tanımlamak için [[Special:Types/Metin|Metin]] veri türünün bir varyantıdır ve bir [[Property:External formatter uri|Harici biçimlendirici URI]] bildirmek için atanmış özellikler gerektirir.", + "smw-property-predefined-keyw": "\"$1\", önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan ve bir metni normalleştiren ve kısıtlı olan [[Special:Types/Anahtar Kelime|tür]] karakter uzunluğu.", + "smw-type-keyw": "\"$1\", normalleştirilmiş içerik gösterimi ile sınırlı karakter uzunluğuna sahip [[Special:Types/Metin|Metin]] veri türünün bir varyantıdır.", + "smw-datavalue-stripmarker-parse-error": "Verilen \"$1\" değeri [https://en.wikipedia.org/wiki/Help:Strip_markers şerit işaretleyicilerini] içerir ve bu nedenle yeterince ayrıştırılamaz.", + "smw-datavalue-parse-error": "Girilen \"$1\" değeri anlaşılamadı.", + "smw-datavalue-propertylist-invalid-property-key": "\"$1\" özellik listesi geçersiz bir \"$2\" özellik anahtarı içeriyordu.", + "smw-datavalue-type-invalid-typeuri": "\"$1\" türü geçerli bir URI gösterimine dönüştürülemedi.", + "smw-datavalue-wikipage-missing-fragment-context": "\"$1\" viki sayfa giriş değeri, bir bağlam sayfası olmadan kullanılamaz.", + "smw-datavalue-wikipage-invalid-title": "\"$1\" sayfa türü giriş değeri geçersiz karakterler içeriyor veya eksik ve bu nedenle bir sorgu veya ek açıklama işlemi sırasında beklenmedik sonuçlara neden olabilir.", + "smw-datavalue-wikipage-property-invalid-title": "\"$2\" giriş değerine sahip \"$1\" özelliği (sayfa türü olarak) geçersiz karakterler içeriyor veya eksik ve bu nedenle sorgu veya ek açıklama işlemi sırasında beklenmedik sonuçlara neden olabilir.", + "smw-datavalue-wikipage-empty": "Vikisayfa giriş değeri boştur (örn. [[SomeProperty::]], [[]]) ve bu nedenle ad olarak veya sorgu koşulunun bir parçası olarak kullanılamaz.", + "smw-type-ref-rec": "\"$1\", bir değer ataması hakkında ek bilgilerin (ör. Provenance verileri) kaydedilmesine izin veren bir [https://www.semantic-mediawiki.org/wiki/Container kapsayıcısı] türüdür.", + "smw-datavalue-reference-invalid-fields-definition": "[[Special:Types/Kaynakça|Kaynakça]] türü, [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has alanları] özelliği kullanılarak bildirilecek özelliklerin bir listesini bekliyor", + "smw-parser-invalid-json-format": "JSON ayrıştırıcısı \"$1\" ile döndü.", + "smw-property-preferred-label-language-combination-exists": "\"$2\" dili \"$3\" etiketine zaten atanmış olduğundan, \"$1\" tercih edilen etiket olarak kullanılamaz.", + "smw-clipboard-copy-link": "Bağlantıyı panoya kopyala", + "smw-property-userdefined-fixedtable": "\"$1\", [https://www.semantic-mediawiki.org/wiki/Fixed_properties Düzenlenmiş özellik] olarak yapılandırıldı ve [https://www.semantic-mediawiki.org/wiki/Type_declaration tip bildirimi] de herhangi bir değişiklik yapılması gerekiyor setupStore.php çalıştırmak veya özel [[Special:SemanticMediaWiki|\"Veritabanı yükleme ve yükseltme\"]] görevini tamamlamak için.", + "smw-data-lookup": "Veri işleniyor ...", + "smw-data-lookup-with-wait": "İstek işleniyor ve biraz zaman alabilir.", + "smw-no-data-available": "Veri yok.", + "smw-property-req-violation-missing-fields": "\"$1\" özelliği, bu \"$2\" türü için zorunlu bir [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] bildirimi eksik.", + "smw-property-req-violation-multiple-fields": "\"$1\" mülkü birden fazla (burada rekabet eden) [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] bildirim içeriyor, bu \"$2\" türü için yalnızca bir tane bekleniyor.", + "smw-property-req-violation-missing-formatter-uri": "\"$1\" özelliğinde, Harici biçimlendirici URI özelliği tanımlanamadığı için açıklamalı tür için bildirim ayrıntıları eksik.", + "smw-property-req-violation-predefined-type": "Önceden tanımlanmış özellik olarak \"$1\" özelliği, bu özelliğin varsayılan türüyle uyumsuz bir \"$2\" türü bildirimi içeriyor.", + "smw-property-req-violation-import-type": "İçe aktarılan \"$1\" sözcük dağarcığının önceden tanımlanmış türü ile uyumsuz bir tür bildirimi algılandı. Genel olarak, bilgi içe aktarma tanımından alındığı için bir tür bildirilmesine gerek yoktur.", + "smw-property-req-violation-change-propagation-locked-error": "\"$1\" özelliği değiştirildi ve atanan varlıkların [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation/tr değişiklik yayılımı] işlemi kullanılarak yeniden değerlendirilmesini gerektiriyor. Özellik sayfası, ara kesintileri veya çelişkili spesifikasyonları önlemek için birincil spesifikasyon güncellemesi tamamlanıncaya kadar kilitlenmiştir. [https://www.mediawiki.org/wiki/Manual:Job_queue/tr İş kuyruğu] zamanlayıcısının boyutuna ve sıklığına bağlı olduğundan, işlem sayfanın kilidinin açılmasından önce biraz zaman alabilir.", + "smw-property-req-violation-change-propagation-locked-warning": "\"$1\" özelliği değiştirildi ve atanan varlıkların [https://www.semantic-mediawiki.org/wiki/Change_propagation değişiklik yayılımı] işlemi kullanılarak yeniden değerlendirilmesini gerektiriyor. Güncelleme, [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue İş kuyruğu] zamanlayıcısının boyutuna ve sıklığına bağlı olduğundan ve aracı kesintileri önlemek için mülkteki değişiklikleri ertelemeniz veya çelişkili özellikler.", + "smw-property-req-violation-change-propagation-pending": "[https://www.semantic-mediawiki.org/wiki/Change_propagation Değişiklik yayılımı] güncellemeleri bekliyor ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue iş] tahmin edilir) ve ara kesintileri veya çelişkili spesifikasyonları önlemek için işlem tamamlanıncaya kadar bir özellikte değişiklik yapılması beklenir.", + "smw-property-req-violation-missing-maps-extension": "Semantic MediaWiki, önkoşul olan ve sonuç olarak işlevselliği sınırlayan (yani coğrafi verileri depolayamayan veya işleyemeyen [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"] uzantısını algılayamadı) ekleyin.", + "smw-property-req-violation-type": "Özellik, geçersiz değer ek açıklamalarına neden olabilecek rakip tür belirtimleri içeriyor, bu nedenle kullanıcının uygun bir tür ataması bekleniyor.", + "smw-property-req-error-list": "Özellik aşağıdaki hataları veya uyarıları içerir:", + "smw-property-req-violation-parent-type": "\"$1\" özelliği ve atanan \"$2\" üst özelliğinin farklı tür ek açıklamaları var.", + "smw-property-req-violation-forced-removal-annotated-type": "[https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_datatype_inheritance/tr Zorunlu üst türü mirası] zorlaması etkinleştirildi, \"$1\" özelliği için ek açıklama türü, üst özelliği \"$2\" türüyle eşleşmiyor ve bu gereksinimi yansıtacak şekilde değiştirilmiştir. Sayfa içi tür tanımının, bu özellik için hata mesajı ve zorunlu yaptırımın kaldırılması için ayarlanması önerilir.", + "smw-change-propagation-protection": "[https://www.semantic-mediawiki.org/wiki/Change_propagation Değişiklik yayılımı] güncellemesi çalışırken yanlışlıkla veri değişikliğini önlemek için bu sayfa kilitlenir. [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue İş kuyruğu] zamanlayıcısının boyutuna ve sıklığına bağlı olduğundan, işlem sayfanın kilidinin açılmasından önce biraz zaman alabilir.", + "smw-category-change-propagation-locked-error": "\"$1\" kategorisi değiştirildi ve atanan varlıkların bir [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation/tr değişiklik yayılımı] işlemi kullanılarak yeniden değerlendirilmesini gerektiriyor. Bu arada, ara kesintileri veya çelişkili spesifikasyonları önlemek için kategori sayfası birincil spesifikasyon güncellemesi tamamlanana kadar kilitlendi. [https://www.mediawiki.org/wiki/Manual:Job_queue/tr İş kuyruğu] zamanlayıcısının boyutuna ve sıklığına bağlı olduğundan, işlem sayfanın kilidinin açılmasından önce biraz zaman alabilir.", + "smw-category-change-propagation-locked-warning": "\"$1\" kategorisi değiştirildi ve atanan varlıkların bir [https://www.semantic-mediawiki.org/wiki/Change_propagation değişiklik yayılımı] işlemi kullanılarak yeniden değerlendirilmesini gerektiriyor. Güncelleme, [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue iş kuyruğu] zamanlayıcısının boyutuna ve sıklığına bağlı olduğundan ve ara kesintileri önlemek için kategorideki değişikliklerin ertelenmesi veya çelişkili özellikler.", + "smw-category-change-propagation-pending": "[https://www.semantic-mediawiki.org/wiki/Change_propagation Değişiklik yayılımı] güncellemeleri bekliyor ($1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue iş] tahmin edilir) ve ara kesintileri veya çelişkili spesifikasyonları önlemek için işlem sonlandırılana kadar bir kategoride değişiklik yapılması beklenir.", + "smw-category-invalid-value-assignment": "\"$1\", geçerli kategori veya değer ek açıklaması olarak tanınmıyor.", + "protect-level-smw-pageedit": "Yalnızca sayfa düzenleme iznine sahip kullanıcılara izin ver (Semantic MediaWiki)", + "smw-create-protection": "\"$1\" özelliğin oluşturulması, uygun \"$2\" hakkına (veya [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups kullanıcı grubu]) sahip kullanıcılar ile sınırlıdır; [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode yetki modu] etkin.", + "smw-create-protection-exists": "\"$1\" özelliğindeki değişiklikler, uygun \"$2\" hakkına (veya [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups kullanıcı grubu]) sahip kullanıcılar ile sınırlıdır; [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode yetki modu] etkin.", + "smw-edit-protection": "Bu sayfa, yanlışlıkla veri değiştirilmesini önlemek için [[Property:Is edit protected|korumalı]] ve yalnızca uygun düzenleme hakkına (\"$1\") veya [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups kullanıcı grubu].", + "smw-edit-protection-disabled": "Düzenleme koruması devre dışı bırakıldığından, \"$1\" varlık sayfalarını yetkisiz düzenlemelerden korumak için kullanılamaz.", + "smw-edit-protection-auto-update": "Semantik MediaWiki koruma durumunu \"Düzenleme korumalı\" özelliğine göre güncelledi.", + "smw-edit-protection-enabled": "Korumalı düzenle (Semantic MediaWiki)", + "smw-patternedit-protection": "Bu sayfa korunmaktadır ve yalnızca uygun smw-patternedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions izni] olan kullanıcılar tarafından düzenlenebilir.", + "smw-property-predefined-edip": "\"$1\", düzenlemenin korumalı olup olmadığını belirtmek için [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan, önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-long-edip": "Herhangi bir kullanıcı bu özelliği bir nesneye ekleme yetkisine sahip olsa da, yalnızca özel izinli bir kullanıcı bir varlık eklendikten sonra korumayı düzenleyebilir veya iptal edebilir.", + "smw-query-reference-link-label": "Sorgu kaynnakçası", + "smw-format-datatable-emptytable": "Tabloda veri yok", + "smw-format-datatable-info": "_TOTAL_ girişten _START_ - _END_ arasındakiler gösteriliyor", + "smw-format-datatable-infoempty": "0 girdiden 0 ile 0 arası gösteriliyor", + "smw-format-datatable-infofiltered": "(toplam _MAX_ girişten filtrelendi)", + "smw-format-datatable-lengthmenu": "_MENU_ girişlerini göster", + "smw-format-datatable-loadingrecords": "Yükleniyor...", + "smw-format-datatable-processing": "İşleniyor...", + "smw-format-datatable-search": "Ara:", + "smw-format-datatable-zerorecords": "Hiçbir eşleşen kayıt bulunamadı", + "smw-format-datatable-first": "İlk", + "smw-format-datatable-last": "Son", + "smw-format-datatable-next": "Sonraki", + "smw-format-datatable-previous": "Önceki", + "smw-format-datatable-sortascending": ": artan sütun sıralamak için etkinleştir", + "smw-format-datatable-sortdescending": ": azalan sütun sıralamasını etkinleştir", + "smw-format-datatable-toolbar-export": "Dışa aktar", + "smw-category-invalid-redirect-target": "\"$1\" kategorisi, kategori olmayan bir ad alanına geçersiz bir yönlendirme hedefi içeriyor.", + "smw-parser-function-expensive-execution-limit": "Ayrıştırıcı işlevi pahalı yürütme sınırına ulaştı ( [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit] sayfasına bakın).", + "smw-postproc-queryref": "Semantic MediaWiki, gerekli bazı sorgu sonrası işlemleri koşulu ile geçerli sayfayı yeniliyor.", + "apihelp-smwinfo-summary": "Semantic MediaWiki istatistikleri ve diğer meta bilgiler hakkında bilgi almak için API modülü.", + "apihelp-ask-summary": "Sorgulama dilini kullanarak Semantic MediaWiki'yi sorgulamak için API modülü.", + "apihelp-askargs-summary": "Koşullar, çıkışları ve parametreler listesi olarak ask dilini kullanarak Semantic MediaWiki'yi sorgulamak için API modülü.", + "apihelp-browsebyproperty-summary": "Bir özellik veya özellik listesi hakkında bilgi almak için API modülü.", + "apihelp-browsebysubject-summary": "Bir konu hakkında bilgi almak için API modülü.", + "apihelp-smwtask-summary": "Semantic MediaWiki ile ilgili görevleri yürütmek için API modülü (yalnızca dahili kullanım için, genel kullanım için değil).", + "apihelp-smwbrowse-summary": "Semantic MediaWiki'deki farklı varlık türleri için göz atma etkinliklerini destekleyen API modülü.", + "apihelp-ask-parameter-api-version": "Çıkış biçimlendirme:\n;2:Sonuç listesi için {} kullanarak geriye dönük uyumlu biçim.\n;3:Sonuç listesi olarak [] kullanılarak deneysel biçim.", + "apihelp-smwtask-param-task": "Görev türünü tanımlar", + "apihelp-smwtask-param-params": "Seçilen görev türü gereksinimiyle eşleşen JSON kodlu parametreler", + "smw-apihelp-smwtask-example-update": "Belirli bir konu için güncelleme görevi çalıştırma örneği:", + "smw-api-invalid-parameters": "Geçersiz parametreler, \"$1\"", + "smw-parser-recursion-level-exceeded": "Bir ayrıştırma işlemi sırasında $1 özyineleme düzeyi aşıldı. Şablon yapısını doğrulamanız veya gerekirse $maxRecursionDepth yapılandırma parametresini ayarlamanız önerilir.", + "smw-property-page-list-count": "Bu özelliği kullanımı $1 sayfa gösteriliyor.", + "smw-property-page-list-search-count": "$1 sayfa bu özelliği \"$2\" değer eşleşmesi ile gösteriyor.", + "smw-property-page-filter-note": "[https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter Arama filtresi], [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions sorgu ifadeleri] ifadesinin dahil edilmesine izin verir ~ veya ! olarak ekleyin. Seçilen [https://www.semantic-mediawiki.org/wiki/Query_engine sorgu motoru] ayrıca büyük/küçük harfe duyarlı olmayan eşleşmeyi veya aşağıdakiler gibi diğer kısa ifadeleri de destekleyebilir:\n\n* in: sonuç terimi içermelidir, ör.'in:Foo'\n\n* not: sonuç terimi içermemelidir, ör. 'not:Bar'", + "smw-property-reserved-category": "Kategori", + "smw-category": "Kategori", + "smw-datavalue-uri-invalid-scheme": "\"$1\", geçerli URI şeması olarak listelenmedi.", + "smw-datavalue-uri-invalid-authority-path-component": "\"$1\", geçersiz bir \"$2\" yetkisi veya yol bileşeni içerdiği belirlendi.", + "smw-browse-property-group-title": "Özellik grubu", + "smw-browse-property-group-label": "Özellik grubu etiketi", + "smw-browse-property-group-description": "Özellik grubu açıklaması", + "smw-property-predefined-ppgr": "\"$1\", özellikler için gruplama örneği olarak kullanılan ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan varlıkları (çoğunlukla kategorileri) tanımlayan önceden tanımlanmış bir özelliktir.", + "smw-filter": "Filtre", + "smw-section-expand": "Bölümü genişlet", + "smw-section-collapse": "Bölümü daralt", + "smw-ask-format-help-link": "[https://www.semantic-mediawiki.org/wiki/Help:$1_format $1] biçimi", + "smw-help": "Yardım", + "smw-cheat-sheet": "Kopya kağıdı", + "smw-personal-jobqueue-watchlist": "İş kuyruğu izleme listesi", + "smw-personal-jobqueue-watchlist-explain": "Sayılar, yürütmeyi bekleyen iş kuyruğu girişlerinin bir tahminini gösterir.", + "smw-property-predefined-label-skey": "Sıralama anahtarı", + "smw-processing": "İşleniyor...", + "smw-loading": "Yükleniyor...", + "smw-fetching": "Getiriliyor...", + "smw-preparing": "Hazırlanıyor...", + "smw-expand": "Genişlet", + "smw-collapse": "Daralt", + "smw-copy": "Kopyala", + "smw-copy-clipboard-title": "İçeriği panoya kopyalar", + "smw-jsonview-expand-title": "JSON görünümünü genişletir", + "smw-jsonview-collapse-title": "JSON görünümünü daraltır", + "smw-jsonview-search-label": "Ara:", + "smw-redirect-target-unresolvable": "Hedef, \"$1\" nedeniyle çözülemez", + "smw-types-title": "Tür: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "Bir [https://www.semantic-mediawiki.org/wiki/Help:Schema şema sayfası]nın içerik modelinin değiştirilmesine izin verilmez.", + "smw-schema-namespace-edit-protection": "Bu sayfa korunmaktadır ve yalnızca uygun smw-schemaedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions izni] olan kullanıcılar tarafından düzenlenebilir.", + "smw-schema-namespace-edit-protection-by-import-performer": "Bu sayfa, listelenen bir [https://www.semantic-mediawiki.org/wiki/Import_performer içe aktarma sanatçısı] tarafından içe aktarıldı ve bu sayfanın içeriğini değiştirmenin yalnızca listelenen kullanıcılarla sınırlı olduğu anlamına gelir.", + "smw-schema-error-title": "Doğrulama {{PLURAL:$1|hatası|hataları}}", + "smw-schema-error-schema": "'''$1''' doğrulama şeması aşağıdaki tutarsızlıkları buldu:", + "smw-schema-error-miscellaneous": "Çeşitli hatalar ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "\"$1\" JSON doğrulayıcısına erişilemiyor (veya yüklenemiyor) ve \"$2\" dosyasının incelenememesinin nedeni, geçerli sayfanın kaydedilmesini veya değiştirilmesini engelliyor.", + "smw-schema-error-validation-file-inaccessible": "\"$1\" doğrulama dosyasına erişilemiyor.", + "smw-schema-error-type-missing": "İçeriğin [https://www.semantic-mediawiki.org/wiki/Help:Schema şema ad alanında] tanınması ve kullanılabilmesi için bir türü eksik.", + "smw-schema-error-type-unknown": "\"$1\" türü kaydedilmedi ve [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema] ad alanındaki içerik için kullanılamaz.", + "smw-schema-error-json": "JSON hatası: \"$1\"", + "smw-schema-error-input": "Giriş doğrulaması aşağıdaki sorunları buldu, içerik kaydedilmeden önce bunların ele alınması gerekiyor. [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling/tr Şema yardımı] sayfası, tutarsızlıkların nasıl giderileceği veya şema girdisiyle ilgili sorunların nasıl çözüleceği konusunda bazı tavsiyeler sağlayabilir.", + "smw-schema-error-input-schema": "'''$1''' doğrulama şeması aşağıdaki tutarsızlıkları buldu ve içerik kaydedilebilmesi için bunların ele alınması gerekiyor. [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling/tr Şema yardımı] sayfası, bu sorunların nasıl çözüleceğine ilişkin bazı öneriler sağlayabilir.", + "smw-schema-error-title-prefix": "Bu şema türü, şemanın başlığının \"$1\" önekiyle başlamasını gerektirir.", + "smw-schema-validation-error": "\"$1\" türü kaydedilmedi ve [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema] ad alanındaki içerik için kullanılamaz.", + "smw-schema-validation-schema-title": "JSON şeması", + "smw-schema-summary-title": "Özet", + "smw-schema-title": "Şema", + "smw-schema-usage": "Kullanım", + "smw-schema-type": "Şema türü", + "smw-schema-type-description": "Tür açıklaması", + "smw-schema-description": "Şema açıklaması", + "smw-schema-description-link-format-schema": "Bu şema türü, atanan [[Property:Formatter schema|biçimlendirici şeması]] özelliğiyle bağlantılı olarak içeriğe duyarlı bağlantılar oluşturmak için özelliklerin tanımını destekler.", + "smw-schema-description-search-form-schema": "Bu şema türü, giriş alanlarının nasıl oluşturulacağına, varsayılan ad alanlarının nasıl tanımlanacağına veya bir arama isteği için önek ifadelerinin nasıl bildirileceğine ilişkin talimatları içeren [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/tr genişletilmiş arama] profili için giriş formlarının ve özelliklerinin tanımını destekler.", + "smw-schema-description-property-profile-schema": "Bu şema türü, atanan özelliğin özelliklerini ve ek açıklama değerlerini bildirmek için bir profilin tanımını destekler.", + "smw-schema-description-property-group-schema": "Bu şema türü, [https://www.semantic-mediawiki.org/wiki/Help:Special:Browsing göz atma] arayüzünün yapılandırılmasına yardımcı olmak için [https://www.semantic-mediawiki.org/wiki/Help:Property_group/tr özellik grupları] tanımını destekler.", + "smw-schema-description-property-constraint-schema": "Bu özellik, bir özellik örneği için sınırlama kurallarının tanımını ve buna atanan değerleri destekler.", + "smw-schema-description-class-constraint-schema": "Bu şema türü, bir sınıf örneği (yani kategori) için kısıtlama kurallarının tanımını destekler.", + "smw-schema-tag": "{{PLURAL:$1|Etiket|Etiket}}", + "smw-property-predefined-constraint-schema": "\"$1\", bir kısıtlama şeması tanımlayan ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-schema-desc": "\"$1\", bir şema açıklaması saklayan ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-schema-def": "\"$1\", şema içeriğini depolayan ve önceden tanımlanmış bir özelliktir ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanır.", + "smw-property-predefined-schema-tag": "\"$1\", bir şema koleksiyonunu tanımlamak için [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan, önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-long-schema-tag": "Benzer içerik veya özelliklerin şemalarını tanımlayan bir etiket.", + "smw-property-predefined-schema-type": "\"$1\", bir grup şemayı ayırt etmek için bir tür tanımlayan ve [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] tarafından sağlanan önceden tanımlanmış bir özelliktir.", + "smw-property-predefined-long-schema-type": "Her [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type türü], sözdizimi öğelerinin ve uygulama kurallarının kendi yorumunu sağlar ve bir [https://www.semantic-mediawiki.org/wiki/Help:Schema#validation geçerlilik şeması] yardımı ile ifade edilebilir.", + "smw-ask-title-keyword-type": "Anahtar kelime araması", + "smw-ask-message-keyword-type": "Bu arama $1 koşuluyla eşleşir.", + "smw-remote-source-unavailable": "Uzak \"$1\" hedefine bağlanılamıyor.", + "smw-remote-source-disabled": "'''$1''' kaynağı uzaktan istek desteğini devre dışı bıraktı!", + "smw-remote-source-unmatched-id": "'''$1''' kaynağı, uzak bir isteği destekleyebilen bir Semantic MediaWiki sürümüyle eşleşmiyor.", + "smw-remote-request-note": "Sonuç, '''$1''' uzak kaynağından getirilir ve oluşturulan içeriğin geçerli vikide bulunmayan bilgileri içermesi muhtemeldir.", + "smw-remote-request-note-cached": "Sonuç, '''$1''' uzak kaynağından '''önbellekli'''dir ve oluşturulan içeriğin geçerli viki içinde bulunmayan bilgileri içermesi muhtemeldir.", + "smw-parameter-missing": "\"$1\" parametresi eksik.", + "smw-property-tab-usage": "Kullanım", + "smw-property-tab-profile-schema": "Profil şeması", + "smw-property-tab-redirects": "Eşanlamlılar", + "smw-property-tab-subproperties": "Alt özellikleri", + "smw-property-tab-errors": "Yanlış atamalar", + "smw-property-tab-constraint-schema": "Kısıtlama şeması", + "smw-property-tab-constraint-schema-title": "Derlenmiş kısıtlama şeması", + "smw-property-tab-specification": "... fazlası", + "smw-concept-tab-list": "Liste", + "smw-concept-tab-errors": "Hatalar", + "smw-ask-tab-result": "Sonuç", + "smw-ask-tab-extra": "Ekstra", + "smw-ask-tab-debug": "Ayıkla", + "smw-ask-tab-code": "Kod", + "smw-install-incomplete-tasks-title": "Eksik yönetim görevleri", + "smw-install-incomplete-intro": "[https://www.semantic-mediawiki.org Semantic MediaWiki]'nin {{PLURAL:$1|kurulumu|yükseltmesi}} işini bitirmek için $2 eksik veya [[Special:PendingTaskList|beklemede]] görevi var. Yeterli haklara sahip bir yönetici veya kullanıcı bunu tamamlayabilir. Bu, tutarsızlıkları önlemek için yeni veriler eklenmeden önce yapılmalıdır.", + "smw-install-incomplete-intro-note": "Tüm ilgili görevler çözüldükten sonra bu mesaj kaybolacaktır.", + "smw-pendingtasks-intro-empty": "Semantic MediaWiki ile bağlantılı olarak hiçbir görev beklemede, eksik veya olağanüstü olarak sınıflandırılmamıştır.", + "smw-pendingtasks-intro": "Bu sayfa, Semantic MediaWiki ile bağlantılı olarak bekleyen, tamamlanmamış veya bekleyen olarak sınıflandırılmış görevler hakkında bilgi sağlar.", + "smw-pendingtasks-setup-no-tasks-intro": "Yükleme (veya yükseltme) tamamlandı, şu anda bekleyen veya bekleyen görev yok.", + "smw-pendingtasks-tab-setup": "Kur", + "smw-updateentitycollation-incomplete": "[https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] ayarı yakın zamanda değiştirildi ve [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php] betiği, varlıkların güncellenmesi ve doğru sıralama alanı değerini içermesi için yürütülür.", + "smw-updateentitycountmap-incomplete": "smw_countmap alanı yeni bir sürüme eklendi ve [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php] betiği işlevlerin bu alanın içeriğine erişebilmesi için yürütülür.", + "smw-populatehashfield-incomplete": "Kurulum sırasında smw_hash alan nüfusu atlandı, [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] betiğinin yürütülmesi gerekir.", + "smw-install-incomplete-populate-hash-field": "Kurulum sırasında smw_hash alan nüfusu atlandı, [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] betiğinin yürütülmesi gerekir.", + "smw-install-incomplete-elasticstore-indexrebuild": "ElasticStore [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore varsayılan deposu] olarak seçildi, ancak uzantı [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] betiği yürütüldü, lütfen betiğini talimatlara göre çalıştırın.", + "smw-elastic-rebuildelasticindex-run-incomplete": "ElasticStore [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore varsayılan deposu] olarak seçildi, ancak uzantı [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] betiği yürütüldü, lütfen betiğini talimatlara göre çalıştırın.", + "smw-pendingtasks-setup-intro": "Semantic MediaWiki sayfasının {{PLURAL:$1|kurulum|yükseltme}}, aşağıdaki görevleri [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade/tr eksik] olarak sınıflandırdı ve bir yöneticinin (veya yeterli haklara sahip bir kullanıcının), kullanıcılar içerik oluşturmaya veya değiştirmeye devam etmeden önce bu görevleri çözmesi beklenir.", + "smw-pendingtasks-setup-tasks": "Görevler", + "smw-filter-count": "Filtre sayısı", + "smw-es-replication-check": "Çoğaltma denetimi (Elasticsearch)", + "smw-es-replication-error": "Elasticsearch çoğaltma sorunu", + "smw-es-replication-file-ingest-error": "Dosya alma sorunu", + "smw-es-replication-maintenance-mode": "Elasticsearch bakımı", + "smw-es-replication-error-missing-id": "Çoğaltma izlemesi, Elasticsearch arka ucunda \"$1\" (ID: $2) adlı makalenin eksik olduğunu buldu.", + "smw-es-replication-error-divergent-date": "Çoğaltma izlemesi, \"$1\" maddesi (Kimlik: $2) için değişiklik tarihinin bir tutarsızlık gösterdiğini tespit etti.", + "smw-es-replication-error-divergent-date-short": "Karşılaştırma için aşağıdaki tarih bilgileri kullanıldı:", + "smw-es-replication-error-divergent-date-detail": "Başvurulan değişiklik tarihi:\n*Elasticsearch: $1 \n*Veri tabanı: $2", + "smw-es-replication-error-divergent-revision": "Çoğaltma izlemesi, \"$1\" maddesi (ID: $2) için ilişkili düzeltmenin bir tutarsızlık gösterdiğini tespit etti.", + "smw-es-replication-error-divergent-revision-short": "Karşılaştırma için aşağıdaki ilişkili revizyon verileri kullanılmıştır:", + "smw-es-replication-error-divergent-revision-detail": "Kaynakça verilen ilişkili revizyon:\n*Elasticsearch: $1 \n*Veri tabanı: $2", + "smw-es-replication-error-maintenance-mode": "Elasticsearch replikasyonu şu anda kısıtlanmıştır çünkü bir [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode/tr bakım modunda] çalışmaktadır, varlıklar ve sayfalardaki değişiklikler hemen görünmez ve sorgu sonuçları güncel olmayan bilgiler içerebilir.", + "smw-es-replication-error-no-connection": "Çoğaltma izleme, Elasticsearch kümesine bağlantı kuramadığından herhangi bir denetim gerçekleştiremiyor.", + "smw-es-replication-error-bad-request-exception": "Elasticsearch bağlantı işleyicisi, çoğaltma ve arama istekleri sırasında devam eden bir sorunu belirten kötü bir istek özel durumu (\"400 çakışması http hatası\") verdi.", + "smw-es-replication-error-other-exception": "Elasticsearch bağlantı işleyicisi bir istisna attı: \"$1\".", + "smw-es-replication-error-suggestions": "Tutarsızlığı gidermek için sayfanın düzenlenmesi veya temizlenmesi önerilmektedir. Sorun devam ederse, Elasticsearch kümesinin kendisini (ayırıcı, istisnalar, disk alanı vb.) kontrol edin.", + "smw-es-replication-error-suggestions-maintenance-mode": "Bir [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild/tr dizin yeniden oluşturma] işleminin şu anda devam edip etmediğini veya refresh_interval beklenen varsayılan değere ayarlanıp ayarlanmadığını kontrol etmek için viki hizmetlisine başvurmanız önerilir.", + "smw-es-replication-error-suggestions-no-connection": "Viki hizmetlisine başvurmanız ve \"bağlantı yok\" sorununu bildirmeniz önerilir.", + "smw-es-replication-error-suggestions-exception": "Elasticsearch'ın durumu, endeksleri ve olası yanlış yapılandırma sorunları hakkında bilgi için lütfen günlükleri kontrol edin.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "Çoğaltma izlemesi, \"$1\" dosyasının, dosya alma işlemcisinin başlatılmadığını veya tamamlanmadığını belirten [[Property:File attachment|Dosya eki]] ek açıklamasının eksik olduğunu buldu.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "Ek açıklama ve dosya dizini kullanıma sunulmadan önce lütfen [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion dosya alma] işinin planlandığından ve yürütüldüğünden emin olun.", + "smw-report": "Bildir", + "smw-legend": "Gösterge", + "smw-datavalue-constraint-schema-category-invalid-type": "Açıklamalı \"$1\" şeması bir kategori için geçersiz, \"$2\" türü gerektiriyor.", + "smw-datavalue-constraint-schema-property-invalid-type": "Ek açıklamalı \"$1\" şeması bir mülk için geçersiz, \"$2\" türü gerektiriyor.", + "smw-entity-examiner-check": "Bir {{PLURAL:$1|denetçiyi}} arka planda çalıştırılıyor", + "smw-entity-examiner-indicator": "Varlık sorunu paneli", + "smw-entity-examiner-deferred-check-awaiting-response": "\"$1\" denetçisi şu anda arka uçtan yanıt bekliyor.", + "smw-entity-examiner-deferred-elastic-replication": "Elastik", + "smw-entity-examiner-deferred-constraint-error": "Kısıtlama", + "smw-entity-examiner-associated-revision-mismatch": "Revizyon", + "smw-entity-examiner-deferred-fake": "Sahte", + "smw-entity-examiner-indicator-suggestions": "Varlık incelemesinin bir parçası olarak, aşağıdaki {{PLURAL:$1|sorun|sorun}} bulundu ve {{PLURAL:$1|sorun|sorun}} dikkatle incelemeniz ve uygun {{PLURAL:$1|eylem|eylem}}.", + "smw-indicator-constraint-violation": "{{PLURAL:$1|Kısıtlama|Kısıtlama}}", + "smw-indicator-revision-mismatch": "Revizyon", + "smw-indicator-revision-mismatch-error": "[https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner İlişkilendirilmiş düzeltme] denetimi, MediaWiki'de başvurulan düzeltme ile bu varlık için Semantic MediaWiki'de ilişkilendirilen düzeltme arasında bir uyumsuzluk buldu.", + "smw-indicator-revision-mismatch-comment": "Uyumsuzluk normalde bazı işlemlerin Semantic MediaWiki'deki depolama işlemini kesintiye uğrattığını gösterir. Sunucu günlüklerini incelemeniz ve özel durumlar veya diğer hatalar olup olmadığına bakmanız önerilir.", + "smw-listingcontinuesabbrev": "devam", + "smw-showingresults": "$2. sonuçtan başlayarak {{PLURAL:$1|1 sonuç|$1 sonuç}} aşağıdadır:" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/tt-cyrl.json b/mediawiki/extensions/SemanticMediaWiki/i18n/tt-cyrl.json new file mode 100644 index 0000000..8690592 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/tt-cyrl.json @@ -0,0 +1,41 @@ +{ + "@metadata": { + "authors": [ + "Macofe", + "Ерней", + "Ильгиз", + "Ильнар" + ] + }, + "smw_viewasrdf": "RDF чыганак", + "smw_finallistconjunct": "һәм", + "smw_printername_csv": "CSV экспортлау", + "smw_printername_dsv": "DSV экспортлау", + "smw_printername_json": "JSON экспортлау", + "smw_printername_list": "Исемлек", + "smw_printername_ol": "Санау", + "smw_printername_ul": "Тамгалы исемлек", + "smw_printername_table": "Җәдвәл", + "smw_printername_broadtable": "Киң җәдвәл", + "smw_printername_template": "Калып", + "smw_printername_rdf": "RDF-экспорт", + "smw_printername_category": "Төркем", + "validator-type-class-SMWParamSource": "текст", + "smw-categories": "Төркемнәр", + "smw-special-wantedproperties-filter-label": "Сөзгеч:", + "smw_purge": "Яңарту", + "smw_ask_defaultformat": "гадәттәге", + "smw_sbv_property": "Халәте:", + "smw_sbv_value": "Аңлатмасы:", + "smw_sbv_submit": "Табу", + "browse": "Викины карап чыгу", + "smw_browselink": "Үзенчәлекләрне карап чыгу", + "smw-ui-tooltip-title-legend": "Аңлатма", + "group-smwadministrator": "Идарәчеләр (Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|идәрәче (Semantic MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:Идарәчеләр (Semantic MediaWiki)", + "smw-livepreview-loading": "Төяү бара…", + "smw-category-change-propagation-locked-error": "«$1» категориясе үзгәртелгән, һәм бәйләнгән битләр [https://www.semantic-mediawiki.org/wiki/Change_propagation үзгәрешләрне тарату] юлы белән яңартылырга тиеш. Ә хәзергә, яңарту өзелмәсен яки көйләнмәләрдә каршылыклар барлыкка килмәс өчен, яңарту тәмамланганчы категория бите үзгәрешләр өчен ябыла. Бу, [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue биремнәр чираты] зурлыгына карап, бит үзгәрү өчен ачык булганчы төрле вакыт алырга мөмкин.", + "smw-listingcontinuesabbrev": "дәвамы", + "smw-showingresults": "Түбәндә $2 № башлап {{PLURAL:$1|бер генә нәтиҗә|$1 нәтиҗә}} күрсәтелгән." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/tt-latn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/tt-latn.json new file mode 100644 index 0000000..cb98cd7 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/tt-latn.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "Don Alessandro", + "Frhdkazan" + ] + }, + "smw-categories": "Törkemnär", + "browse": "Wiki eçtälegen qaraw", + "smw-livepreview-loading": "Yökläw...", + "smw-listingcontinuesabbrev": "däwamı", + "smw-showingresults": "Asta № '''$2''' {{PLURAL:$1|başlap}} '''$1''' {{PLURAL:$1|rezultat}} kürsätelgän." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/tyv.json b/mediawiki/extensions/SemanticMediaWiki/i18n/tyv.json new file mode 100644 index 0000000..e5b9a4d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/tyv.json @@ -0,0 +1,13 @@ +{ + "@metadata": { + "authors": [ + "Agilight", + "Монгуш Салим" + ] + }, + "smw-categories": "Аңгылалдар", + "browse": "Арыннарның ниити көрүлдези", + "smw-help": "Дуза", + "smw-schema-summary-title": "Түңнел", + "smw-listingcontinuesabbrev": "(уланчы)" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ug-arab.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ug-arab.json new file mode 100644 index 0000000..bd4346a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ug-arab.json @@ -0,0 +1,25 @@ +{ + "@metadata": { + "authors": [ + "Alfredie", + "Sahran", + "Tel'et", + "Uzdil" + ] + }, + "smw-categories": "تۈرلەر", + "smw-special-property-searchform-options": "تاللانما", + "smw-special-wantedproperties-filter-label": "سۈزگۈچ:", + "smw-special-wantedproperties-filter-none": "يوق", + "smw-special-wantedproperties-filter-unapproved": "ئېتراپ قىلماسلىق", + "smw_ask_queryhead": "شەرت", + "smw_ask_printhead": "پېرىنتلاش سەپلىمىسى", + "smw-ask-result": "نەتىجە", + "smw-ask-empty": "بوش", + "smw-ask-format": "فورمات", + "browse": "ۋىكى زىيارەت", + "smw_browse_go": "كۆچۈش", + "smw-livepreview-loading": "يۈكلەۋاتىدۇ…", + "smw-listingcontinuesabbrev": "داۋاملاشتۇر", + "smw-showingresults": "تۆۋەندە '''$2''' - نەتىجىدىن باشلانغان {{PLURAL:$1|'''1''' نەتىجە|'''$1''' نەتىجە}} كۆرسىتىدۇ:" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ug-latn.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ug-latn.json new file mode 100644 index 0000000..ae06b6c --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ug-latn.json @@ -0,0 +1,10 @@ +{ + "@metadata": { + "authors": [ + "Jose77", + "Minh Nguyen", + "Vinhtantran" + ] + }, + "smw_browse_go": "Köchüsh" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/uk.json b/mediawiki/extensions/SemanticMediaWiki/i18n/uk.json new file mode 100644 index 0000000..fa98d46 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/uk.json @@ -0,0 +1,1112 @@ +{ + "@metadata": { + "authors": [ + "Ahonc", + "Andrew J.Kurbiko", + "Andriykopanytsia", + "Andygol", + "Avatar6", + "Base", + "Bunyk", + "DDPAT", + "Eduardo Addad de Oliveira", + "Eduardoaddad", + "Ice bulldog", + "KHMELNYTSKYIA", + "METROKOP228 UA", + "McDutchie", + "Movses", + "Nemo bis", + "Olvin", + "Piramidion", + "Prima klasy4na", + "Renamerr", + "Steve.rusyn", + "SteveR", + "Vlad5250", + "Ата", + "Тест", + "Юрій Булка", + "아라" + ] + }, + "smw-desc": "Робить вашу вікі доступнішою — для машин ''та'' людей ([https://www.semantic-mediawiki.org/wiki/Help:User_manual довідка в мережі])", + "smw-error": "Помилка", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Семантичну MediaWiki] встановлено й увімкнено, але вона не має належного [https://www.semantic-mediawiki.org/wiki/Help:Upgrade ключа оновлення].", + "smw-upgrade-release": "Випуск", + "smw-upgrade-progress": "Прогрес", + "smw-upgrade-progress-explain": "Приблизний час завершення оновлення важко передбачити, оскільки він залежить від розміру репозиторію даних та доступного апаратного забезпечення, і більші вікі можуть потребувати більше часу на оновлення.\n\nБудь ласка, зв'яжіться зі своїми локальними адміністраторами, щоб отримати інформацію про прогрес оновлення.", + "smw-upgrade-progress-create-tables": "Створення (чи оновлення) таблиць та індексів…", + "smw-upgrade-progress-post-creation": "Виконання завдань після створення…", + "smw-upgrade-progress-table-optimization": "Виконання оптимізації таблиць…", + "smw-upgrade-progress-supplement-jobs": "Додавання допоміжних завдань…", + "smw-upgrade-error-title": "Помилка » Семантична MediaWiki", + "smw-upgrade-error-why-title": "Чому я бачу цю сторінку?", + "smw-upgrade-error-why-explain": "Внутрішня структура бази даних Семантичної MediaWiki змінилася і потребує деякого коригування, щоб повноцінно функціювати. Цьому може бути декілька причин, серед яких:\n* Додано додаткові фіксовані властивості (необхідні додаткові налаштування таблиць)\n* Оновлення містить якісь зміни до таблиць або індекси, що роблять перехоплення обов'язковим перед отриманням доступу до даних\n* Зміни в системі зберігання чи запитів", + "smw-upgrade-error-how-title": "Як мені виправити цю помилку?", + "smw-upgrade-error-how-explain-admin": "Адміністратор (або інша особа з адміністративними правами) має запустити або [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] для Медіавікі, або скрипт обслуговування [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] для Семантичної Медіавікі.", + "smw-upgrade-error-how-explain-links": "Також ви можете проконсультуватися з такими сторінками, щоб отримати додаткову підтримку:\n* Інструкції щодо [https://www.semantic-mediawiki.org/wiki/Help:Installation встановлення]\n* Довідка щодо [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting виправлення помилок]", + "smw-extensionload-error-why-title": "Чому я бачу цю сторінку?", + "smw-extensionload-error-why-explain": "Розширення не було завантажено за допомогою enableSemantics, а натомість його було увімкнено якимсь іншим способом, на кшталт безпосереднього використання wfLoadExtension( 'SemanticMediaWiki' ).", + "smw-extensionload-error-how-title": "Як мені виправити цю помилку?", + "smw-extensionload-error-how-explain": "Щоб увімкнути розширення та уникнути проблем із деклараціями просторів назв і незавершеними конфігураціями, необхідно скористатися опцією enableSemantics, яка впевниться, щоб необхідні змінні було встановлено, перш ніж завантажити розширення через ExtensionRegistry. \n\nБудь ласка, перегляньте сторінку довідки [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics], щоб дізнатись більше.", + "smw-upgrade-maintenance-title": "Обслуговування » Семантична MediaWiki", + "smw-upgrade-maintenance-why-title": "Чому я бачу цю сторінку?", + "smw-upgrade-maintenance-note": "Система зараз саме [https://www.semantic-mediawiki.org/wiki/Help:Upgrade оновлює] розширення [https://www.semantic-mediawiki.org/ Semantic MediaWiki] разом з його репозиторієм даних, тож ми хотіли б попросити вас набратися терпіння і дочекатися завершення технічного обслуговування, перш ніж вікі стане знову доступною.", + "smw-upgrade-maintenance-explain": "Розширення намагається мінімізувати вплив технічного обслуговування і час, протягом якого система є недоступною, шляхом відстрочення більшості завдань з обслуговування на пізніше, після update.php, але спершу мають завершитися зміни, пов'язані з базою даних, аби уникнути будь-якої неузгодженості даних. До таких змін можуть належати:\n* Зміна структури таблиць, на кшталт додавання нових чи модифікація наявних полів\n* Зміна чи додавання табличних індексів\n* Виконання оптимізації таблиць (коли увімкнено)", + "smw-semantics-not-enabled": "Функціонал Семантичної MediaWiki не ввімкнено в цій вікі.", + "smw_viewasrdf": "вивід RDF", + "smw_finallistconjunct": " і", + "smw-factbox-head": "... більше про \"$1\"", + "smw-factbox-facts": "Факти", + "smw-factbox-facts-help": "Показує висловлення і факти, які були створені користувачем", + "smw-factbox-attachments": "Вкладення", + "smw-factbox-attachments-value-unknown": "Н/Д", + "smw-factbox-attachments-is-local": "Є локальним", + "smw-factbox-attachments-help": "Показує доступні вкладення", + "smw-factbox-facts-derived": "Отримані факти", + "smw-factbox-facts-derived-help": "Показує факти, які були отримані з правил, або за допомогою інших методів розсуджень", + "smw_isspecprop": "Ця властивість є спеціальною у цій вікі", + "smw-concept-cache-header": "Використання кешу", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count Кеш концептів] містить {{PLURAL:$1|'''одну''' суність|'''$1''' сутрості|'''$1''' сутростей}} ($2).", + "smw-concept-no-cache": "Немає кешу.", + "smw_concept_description": "Опис концепції «$1».", + "smw_no_concept_namespace": "Концепції можна означувати лише у просторі назв «Концепція:».", + "smw_multiple_concepts": "Кожна сторінка концепції може мати лише одне означення концепції.", + "smw_concept_cache_miss": "Концепцію «$1» неможливо використати у цей момент, оскільки налаштування цієї вікі вимагає попередньої автономної обробки. Якщо проблема не вирішиться протягом певного часу, зверніться до адміністратора сайту.", + "smw_noinvannot": "У зворотні властивості неможливо записати значення.", + "version-semantic": "Розширення Semantic", + "smw_baduri": "Використовувати адреси (URI), що мають форму «$1» не дозволяється.", + "smw_printername_count": "Результати підрахунку", + "smw_printername_csv": "Експорт у CSV", + "smw_printername_dsv": "Експорт DSV", + "smw_printername_debug": "Налагоджувальний запит (для фахівців)", + "smw_printername_embedded": "Включити вміст сторінки", + "smw_printername_json": "Експорт у JSON", + "smw_printername_list": "Список", + "smw_printername_plainlist": "Звичайний список", + "smw_printername_ol": "Нумерований список", + "smw_printername_ul": "Маркований список", + "smw_printername_table": "Таблиця", + "smw_printername_broadtable": "Широка таблиця", + "smw_printername_template": "Шаблон", + "smw_printername_templatefile": "Файл шаблону", + "smw_printername_rdf": "експорт у RDF", + "smw_printername_category": "Категорія", + "validator-type-class-SMWParamSource": "текст", + "smw-paramdesc-limit": "Максимальне число результатів", + "smw-paramdesc-offset": "Зміщення першого результату", + "smw-paramdesc-headers": "Показувати заголовки (або назви властивостей)", + "smw-paramdesc-mainlabel": "Заголовок стовпця із назвою сторінки", + "smw-paramdesc-link": "Показувати значення у вигляді посилань", + "smw-paramdesc-intro": "Текст, який показувати перед результатами запиту, якщо такі є", + "smw-paramdesc-outro": "Текст, який показувати після результатів запиту, якщо такі є", + "smw-paramdesc-default": "Текст, який показувати у випадку відсутності результатів запиту", + "smw-paramdesc-sep": "Розділювач між результатами", + "smw-paramdesc-propsep": "Розділювач між властивостями у кінцевому записі", + "smw-paramdesc-valuesep": "Розділювач між значеннями змінної для цієї властивості", + "smw-paramdesc-showsep": "Показувати роздільник у верхній частині CSV-файлу (\"sep=<значення>\")", + "smw-paramdesc-distribution": "Замість показу усіх значень, підрахувати їх частоту і показати це", + "smw-paramdesc-distributionsort": "Сортування значень розподілу за числом входжень.", + "smw-paramdesc-distributionlimit": "Обмеження розподілу значень за числом деяких значень.", + "smw-paramdesc-aggregation": "Уточніть, чого має стосуватися агрегація", + "smw-paramdesc-template": "Назва шаблону, який використовувати для виводу результатів запиту", + "smw-paramdesc-columns": "Кількість стовпців для виводу результатів запиту", + "smw-paramdesc-userparam": "Значення, що передається в кожне звертання до шаблону при використанні шаблонів", + "smw-paramdesc-class": "Додатковий клас CSS для задання списку", + "smw-paramdesc-introtemplate": "Назва шаблону, який показувати перед результатами запиту, якщо такі є", + "smw-paramdesc-outrotemplate": "Назва шаблону, який показувати після результатів запиту, якщо такі є", + "smw-paramdesc-embedformat": "Теґ HTML, який використовувати для означення заголовків", + "smw-paramdesc-embedonly": "Не показувати заголовків", + "smw-paramdesc-table-class": "Додатковий клас CSS для задання таблиці", + "smw-paramdesc-table-transpose": "Відобразити заголовки таблиці по вертикалі, а результати - по горизонталі", + "smw-paramdesc-rdfsyntax": "Який синтаксис RDF вживати", + "smw-paramdesc-csv-sep": "Вказує роздільник колонок", + "smw-paramdesc-csv-valuesep": "Вказує роздільник значень", + "smw-paramdesc-csv-merge": "Поєднати значення рядків і стовпців з ідентичним ідентифікатором суб'єкта (aka перший стовпчик)", + "smw-paramdesc-csv-bom": "Додати BOM (символ для сигнальної сутності) у верху вихідного файлу", + "smw-paramdesc-dsv-separator": "Використовувати роздільник", + "smw-paramdesc-dsv-filename": "Ім'я файлу DSV", + "smw-paramdesc-filename": "Ім'я вихідного файлу", + "smw-smwdoc-description": "Показує таблицю всіх параметрів, які можуть бути використані для вказаного формату результату разом із типовими значеннями і описами.", + "smw-smwdoc-default-no-parameter-list": "Цей результат не надає специфичні для формату параметри.", + "smw-smwdoc-par-format": "Результуючий формат для відображення параметрів документації.", + "smw-smwdoc-par-parameters": "Які параметри показувати. \"specific\" для доданих за форматом, \"base\" для доступних в усіх форматах, та \"all\" для обох.", + "smw-paramdesc-sort": "Властивість для сортування запиту за", + "smw-paramdesc-order": "Порядок сортування запиту", + "smw-paramdesc-searchlabel": "Текст для продовження пошуку", + "smw-paramdesc-named_args": "Імена аргументів, переданих в шаблон", + "smw-paramdesc-template-arguments": "Задає як іменовані аргументи передаються в шаблон", + "smw-paramdesc-import-annotation": "Додаткові анотовані дані, що мають бути скопійовані під час парсингу суб'єкта", + "smw-paramdesc-export": "Параметри експорту", + "smw-paramdesc-prettyprint": "Вивід докладного друку, який відображає додаткові відступи та символи", + "smw-paramdesc-json-unescape": "У виводі є неекрановані косі риски і багатобайтні символи Юнікоду", + "smw-paramdesc-json-type": "Тип серіалізації", + "smw-paramdesc-source": "Альтернативне джерело запиту", + "smw-paramdesc-jsonsyntax": "JSON синтаксис для використання", + "smw-printername-feed": "Канал RSS та Atom", + "smw-paramdesc-feedtype": "Тип каналу", + "smw-paramdesc-feedtitle": "Текст, який необхідно використовувати як назву каналу", + "smw-paramdesc-feeddescription": "Текст, який необхідно використовувати як опис каналу", + "smw-paramdesc-feedpagecontent": "Вміст сторінки буде відображатися з каналу", + "smw-label-feed-description": "$1 $2 канал", + "smw-paramdesc-mimetype": "Тип медіафайлу (тип MIME) для файлу на виході", + "smw_iq_disabled": "Семантичні запити було вимкнено в цій вікі.", + "smw_iq_moreresults": "... подальші результати", + "smw_parseerror": "Вказане значення — незрозуміле.", + "smw_notitle": "«$1» неможливо використати у якості назви сторінки у цій вікі.", + "smw_noproperty": "\" $1 \" не можна використовувати як ім'я властивості в цій вікі.", + "smw_wrong_namespace": "Тут дозволено лише сторінки в просторі назв «$1».", + "smw_manytypes": "Для властивості означено більше одного типу даних.", + "smw_emptystring": "Використовувати пусті рядки не дозволяється.", + "smw_notinenum": "«$1» не є у списку ($2) [[Property:Allows value|дозволених значень]] для властивості «$3».", + "smw-datavalue-constraint-error-allows-value-list": "«$1» немає в списку ($2) [[Property:Allows value|дозволених значень]] для властивості «$3».", + "smw-datavalue-constraint-error-allows-value-range": "«$1» не перебуває в межах діапазону «$2», вказаного в обмеженні [[Property:Allows value|дозволених значень]] для властивості «$3».", + "smw-constraint-error": "Проблема з обмеженням", + "smw-constraint-error-suggestions": "Будь ласка, перегляньте перелічені порушення і властивості разом із їхніми анотованими значеннями, аби впевнитись, що всі вимоги до обмежень виконано.", + "smw-constraint-error-limit": "Список міститиме максимум $1 порушень.", + "smw_noboolean": "«$1» не розпізнається як булове значення (значення «так/ні»).", + "smw_true_words": "true,t,yes,y,так,т", + "smw_false_words": "false,f,no,n,ні,н", + "smw_nofloat": "«$1» не є числом", + "smw_infinite": "Такі довгі числа, як «$1» не підтримуються.", + "smw_unitnotallowed": "«$1» не оголошена як допустима одиниця виміру цієї властивості.", + "smw_nounitsdeclared": "Для цієї властивості не оголошені одиниці вимірювання.", + "smw_novalues": "Не вказано значень.", + "smw_nodatetime": "Дата «$1» — незрозуміла.", + "smw_toomanyclosing": "«$1» зустрічається занадто багато разів.", + "smw_noclosingbrackets": "Деякі з «[[» у запиті не було закрито відповідними «]]».", + "smw_misplacedsymbol": "Символ «$1» використано у невідповідному місці.", + "smw_unexpectedpart": "Фрагмент запиту «$1» — незрозумілий. Результати можуть відрізнятись від очікуваних.", + "smw_emptysubquery": "Деякий підзапит не містить інформації про умову.", + "smw_misplacedsubquery": "Деякий підзапит був використаний у невідповідному місці.", + "smw_valuesubquery": "Підзапити не підтримуються для значень властивості «$1».", + "smw_badqueryatom": "Певна частина «[[…]]» — незрозуміла.", + "smw_propvalueproblem": "Значення властивості «$1» — незрозуміле.", + "smw_noqueryfeature": "Певна функція запиту не підтримується у цій вікі, тому ця частина запиту була пропущена ($1).", + "smw_noconjunctions": "Операція логічного «і» не підтримується у цій вікі, тому ця частина запиту була пропущена ($1).", + "smw_nodisjunctions": "Операція логічного «або» не підтримується у цій вікі, тому ця частина запиту була пропущена ($1).", + "smw_querytoolarge": "{{PLURAL:$2|Вказана умова запиту не може бути опрацьована|Вказані умови запиту не можуть бути опрацьовані}} через чинні у вікі обмеження в розмірі або глибині запиту: $1.", + "smw_notemplategiven": "Щоб цей формат запиту спрацював, потрібно вказати значення параметра «template».", + "smw_db_sparqlqueryproblem": "Не вдалося отримати результат запиту до бази даних SPARQL. Ця може бути тимчасова помилка або проблема в програмному забезпеченні бази даних.", + "smw_db_sparqlqueryincomplete": "Пошук відповіді на запит виявився занадто складним і був перерваний. Деякі результати можуть бути не показані. По можливості спробуйте спростити запит.", + "smw_type_header": "Властивості типу даних «$1»", + "smw_typearticlecount": "{{PLURAL:$1|Показується|Показуються|Показується}} $1 {{PLURAL:$1|властивість|властивості|властивостей}} цього типу даних.", + "smw_attribute_header": "Сторінки, що використовують властивість «$1»", + "smw_attributearticlecount": "{{PLURAL:$1|Показується|Показуються|Показується}} $1 {{PLURAL:$1|сторінка, що використовує|сторінки, що використовують|сторінок, що використовують}} цю властивість.", + "smw-propertylist-subproperty-header": "Підвластивості", + "smw-propertylist-redirect-header": "Синоніми", + "smw-propertylist-error-header": "Сторінки з невідповідними призначеннями", + "smw-propertylist-count": "Показано $1 {{PLURAL:$1|пов'язану сутність|пов'язані сутності|пов'язаних сутностей}}.", + "smw-propertylist-count-with-restricted-note": "Показано $1 {{PLURAL:$1|пов'язану сутність|пов'язані сутності|пов'язаних сутностей}} (доступно більше, але кількість обмежено до «$2»).", + "smw-propertylist-count-more-available": "Показано $1 {{PLURAL:$1|пов'язану сутність|пов'язані сутності|пов'язаних сутностей}} (доступно більше).", + "specialpages-group-smw_group": "Семантична MediaWiki", + "specialpages-group-smw_group-maintenance": "Обслуговування", + "specialpages-group-smw_group-properties-concepts-types": "Властивості, концепти і типи", + "specialpages-group-smw_group-search": "Перегляд і пошук", + "exportrdf": "Експорт сторінок у RDF", + "smw_exportrdf_docu": "Ця сторінка дозволяє отримати дані із сторінки у форматі RDF. Введіть назви сторінок, по одній у рядку, в текстовому полі, що знаходиться нижче.", + "smw_exportrdf_recursive": "Рекурсивно експортувати усі пов’язані сторінки. Зауважте: результат може бути об’ємним.", + "smw_exportrdf_backlinks": "Також експортувати усі сторінки, що звертаються до експортованих. Генерує RDF з можливістю навігації.", + "smw_exportrdf_lastdate": "Не експортувати сторінки, що не були змінені з часу заданого моменту в часі.", + "smw_exportrdf_submit": "Експорт", + "uriresolver": "Оброблювач URI", + "properties": "Властивості", + "smw-categories": "Категорії", + "smw_properties_docu": "Наступні властивості використовуються у цій вікі.", + "smw_property_template": "$1 із типом $2 ($3 {{PLURAL:$3|1=використання|використань}})", + "smw_propertylackspage": "Кожна властивість повинна мати сторінку, що її описує.", + "smw_propertylackstype": "Для цієї властивості не було означено типу даних (поки що використовується $1).", + "smw_propertyhardlyused": "Ця властивість використовується рушієм вікі.", + "smw-property-name-invalid": "Властивість $1 не може використовуватися (неприпустиме ім'я властивості).", + "smw-property-name-reserved": "«$1» входить у число зарезервованих імен і не повинне бути використане як властивість. Інформація про те, чому це ім'я зарезервовано, може міститися у [https://www.semantic-mediawiki.org/wiki/Help:Property_naming довідковій сторінці].", + "smw-sp-property-searchform": "Відобразити властивості, які містять:", + "smw-sp-property-searchform-inputinfo": "Введення чутливе до регістру і коли використовується для фільтрації, відображаються лише ті властивості, які відповідають умові.", + "smw-special-property-searchform": "Показати властивості, які містять:", + "smw-special-property-searchform-inputinfo": "Введені дані чутливі до регістру, і якщо їх використати для фільтрування, виведені будуть лише ті властивості, які відповідають цій умові.", + "smw-special-property-searchform-options": "Опції", + "smw-special-wantedproperties-filter-label": "Фільтр:", + "smw-special-wantedproperties-filter-none": "Немає", + "smw-special-wantedproperties-filter-unapproved": "Незатверджені", + "smw-special-wantedproperties-filter-unapproved-desc": "Опція фільтра, яка використовується у сполученні з режимом авторитету.", + "concepts": "Концепції", + "smw-special-concept-docu": "Вікі [https://www.semantic-mediawiki.org/wiki/Help:Concepts concept] можна переглянути як \"динамічну категорію\", тобто як збірку сторінок, що не створені вручну, а опрацьовані Семантичною Медіавікі на основі опису заданого запиту.", + "smw-special-concept-header": "Перелік концепцій", + "smw-special-concept-count": "{{PLURAL:$1|Наступне поняття|$1 наступні поняття|$1 наступних понять}} {{PLURAL:$1|перераховане|переховані|перераховано}}.", + "smw-special-concept-empty": "Поняття не знайдено.", + "unusedproperties": "Властивості, що не використовуються", + "smw-unusedproperties-docu": "На цій сторінці перераховані [https://www.semantic-mediawiki.org/wiki/Unused_properties невикористані властивості], які були оголошені, хоча ніякі інші сторінки їх не використовують. Для диференційованого вигляду див. спеціальні сторінки [[Special:Properties|всіх]] або [[Special:WantedProperties|потрібних властивостей]].", + "smw-unusedproperty-template": "$1 із типом даних $2", + "wantedproperties": "Потрібні властивості", + "smw-wantedproperties-docu": "На цій сторінці перелічені [https://www.semantic-mediawiki.org/wiki/Wanted_properties бажані властивості], які використовуються у вікі, але не мають сторінки опису. Диференційований показ див. на спеціальних сторінках [[Special:Properties|усіх]] або [[Special:UnusedProperties|невикористовуваних властивостей]].", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|звернення|звернення|звернень}})", + "smw-special-wantedproperties-docu": "На цій сторінці перелічені [https://www.semantic-mediawiki.org/wiki/Wanted_properties бажані властивості], які використовуються у вікі, але не мають сторінки опису. Диференційований показ див. на спеціальних сторінках [[Special:Properties|усіх]] або [[Special:UnusedProperties|невикористовуваних властивостей]].", + "smw-special-wantedproperties-template": "$1 ($2 {{PLURAL:$2|звернення|звернення|звернень}})", + "smw_purge": "Оновити", + "smw-purge-update-dependencies": "Семантична MediaWiki очищає кеш поточної сторінки через якісь застарілі залежності, які вона виявила, і які потребують оновлення.", + "smw-purge-failed": "Від Semantic MediaWiki була невдала спроба очистити сторінку", + "types": "Типи", + "smw_types_docu": "Список [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes доступних типів даних], де кожен [https://www.semantic-mediawiki.org/wiki/Help:Datatype тип] репрезентує унікальний набір атрибутів, що описують значення з точки зору характеристик зберігання й відображення, похідних від присвоєної властивості.", + "smw-special-types-no-such-type": "\"$1\" невідомий або не був указаний як правильний тип даних.", + "smw-statistics": "Семантична статистика", + "smw-statistics-cached": "Семантична статистика (кешована)", + "smw-statistics-entities-total": "Сутності (всього)", + "smw-statistics-entities-total-info": "Приблизний підрахунок рядків сутностей. Він включає властивості, поняття, та будь-які інші зареєстровані репрезентації об'єктів, які вимагають призначення ідентифікатора.", + "smw-statistics-property-instance": "{{PLURAL:$1|Значення}} властивості (всього)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|Властивість|Властивості}}]] (всього)", + "smw-statistics-property-total-info": "Всього зареєстрованих властивостей.", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|Властивість|Властивості}} (всього)", + "smw-statistics-property-used": "{{PLURAL:$1|Властивість|Властивості}} (використовується щонайменше з одним значенням)", + "smw-statistics-property-page": "{{PLURAL:$1|Властивість|Властивості}} (зареєстровано із сторінкою)", + "smw-statistics-property-page-info": "Кількість властивостей, які мають власну сторінку та опис.", + "smw-statistics-property-type": "{{PLURAL:$1|Властивість|Властивості}} (присвоєно тип даних)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|Запит|Запити}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|Запит|Запити}}]] (вбудовано, усього)", + "smw-statistics-query-format": "Формат $1", + "smw-statistics-query-size": "Розмір запиту", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|Поняття}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|Поняття}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|Підоб'єкт|Підоб'єкти}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|Підоб'єкт|Підоб'єкти}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|Тип даних|Типи даних}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|Значення властивості}} ([[Special:ProcessingErrorList|{{PLURAL:$1|неправильна анотація|неправильні анотації}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|Значення властивості}} ({{PLURAL:$1|некоректна анотація|некоректні анотації}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities {{PLURAL:$1|Застаріла сутність|Застарілі сутності}}]", + "smw-statistics-delete-count-info": "Сутностей, які було позначено на вилучення, слід позбуватися регулярно за допомогою скриптів обслуговування.", + "smw_uri_doc": "Оброблювач URI виконує [$1 «W3C TAG finding on httpRange-14»].\nЦя функція забезпечує видачу на відповідний запит репрезентації RDF (для машин) або вікісторінки (для людей).", + "ask": "Семантичний пошук", + "smw-ask-help": "Цей розділ містить посилання на деякі сторінки, де пояснюється, як використовувати синтаксис #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Обирання сторінок] описує, як обирати сторінки і будувати умови\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Оператори пошуку] перелічує оператори пошуку, включно з операторами для діапазонів і знаки підстановки\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information Відображувана інформація] виділяє використання тверджень виводу та опції форматування", + "smw_ask_sortby": "Сортувати за стовпцем (необов’язково)", + "smw_ask_ascorder": "За зростанням", + "smw_ask_descorder": "За спаданням", + "smw-ask-order-rand": "Випадково", + "smw_ask_submit": "Знайти", + "smw_ask_editquery": "Редагувати запит", + "smw_add_sortcondition": "[Додати умову сортування]", + "smw-ask-sort-add-action": "Додати умову сортування", + "smw_ask_hidequery": "Приховати запит (компактний вигляд)", + "smw_ask_help": "Довідка про запити", + "smw_ask_queryhead": "Умова", + "smw_ask_printhead": "Вибір роздруківки", + "smw_ask_printdesc": "(одна назва властивості на рядок)", + "smw_ask_format_as": "Форматувати як:", + "smw_ask_defaultformat": "за замовчуванням", + "smw_ask_otheroptions": "Інші опції", + "smw-ask-otheroptions-info": "Цей розділ містить параметри, які змінюють роздруківку заяви. Описи параметрів можна переглядати, навівши на них курсор.", + "smw-ask-otheroptions-collapsed-info": "Будь ласка, використовуйте значок \"+\", щоб переглянути всі доступні параметри", + "smw_ask_show_embed": "Показати включений код", + "smw_ask_hide_embed": "Приховати включений код", + "smw_ask_embed_instr": "Щоб вбудувати цей запит в вікісторінку, використовуйте поданий нижче код.", + "smw-ask-delete": "Вилучити", + "smw-ask-sorting": "Сортування", + "smw-ask-options": "Опції", + "smw-ask-options-sort": "Опції сортування", + "smw-ask-format-options": "Формат і опції", + "smw-ask-parameters": "Параметри", + "smw-ask-search": "Пошук", + "smw-ask-debug": "Налагодження", + "smw-ask-debug-desc": "Генерує інформацію про запит щодо налагодження", + "smw-ask-no-cache": "Відімкнути кеш запиту", + "smw-ask-no-cache-desc": "Результати без кешу запиту", + "smw-ask-result": "Результат", + "smw-ask-empty": "Очистити все", + "smw-ask-download-link-desc": "Завантажити запитувані результати у форматі $1", + "smw-ask-format": "Формат", + "smw-ask-format-selection-help": "Довідка для вибраного формату: $1.", + "smw-ask-condition-change-info": "Умову було змінено й пошукові треба запустити запит повторно, щоб вивести результати, які відповідають новим вимогам.", + "smw-ask-input-assistance": "Допомога при вводі", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Допомога з введенням] надається для полів друку, сортування та умови. Поле умови повинно мати один з таких префіксів:", + "smw-ask-condition-input-assistance-property": "p: для виклику підказок властивості (наприклад, [[p:Має ...)", + "smw-ask-condition-input-assistance-category": "c: для виклику підказок категорії", + "smw-ask-condition-input-assistance-concept": "con: для виклику підказок концепції", + "smw-ask-format-change-info": "Формат було змінено, і запит треба виконати ще раз, щоб він відповідав новим параметрам та опціям візуалізації.", + "smw-ask-format-export-info": "Обраний формат є форматом експорту, який не має візуальної репрезентації, а тому результати надаються лише як завантаження.", + "smw-ask-query-search-info": "На запит $1 було отримано відповідь із {{PLURAL:$3|1=$2 (з кешу)|$2 (з кешу)|$2}} за $4 {{PLURAL:$4|секунду|секунди|секунд}}.", + "smw-ask-extra-query-log": "Журнал запитів", + "smw-ask-extra-other": "Інше", + "searchbyproperty": "Шукати за властивістю", + "processingerrorlist": "Список помилок опрацювання", + "constrainterrorlist": "Список помилок обмежень", + "propertylabelsimilarity": "Звіт про подібність назв властивостей", + "missingredirectannotations": "Відсутні анотації перенаправлень", + "smw-processingerrorlist-intro": "Наведений список подає загальний огляд [https://www.semantic-mediawiki.org/wiki/Processing_errors помилок опрацювання], що виникли у зв'язку з [https://www.semantic-mediawiki.org/ Семантичною MediaWiki]. Рекомендується регулярно стежити за цим списком і виправляти недійсні анотації значень.", + "smw-constrainterrorlist-intro": "Наведений список подає загальний огляд [https://www.semantic-mediawiki.org/wiki/Constraint_errors помилок обмежень], що виникли у зв'язку із [https://www.semantic-mediawiki.org/ Семантичною MediaWiki]. Рекомендується регулярно стежити за цим списком і виправляти недійсні анотації значень.", + "smw-missingredirects-intro": "Вказаний розділ перелічить сторінки, які не мають анотацій [https://www.semantic-mediawiki.org/wiki/Redirects перенаправлень] у Семантичній MediaWiki (шляхом порівняння з інформацією, що зберігається в MediaWiki), а щоб відновити ті анотації, або [https://www.semantic-mediawiki.org/wiki/Help:Purge очистіть кеш] сторінки вручну, або запустіть rebuildData.php скрипт технічного обслуговування (з опцією --redirects).", + "smw-missingredirects-list": "Сторінки з відсутніми анотаціями", + "smw-missingredirects-list-intro": "Показано $1 {{PLURAL:$1|сторінку|сторінки|сторінок}} з відсутніми анотаціями перенаправлень.", + "smw-missingredirects-noresult": "Сторінок із перенаправленнями без анотацій не знайдено.", + "smw_sbv_docu": "Шукати всі сторінки, що мають вказану властивість і значення.", + "smw_sbv_novalue": "Введіть правильне значення властивості або перегляньте всі значення властивості «$1».", + "smw_sbv_displayresultfuzzy": "Список всіх сторінок, що мають властивість «$1» із значенням «$2». Оскільки було лише кілька результатів, показано також сторінки, що містять близькі значення цієї властивості.", + "smw_sbv_property": "Властивість:", + "smw_sbv_value": "Значення:", + "smw_sbv_submit": "Знайти", + "browse": "Перегляд вікі", + "smw_browselink": "Перегляд властивостей", + "smw_browse_article": "Введіть назву сторінки, з якої почати перегляд.", + "smw_browse_go": "Перейти", + "smw_browse_show_incoming": "Показати вхідні властивості", + "smw_browse_hide_incoming": "Приховати вхідні властивості", + "smw_browse_no_outgoing": "Ця сторінка не містить властивостей.", + "smw_browse_no_incoming": "На цю сторінку не посилається жодна властивість.", + "smw-browse-from-backend": "Інформація наразі отримується з бекенду.", + "smw-browse-intro": "Ця сторінка надає подробиці про тему або примірник сутності, будь ласка, введіть назву об'єкта, який слід перевірити.", + "smw-browse-invalid-subject": "Перевірка суб'єкта повернулася з помилкою «$1».", + "smw-browse-api-subject-serialization-invalid": "Суб'єкт має некоректний формат серіалізації.", + "smw-browse-js-disabled": "Є підозра, що JavaScript відключений або недоступний. Рекомендуємо використовувати браузер, де він підтримується. Інші варіанти обговорюються на сторінці параметра конфігурації [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi].", + "smw-browse-show-group": "Показати групи", + "smw-browse-hide-group": "Приховати групи", + "smw-noscript": "Ця сторінка чи дія вимагає роботи JavaScript. Будь ласка, увімкніть JavaScript у своєму браузері, або скористайтеся браузером, де він підтримується, щоб функціонал діяв і послуги надавалися відповідно до запиту. Якщо Вам потрібна додаткова підтримка, будь ласка, перегляньте сторінку довідки [https://www.semantic-mediawiki.org/wiki/Help:Noscript «Noscript»]", + "smw_inverse_label_default": "$1 з", + "smw_inverse_label_property": "Назва зворотної властивості", + "pageproperty": "Пошук властивостей сторінки", + "pendingtasklist": "Список завдань, що очікують на виконання", + "smw_pp_docu": "Введіть або сторінку та властивість, або просто властивість, щоб отримати всі задані значення.", + "smw_pp_from": "Зі сторінки:", + "smw_pp_type": "Властивість:", + "smw_pp_submit": "Знайти", + "smw-prev": "{{PLURAL:$1|попередня $1|попередні $1|попередніх $1}}", + "smw-next": "{{PLURAL:$1|наступна $1|наступні $1|наступних $1}}", + "smw_result_prev": "Попередня", + "smw_result_next": "Наступна", + "smw_result_results": "Результати", + "smw_result_noresults": "Немає результатів.", + "smwadmin": "Панель інструментів Семантичної MediaWiki", + "smw-admin-statistics-job-title": "Статистика завдань", + "smw-admin-statistics-job-docu": "Статистика завдань показує інформацію про заплановані завдання Семантичної MediaWiki, які ще не було виконано. Кількість завдань може бути дещо неточною або містити невдалі спроби. Будь ласка, перегляньте [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue посібник], щоб дізнатися подробиці.", + "smw-admin-statistics-querycache-title": "Запит на кеш", + "smw-admin-statistics-querycache-disabled": "[https://www.semantic-mediawiki.org/wiki/QueryCache QueryCache] не було увімкнено в цій вікі, а тому немає доступної статистики.", + "smw-admin-statistics-querycache-legend": "Статистика кешу повинна містити тимчасові збірні дані, а також отримані дані, зокрема: \n* «misses» — загальна кількість спроб отримати дані з кешу з недосяжними відповідями, що спричиняє примусове пряме виведення репозиторію (бази даних, потрійного сховища тощо) \n* «deletes» — як загальну кількість операцій з вилучення кешу (або через очищення кешу, або ж через залежності в запитах) \n* «hits» — містить кількість виведень кешу або із вбудованих (запити, надіслані зсередини вікісторінки), або з невбудованих (якщо увімкнено, запити надсилаються такими сторінками, як Special:Ask, чи API) джерел\n* «medianRetrievalResponseTime» — значення орієнтації середнього часу відповіді (в секундах) для кешованих чи некешованих запитів на інформацію за період часу, потрібний для процесу її накопичення \n* «noCache» позначає кількість запитів без спроб (limit=0, опція 'no-cache' тощо) для отримання результатів з кешу", + "smw-admin-statistics-section-explain": "Цей розділ надає додаткову статистику для адміністраторів.", + "smw-admin-statistics-semanticdata-overview": "Огляд", + "smw-admin-permission-missing": "Доступ до цієї сторінки було заблоковано через відсутність відповідних прав. Будь ласка, ознайомтеся зі сторінкою довідки щодо [https://www.semantic-mediawiki.org/wiki/Help:Permissions прав], щоб отримати інформацію про необхідні налаштування.", + "smw-admin-setupsuccess": "Базу даних налаштовано.", + "smw_smwadmin_return": "Повернутись до $1", + "smw_smwadmin_updatestarted": "Запущено новий процес оновлення семантичних даних.\nУсі збережені дані буде перебудовано чи відновлено за необхідності.\nЗа процесом оновлення можна стежити на цій сторінці.", + "smw_smwadmin_updatenotstarted": "Процес оновлення вже працює.\nНового запущено не буде.", + "smw_smwadmin_updatestopped": "Усі процеси оновлення було зупинено.", + "smw_smwadmin_updatenotstopped": "Щоб зупинити запущений процес оновлення, Ви маєте поставити позначку, аби засвідчити, що ви справді впевнені в цьому.", + "smw-admin-docu": "Ця сторінка допоможе при встановленні, оновленні, обслуговуванні та використанню Семантичної MediaWiki, а також забезпечує подальші адміністративні функції і завдання, так само як і статистику. Не забудьте зробити резервну копію всіх важливих даних перед запуском адміністративних функцій.", + "smw-admin-environment": "Оболонка програмного забезпечення", + "smw-admin-db": "Налаштування бази даних", + "smw-admin-db-preparation": "Триває ініціалізація таблиці, і це може зайняти трохи часу, перед тим як результати буде виведено, залежно від розміру та ймовірної оптимізації таблиці.", + "smw-admin-dbdocu": "Семантична MediaWiki вимагає своєї власної структури бази даних (і є незалежною від MediaWiki, тож не впливає на решту інсталяції MediaWiki) для зберігання семантичних даних.\nЦю функцію налаштування можна виконувати багато разів без жодної шкоди, але насправді вона необхідна лише раз — під час встановлення чи оновлення.", + "smw-admin-permissionswarn": "Якщо ця операція буде зупинена через помилки SQL, вірогідною причиною може бути відсутність необхідних прав користувача, під іменем якого вікі під'єднується до бази даних (він вказується у файлі «LocalSettings.php»). В такому випадку вам необхідно або дозволити цьому користувачу створювати та вилучати таблиці БД, або тимчасово ввести в файл «LocalSettings.php» ім'я користувача БД «root», або використати сценарій обслуговування setupStore.php, який може використовувати облікові дані адміністратора.", + "smw-admin-dbbutton": "Ініціалізація або оновлення таблиць", + "smw-admin-announce": "Заявити про Вашу вікі", + "smw-admin-announce-text": "Якщо Ваша вікі публічна, Ви можете зареєструвати її у WikiApiary, вікі з відстеження вікі.", + "smw-admin-deprecation-notice-title": "Сповіщення про застарілість", + "smw-admin-deprecation-notice-docu": "Поданий нижче розділ містить налаштування, які вже застаріли або були усунуті, але, як було виявлено, все ще є активними в цій вікі. Очікується, що будь-який майбутній випуск припинить підтримку цих конфігурацій.", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] є застарілим і буде усунутий у версії $2", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] вилучить (або замінить)\n {{PLURAL:$2|таку опцію|такі опції}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1 — застарілий параметр і його буде усунено в $2", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] замінено на [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] було замінено на $2", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|опція|опції|опцій}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 буде замінено $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] усунуто у версії $2", + "smw-admin-deprecation-notice-title-notice": "Застарілі налаштування", + "smw-admin-deprecation-notice-title-notice-explanation": "Застарілі налаштування показує ті налаштування, використання яких було виявлено в цій вікі, та які планують вилучити або змінити в майбутньому випуску.", + "smw-admin-deprecation-notice-title-replacement": "Замінені або перейменовані налаштування", + "smw-admin-deprecation-notice-title-replacement-explanation": "Замінені або перейменовані налаштування містить налаштування, які було перейменовано чи змінено в інший спосіб, а тому рекомендуємо негайно оновити їхні назви чи формат.", + "smw-admin-deprecation-notice-title-removal": "Вилучені налаштування", + "smw-admin-deprecation-notice-title-removal-explanation": "Вилучені налаштування ідентифікує ті налаштування, які було вилучено в попередньому випуску, але виявлено, що вони все ще використовуються в цій вікі.", + "smw-admin-deprecation-notice-section-legend": "Легенда", + "smw-smwadmin-refresh-title": "Відновлення і оновлення даних", + "smw_smwadmin_datarefresh": "Перебудова даних", + "smw_smwadmin_datarefreshdocu": "Можна відновити всі дані Semantic MediaWiki, базуючись на поточному стані вмісту вікі. Це можна використати при відновленні пошкоджених даних або при оновленні даних, якщо внутрішній формат змінився через оновлення програмного забезпечення. Оновлення буде виконувати сторінка за сторінкою, тому займе якийсь час. Нижче показано прогрес процесу оновлення, дається можливість запустити або зупинити оновлення (якщо ця функція не була заблокована адміністратором).", + "smw_smwadmin_datarefreshprogress": "Процес оновлення вже запущено.\nПроцес оновлення відбувається маленькими порціям із кожним відкриттям сторінки користувачами, тому він проходить повільно. Щоб швидше закінчити оновлення, можна скористатись сценарієм обслуговування runJobs.php (використовуйте опцію --maxjobs 1000 щоб обмежити число оновлень в одному пакеті).\nПриблизний стан запущеного оновлення:", + "smw_smwadmin_datarefreshbutton": "Почати оновлення даних", + "smw_smwadmin_datarefreshstop": "Зупинити це оновлення", + "smw_smwadmin_datarefreshstopconfirm": "Так, я впевнен{{GENDER:$1|ий|а}}.", + "smw-admin-job-scheduler-note": "Завдання (ті, що увімкнені) у цьому розділі виконуються через чергу завдань, щоб уникнути глухих кутів у ході їх виконання. [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue Черга завдань] відповідальна за обробку, тому критично важливо, щоб скрипт обслуговування мав відповідну спроможність runJobs.php (див. також параметр конфігурації $wgRunJobsAsync).", + "smw-admin-outdateddisposal-title": "Ліквідація застарілих сутностей", + "smw-admin-outdateddisposal-intro": "Деякі дії (зміна типу властивості, вилучення вікісторінок чи виправлення помилкових значень) спричинять появу [https://www.semantic-mediawiki.org/wiki/Outdated_entities застарілих сутностей], тому рекомендується час від часу вилучати їх, щоб звільняти простір у пов'язаній таблиці. Залежно від часового інтервалу, визначеного планувальником завдань, процес очищення може зайняти деякий час перед тим, як завдання буде виконано і завершено. Залежно від вікна часу, визначеного планувальником завдань, процес виправлення може зайняти деякий час перед тим, як завдання буде виконано й завершено.", + "smw-admin-outdateddisposal-active": "Було заплановано завдання з ліквідації застарілих сутностей.", + "smw-admin-outdateddisposal-button": "Запланувати ліквідацію", + "smw-admin-feature-disabled": "Цю функцію було вимкнено для цієї вікі. Будь ласка, перегляньте довідкову сторінку щодо налаштувань, або зв'яжіться з системним адміністратором.", + "smw-admin-propertystatistics-title": "Перебудова статистики властивості", + "smw-admin-propertystatistics-intro": "Перебудовує всю статистику використання властивостей, після чого оновлює і виправляє [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count кількість використань] властивостей.", + "smw-admin-propertystatistics-active": "Завдання з перебудови статистики властивостей заплановано.", + "smw-admin-propertystatistics-button": "Запланувати перебудову статистики", + "smw-admin-fulltext-title": "Перебудова повнотекстового пошуку", + "smw-admin-fulltext-intro": "Перебудовує пошуковий індекс із таблиць властивостей з увімкненим типом даних [https://www.semantic-mediawiki.org/wiki/Full-text повнотекстового пошуку]. Зміни до правил індексування (змінені шумові слова, новий стемер тощо) та/або заново додана або змінена таблиця потребують запуску цього завдання ще раз.", + "smw-admin-fulltext-active": "Завдання з перебудови повнотекстового пошуку заплановано.", + "smw-admin-fulltext-button": "Запланувати повнотекстову перебудову", + "smw-admin-support": "Отримання підтримки", + "smw-admin-supportdocu": "Є різні ресурси, створені, щоб допомогти Вам у разі виникнення проблем:", + "smw-admin-installfile": "Якщо у вас виникли проблеми із встановленням, насамперед подивіться поради у файлі INSTALL та на сторінці інсталяції.", + "smw-admin-smwhomepage": "Повна довідка із користування Семантичною MediaWiki знаходиться на сайті semantic-mediawiki.org.", + "smw-admin-bugsreport": "Повідомлення про помилки відсилайте через багтрекер; сторінка про надсилання звітів про помилки має деякі підказки щодо того, як написати ефективний звіт про помилку.", + "smw-admin-questions": "Якщо у вас є додаткові запитання чи побажання, приєднуйтесь до обговорень у поштовій розсилці для користувачів Семантичної MediaWiki.", + "smw-admin-other-functions": "Інші функції", + "smw-admin-statistics-extra": "Статистичні функції", + "smw-admin-statistics": "Статистика", + "smw-admin-supplementary-section-title": "Додаткові функції", + "smw-admin-supplementary-section-subtitle": "Підтримувані функції ядра", + "smw-admin-supplementary-section-intro": "У цьому розділі подано додаткові функції поза цілями підтримки, і може бути, що деякі з перелічених функцій (див. [https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions документацію]), будуть обмежені або недоступні у цій вікі.", + "smw-admin-supplementary-settings-title": "Конфігурація й налаштування", + "smw-admin-supplementary-settings-intro": "$1 показує параметри, що визначають поведінку Семантичної MediaWiki", + "smw-admin-main-title": "Семантична MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "Операційна статистика", + "smw-admin-supplementary-operational-statistics-short-title": "операційна статистика", + "smw-admin-supplementary-operational-statistics-intro": "Відображає розширений набір «$1»", + "smw-admin-supplementary-idlookup-title": "Пошук і вилучення сутності", + "smw-admin-supplementary-idlookup-short-title": "пошук і вилучення сутності", + "smw-admin-supplementary-idlookup-intro": "Підтримує просту функцію «$1»", + "smw-admin-supplementary-duplookup-title": "Перегляд дубльованих сутностей", + "smw-admin-supplementary-duplookup-intro": "$1 для знаходження записів, які класифікуються як дублікати у вибраній матриці таблиць", + "smw-admin-supplementary-duplookup-docu": "Ця сторінка перелічує записи з вибраних таблиць, що були категоризовані як [https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities дублікати]. Дублікати записів можуть з'являтися лише в рідкісних випадках (або й узагалі ніколи), потенційно спричинені передчасно завершеним оновленням чи невдалою транзакцією відкоту.", + "smw-admin-supplementary-operational-statistics-cache-title": "Статистика кешу", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1 показує вибраний набір кеш-дотичної статистику", + "smw-admin-supplementary-operational-table-statistics-title": "Статистика таблиць", + "smw-admin-supplementary-operational-table-statistics-short-title": "статистика таблиць", + "smw-admin-supplementary-operational-table-statistics-intro": "Генерує $1 для вибраного набору таблиць", + "smw-admin-supplementary-operational-table-statistics-explain": "Цей розділ містить статистику вибраних таблиць, призначену допомогти адміністраторам та кураторам даних із прийняттям виважених рішень про стан бекенду та рушія зберігання", + "smw-admin-supplementary-operational-table-statistics-legend": "Легенда описує деякі з ключів, які використовуються для статистики таблиць, і включає:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count — загальна кількість рядків у таблиці", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id — останній ідентифікатор, що зараз використовується\n* duplicate_count — кількість дублікатів, виявлених в id_table (див. також [[Special:SemanticMediaWiki/duplicate-lookup|Пошук дублікатів сутностей]]) \n* rows.rev_count — кількість рядків, які мають призначений revision_id, що свідчить про пряме посилання на вікісторінку\n* rows.smw_namespace_group_by_count — кількість агрегованих рядків для просторів назв, використаних у таблиці\n* rows.smw_proptable_hash.query_match_count — кількість підоб'єктів запитів із відповідним посиланням на таблицю\n* rows.smw_proptable_hash.query_null_count — кількість підоб'єктів запитів без посилання на таблицю (незакріплене, незв'язане посилання)", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent — відсоток термінів, які є унікальними (низький відсоток свідчить про те, що вміст таблиці та її індекс займають переважно терміни, які повторюються) \n* rows.terms_occurrence.single_occurrence_total_count — кількість термінів, які трапляються лише раз\n* rows.terms_occurrence.multi_occurrence_total_count — кількість термінів, які трапляються більш ніж один раз", + "smw-admin-supplementary-elastic-version-info": "Версія", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1 показує деталі щодо налаштування та статистику індексу", + "smw-admin-supplementary-elastic-docu": "Ця сторінка містить інформацію про налаштування, мапування, здоров'я, а також статистику індексу, пов'язані з кластером Elasticsearch, який поєднаний із Семантичною MediaWiki та її [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore].", + "smw-admin-supplementary-elastic-functions": "Підтримувані функції", + "smw-admin-supplementary-elastic-settings-title": "Налаштування (індекси)", + "smw-admin-supplementary-elastic-settings-intro": "$1 використовується Elasticsearch для керування індексами Семантичної MediaWiki", + "smw-admin-supplementary-elastic-mappings-title": "Мапування", + "smw-admin-supplementary-elastic-mappings-intro": "$1 для перелічення індексів і мапувань полів", + "smw-admin-supplementary-elastic-mappings-docu": "Ця сторінка містить подробиці щодо мапувань полів, використовуваних поточним індексом. Рекомендується прослідковувати мапування у зв'язку з index.mapping.total_fields.limit (зазначає максимальну кількість полів у індексі).", + "smw-admin-supplementary-elastic-mappings-docu-extra": "Опція property_fields стосується кількості індексованих основних полів, тоді як nested_fields стосується акумульованої кількості додаткових полів, прикріплених до основного поля для підтримки специфічних патернів структурованого пошуку.", + "smw-admin-supplementary-elastic-mappings-summary": "Підсумок", + "smw-admin-supplementary-elastic-mappings-fields": "Мапування полів", + "smw-admin-supplementary-elastic-nodes-title": "Вузли", + "smw-admin-supplementary-elastic-nodes-intro": "$1 показує статистику вузлів", + "smw-admin-supplementary-elastic-indices-title": "Індекси", + "smw-admin-supplementary-elastic-indices-intro": "$1 надає загальний огляд доступних індексів та їхню статистику", + "smw-admin-supplementary-elastic-statistics-title": "Статистика", + "smw-admin-supplementary-elastic-statistics-intro": "$1 показує статистику рівня індексів", + "smw-admin-supplementary-elastic-statistics-docu": "Ця сторінка дає загальне уявлення про статистику індексів для різних операцій, що відбуваються на рівні індексів; статистика, що виводиться, збирається шляхом праймеріз та загальних агрегацій. [https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html Сторінка довідки] містить детальний опис доступної статистики індексів.", + "smw-admin-supplementary-elastic-status-replication": "Статус реплікації", + "smw-admin-supplementary-elastic-status-last-active-replication": "Остання активна реплікація: $1", + "smw-admin-supplementary-elastic-status-refresh-interval": "Інтервал оновлення: $1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "Затримка завдань з відновлення: $1 (приблизно)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "Затримка завдань із вживання (файл): $1 (приблизно)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "Реплікацію заблоковано: $1 (перебудова у процесі)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "Моніторинг реплікації (активно): $1", + "smw-admin-supplementary-elastic-replication-header-title": "Статус реплікації", + "smw-admin-supplementary-elastic-replication-function-title": "Реплікація", + "smw-admin-supplementary-elastic-replication-intro": "$1 показує інформацію про невдалі реплікації", + "smw-admin-supplementary-elastic-replication-docu": "Ця сторінка надає інформацію про [https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring статус реплікації] сутностей, щодо яких за допомогою кластера Elasticsearch було повідомлено про наявність проблем. Рекомендується переглянути перелічені сутності та очистити кеш контенту для того, аби підтвердити, що проблема мала тимчасовий характер.", + "smw-admin-supplementary-elastic-replication-files-docu": "Слід зазначити, що для списку файлів необхідно спершу виконати завдання із [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion поглинання файлів] і дочекатися завершення цього процесу.", + "smw-admin-supplementary-elastic-replication-files": "Файли", + "smw-admin-supplementary-elastic-replication-pages": "Сторінки", + "smw-admin-supplementary-elastic-endpoints": "Кінцеві точки", + "smw-admin-supplementary-elastic-config": "Конфігурації", + "smw-admin-supplementary-elastic-no-connection": "Ця вікі наразі '''не може''' встановити зв'язок із кластером Elasticsearch; будь ласка, зв'яжіться з адміністратором цієї вікі, щоб дослідити причину проблеми, оскільки ця проблема піддає сумніву спроможність системи до індексування й роботи із запитами.", + "smw-list-count": "Список містить $1 {{PLURAL:$1|запис|записи|записів}}.", + "smw-property-label-uniqueness": "Назва «$1» збігається принаймні з одним іншим представленням властивості. Будь ласка, проконсультуйтеся зі [https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness сторінкою довідки], щоб дізнатись, як вирішити цю проблему.", + "smw-property-label-similarity-title": "Звіт про подібність назв властивостей", + "smw-property-label-similarity-intro": "$1 обчислює подібності наявних назв властивостей", + "smw-property-label-similarity-threshold": "Поріг:", + "smw-property-label-similarity-type": "Показувати ідентифікатор типу", + "smw-property-label-similarity-noresult": "Для вибраних опцій не знайдено жодних результатів.", + "smw-property-label-similarity-docu": "Ця сторінка порівнює і звітує про [https://www.semantic-mediawiki.org/wiki/Property_similarity синтаксичну відстань] (не плутати з семантичною або лексичною подібністю) між двома назвами властивостей і повідомляє про них, якщо вони перетинають поріг. Звіт може допомогти відфільтрувати властивості, які мають помилки у назві або є еквівалентними і репрезентують той же концепт (див. спеціальну сторінку [[Special:Properties|властивостей]], що допомагає прояснити концепт і використання властивостей, отриманих у звіті). Поріг можна налаштувати, щоб розширити або звузити відстань, яка використовується для наближеного співставлення. [[Property:$1|$1]] використовується для виключення властивостей з аналізу.", + "smw-admin-operational-statistics": "Ця сторінка містить операційну статистику, зібрану в або з функцій, пов'язаних із Семантичною MediaWiki. Розширений список статистичних даних, специфічних для вікі, можна переглянути [[Special:Statistics|тут]].", + "smw_adminlinks_datastructure": "Структура даних", + "smw_adminlinks_displayingdata": "Відображення даних", + "smw_adminlinks_inlinequerieshelp": "Довідка із вбудованих запитів", + "smw-page-indicator-usage-count": "Приблизний [https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count підрахунок використання]: {{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "Властивість, визначена {{PLURAL:$1|користувачем|системою}}", + "smw-property-indicator-last-count-update": "Приблизна кількість використань\nВостаннє оновлено: $1", + "smw-concept-indicator-cache-update": "Кешована кількість\nВостаннє оновлено: $1", + "smw-createproperty-isproperty": "Це властивість типу $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|1=Дозволене значення для цієї властивості є|Дозволені значення значення для цієї властивості є}}:", + "smw-paramdesc-category-delim": "Розділювач", + "smw-paramdesc-category-template": "Шаблон для форматування елементів із", + "smw-paramdesc-category-userparam": "Параметр, який передається в шаблон", + "smw-info-par-message": "Повідомлення для відображення.", + "smw-info-par-icon": "Значок, щоб показати \"info\" або \"warning\".", + "prefs-smw": "Семантична MediaWiki", + "prefs-general-options": "Загальні опції", + "prefs-extended-search-options": "Розширений пошук", + "prefs-ask-options": "Семантичний пошук", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Семантична MediaWiki] та пов'язані розширення забезпечують можливість індивідуальних налаштувань для групи обраних функцій. Список індивідуальних налаштувань з їхнім описом та характеристикою доступний на цій [http://semantic-mediawiki.org/wiki/Help:User_preferences сторінці довідки].", + "smw-prefs-ask-options-tooltip-display": "Показувати текст параметра як інформаційну підказку на спеціальній сторінці [[Special:Ask|формулювання запиту]] #ask", + "smw-prefs-ask-options-compact-view-basic": "Увімкнути базовий компактний режим перегляду", + "smw-prefs-help-ask-options-compact-view-basic": "Якщо увімкнено, показує зменшений набір посилань у компактному режимі перегляду Special:Ask.", + "smw-prefs-general-options-time-correction": "Увімкнути коригування часу для спеціальних сторінок за допомогою локального налаштування [[Special:Preferences#mw-prefsection-rendering|часового зміщення]]", + "smw-prefs-general-options-jobqueue-watchlist": "Показувати на моїй персональній панелі список спостереження за чергою завдань", + "smw-prefs-help-general-options-jobqueue-watchlist": "Якщо увімкнено, показує [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist список] обраних завдань, що очікують своєї черги, разом із приблизними розмірами черги.", + "smw-prefs-general-options-disable-editpage-info": "Вимкнути вступний текст на сторінці редагування", + "smw-prefs-general-options-disable-search-info": "Вимкнути довідкову інформацію про синтаксис на стандартній сторінці пошуку", + "smw-prefs-general-options-suggester-textinput": "Увімкнути підтримку вводу для семантичних сутностей", + "smw-prefs-help-general-options-suggester-textinput": "Якщо увімкнено, дає змогу використовувати [https://www.semantic-mediawiki.org/wiki/Help:Input_assistance підтримку вводу] для пошуку властивостей, концептів та категорій у контексті введеного пошукового запиту.", + "smw-ui-tooltip-title-property": "Властивість", + "smw-ui-tooltip-title-quantity": "Конверсія одиниць", + "smw-ui-tooltip-title-info": "Інформація", + "smw-ui-tooltip-title-service": "Службове посилання", + "smw-ui-tooltip-title-warning": "Попередження", + "smw-ui-tooltip-title-error": "Помилка", + "smw-ui-tooltip-title-parameter": "Параметр", + "smw-ui-tooltip-title-event": "Подія", + "smw-ui-tooltip-title-note": "Примітка", + "smw-ui-tooltip-title-legend": "Легенда", + "smw-ui-tooltip-title-reference": "Посилання на джерело", + "smw_unknowntype": "Тип \"$1\" для цієї властивості некоректний", + "smw-concept-cache-text": "Поняття має $1 {{PLURAL:$1|сторінку|сторінки|сторінок}}, і востаннє було оновлено $3, $2.", + "smw_concept_header": "Сторінки, що належать до концепції «$1»", + "smw_conceptarticlecount": "{{PLURAL:$1|1=Показана|Показані}} нижче $1 {{PLURAL:$1|сторінка|сторінки|сторінок}}.", + "smw-qp-empty-data": "Запитані дані не можуть відображатися через деякі недостатні критерії відбору.", + "right-smw-admin": "Доступ до завдань адміністрування (Семантична MediaWiki)", + "right-smw-patternedit": "Доступ до редагування для обслуговування дозволених регулярних виразів та шаблонів (Семантична MediaWiki)", + "right-smw-pageedit": "Доступ до редагувань сторінок з анотацією Is edit protected (Семантична MediaWiki)", + "right-smw-schemaedit": "Редагування [https://www.semantic-mediawiki.org/wiki/Help:Schema сторінок схеми] (Семантична MediaWiki)", + "right-smw-viewjobqueuewatchlist": "Доступ до функції [https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist списку спостереження] за чергою завдань (Семантична MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "Доступ до інформації про невідповідність версії, пов'язаної із сутністю (Семантична MediaWiki)", + "right-smw-vieweditpageinfo": "Перегляд [https://www.semantic-mediawiki.org/wiki/Help:Edit_help довідку з редагування] (Semantic MediaWiki)", + "restriction-level-smw-pageedit": "захищено (лише прийнятні користувачі)", + "action-smw-patternedit": "редагування регулярних виразів, що використовуються Семантичною MediaWiki", + "action-smw-pageedit": "редагування сторінок з анотацією Is edit protected (Семантична MediaWiki)", + "group-smwadministrator": "Адміністратори (Семантична MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|адміністратор (Семантична MediaWiki)|адміністраторка (Семантична MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:Адміністратори (Семантична MediaWiki)", + "group-smwcurator": "Куратори (Семантична MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|куратор (Семантична MediaWiki)|кураторка (Семантична MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:Куратори (Семантична MediaWiki)", + "group-smweditor": "Редактори (Semantic MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|учасник (Semantic MediaWiki)|учасниця (Semantic MediaWiki)}}", + "grouppage-smweditor": "{{ns:project}}:Учасники (Semantic MediaWiki)", + "action-smw-admin": "доступ до завдань адміністрування Семантичної MediaWiki", + "action-smw-ruleedit": "редагувати сторінки правил (Семантична MediaWiki)", + "smw-property-namespace-disabled": "[https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks Простір назв] цієї властивості зараз вимкнений, тому неможливо задекларувати тип, чи інші специфічні характеристики цієї властивості.", + "smw-property-predefined-default": "«$1» — попередньо визначена властивість типу $2.", + "smw-property-predefined-common": "Це властивість є попередньо розгорнутою (також відома як [https://www.semantic-mediawiki.org/wiki/Help:Special_properties спеціальна властивість]) і несе додаткові адміністративні привілеї, але може використовуватися, як будь-яка інша [https://www.semantic-mediawiki.org/wiki/Property визначена користувачем властивість].", + "smw-property-predefined-ask": "«$1» — попередньо визначена властивість, яка представляє метаінформацію (у вигляді [https://www.semantic-mediawiki.org/wiki/Subobject підоб'єкта]) про індивідуальні запити, і забезпечується [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-asksi": "«$1» — попередньо визначена властивість, яка збирає ряд умов, використаних у запиті, і забезпечується [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-askde": "«$1» — попередньо визначена властивість, яка інформує про глибину запиту, і забезпечується [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-long-askde": "Це — числове значення, обчислене на основі гніздування підзапитів, ланцюжків властивостей, і доступних елементів опису із виконанням запиту, що обмежується параметром конфігурації [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth].", + "smw-property-predefined-askpa": "«$1» — це попередньо визначена властивість, що описує параметри, які впливають на результат запиту, і забезпечується [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-long-askpa": "Це частина колекції властивостей, які визначають [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler профіль запиту].", + "smw-sp-properties-docu": "На цій сторінці перелічено [https://www.semantic-mediawiki.org/wiki/Property властивості], які доступні для цієї вікі, та їх використання. Для найсвіжішої статистики рекомендується, щоб скрипт [https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics статистики властивості] запускався регулярно. Для диференційованого перегляду почитайте спеціальну сторінку [[Special:UnusedProperties|невикористані]] або [[Special:WantedProperties|бажані властивості]].", + "smw-sp-properties-cache-info": "Перераховані дані отримані з [https://www.semantic-mediawiki.org/wiki/Caching кеш], і востаннє оновлені $1.", + "smw-sp-properties-header-label": "Список властивостей", + "smw-admin-settings-docu": "Відображає список всіх стандартних і локалізованих налаштувань, які мають стосунок до середовища Семантичної MediaWiki. За детальною інформацією про окремі параметри зверніться до сторінки довідки щодо [https://www.semantic-mediawiki.org/wiki/Help:Configuration налаштувань].", + "smw-sp-admin-settings-button": "Створити список налаштувань", + "smw-admin-idlookup-title": "Пошук", + "smw-admin-idlookup-docu": "Цей розділ показує технічні подробиці про окрему сутність (вікісторінку, підоб'єкт, властивість тощо) в Семантичній MediaWiki. Введені дані можуть бути числовим ідентифікатором або рядковим значенням, відповідно до поля пошуку, проте будь-яке посилання на ідентифікатор стосується Семантичної MediaWiki, а не ідентифікатора версії чи сторінки в MediaWiki.", + "smw-admin-iddispose-title": "Ліквідація", + "smw-admin-iddispose-docu": "Зверніть увагу, що операція з ліквідації не обмежена і призведе до вилучення ідентифікатора внутрішнього об'єкта з рушія бази даних після підтвердження. Будь ласка, виконуйте цю дію '''обережно''' і лише після того, як ознайомитеся з [https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal документацією].", + "smw-admin-iddispose-done": "ID «$1» вилучено з бекенду бази даних.", + "smw-admin-iddispose-references": "Ідентифікатор \"$1\" {{PLURAL:$2|не має активних посилань|має щонайменше одне активне посилання}}:", + "smw-admin-iddispose-references-multiple": "Список збігів із принаймні одним активним записом посилання.", + "smw-admin-iddispose-no-references": "Пошук не зміг зіставити \"$1\" з елементом таблиці.", + "smw-admin-idlookup-input": "Пошук:", + "smw-admin-objectid": "Ідентифікатор:", + "smw-admin-tab-general": "Огляд", + "smw-admin-tab-notices": "Сповіщення про застарілість", + "smw-admin-tab-maintenance": "Обслуговування", + "smw-admin-tab-supplement": "Додаткові функції", + "smw-admin-tab-registry": "Реєстр", + "smw-admin-tab-alerts": "Звістки", + "smw-admin-alerts-tab-deprecationnotices": "Сповіщення про застарілість", + "smw-admin-alerts-tab-maintenancealerts": "Звістки щодо технічного обслуговування", + "smw-admin-alerts-section-intro": "Цей розділ показує звістки і сповіщення, пов'язані з налаштуваннями, операціями та іншими типами активності, які було класифіковано як такі, що потребують уваги адміністратора чи користувача з відповідними правами.", + "smw-admin-maintenancealerts-section-intro": "Підняті у вказаних звістках питання слід вирішити, і навіть якщо вони не є істотними, очікується, що це допоможе покращити процес технічного обслуговування системи й операцій у ній.", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "Оптимізація таблиць", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "Система виявила, що остання [https://www.semantic-mediawiki.org/wiki/Table_optimization оптимізація таблиць] відбулася $2 {{PLURAL:$2|день тому|дні тому|днів тому}} (запис від $1), що перевищує допустимий поріг обслуговування, який становить $3 {{PLURAL:$3|день|дні|днів}}. Як зазначено в документації, запуски оптимізації дозволять планувальникові запитів приймати кращі рішення про запити, а тому рекомендовано запускати оптимізацію таблиць регулярно.", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "Застарілі сутності", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "Система нарахувала $1 [https://www.semantic-mediawiki.org/wiki/Outdated_entities застарілих сутностей] і досягла критичного рівня нездійснення обслуговування, перевищивши допустимий поріг, який становить $2. Рекомендується запустити скрипт обслуговування [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php].", + "smw-admin-maintenancealerts-invalidentities-alert-title": "Помилкові сутності", + "smw-admin-maintenancealerts-invalidentities-alert": "Система пов'язала $1 [https://www.semantic-mediawiki.org/wiki/Invalid_entities {{PLURAL:$1|сутність|сутності}}] з [https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace простором назв, що не підтримується] тому рекомендується запустити наступний із скриптів обслуговування: [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] або [https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php].", + "smw-admin-deprecation-notice-section": "Семантична MediaWiki", + "smw-admin-configutation-tab-settings": "Налаштування", + "smw-admin-configutation-tab-namespaces": "Простори назв", + "smw-admin-configutation-tab-schematypes": "Типи схем", + "smw-admin-maintenance-tab-tasks": "Завдання", + "smw-admin-maintenance-tab-scripts": "Скрипти обслуговування", + "smw-admin-maintenance-no-description": "Немає опису.", + "smw-admin-maintenance-script-section-title": "Список доступних скриптів обслуговування", + "smw-admin-maintenance-script-section-intro": "Подані скрипти обслуговування вимагають прав адміністратора й доступу до командного рядка, щоб можна було виконувати перелічені скрипти.", + "smw-admin-maintenance-script-description-dumprdf": "RDF-експорт існуючих трійок.", + "smw-admin-maintenance-script-description-rebuildconceptcache": "Цей скрипт використовується для керування кешем концептів для Семантичної вікі, де він може створювати, вилучити й оновлювати вибраний кеш.", + "smw-admin-maintenance-script-description-rebuilddata": "Відтворює всі семантичні дані в базі даних шляхом швидкого аналізу всіх сторінок, які можуть мати семантичні дані.", + "smw-admin-maintenance-script-description-rebuildelasticindex": "Відбудовує індекс Elasticsearch (лише для інсталяцій, які використовують ElasticStore) шляхом швидкого аналізу всіх сутностей, які мають семантичні дані.", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "Знайти сутності, яких бракує в Elasticsearch (лише для тих інсталяцій, які використовують ElasticStore) і запланувати відповідні завдання із оновлення.", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "Відбудовує індекс повнотекстового пошуку SQLStore (для інсталяцій, у яких це налаштування увімкнено).", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "Відбудовує статистику використання для всіх сутностей властивостей.", + "smw-admin-maintenance-script-description-removeduplicateentities": "Вилучає дублікати сутностей, виявлені у вибраних таблицях, які не мають активних посилань на джерела.", + "smw-admin-maintenance-script-description-setupstore": "Встановлює бекенд зберігання та запитів, як це визначено в LocalSettings.php.", + "smw-admin-maintenance-script-description-updateentitycollation": "Оновлює поле smw_sort у SQLStore (відповідно до налаштування [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation]).", + "smw-admin-maintenance-script-description-populatehashfield": "Заповнює поле smw_hash для рядків, які не мають відповідного значення.", + "smw-admin-maintenance-script-description-purgeentitycache": "Записи очищення кешу для відомих сутностей та їх пов'язаних даних.", + "smw-admin-maintenance-script-description-updatequerydependencies": "Оновити запити і залежності запитів (див. налаштування [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore]).", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "Позбутися застарілих посилань на сутності та запити.", + "smw-admin-maintenance-script-description-runimport": "Заповнити та імпортувати автоматично виявлений контент із [https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs].", + "smw-admin-maintenance-script-section-update": "Cкрипти оновлення", + "smw-admin-maintenance-script-section-rebuild": "Скрипти перебудови", + "smw-livepreview-loading": "Завантаження…", + "smw-sp-searchbyproperty-description": "На цій сторінці розміщено простий [https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces інтерфейс перегляду] для пошуку сутностей, описаних властивістю й іменним значенням. До інших доступних пошукових інтерфейсів належать [[Special:PageProperty|пошук властивостей сторінки]] та [[Special:Ask|майстер запитів ask]].", + "smw-sp-searchbyproperty-resultlist-header": "Список результатів", + "smw-sp-searchbyproperty-nonvaluequery": "Список значень, яким призначена властивість «$1».", + "smw-sp-searchbyproperty-valuequery": "Список сторінок, що мають властивість «$1» із анотованим значенням «$2».", + "smw-datavalue-number-textnotallowed": "«$1» не може бути присвоєно заявленому типу числа типу зі значенням $2.", + "smw-datavalue-number-nullnotallowed": "«$1» повернув значення «NULL», яке не дозволене в якості числа.", + "smw-editpage-annotation-enabled": "Ця сторінка підтримує семантичні анотації в тексті (e.g. \"[[Is specified as::World Heritage Site]]\") для побудови структурованого контенту, у який можна робити запити, що забезпечується Семантичною Semantic MediaWiki. Для комплексного опису, як використовувати анотації або парсерну функцію ask, будь ласка, відвідайте сторінки [https://www.semantic-mediawiki.org/wiki/Help:Getting_started початку роботи], [https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation анотації в тексті] та довідкову сторінку [https://www.semantic-mediawiki.org/wiki/Help:Inline_queries рядкових запитів].", + "smw-editpage-annotation-disabled": "На цій сторінці не можливі семантичні анотації в тексті через обмеження простору назв. Деталі щодо того, як дозволити простір назв, можна знайти на довідковій сторінці [https://www.semantic-mediawiki.org/wiki/Help:Configuration конфігурації].", + "smw-editpage-property-annotation-enabled": "Цю властивість можна розширити з допомогою семантичних анотацій для вказання типу даних (e.g. \"[[Has type::Page]]\") або інших підтримуваних тверджень (e.g. \"[[Subproperty of::dc:date]]\"). Опис, як розширити цю сторінки, див на сторінці довідки про [https://www.semantic-mediawiki.org/wiki/Help:Property_declaration заявлення властивості] або [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes список доступних типів даних].", + "smw-editpage-property-annotation-disabled": "Цю властивість не можна розширити анотацією типу даних (e.g. \"[[Has type::Page]]\"), оскільки вона уже попередньо визначена (див. детальнішу інформацію на довідковій сторінці про [https://www.semantic-mediawiki.org/wiki/Help:Special_properties спеціальні властивості]).", + "smw-editpage-concept-annotation-enabled": "Цей концепт можна розширити з використанням парсерної функції #concept. Опис, як використовувати #concept, див. на довідковій сторінці про [https://www.semantic-mediawiki.org/wiki/Help:Concepts концепт].", + "smw-search-syntax-support": "Пошукові запити підтримують [https://www.semantic-mediawiki.org/wiki/Help:Semantic_search синтаксис семантичних запитів] для пошуку результатів з використанням Семантичної MediaWiki.", + "smw-search-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Асистента вводу] також увімкнено для полегшення попереднього вибору доступних властивостей і категорій.", + "smw-search-help-intro": "Введення [[ ... ]] повідомить процесорові вводу, що він має скористатися бекендом пошуку Семантичної MediaWiki. Слід зауважити, що поєднання [[ ... ]] з неструктурованим текстовим пошуком, таке як [[ ... ]] OR Lorem ipsum не підтримується.", + "smw-search-help-structured": "Структурований пошук:\n\n*[[Category:Lorem ipsum]], [[Has number::123]] (як [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context фільтрований контекст])\n\n*[[Has text::~*lorem*]] (із [https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context контекстом запиту])", + "smw-search-help-proximity": "Приблизний пошук (коли властивість невідома, доступно '''лише''' для тих бекендів, які забезпечують інтеграцію повнотекстового пошуку):\n\n*[[in:lorem ipsum]] (пошук «lorem» та «ipsum» у всіх індексованих документах)\n\n* [[phrase:lorem ipsum]] (пошук збігів «lorem ipsum» як цілісної фрази)", + "smw-search-help-ask": "Подані посилання пояснять, як користуватися синтаксисом #ask.\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages Вибір сторінок] — описує, як вибирати сторінки й будувати умови\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators Пошукові оператори] — перелічує доступні пошукові оператори, включно з тими, що використовуються для пошуку в діапазоні, а також запитами з використанням пошукових шаблонів (wildcards)", + "smw-search-input": "Введення тексту й пошук", + "smw-search-help-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance Підтримка вводу] надається для поля вводу і вимагає використання одного з таких префіксів:\n\n*p: для увімкнення пропозицій властивостей (напр., [[p:Has ...)\n\n*c: для увімкнення пропозицій категорій\n\n*con: для увімкнення пропозицій концептів", + "smw-search-syntax": "Синтаксис", + "smw-search-profile": "Додатково", + "smw-search-profile-tooltip": "Функції пошуку у зв'язку із Семантичною MediaWiki", + "smw-search-profile-sort-best": "Найкращий збіг", + "smw-search-profile-sort-recent": "Найновіші", + "smw-search-profile-sort-title": "Назва", + "smw-search-profile-extended-help-intro": "[https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile Розширений профііль] спеціальної сторінки Special:Search надає доступ до пошукових функцій, специфчних для Семантичної MediaWiki та її підтримуваного бекенду запитів.", + "smw-search-profile-extended-help-sort": "Встановлює налаштування сортування для показу результатів:", + "smw-search-profile-extended-help-sort-title": "* «Назва» використовуватиме назву сторінки (чи назву, яку використовується для показу) як критерій сортування", + "smw-search-profile-extended-help-sort-recent": "* «Найновіші» покаже спершу сутності, які недавно хтось змінював (підоб'єктні сутності буде приховано, оскільки вони не анотуються за допомогою [[Property:Modification date|дати редагування]])", + "smw-search-profile-extended-help-sort-best": "* «Найкращий збіг» сортуватиме сутності за [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy відповідністю] на основі оцінок, які надає бекенд", + "smw-search-profile-extended-help-form": "Форми надаються (якщо обслуговуються) для порівняння специфічних випадків використання шляхом розкриття різних полів властивостей та значень для звуження процесу вводу та полегшення для користувачів процесу подання пошукового запиту (див. $1).", + "smw-search-profile-extended-help-namespace": "Поле вибору простору назв буде приховано, коли буде обрано форму, але його можна показати за допомогою кнопки «показати/сховати».", + "smw-search-profile-extended-help-search-syntax": "Поле пошуку підтримує синтаксис функції парсера #ask для семантичного пошуку. Корисні вирази включають:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: для пошуку будь-чого, що містить «...» і є особливо корисним, коли контекст пошуку чи залучені властивості невідомі (напр., in:(lorem && ipsum) є еквівалентним [[~~*lorem*]] && [[~~*ipsum*]]).", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: для пошуку будь-чого, що містить «...» у точно такому ж порядку", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: Для порівняння будь-якої сутності з властивістю «...» (напр., has:(Foo && Bar) є еквівалентним [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: для уникнення збігів із будь-якими сутностями, що містять «...»", + "smw-search-profile-extended-help-search-syntax-prefix": "* Доступні й визначені також додаткові, нестандартні префікси, на кшталт: $1", + "smw-search-profile-extended-help-search-syntax-reserved": "* Деякі вирази зарезервовані, наприклад: $1", + "smw-search-profile-extended-help-search-syntax-note": "''Деякі з перелічених операцій корисні лише в поєднанні з увімкненим повнотекстовим індексом або з ElasticStore.''", + "smw-search-profile-extended-help-query": "Використано $1 як запит.", + "smw-search-profile-extended-help-query-link": "Детальніше, будь ласка, дивіться на $1.", + "smw-search-profile-extended-help-find-forms": "доступні форми", + "smw-search-profile-extended-section-sort": "Сортувати за", + "smw-search-profile-extended-section-form": "Форми", + "smw-search-profile-extended-section-search-syntax": "Пошуковий термін", + "smw-search-profile-extended-section-namespace": "Простір назв", + "smw-search-profile-extended-section-query": "Запит", + "smw-search-profile-link-caption-query": "конструктор запитів", + "smw-search-show": "Показати", + "smw-search-hide": "Приховати", + "log-name-smw": "Журнал Семантичної MediaWiki", + "log-show-hide-smw": "$1 журнал Семантичної MediaWiki", + "logeventslist-smw-log": "Журнал Семантичної MediaWiki", + "log-description-smw": "Діяльність щодо [https://www.semantic-mediawiki.org/wiki/Help:Logging увімкнених типів подій], яку реєструє Семантична MediaWiki та її компоненти.", + "logentry-smw-maintenance": "Події, пов'язані з підтримкою, що відбулися у Семантичній MediaWiki", + "smw-datavalue-import-unknown-namespace": "Простір назв імпорту «$1» невідомий. Будь ласка, впевніться, що деталі імпорту OWL доступні через [[MediaWiki:Smw import $1]]", + "smw-datavalue-import-missing-namespace-uri": "Не вдалося знайти URI простору назв «$1» в [[MediaWiki:Smw import $1|імпорті $1]].", + "smw-datavalue-import-missing-type": "Не було знайдено визначення типу для «$1» в [[MediaWiki:Smw import $2|імпорті $2]].", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|Імпорт $1]]", + "smw-datavalue-import-invalid-value": "«$1» не є дійсним форматом і має складатися з \"простір назв\":\"ідентифікатор\" (e.g. \"foaf:name\").", + "smw-datavalue-import-invalid-format": "Очікувалося, що рядок «$1» мав бути поділеним на чотири частини, але формат виявився незрозумілим.", + "smw-property-predefined-impo": "«$1» — попередньо визначена властивість, яка описує зв'язок з [https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary імпортованим словником], і забезпечується [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-type": "«$1» — попередньо визначена властивість, яка описує [[Special:Types|тип даних]] властивості, і забезпечується [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-sobj": "«$1» — попередньо визначена властивість, яка репрезентує побудову [https://www.semantic-mediawiki.org/wiki/Help:Container контейнера], що забезпечується [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-sobj": "Контейнер дозволяє акумулювати призначення властивість-значення подібно до нормальної вікісторінки, але в межах іншого простору властивості, будучи пов'язаним з вбудовуваним об'єктом.", + "smw-property-predefined-errp": "«$1» — це попередньо визначена властивість що відслідковує помилки вводу для анотацій нерегулярних значень і забезпечується [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-long-errp": "В більшості випадків спричинено невідповідністю типу або обмеженням [[Property:Allows value|значення]].", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value «$1»] — попередньо визначена властивість, яка може визначати список дозволених значень, щоб обмежувати призначення значень для властивості, і забезпечується [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki].", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list «$1»] — попередньо визначена властивість, яка може зазначати посилання на список, який містить допустимі значення для обмеження призначень значень для властивості, і забезпечується [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-datavalue-property-restricted-annotation-use": "Властивість «$1» має особливе призначення і не може застосовуватися користувачем як властивість анотації.", + "smw-datavalue-property-restricted-declarative-use": "Властивість «$1» — декларативна, і може використовуватись тільки на сторінках властивостей або категорій.", + "smw-datavalue-property-create-restriction": "Властивість «$1» не існує, а користувач не має права «$2» (див. [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode режим авторитету]) для створення чи анотування значень із незатвердженою властивістю.", + "smw-datavalue-property-invalid-character": "«$1» містить символ «$2» як частину назви властивості, і тому класифікована як недійсна.", + "smw-datavalue-property-invalid-chain": "Використання «$1» як ланцюжка властивостей протягом процесу анотації заборонене.", + "smw-datavalue-restricted-use": "Значення даних «$1» було позначено для обмеженого використання.", + "smw-datavalue-invalid-number": "«$1» не може бути інтерпретовано як число.", + "smw-query-condition-circular": "Можливу циклічну умову було виявлено у «$1».", + "smw-query-condition-empty": "В описі запиту існує порожня умова.", + "smw-types-list": "Список типів даних", + "smw-types-default": "«$1» є вбудованим типом даних.", + "smw-types-help": "Подальшу інформацію і приклади можна знайти на цій [https://www.semantic-mediawiki.org/wiki/Help:Type_$1 сторінці довідки].", + "smw-type-anu": "«$1» — це варіант типу даних [[Special:Types/URL|URL]] і здебільшого використовується для експортної декларації ''owl:AnnotationProperty''.", + "smw-type-boo": "«$1» — це звичайний тип даних для опису значення істина/хиба.", + "smw-type-cod": "«$1» — це варіант типу даних [[Special:Types/Text|Текст]] для використання у технічних текстах довільної довжини, таких як списки вихідного коду.", + "smw-type-geo": "«$1» — це тип даних, який описує географічне положення і вимагає [https://www.semantic-mediawiki.org/wiki/Extension:Maps розширення «Карти»] для розширеного функціоналу.", + "smw-type-tel": "«$1» — це спеціальний тип даних для опису міжнародних телефонних номерів згідно з RFC 3966.", + "smw-type-txt": "«$1» — це основний тип даних для опису рядків довільної довжини.", + "smw-type-dat": "«$1» — це основний тип даних для представлення моментів часу в єдиному форматі.", + "smw-type-ema": "«$1» — спеціальний тип даних для зберігання адреси електронної пошти.", + "smw-type-tem": "«$1» — спеціальний числовий тип даних для зберігання температури.", + "smw-type-qty": "«$1» — тип даних для опису кількостей із числовою репрезентацією та одиницею вимірювання.", + "smw-type-rec": "«$1» — контейнерний тип даних, що вказує список типізованих властивостей у фіксованому порядку.", + "smw-type-extra-tem": "Схема конвертації включає підтримувані одиниці, такі як одиниці за Кельвіном, Цельсієм, Фаренгейтом та Ранкіном.", + "smw-type-tab-properties": "Властивості", + "smw-type-tab-types": "Типи", + "smw-type-tab-type-ids": "Ідентифікатори типів", + "smw-type-tab-errors": "Помилки", + "smw-type-primitive": "Основні", + "smw-type-contextual": "Залежні", + "smw-type-compound": "Складні", + "smw-type-container": "Контейнер", + "smw-type-no-group": "Некласифіковані", + "smw-special-pageproperty-description": "Ця сторінка надає інтерфейс перегляду для пошуку всіх значень властивості та заданої сторінки. До інших доступних пошукових інтерфейсів належать [[Special:SearchByProperty|пошук властивостей]] та [[Special:Ask|конструктор запитів «ask»]].", + "smw-property-predefined-errc": "«$1» — це попередньо визначена властивість, що забезпечується [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki] і репрезентує помилки, які виникли у зв'язку з неправильними анотаціями значень чи обробкою вводу.", + "smw-property-predefined-long-errc": "Помилки накопичуються в [https://www.semantic-mediawiki.org/wiki/Help:Container контейнері], який також може включати посилання на властивість, яка й спричинила невідповідність.", + "smw-property-predefined-errt": "«$1» — це попередньо визначена властивість, що містить текстовий опис помилки і забезпечується [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-subobject-parser-invalid-naming-scheme": "Визначений користувачем підоб'єкт містив недійсну схему йменування. Крапка ($1) у перших п'яти символах призначена для використання виключно розширеннями. Ви можете задати [https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier іменований ідентифікатор].", + "smw-datavalue-record-invalid-property-declaration": "Визначення запису містить властивість «$1», яка сама по собі оголошена типом запису, і це не допускається.", + "smw-property-predefined-mdat": "«$1» — попередньо визначена властивість, що відповідає даті останньої зміни об'єкта, і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-cdat": "«$1» — попередньо визначена властивість, що відповідає даті першої версії суб'єкта, і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-newp": "«$1» — попередньо визначена властивість, яка вказує, чи є суб'єкт новим чи ні, і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-ledt": "«$1» — попередньо визначена властивість, що містить назву сторінки того користувача, який створив першу версію, і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-mime": "«$1» — попередньо визначена властивість, що описує MIME-тип завантаженого файлу, і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-media": "«$1» — попередньо визначена властивість, що описує медіатип завантаженого медіафайлу, і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-askfo": "«$1» — попередньо визначена властивість, що містить назву кінцевого формату, використаного в запиті, і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-askst": "«$1» — попередньо визначена властивість, що описує умови запиту у формі рядка, і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-askdu": "«$1» — попередньо визначена властивість, що містить значення часу (в секундах), який був використаний на завершення виконання запиту, і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-asksc": "«$1» — попередньо визначена властивість, що надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki] та ідентифікує альтернативні (напр., віддалені, федеративні) джерела запитів.", + "smw-property-predefined-askco": "«$1» — попередньо визначена властивість, що надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki] для опису стану запиту чи його компонентів.", + "smw-property-predefined-long-askco": "Номер чи номери, призначені для репрезентації внутрішнього кодифікованого стану, який пояснений на [https://www.semantic-mediawiki.org/wiki/Help:Query_profiler сторінці довідки].", + "smw-property-predefined-prec": "«$1» — попередньо визначена властивість, що описує [https://www.semantic-mediawiki.org/wiki/Help:Display_precision точність показу] (в десяткових цифрах) для числових типів даних.", + "smw-property-predefined-attch-link": "«$1» — попередньо визначена властивість, яка збирає посилання на вбудовані файли та зображення і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-inst": "«$1» — внутрішня попередньо визначена властивість, що зберігає інформацію про категорію незалежно від MediaWiki, і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-unit": "«$1» — декларативна попередньо визначена властивість для визначення одиниць показу для властивостей числового типу, і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-long-unit": "Список через кому дає змогу описати одиниці чи формати, які слід використати для показу.", + "smw-property-predefined-conv": "«$1» — декларативна попередньо визначена властивість для визначення фактору конвертації для певної одиниці чи фізичної кількості; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-serv": "«$1» — декларативна попередньо визначена властивість для додавання сервісних посилань до властивості; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-redi": "«$1» — внутрішня попередньо визначена властивість для записування перенаправлень; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-subp": "«$1» — декларативна попередньо визначена властивість для визначення того, чи є певна властивість [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of підвластивістю] іншої властивості; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-subc": "«$1» — попередньо визначена властивість для визначення того, чи є категорія [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of підкатегорією] іншої категорії; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-conc": "«$1» — внутрішня попередньо визначена властивість для визначення асоційованого концепту; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-err-type": "«$1» — попередньо визначена властивість для ідентифікації групи чи класу [https://www.semantic-mediawiki.org/wiki/Help:Processing_errors помилок опрацювання]; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-skey": "«$1» — внутрішня попередньо визначена властивість для утримування інформації про засади сортування («a sort reference»); надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-pplb": "«$1» — декларативна попередньо визначена властивість для вказування [https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label бажаної мітки властивості]; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-chgpro": "«$1» — попередньо визначена властивість для утримування інформації про [https://www.semantic-mediawiki.org/wiki/Help:Change_propagation поширення змін]; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-schema-link": ", і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-format-schema": ", і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-profile-schema": ", і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-trans": ", і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-trans-source": ", і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-trans-group": ", і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-cont-len": "«$1» — попередньо визначена властивість для зберігання інформації про довжину; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-long-cont-len": "Вона використовується в поєднанні з [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (а також [https://www.semantic-mediawiki.org/Attachment_processor процесором вкладень]) для збирання та зберігання інформації про довжину, отриману із прийнятого файлу (якщо такий надано).", + "smw-property-predefined-cont-lang": "«$1» — попередньо визначена властивість для зберігання інформації про мову; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-long-cont-lang": "Вона використовується в поєднанні з [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (а також [https://www.semantic-mediawiki.org/Attachment_processor процесором вкладень]) для збирання та зберігання інформації про мову, отриману з прийнятого файлу (якщо такий надано).", + "smw-property-predefined-cont-title": "«$1» — попередньо визначена властивість для зберігання інформації про заголовок; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-long-cont-title": "Вона використовується в поєднанні з [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (а також [https://www.semantic-mediawiki.org/Attachment_processor процесором вкладень]) для збирання та зберігання інформації про заголовок, отриману із прийнятого файлу (якщо такий надано).", + "smw-property-predefined-cont-author": "«$1» — попередньо визначена властивість для зберігання інформації про автора; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-long-cont-author": "Вона використовується в поєднанні з [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (а також [https://www.semantic-mediawiki.org/Attachment_processor процесором вкладень]) для збирання та зберігання інформації про автора, отриману із прийнятого файлу (якщо такий надано).", + "smw-property-predefined-cont-date": "«$1» — попередньо визначена властивість для зберігання інформації про дату; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-long-cont-date": "Вона використовується в поєднанні з [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (а також [https://www.semantic-mediawiki.org/Attachment_processor процесором вкладень]) для збирання та зберігання інформації про дату, отриману із прийнятого файлу (якщо такий надано).", + "smw-property-predefined-cont-type": "«$1» — попередньо визначена властивість для зберігання інформації про тип файлу; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-long-cont-type": "Вона використовується в поєднанні з [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (а також [https://www.semantic-mediawiki.org/Attachment_processor процесором вкладень]) для збирання та зберігання інформації про тип файлу, отриману із прийнятого файлу (якщо такий надано).", + "smw-property-predefined-cont-keyw": "«$1» — попередньо визначена властивість для репрезентування ключових слів; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-long-cont-keyw": "Вона використовується в поєднанні з [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (а також [https://www.semantic-mediawiki.org/Attachment_processor процесором вкладень]) для збирання та зберігання ключових слів, отриманих із прийнятого файлу (якщо такий надано).", + "smw-property-predefined-file-attch": "«$1» — попередньо визначена властивість для репрезентування контейнера, який зберігає інформацію про вкладення; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-long-file-attch": "Вона використовується в поєднанні з [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] (а також [https://www.semantic-mediawiki.org/Attachment_processor процесором вкладень]) для збирання всієї інформації, специфічної для контенту, яку можна отримати із прийнятого файлу (якщо такий надано).", + "smw-types-extra-geo-not-available": "[https://www.semantic-mediawiki.org/wiki/Extension:Maps Розширення «Карти»] не виявлене, тому властивість «$1» обмежена у своїй здатності працювати.", + "smw-datavalue-monolingual-dataitem-missing": "Відсутній очікуваний елемент для побудови одномовного значення.", + "smw-datavalue-languagecode-missing": "Для анотації «$1» парсер не зміг визначити коду мови (тобто «foo@en»).", + "smw-datavalue-languagecode-invalid": "«$1» не було розпізнано як підтримуваний код мови.", + "smw-property-predefined-lcode": "«$1» — попередньо визначена властивість, що репрезентує BCP47-форматований код мови; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-type-mlt-rec": "«$1» — [https://www.semantic-mediawiki.org/wiki/Help:Container контейнерний] тип даних, що пов'язує текстове значення із конкретним [[Property:Language code|кодом мови]].", + "smw-types-extra-mlt-lcode": "Цей тип даних {{PLURAL:$2|вимагає|не вимагає}} коду мови (тобто {{PLURAL:$2|анотація значення без коду мови не приймається|анотація значення без коду мови приймається}}).", + "smw-property-predefined-text": "«$1» — попередньо визначена властивість, що репрезентує текст допоміжної довжини; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-pdesc": "«$1» — попередньо визначена властивість, що дає змогу описати властивість у контексті мови; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-list": "«$1» — попередньо визначена властивість для визначення списку властивостей, використаних із властивістю типу [[Special:Types/Record|record]]; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-limitreport-intext-parsertime": "[SMW] Час розбору внутрішньотекстової анотації", + "smw-limitreport-intext-postproctime": "[SMW] час пост-обробки", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|секунда|секунди|секунд}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|секунда|секунди|секунд}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW] Час оновлення store-бази даних (при оновленні сторінки)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|секунда|секунди|секунд}}", + "smw_allows_pattern": "Ця сторінка повинна містити список посилань (після якого йдуть [https://uk.wikipedia.org/wiki/Регулярний_вираз регулярні вирази]), і доступ до неї має бути відкритий за допомогою властивості «[[Property:Allows pattern|Allows pattern]]». Щоб редагувати цю сторінку, потрібне право smw-patternedit.", + "smw-datavalue-allows-pattern-mismatch": "Регулярний вираз «$2» класифікував значення «$1» як неприпустиме.", + "smw-datavalue-allows-pattern-reference-unknown": "Посилання на шаблон «$1» не вдалося порівняти із записом на [[MediaWiki:Smw allows pattern]].", + "smw-datavalue-allows-value-list-unknown": "Посилання на список «$1» не збігалось зі сторінкою [[MediaWiki:Smw allows list $1]].", + "smw-datavalue-allows-value-list-missing-marker": "Контентові списку «$1» бракує елементів з маркером списку «*».", + "smw-datavalue-feature-not-supported": "Функція «$1» не підтримується або була вимкнена в цій вікі.", + "smw-property-predefined-pvap": "«$1» — попередньо визначена властивість, якою можна вказати [[MediaWiki:Smw allows pattern|посилання на шаблон]], аби застосувати зіставлення [https://en.wikipedia.org/wiki/Regular_expression регулярних виразів]; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-dtitle": "«$1» — попередньо визначена властивість, якою для сутності можна призначити окрему назву для показу; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-pvuc": "«$1» — попередньо визначена властивість, що надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki] для обмеження призначень значень для кожного примірника таким чином, щоб вони були унікальними (або щонайбільше єдиним)", + "smw-property-predefined-long-pvuc": "Унікальність встановлюється, коли два значення є неоднаковими у своїй символьній репрезентації, і будь-яке порушення цього обмеження буде кваліфіковано як помилку.", + "smw-datavalue-constraint-uniqueness-violation": "Властивість «$1» дозволяє лише унікальні присвоєння значень, а ''$2'' вже було анотовано в темі «$3».", + "smw-datavalue-constraint-uniqueness-violation-isknown": "Властивість «$1» дозволяє лише унікальні анотації значень, ''$2'' вже містить закріплене значення. «$3» порушує вимогу унікальності.", + "smw-datavalue-constraint-violation-non-negative-integer": "Властивість «$1» має обмеження «не негативне ціле число», і значення ''$2'' порушує цю вимогу.", + "smw-datavalue-constraint-violation-must-exists": "Властивість «$1» має обмеження must_exists, і значення ''$2'' порушує цю вимогу.", + "smw-datavalue-constraint-violation-single-value": "Властивість «[[Property:$1|$1]]» має обмеження single_value, і значення «$2» порушує цю вимогу.", + "smw-constraint-violation-uniqueness": "Обмеження unique_value_constraint призначення властивості «[[Property:$1|$1]]» що дозволяє лише призначення з унікальними значеннями, тоді як для значення ''$2'' виявлено вже наявну анотацію в темі «$3».", + "smw-constraint-violation-uniqueness-isknown": "Обмеження unique_value_constraint призначене властивості «[[Property:$1|$1]]», і тому дозволені лише унікальні анотації значень. ''$2'' вже містить анотоване значення з «$3», що порушує обмеження унікальності для поточної теми.", + "smw-constraint-violation-non-negative-integer": "Обмеження non_negative_integer призначене властивості «[[Property:$1|$1]]», тоді як анотація значення ''$2'' порушує вимогу цього обмеження.", + "smw-constraint-violation-must-exists": "Обмеження must_exists призначене властивості «[[Property:$1|$1]]», тоді як анотація значення ''$2'' порушує вимогу цього обмеження.", + "smw-constraint-violation-single-value": "Обмеження single_value призначене властивості «[[Property:$1|$1]]», тоді як анотація значення «$2» порушує вимогу цього обмеження.", + "smw-constraint-violation-class-shape-constraint-missing-property": "Обмеження shape_constraint призначене категорії «[[:$1]]» із ключем property, тоді як необхідна властивість «$2» відсутня.", + "smw-constraint-violation-class-shape-constraint-wrong-type": "Обмеження shape_constraint призначене категорії «[[:$1]]» з ключем property_type, тоді як властивість «$2» не відповідає типу «$3».", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "Обмеження shape_constraint призначене категорії «[[:$1]]» з ключем max_cardinality, тоді як властивість «$2» не відповідає кардинальності «$3».", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "Обмеження shape_constraint призначене категорії «[[:$1]]» з ключем min_textlength, тоді як властивість «$2» не відповідає вимозі до довжини «$3».", + "smw-constraint-violation-class-mandatory-properties-constraint": "Обмеження mandatory_properties призначене категорії «[[:$1]]» і потребує таких обов'язкових властивостей: $2", + "smw-constraint-violation-allowed-namespace-no-match": "Обмеження allowed_namespaces призначене властивості «[[Property:$1|$1]]», тоді як «$2» порушує вимогу до простору назв; дозволено лише такі простори назв: «$3».", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "Обмеження allowed_namespaces потребує типу сторінки.", + "smw-constraint-schema-category-invalid-type": "Анотована схема «$1» є недійсною для категорії, вона потребує типу «$2».", + "smw-constraint-schema-property-invalid-type": "Анотована схема «$1» є недійсною для властивості, вона потребує типу «$2».", + "smw-constraint-error-allows-value-list": "«$1» немає в списку ($2) [[Property:Allows value|дозволених значень]] для властивості «$3».", + "smw-constraint-error-allows-value-range": "«$1» не перебуває в межах діапазону «$2», вказаного в обмеженні [[Property:Allows value|дозволених значень]] для властивості «$3».", + "smw-property-predefined-boo": "«$1» — [[Special:Types/Boolean|тип]] і наперед визначена властивість, яку надає [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантична MediaWiki] для представлення логічних значень.", + "smw-property-predefined-num": "«$1» — [[Special:Types/Number|тип]] і наперед визначена властивість, яку надає [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантична MediaWiki] для представлення числових значень.", + "smw-property-predefined-dat": "«$1» — [[Special:Types/Date|тип]] і наперед визначена властивість, яку надає [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантична MediaWiki] для представлення значень дат.", + "smw-property-predefined-uri": "«$1» — [[Special:Types/URL|тип]] і наперед визначена властивість, яку надає [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантична MediaWiki] для представлення значень URI/URL.", + "smw-property-predefined-qty": "«$1» — [[Special:Types/Quantity|тип]] і наперед визначена властивість, яку надає [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантична MediaWiki] для представлення кількісних значень.", + "smw-datavalue-time-invalid-offset-zone-usage": "«$1» містить ідентифікатори зміщення та зони, що не підтримуються.", + "smw-datavalue-time-invalid-values": "Значення «$1» містить інформацію, непридатну до інтерпретації у формі «$2».", + "smw-datavalue-time-invalid-date-components-common": "«$1» містить деяку інформацію, непридатну до інтерпретації.", + "smw-datavalue-time-invalid-date-components-dash": "«$1» містить невластиве тире або інші символи, непридатні до інтерпретації дати.", + "smw-datavalue-time-invalid-date-components-empty": "«$1» містить деякі порожні компоненти.", + "smw-datavalue-time-invalid-date-components-three": "«$1» містить понад три компоненти, необхідні для інтерпретації дати.", + "smw-datavalue-time-invalid-date-components-sequence": "«$1» містить послідовність, яку не можна інтерпретувати згідно з матрицею для компонентів дати.", + "smw-datavalue-time-invalid-ampm": "«$1» містить «$2» як елемент години, непридатний для 12-годинного формату часу.", + "smw-datavalue-time-invalid-jd": "Не вдалося інтерпретувати значення вводу «$1» як дійсне число (день за Юліанським календарем). Було видано «$2».", + "smw-datavalue-time-invalid-prehistoric": "Не вдалося інтерпретувати доісторичне значення вводу «$1». Наприклад, якщо вказати більше інформації, ніж роки чи календарну модель, це може вивести неочікувані результати у доісторичному контексті.", + "smw-datavalue-time-invalid": "Не вдалося розпізнати вхідне значення «$1» як дійсну дату чи компонент часу. На виході було отримано «$2».", + "smw-datavalue-external-formatter-uri-missing-placeholder": "URI форматувальника не містить плейсхолдера «$1».", + "smw-datavalue-external-formatter-invalid-uri": "«$1» — неправильна URL-адреса.", + "smw-datavalue-external-identifier-formatter-missing": "Властивість відсутня в призначенні [[Property:External formatter uri|«URI зовнішнього форматувальника»]].", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "Зовнішній ідентифікатор «$1» очікує заміщення багатьох полів, але поточному значенню «$2» для відповідності вимогам бракує щонайменше одного параметра зі значенням.", + "smw-datavalue-keyword-maximum-length": "Ключове слово перевищило максимальну довжину в $1 {{PLURAL:$1|символ|символи|символів}}.", + "smw-property-predefined-eid": "«$1» — [[Special:Types/External identifier|тип]] і наперед визначена властивість, яку надає [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантична MediaWiki] для представлення зовнішніх ідентифікаторів.", + "smw-property-predefined-peid": "«$1» — попередньо визначена властивість, що зазначає зовнішній ідентифікатор; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-pefu": "«$1» — попередньо визначена властивість, що надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki] для вказування зовнішнього ресурсу за допомогою заповнювача.", + "smw-property-predefined-long-pefu": "URI має містити заповнювач, який буде налаштовано за допомогою значення [[Special:Types/External identifier|зовнішнього ідентифікатора]], щоб сформувати валідне посилання на ресурс.", + "smw-type-eid": "«$1» — це варіант типу даних [[Special:Types/Text|Текст]] для опису зовнішніх ресурсів (базується на URI), що вимагає призначених властивостей для оголошення [[Property:External formatter uri|URI зовнішнього форматувальника]].", + "smw-property-predefined-keyw": "«$1» — попередньо визначена властивість і [[Special:Types/Keyword|тип]], що надаються [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki] та нормалізують текст, який має обмеження довжини в символах.", + "smw-type-keyw": "«$1» — варіант типу даних [[Special:Types/Text|«Text»]], який має обмеження довжини в символах із нормалізованою репрезентацією контенту.", + "smw-datavalue-stripmarker-parse-error": "Задане значення «$1» містить маркери [https://en.wikipedia.org/wiki/Help:Strip_markers «strip markers»], а тому його не можна парсити належним чином.", + "smw-datavalue-parse-error": "Задане значення «$1» було незрозумілим.", + "smw-datavalue-propertylist-invalid-property-key": "Список властивостей «$1» містив недійсний ключ властивості «$2».", + "smw-datavalue-type-invalid-typeuri": "Тип «$1» не вдалося трансформувати у дійсну репрезентацію URI.", + "smw-datavalue-wikipage-missing-fragment-context": "Вхідне значення «$1» вікісторінки не можна використовувати без контекстної сторінки.", + "smw-datavalue-wikipage-invalid-title": "Вхідне значення «$1» типу сторінки містить недійсні символи або є неповним, а тому воно може призвести до несподіваних результатів під час запиту чи процесу анотації.", + "smw-datavalue-wikipage-property-invalid-title": "Властивість «$1» (як тип сторінки) із введеним значенням «$2» містить недійсні символи, або ж є неповною, а тому може спричинити непередбачені результати в процесі виконання запиту чи анотації.", + "smw-datavalue-wikipage-empty": "Вхідне значення вікісторінки порожнє (напр., [[SomeProperty::]], [[]]), а тому його не можна використати як назву чи як частину умови запиту.", + "smw-type-ref-rec": "«$1» є [https://www.semantic-mediawiki.org/wiki/Container контейнерним] типом, що дозволяє записувати додаткову інформацію (напр., дані про першоджерело) про встановлення значення.", + "smw-datavalue-reference-invalid-fields-definition": "Тип [[Special:Types/Reference|посилання]] передбачає, що має бути визначений список властивостей з використанням властивості [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields «Has fields»].", + "smw-parser-invalid-json-format": "JSON-парсер вивів помилку «$1».", + "smw-property-preferred-label-language-combination-exists": "«$1» не можна використати як бажану назву, оскільки мова «$2» вже закріплена за назвою «$3».", + "smw-clipboard-copy-link": "Скопіювати посилання в буфер обміну", + "smw-property-userdefined-fixedtable": "«$1» було налаштовано як [https://www.semantic-mediawiki.org/wiki/Fixed_properties фіксовану властивість] і будь-яка модифікація її [https://www.semantic-mediawiki.org/wiki/Type_declaration декларації типу] вимагає, щоб або було запущено setupStore.php, або завершено спеціальне завдання [[Special:SemanticMediaWiki|«Інсталяція та оновлення бази даних»]].", + "smw-data-lookup": "Отримання даних…", + "smw-data-lookup-with-wait": "Запит обробляється, і це може зайняти трохи часу.", + "smw-no-data-available": "Немає доступних даних.", + "smw-property-req-violation-missing-fields": "Властивості «$1» бракує обов'язкової декларації [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] для цього типу «$2».", + "smw-property-req-violation-multiple-fields": "Властивість «$1» містить декілька декларацій [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] (тому вони конфліктують), тоді як для цього типу «$2» очікується лише одна.", + "smw-property-req-violation-missing-formatter-uri": "Властивості «$1» бракує даних декларації для анотованого типу, оскільки не вдалося визначити властивість External formatter URI.", + "smw-property-req-violation-predefined-type": "Властивість «$1», як попередньо визначена властивість, містить декларацію типу «$2», яка є несумісною зі стандартним типом цієї властивості.", + "smw-property-req-violation-import-type": "Виявлено декларацію типу, несумісну з попередньо визначеним типом імпортованого словника «$1». Загалом, непотрібно декларувати тип, оскільки інформація отримується з визначення імпорту.", + "smw-property-req-violation-change-propagation-locked-error": "Властивість «$1» змінено й вона потребує повторного оцінювання призначених сутностей за допомогою процесу [https://www.semantic-mediawiki.org/wiki/Change_propagation зміни поширення]. Сторінку властивості буде замкнуто, доки не завершиться оновлення основної специфікації, щоб запобігти проміжним порушенням чи суперечливим специфікаціям. Цей процес може зайняти трохи часу, перш ніж сторінку можна буде розблокувати, оскільки це залежить від розміру та частоти планувальника [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue черги завдань].", + "smw-property-req-violation-change-propagation-locked-warning": "Властивість «$1» змінено й вона потребує повторного оцінювання призначених сутностей за допомогою процесу [https://www.semantic-mediawiki.org/wiki/Change_propagation зміни поширення]. Оновлення може зайняти трохи часу, оскільки це залежить від розміру та частоти планувальника [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue черги завдань], тому рекомендується також відкласти зміни властивості на пізніше, щоб запобігти проміжним порушенням чи суперечливим специфікаціям.", + "smw-property-req-violation-change-propagation-pending": "Оновлення [https://www.semantic-mediawiki.org/wiki/Change_propagation зміни поширення] перебувають в очікуванні (приблизно $1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|завдання|завдання|завдань}}]), а тому рекомендовано почекати з будь-якими змінами властивості, доки цей процес не завершиться, щоб запобігти проміжним порушенням чи суперечливим специфікаціям.", + "smw-property-req-violation-missing-maps-extension": "Семантичній MediaWiki не вдалося виявити розширення [https://www.semantic-mediawiki.org/wiki/Extension:Maps «Maps»], наявність якого є обов'язковою, і, як наслідок, обмежує функціональність (тобто не може зберігати чи опрацьовувати географічні дані) цієї властивості.", + "smw-property-req-violation-type": "Властивість містить суперечливі специфікації типів, результатом чого можуть стати недійсні анотації значень, тому очікується, що користувач призначить один відповідний тип.", + "smw-property-req-error-list": "Властивість містить такі помилки чи попередження:", + "smw-property-req-violation-parent-type": "Властивість «$1» та призначена батьківська властивість «$2» мають різні анотації типу.", + "smw-property-req-violation-forced-removal-annotated-type": "Увімкнено примусове [https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance успадкування обов'язкового батьківського типу], тоді як анотований тип властивості «$1» не відповідає своєму батьківському типу властивості «$2», і його було змінено, щоб віддзеркалити ту вимогу. Рекомендовано пристосувати визначення типу в межах сторінки, щоб можна було прибрати повідомлення про помилку і примусове успадкування обов'язкового батьківського типу для цієї властивості.", + "smw-change-propagation-protection": "Цю сторінку закрито з метою запобігання випадковій модифікації даних під час виконання оновлення [https://www.semantic-mediawiki.org/wiki/Change_propagation поширення змін]. Цей процес може зайняти трохи часу, перш ніж сторінку буде знову відкрито, і залежить від розміру та частоти планувальника [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue черги завдань].", + "smw-category-change-propagation-locked-error": "Категорію «$1» змінено, і призначені сутності слід повторно оцінити за допомогою процесу [https://www.semantic-mediawiki.org/wiki/Change_propagation зміни поширення]. Тим часом сторінку категорію заблоковано, доки не завершиться оновлення основної специфікації, щоб запобігти проміжним порушенням чи суперечливим специфікаціям. Цей процес може зайняти трохи часу, перед тим як сторінку можна буде розблокувати, оскільки це залежить від розміру та частоти планувальника [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue черги завдань].", + "smw-category-change-propagation-locked-warning": "Категорію «$1» змінено, і призначені сутності необхідно повторно оцінити за допомогою процесу [https://www.semantic-mediawiki.org/wiki/Change_propagation зміни поширення]. Оновлення може зайняти трохи часу, оскільки воно залежить від розміру та частоти планувальника [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue черги завдань], а тому рекомендовано відкласти будь-які подальші зміни в категорії, щоб запобігти проміжним порушенням чи суперечливим специфікаціям.", + "smw-category-change-propagation-pending": "Оновлення [https://www.semantic-mediawiki.org/wiki/Change_propagation зміни поширення] перебувають в очікуванні (приблизно $1 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|завдання|завдання|завдань}}]), тому рекомендовано почекати з будь-якими змінами в категорії, доки не завершиться цей процес, щоб запобігти проміжним порушенням чи суперечливим специфікаціям.", + "smw-category-invalid-value-assignment": "«$1» не розпізнається як дійсна категорія чи анотація значення.", + "protect-level-smw-pageedit": "Дозволити лише користувачам, що мають права на редагування сторінок (Семантична MediaWiki)", + "smw-create-protection": "Можливість створення властивості «$1» обмежене лише до користувачів з відповідним правом «$2» (або до [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups групи користувачів]), наряду з увімкненим [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode режимом авторитету].", + "smw-create-protection-exists": "Можливість зміни властивості «$1» обмежене лише до користувачів з відповідним правом «$2» (або до [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups групи користувачів]), наряду з увімкненим [https://www.semantic-mediawiki.org/wiki/Help:Authority_mode режимом авторитету].", + "smw-edit-protection": "Цю сторінку [[Property:Is edit protected|захищено]] для запобігання випадковій зміні даних, а тому її можуть редагувати лише користувачі з відповідним редакторським правом («$1») або ті, що належать до відповідної [https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups групи користувачів].", + "smw-edit-protection-disabled": "Захист від редагувань було вимкнено, тому «$1» не може бути використано для захисту сторінок сутностей від неавторизованого редагування.", + "smw-edit-protection-auto-update": "Семантична MediaWiki оновила статус захисту відповідно до властивості «Is edit protected».", + "smw-edit-protection-enabled": "Захищено від редагувань (Семантична MediaWiki)", + "smw-patternedit-protection": "Ця сторінка захищена, її можуть редагувати лише користувачі з відповідними smw-patternedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions правами].", + "smw-property-predefined-edip": "«$1» — це попередньо визначена властивість, що забезпечується [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki] для зазначення того, чи встановлено захист від редагувань, чи ні.", + "smw-property-predefined-long-edip": "Тоді як будь-який користувач може додати цю властивість до якоїсь теми, лише користувач з особливими правами може редагувати чи відкликати захист сутності після того, як властивість було додано.", + "smw-query-reference-link-label": "Посилання на запит", + "smw-format-datatable-emptytable": "Немає даних у таблиці", + "smw-format-datatable-info": "Відображення записів від _START_ по _END_ з _TOTAL_", + "smw-format-datatable-infoempty": "Показані від 0 до 0 з 0 записів", + "smw-format-datatable-infofiltered": "(відфільтровано з усього _MAX_ записів)", + "smw-format-datatable-infothousands": " ", + "smw-format-datatable-lengthmenu": "Показати _MENU_ записів", + "smw-format-datatable-loadingrecords": "Завантаження…", + "smw-format-datatable-processing": "Обробка…", + "smw-format-datatable-search": "Пошук:", + "smw-format-datatable-zerorecords": "Нічого не знайдено відповідно до критеріїв пошуку", + "smw-format-datatable-first": "Перший", + "smw-format-datatable-last": "Останній", + "smw-format-datatable-next": "Наступний", + "smw-format-datatable-previous": "Попередній", + "smw-format-datatable-sortascending": ": активувати сортування стовпців за зростанням", + "smw-format-datatable-sortdescending": ": активувати сортування стовпців за спаданням", + "smw-format-datatable-toolbar-export": "Експорт", + "smw-format-list-other-fields-open": "(", + "smw-category-invalid-redirect-target": "Категорія «$1» містить недійсну ціль перенаправлення на простір назв, який не є категорією.", + "smw-parser-function-expensive-execution-limit": "Ця парсерна функція досягла ліміту для витратних запусків (див. параметр конфігурації [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit]).", + "smw-postproc-queryref": "Семантична MediaWiki оновлює поточну сторінку за умови необхідності деякої пост-обробки запиту.", + "apihelp-smwinfo-summary": "Модуль API для отримання інформації про статистику Семантичної MediaWiki та іншої мета-інформації.", + "apihelp-ask-summary": "Модуль API для надсилання запитів до Семантичної MediaWiki з використанням мови «Ask».", + "apihelp-askargs-summary": "Модуль API для надсилання запитів до Семантичної MediaWiki за допомогою мови «Ask» у формі списку умов, роздруківок та параметрів.", + "apihelp-browsebyproperty-summary": "Модуль API для отримання інформації про властивість або список властивостей.", + "apihelp-browsebysubject-summary": "Модуль API для отримання інформації про предмет.", + "apihelp-smwtask-summary": "Модуль API для виконання завдань, пов'язаних із Семантичною MediaWiki (лише для внутрішнього, не для публічного використання).", + "apihelp-smwbrowse-summary": "Модуль API для підтримки дій з перегляду для різних типів сутностей Семантичної MediaWiki.", + "apihelp-ask-parameter-api-version": "Вихідне форматування:\n;2:Зворотно-сумісний формат із використанням {} для списку результатів.\n;3:Експериментальний формат із використанням [] як списку результатів.", + "apihelp-smwtask-param-task": "Визначає тип завдання", + "apihelp-smwtask-param-params": "JSON-кодовані параметри, що відповідають вимогам до вибраного типу завдання", + "smw-apihelp-smwtask-example-update": "Приклад запуску завдання з оновлення для конкретної теми:", + "smw-api-invalid-parameters": "Помилкові параметри, «$1»", + "smw-parser-recursion-level-exceeded": "Рівень рекурсій $1 було перевищено протягом процесу парсингу. Пропонуємо перевірити структуру шаблону, або, якщо є така необхідність, підкоригувати параметр конфігурації $maxRecursionDepth.", + "smw-property-page-list-count": "Показано $1 {{PLURAL:$1|сторінку, яка використовує|сторінки, які використовують|сторінок, які використовують}} цю властивість.", + "smw-property-page-list-search-count": "Показано $1 {{PLURAL:$1|сторінку, яка використовує|сторінки, які використовують|сторінок, які використовують}} цю властивість зі збігом значення «$2».", + "smw-property-page-filter-note": "[https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter Пошуковий фільтр] дозволяє включати [https://www.semantic-mediawiki.org/wiki/Help:Query_expressions вирази запитів] на кшталт ~ чи !. Вибраний [https://www.semantic-mediawiki.org/wiki/Query_engine рушій запитів] може також підтримувати пошук збігів без врахування регістру чи інші короткі вирази на кшталт:\n\n* in: результат має містити термін, напр., 'in:Foo'\n\n* not: результат не має містити термін, напр., 'not:Bar'", + "smw-property-reserved-category": "Категорія", + "smw-category": "Категорія", + "smw-datavalue-uri-invalid-scheme": " «$1» не додано до списку як дійсна схема URI.", + "smw-datavalue-uri-invalid-authority-path-component": "Виявлено, що «$1» містить недійсний компонент шляху чи авторитету «$2».", + "smw-browse-property-group-title": "Група властивостей", + "smw-browse-property-group-label": "Позначка групи властивостей", + "smw-browse-property-group-description": "Опис групи властивостей", + "smw-property-predefined-ppgr": "«$1» — попередньо визначена властивість, що ідентифікує сутності (у першу чергу — категорії), які використовуються як примірник групування для властивостей; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-filter": "Фільтр", + "smw-section-expand": "Розкрити розділ", + "smw-section-collapse": "Згорнути розділ", + "smw-ask-format-help-link": "Формат [https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]", + "smw-help": "Допомога", + "smw-cheat-sheet": "Шпаргалка", + "smw-personal-jobqueue-watchlist": "Список спостереження черги завдань", + "smw-personal-jobqueue-watchlist-explain": "Ці числа позначають приблизну кількість окремих елементів у черзі завдань, що очікують на виконання.", + "smw-property-predefined-label-skey": "Ключ сортування", + "smw-processing": "Обробка…", + "smw-loading": "Завантаження…", + "smw-fetching": "Отримання…", + "smw-preparing": "Підготовка…", + "smw-expand": "Розгорнути", + "smw-collapse": "Згорнути", + "smw-copy": "Копіювати", + "smw-copy-clipboard-title": "Копіювання вмісту у буфер обміну", + "smw-jsonview-expand-title": "Розгорнути JSON-перегляд", + "smw-jsonview-collapse-title": "Згорнути JSON-перегляд", + "smw-jsonview-search-label": "Пошук:", + "smw-redirect-target-unresolvable": "Ціль неможливо вирішити з такої причини: «$1»", + "smw-types-title": "Тип: $1", + "smw-schema-namespace-editcontentmodel-disallowed": "Зміна моделі вмісту [https://www.semantic-mediawiki.org/wiki/Help:Schema сторінки схеми] не дозволена.", + "smw-schema-namespace-edit-protection": "Ця сторінка захищена, її можуть редагувати лише користувачі з відповідними smw-schemaedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions правами].", + "smw-schema-namespace-edit-protection-by-import-performer": "Цю сторінку імпортовано одним із [https://www.semantic-mediawiki.org/wiki/Import_performer виконавців імпорту], перелічених у відповідному списку, і це означає, що зміна контенту цієї сторінки обмежена лише до користувачів із того списку.", + "smw-schema-error-title": "{{PLURAL:$1|1=Помилка|Помилки}} валідації", + "smw-schema-error-schema": "Схема валідації '''$1''' виявила такі невідповідності:", + "smw-schema-error-miscellaneous": "Різні помилки ($1)", + "smw-schema-error-validation-json-validator-inaccessible": "Валідатор JSON «$1» не доступний (чи не встановлений), і є причиною того, що файл «$2» не вдається дослідити, що, в свою чергу, запобігає збереженню чи зміні поточної сторінки.", + "smw-schema-error-validation-file-inaccessible": "Файл валідації «$1» недоступний.", + "smw-schema-error-violation": "[«$1», «$2»]", + "smw-schema-error-type-missing": "Контентові бракує зазначення типу, щоб його можна було розпізнати й використовувати в [https://www.semantic-mediawiki.org/wiki/Help:Schema просторі назв для схем].", + "smw-schema-error-type-unknown": "Тип «$1» не зареєстрований і не може використовуватись для контенту в просторі назв [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-error-json": "Помилка JSON: «$1»", + "smw-schema-error-input": "Валідація введених даних виявила вказані проблеми, і їх треба вирішити, перш ніж зберігати контент. Сторінка [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling довідки щодо схем] може містити якісь поради щодо того, як усунути будь-які невідповідності чи вирішити проблеми, пов'язані із введенням даних для схем.", + "smw-schema-error-input-schema": "Схема валідації '''$1''' виявила вказані невідповідності, і їх треба вирішити, перш ніж зберігати контент. Сторінка [https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling довідки щодо схем] може містити якісь поради щодо того, як вирішувати такі проблеми.", + "smw-schema-error-title-prefix": "Цей тип схеми вимагає, щоб назва схеми починалася з префікса «$1».", + "smw-schema-validation-error": "Тип «$1» не зареєстрований, і його не можна використовувати для контенту в просторі назв [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema].", + "smw-schema-validation-schema-title": "JSON-схема", + "smw-schema-summary-title": "Опис", + "smw-schema-title": "Схема", + "smw-schema-usage": "Використання", + "smw-schema-type": "Тип схеми", + "smw-schema-type-description": "Опис типу", + "smw-schema-description": "Опис схеми", + "smw-schema-description-link-format-schema": "Цей тип схеми підтримує визначення характеристики для створення чутливих до контексту посилань у поєднанні із призначеною властивістю [[Property:Formatter schema|схеми форматувальника]].", + "smw-schema-description-search-form-schema": "Цей тип схеми підтримує визначення форм вводу та характеристики для профілю [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch розширеного пошуку], де він містить інструкції щодо того, як генерувати поля вводу, визначати стандартні простори назв, чи декларувати префіксальні вирази для пошукового запиту.", + "smw-schema-description-property-profile-schema": "Цей тип схеми підтримує визначення профілю для декларування характеристик призначеній властивості та її анотаційним значенням.", + "smw-schema-description-property-group-schema": "Цей тип схеми підтримує визначення [https://www.semantic-mediawiki.org/wiki/Help:Property_group груп властивостей], аби допомогти структурувати інтерфейс [https://www.semantic-mediawiki.org/wiki/Help:Special:Browse перегляду].", + "smw-schema-description-property-constraint-schema": "Цей тип схеми підтримує визначення правил обмежень для примірника властивості, так само як і для значень, призначених йому.", + "smw-schema-description-class-constraint-schema": "Цей тип схеми підтримує визначення правил обмежень для примірника класу (також відомого як категорія).", + "smw-schema-tag": "{{PLURAL:$1|Тег|Теги}}", + "smw-property-predefined-constraint-schema": "«$1» — попередньо визначена властивість, яка визначає схему обмеження; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-schema-desc": "«$1» — це попередньо визначена властивість, що зазначає опис схеми і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-schema-def": "«$1» — це попередньо визначена властивість, що зазначає вміст схеми і надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-schema-tag": "«$1» — попередньо визначена властивість, що надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki] для визначення збірки схем.", + "smw-property-predefined-long-schema-tag": "Мітка, що ідентифікує схеми із подібним контентом чи характеристиками.", + "smw-property-predefined-schema-type": "«$1» — попередньо визначена властивість, що описує тип для виокремлення групи схем; надається [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Семантичною MediaWiki].", + "smw-property-predefined-long-schema-type": "Кожен [https://www.semantic-mediawiki.org/wiki/Help:Schema/Type тип] надає власну інтерпретацію елементів синтаксису та правил застосування, і може бути вираженим за допомогою [https://www.semantic-mediawiki.org/wiki/Help:Schema#validation схеми валідації].", + "smw-ask-title-keyword-type": "Пошук за ключовим словом", + "smw-ask-message-keyword-type": "Цей пошук відповідає умові $1.", + "smw-remote-source-unavailable": "Не вдалося під'єднатись до віддаленої цілі «$1».", + "smw-remote-source-disabled": "Джерело '''$1''' вимкнуло підтримку віддалених запитів!", + "smw-remote-source-unmatched-id": "Джерело '''$1''' не відповідає версії Семантичної MediaWiki, яка має підтримку віддалених запитів.", + "smw-remote-request-note": "Результат отримано із віддаленого джерела '''$1''', і є ймовірність, що згенерований контент містить інформацію, недоступну в межах поточної вікі.", + "smw-remote-request-note-cached": "Результат '''кешовано''' з віддаленого джерела '''$1''', і є ймовірність, що згенерований контент містить інформацію, недоступну в межах поточної вікі.", + "smw-parameter-missing": "Відсутній параметр «$1».", + "smw-property-tab-usage": "Використання", + "smw-property-tab-profile-schema": "Схема профілю", + "smw-property-tab-redirects": "Синоніми", + "smw-property-tab-subproperties": "Підвластивості", + "smw-property-tab-errors": "Неналежні призначення", + "smw-property-tab-constraint-schema": "Схема обмеження", + "smw-property-tab-constraint-schema-title": "Скомпільована схема обмеження", + "smw-property-tab-specification": "... більше", + "smw-concept-tab-list": "Список", + "smw-concept-tab-errors": "Помилки", + "smw-ask-tab-result": "Результат", + "smw-ask-tab-extra": "Додатково", + "smw-ask-tab-debug": "Налагодження", + "smw-ask-tab-code": "Код", + "smw-install-incomplete-tasks-title": "Незавершені завдання адміністрування", + "smw-install-incomplete-intro": "Є незавершені {{PLURAL:$2|завдання}}, чи такі, що [[Special:PendingTaskList|очікують на завершення]] ($2) {{PLURAL:$1|інсталяції|оновлення}} [https://www.semantic-mediawiki.org Семантичної MediaWiki]. {{PLURAL:$2|Їх}} може завершити адміністратор, чи користувач із достатніми для цього правами. Це слід зробити ще до того, як додавати нові дані, аби уникнути будь-якої неузгодженості.", + "smw-install-incomplete-intro-note": "Це повідомлення зникне після того, як усі релевантні завдання буде виконано.", + "smw-pendingtasks-intro-empty": "Немає завдань, які було б класифіковано як такі, що очікують на виконання, є незавершеними, чи є невиконаними у зв'язку із Семантичною MediaWiki.", + "smw-pendingtasks-intro": "Ця сторінка надає інформацію про завдання, які було класифіковано як такі, що очікують на виконання, є незавершеними чи невиконаними у зв'язку із Семантичною MediaWiki.", + "smw-pendingtasks-setup-no-tasks-intro": "Інсталяцію (чи оновлення) завершено, зараз немає незавершених чи невиконаних завдань.", + "smw-pendingtasks-tab-setup": "Встановлення", + "smw-updateentitycollation-incomplete": "Налаштування [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] було щойно змінено і потребує запуск скрипта [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php] для оновлення сутностей та коректного сортування значень полів.", + "smw-updateentitycountmap-incomplete": "В останньому випуску було додано поле smw_countmap, яке вимагає виконання скрипта [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php], щоб функції могли отримати доступ до контенту цього поля.", + "smw-populatehashfield-incomplete": "Заповнення полів smw_hash було пропущено під час встановлення. Необхідно виконати скрипт [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php].", + "smw-install-incomplete-populate-hash-field": "Заповнення полів smw_hash було пропущено під час встановлення. Необхідно виконати скрипт [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php].", + "smw-install-incomplete-elasticstore-indexrebuild": "ElasticStore вибрано як [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore стандартний сховок], але розширення не змогло відшукати будь-які записи про виконання скрипта [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php]; будь ласка, запустіть скрипт згідно з інструкціями.", + "smw-elastic-rebuildelasticindex-run-incomplete": "ElasticStore вибрано як [https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore стандартний сховок], але розширення не змогло відшукати будь-які записи про виконання скрипта [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php]; будь ласка, запустіть скрипт згідно з інструкціями.", + "smw-pendingtasks-setup-intro": "{{PLURAL:$1|Інсталяція|Оновлення}} Семантичної MediaWiki {{PLURAL:$1|класифікувала|класифікувало}} вказані завдання як [https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade незавершені]; очікується, що адміністратор (чи користувач із достатніми для цього правами) виконає ці завдання, перш ніж користувачі продовжать створювати чи змінювати контент.", + "smw-pendingtasks-setup-tasks": "Завдання", + "smw-filter-count": "Кількість фільтрів", + "smw-es-replication-check": "Перевірка реплікації (Elasticsearch)", + "smw-es-replication-error": "Проблема з реплікацією Elasticsearch", + "smw-es-replication-file-ingest-error": "Проблема з прийняттям файлу", + "smw-es-replication-maintenance-mode": "Обслуговування Elasticsearch", + "smw-es-replication-error-missing-id": "Моніторинг реплікації виявив, що статті «$1» (ID: $2) бракує в бекенді Elasticsearch.", + "smw-es-replication-error-divergent-date": "Моніторинг реплікації виявив, що для статті «$1» (ID: $2) дата зміни показує невідповідні дані.", + "smw-es-replication-error-divergent-date-short": "Для порівняння було використано таку інформацію про дату:", + "smw-es-replication-error-divergent-date-detail": "Вказана дата зміни:\n*Elasticsearch: $1 \n*База даних: $2", + "smw-es-replication-error-divergent-revision": "Моніторинг реплікації виявив, що для статті «$1» (ID: $2) пов'язана версія показує невідповідні дані.", + "smw-es-replication-error-divergent-revision-short": "Для порівняння було використано такі дані про пов'язану версію:", + "smw-es-replication-error-divergent-revision-detail": "Вказана пов'язана версія:\n*Elasticsearch: $1 \n*База даних: $2", + "smw-es-replication-error-maintenance-mode": "Реплікація Elasticsearch зараз обмежена, оскільки вона працює в [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode режимі обслуговування], зміни сутностей та сторінок не будуть видимими відразу, а результати запитів можуть містити застарілу інформацію.", + "smw-es-replication-error-no-connection": "Моніторинг реплікації не може виконувати жодних перевірок, оскільки він не може встановити зв'язок із кластером Elasticsearch.", + "smw-es-replication-error-bad-request-exception": "Обробник з'єднання Elasticsearch видав виняток про поганий запит (\"400 conflict http error\"), що свідчить про проблему, ка триває під час реплікації та пошукових запитів.", + "smw-es-replication-error-other-exception": "Обробник з'єднань Elasticsearch видав виняток: «$1».", + "smw-es-replication-error-suggestions": "Пропонується відредагувати сторінку чи очистити її кеш, щоб усунути невідповідність. Якщо проблема не зникатиме, перевірте сам кластер Elasticsearch (розподільник, винятки, простір на диску тощо).", + "smw-es-replication-error-suggestions-maintenance-mode": "Пропонується зв'язатися з адміністратором вікі, щоб перевірити, чи [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild перебудова індексу] все ще триває, чи для refresh_interval не було встановлено очікуване стандартне значення.", + "smw-es-replication-error-suggestions-no-connection": "Пропонується зв'язатися з адміністратором вікі та повідомити про проблему з відсутністю з'єднання.", + "smw-es-replication-error-suggestions-exception": "Будь ласка, перевірте журнали на наявність інформації про статус Elasticsearch, його індекси та потенційні проблеми, пов'язані з неправильною конфігурацією.", + "smw-es-replication-error-file-ingest-missing-file-attachment": "Моніторинг реплікації виявив, що «$1» бракує анотації [[Property:File attachment|вкладення файлу]], що свідчить про те, що процесор прийняття файлу не запустився, чи ще не завершив свою роботу.", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "Будь ласка, переконайтеся, що завдання із [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion прийняття файлу] заплановане й виконане, перш ніж індекс анотацій та файлів стане доступним.", + "smw-report": "Звіт", + "smw-legend": "Легенда", + "smw-datavalue-constraint-schema-category-invalid-type": "Анотована схема «$1» є недійсною для категорії, вона потребує типу «$2».", + "smw-datavalue-constraint-schema-property-invalid-type": "Анотована схема «$1» є недійсною для властивості, вона потребує типу «$2».", + "smw-entity-examiner-check": "Триває фонова робота {{PLURAL:$1|інспектора|інспекторів}}", + "smw-entity-examiner-indicator": "Панель проблем сутностей", + "smw-entity-examiner-deferred-check-awaiting-response": "Інспектор «$1» наразі очікує на відповідь із бекенду.", + "smw-entity-examiner-deferred-elastic-replication": "Elastic", + "smw-entity-examiner-deferred-constraint-error": "Обмеження", + "smw-entity-examiner-associated-revision-mismatch": "Версія", + "smw-entity-examiner-deferred-fake": "Фальшиві", + "smw-entity-examiner-indicator-suggestions": "У рамках інспекції сутності було виявлено {{PLURAL:$1|вказану проблему|вказані проблеми}}. Пропонуємо {{PLURAL:$1|її|їх}} уважно переглянути та вжити відповідних {{PLURAL:$1|заходів}}.", + "smw-indicator-constraint-violation": "{{PLURAL:$1|Обмеження}}", + "smw-indicator-revision-mismatch": "Версія", + "smw-indicator-revision-mismatch-error": "Перевірка [https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner пов'язаної версії] виявила невідповідність між версією, на яку посилається MediaWiki, та тією, з якою здійснюється пов'язування в Семантичній MediaWiki для цієї сутності.", + "smw-indicator-revision-mismatch-comment": "Невідповідність зазвичай свідчить про те, що якийсь процес перервав операцію зі зберігання в Семантичній MediaWiki. Рекомендується переглянути журнали сервера та пошукати винятків чи інших невдач.", + "smw-facetedsearch-intro-tab-search": "Пошук", + "smw-facetedsearch-format-table": "Таблиця", + "smw-search-placeholder": "Пошук…", + "smw-listingcontinuesabbrev": "(прод.)", + "smw-showingresults": "Нижче {{PLURAL:$1|показане|показані|показані|}} $1 {{PLURAL:$1|результат|результати|результатів|}}, починаючи з № $2" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/ur.json b/mediawiki/extensions/SemanticMediaWiki/i18n/ur.json new file mode 100644 index 0000000..c3a8e24 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/ur.json @@ -0,0 +1,53 @@ +{ + "@metadata": { + "authors": [ + "Abdulq", + "Muhammad Shuaib", + "Obaid Raza", + "Zainab Meher", + "عرفان ارشد", + "محبوب عالم", + "පසිඳු කාවින්ද" + ] + }, + "smw_finallistconjunct": " اور", + "smw_printername_list": "فہرست", + "smw_printername_table": "ٹیبل", + "smw_printername_template": "سانچہ", + "smw_printername_category": "زمرہ", + "validator-type-class-SMWParamSource": "متن", + "smw-paramdesc-csv-sep": "کالم الگ کرنےکی تصریح کرتاھے", + "smw-paramdesc-csv-valuesep": "قدر الگ کرنے کی تصریح کرتاہے۔", + "smw_exportrdf_submit": "برآمد", + "properties": "کی خصوصیات", + "smw-categories": "زمرہ جات", + "smw_purge": "تازہ کرو", + "types": "اقسام", + "smw_ask_queryhead": "استفہام", + "smw_ask_defaultformat": "پہلے سے طے شدہ", + "smw_ask_otheroptions": "دوسرے اختیارات", + "smw-ask-delete": "حذف کریں", + "smw-ask-search": "تلاش", + "smw-ask-result": "نتیجہ", + "smw-ask-empty": "خالی", + "smw_sbv_property": "جائداد:", + "smw_sbv_value": "قیمت:", + "smw_sbv_submit": "نتائج تلاش کریں", + "browse": "ویکی کا مطالعہ کریں", + "smw_browselink": "خصوصیات دیکھیں", + "smw_browse_go": "جانا", + "smw_pp_from": "صفحہ سے", + "smw_pp_type": "جائداد:", + "smw_pp_submit": "نتائج تلاش کریں", + "smw_result_prev": "پچھلے", + "smw_result_next": "اگلے", + "smw_result_results": "نتائج", + "smw_result_noresults": "کوئی نتائج.", + "smw_smwadmin_datarefreshstopconfirm": "ہاں {{GENDER:$1|بلا شبہ}} یہ میں ہی ہوں ۔", + "smw-admin-support": "ہو رہی ہے کی حمایت", + "smw-admin-other-functions": "دیگر کردار", + "smw-property-reserved-category": "زمرہ", + "smw-datavalue-uri-invalid-scheme": "$1کوواجب URI سکیم میں ذیرِفہرست نہیں رکھا گیا۔", + "smw-listingcontinuesabbrev": "جاری۔", + "smw-showingresults": "ذیل میں #$2 سے {{PLURAL:$1|1 تک نتیجہ دکھایا گیا ہے|$1 تک نتائج دکھائے گئے ہیں}}۔" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/uz.json b/mediawiki/extensions/SemanticMediaWiki/i18n/uz.json new file mode 100644 index 0000000..eb55871 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/uz.json @@ -0,0 +1,24 @@ +{ + "@metadata": { + "authors": [ + "Abdulla", + "CoderSI", + "Malikxan", + "Sociologist", + "Zafar Shamsiddinov" + ] + }, + "specialpages-group-smw_group": "Semantic MediaWiki", + "smw-categories": "Turkumlar", + "smw_purge": "Yangilash", + "browse": "Vikini koʻrib chiqish", + "smw_browselink": "Xossalarni koʻrish", + "smw_result_noresults": "Natijalar topilmadi.", + "smw-info-par-message": "Tasvirlash uchun xabar", + "prefs-smw": "Semantik MediaWiki", + "prefs-ask-options": "Maʼnoviy qidiruv moslamalari", + "smw-prefs-ask-options-tooltip-display": "«Matn» koʻrsatkichini paydo boʻladigan yordamchi sifatida aks ettirish", + "smw_unknowntype": "Ushbu xossaning tipi noto'g'ri", + "smw-listingcontinuesabbrev": "davomi", + "smw-showingresults": "Quyida №'''$2'''dan boshlab {{PLURAL:$1|'''bitta''' natija|'''$1''' ta natija}} koʻrsatilgan." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/vec.json b/mediawiki/extensions/SemanticMediaWiki/i18n/vec.json new file mode 100644 index 0000000..4aaf528 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/vec.json @@ -0,0 +1,15 @@ +{ + "@metadata": { + "authors": [ + "Candalua", + "Fierodelveneto" + ] + }, + "smw-categories": "Categorie", + "browse": "Nàvega ła wiki", + "smw-ui-tooltip-title-legend": "Lejenda", + "smw-livepreview-loading": "Caricamento in corso…", + "smw-legend": "Lejenda", + "smw-listingcontinuesabbrev": "cont.", + "smw-showingresults": "Qua de soto vien mostrà al massimo {{PLURAL:$1|'''1''' risultato|'''$1''' risultati}} a partir dal nùmaro '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/vep.json b/mediawiki/extensions/SemanticMediaWiki/i18n/vep.json new file mode 100644 index 0000000..13fdc23 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/vep.json @@ -0,0 +1,33 @@ +{ + "@metadata": { + "authors": [ + "Игорь Бродский", + "Лариса Чиркова" + ] + }, + "smw_viewasrdf": "RDF-purde", + "smw_finallistconjunct": " da", + "smw_printername_count": "Lugeda rezul'tatad", + "smw_printername_list": "Nimikirjutez", + "smw_printername_table": "Tablut", + "smw_printername_broadtable": "Leved tablut", + "smw_exportrdf_submit": "Eksport", + "properties": "Ičendad", + "smw-categories": "Kategorijad", + "ask": "Semantine ecind", + "smw_ask_submit": "Löuta rezul'tatad", + "smw_ask_editquery": "Redaktiruida küzund", + "browse": "Kacu wiki", + "smw_browse_go": "Mäne", + "smw_pp_from": "Lehtpolelpäi", + "smw_pp_type": "Ičend", + "smw_pp_submit": "Löuta rezul'tatad", + "smw_result_prev": "Edeline", + "smw_result_next": "Jäl'ghine", + "smw_result_results": "Rezul'tatad", + "smw_result_noresults": "Ei ole rezul'tatoid.", + "smwadmin": "Redaktiruida Semantic MediaWiki", + "smw-livepreview-loading": "Ozutase…", + "smw-listingcontinuesabbrev": "jatktand", + "smw-showingresults": "Alemba ozutadas {{PLURAL:$1|'''1''' rezul'tat|'''$1''' rezul'tatad}} nomeraspäi #'''$2''' augotaden." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/vi.json b/mediawiki/extensions/SemanticMediaWiki/i18n/vi.json new file mode 100644 index 0000000..bbb521d --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/vi.json @@ -0,0 +1,235 @@ +{ + "@metadata": { + "authors": [ + "Ioe2015", + "Minh Nguyen", + "NguyenHung", + "Nguyenphutrong2", + "Nhatminh01", + "Phjtieudoc", + "SongNgu.xyz", + "Thienhau2003", + "Trần Nguyễn Minh Huy", + "Vinhtantran", + "아라" + ] + }, + "smw-desc": "Làm cho wiki của bạn khả dụng hơn – đối với máy ''cũng như'' con người ([https://www.semantic-mediawiki.org/wiki/Help:User_manual tài liệu trực tuyến])", + "smw-error": "Lỗi", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] đã được cài đặt và kích hoạt nhưng thiếu [https://www.semantic-mediawiki.org/wiki/Help:Upgrade khóa nâng cấp] phù hợp.", + "smw-upgrade-release": "Phát hành", + "smw-upgrade-progress": "Tiến triển", + "smw-upgrade-progress-explain": "Rất khó để dự đoán thời điểm hoàn tất quá trình nâng cấp vì nó phụ thuộc vào kích thước của kho lưu trữ dữ liệu và phần cứng khả dụng, đồng thời có thể mất một lúc để hoàn tất đối với các wiki lớn hơn.\n\nVui lòng liên hệ với quản trị viên địa phương của bạn để biết thêm thông tin về tiến độ.", + "smw-upgrade-progress-create-tables": "Đang tạo (cập nhật) bảng và chỉ mục...", + "smw-upgrade-progress-post-creation": "Chạy tác vụ sau khi tạo...", + "smw-upgrade-progress-table-optimization": "Đang chạy tối ưu hóa bảng...", + "smw-upgrade-progress-supplement-jobs": "Thêm tác vụ bổ sung...", + "smw-upgrade-error-title": "Lỗi » Semantic MediaWiki", + "smw-upgrade-error-why-title": "Tại sao tôi lại thấy trang này?", + "smw-upgrade-error-why-explain": "Cấu trúc cơ sở dữ liệu nội bộ của Semantic MediaWiki đã thay đổi và cần một số điều chỉnh để hoạt động đầy đủ. Có thể có một số lý do bao gồm:\n* Các thuộc tính cố định bổ sung (yêu cầu thiết lập bảng bổ sung) đã được thêm vào\n* Bản nâng cấp bao gồm một số thay đổi đối với bảng hoặc chỉ mục, khiến việc chặn bắt buộc phải thực hiện trước khi truy cập dữ liệu\n* Thay đổi đối với bộ lưu trữ hoặc công cụ truy vấn", + "smw-upgrade-error-how-title": "Làm cách nào để tôi sửa nỗi này?", + "smw-upgrade-error-how-explain-admin": "Người quản trị (hoặc bất kỳ người nào có quyền quản trị) phải chạy tập lệnh bảo trì [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] của MediaWiki hoặc [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] của Semantic MediaWiki.", + "smw-upgrade-error-how-explain-links": "Bạn cũng có thể tham khảo các trang sau để được hỗ trợ thêm:\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation Hướng dẫn cài đặt]\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting Trợ giúp gỡ rối]", + "smw-extensionload-error-why-title": "Tại sao tôi lại thấy trang này?", + "smw-extensionload-error-why-explain": "Tiện ích mở rộng không được tải bằng enableSemantics mà thay vào đó được kích hoạt bằng các phương tiện khác như sử dụng trực tiếp wfLoadExtension( 'SemanticMediaWiki' ).", + "smw-extensionload-error-how-title": "Làm cách nào để tôi sửa lỗi này?", + "smw-extensionload-error-how-explain": "Để kích hoạt tiện ích mở rộng và tránh các sự cố liên quan đến khai báo không gian tên và cấu hình đang chờ xử lý, cần sử dụng enableSemantics để đảm bảo các biến bắt buộc được đặt trước khi tải tiện ích mở rộng thông qua ExtensionRegistry.\n\nVui lòng xem trang trợ giúp [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] để được hỗ trợ thêm.", + "smw-upgrade-maintenance-title": "Bảo trì » Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "Tại sao tôi lại thấy trang này?", + "smw-upgrade-maintenance-note": "Hệ thống hiện đang trong quá trình [https://www.semantic-mediawiki.org/wiki/Help:Upgrade nâng cấp] phần mở rộng [https://www.semantic-mediawiki.org/ Semantic MediaWiki] cùng với kho lưu trữ dữ liệu của nó và chúng tôi muốn bạn kiên nhẫn và cho phép quá trình bảo trì được tiếp tục trước khi wiki có thể truy cập trở lại.", + "smw-upgrade-maintenance-explain": "Tiện ích mở rộng cố gắng giảm thiểu tác động và thời gian ngừng hoạt động bằng cách hoãn hầu hết các tác vụ bảo trì sau file update.php, nhưng một số thay đổi liên quan đến cơ sở dữ liệu cần được hoàn thành trước để tránh sự không nhất quán dữ liệu. Các thay đổi này có thể bao gồm:\n* Thay đổi cấu trúc bảng, chẳng hạn như thêm trường mới hoặc sửa đổi trường hiện có\n* Thay đổi hoặc thêm chỉ mục bảng\n* Chạy tối ưu hóa bảng (khi được bật)", + "smw-semantics-not-enabled": "Chức năng Semantic MediaWiki không được kích hoạt cho wiki này.", + "smw_viewasrdf": "Tin RDF", + "smw_finallistconjunct": ", và", + "smw-factbox-head": "...thêm về \"$1\"", + "smw-factbox-facts": "Sự thật", + "smw-factbox-facts-help": "Hiển thị các tuyên bố và sự kiện được tạo bởi người dùng", + "smw-factbox-attachments": "Đính kèm", + "smw-factbox-attachments-value-unknown": "Không có", + "smw-factbox-attachments-is-local": "Là địa phương", + "smw-factbox-attachments-help": "Hiển thị các tệp đính kèm có sẵn", + "smw-factbox-facts-derived": "Sự thật có nguồn gốc", + "smw-factbox-facts-derived-help": "Hiển thị các sự thật được rút ra từ các quy tắc hoặc với sự trợ giúp của các kỹ thuật lập luận khác", + "smw_isspecprop": "Thuộc tính này là thuộc tính đặc biệt trong wiki này.", + "smw-concept-cache-header": "Sử dụng bộ nhớ đệm", + "smw_concept_description": "Miêu tả khái niệm “$1”", + "version-semantic": "Phần mở rộng ngữ nghĩa", + "smw_baduri": "Rất tiếc, không cho phép URI có dạng “$1”.", + "smw_printername_count": "Đếm kết quả", + "smw_printername_csv": "Xuất CSV", + "smw_printername_dsv": "Xuất DSV", + "smw_printername_debug": "Truy vấn gỡ lỗi (cho các chuyên gia)", + "smw_printername_embedded": "Nhúng nội dung trang", + "smw_printername_json": "Xuất JSON", + "smw_printername_list": "Danh sách", + "smw_printername_ol": "Danh sách đánh số", + "smw_printername_table": "Bảng", + "smw_printername_broadtable": "Bảng rộng", + "smw_printername_template": "Bản mẫu", + "smw_printername_rdf": "Xuất RDF", + "smw_printername_category": "Thể loại", + "validator-type-class-SMWParamSource": "văn bản", + "smw-paramdesc-limit": "Đa số kết quả để cho ra", + "smw-paramdesc-mainlabel": "Nhãn cho tên trang chính", + "smw-paramdesc-link": "Hiển thị các giá trị là liên kết", + "smw-paramdesc-sep": "Dấu phân cách các kết quả", + "smw-paramdesc-embedonly": "Không hiển thị các tiêu đề", + "smw-paramdesc-rdfsyntax": "Cú pháp RDF được sử dụng", + "smw-paramdesc-csv-sep": "Chỉ định một dấu phân cách cột", + "smw-paramdesc-dsv-separator": "Dấu phân cách để sử dụng", + "smw-paramdesc-dsv-filename": "Tên của tập tin DSV", + "smw-paramdesc-order": "Thứ tự sắp xếp của truy vấn", + "smw-paramdesc-export": "Tùy chọn xuất", + "smw-printername-feed": "Nguồn cấp RSS và Atom", + "smw-paramdesc-feedtype": "Kiểu nguồn cấp", + "smw_iq_disabled": "Rất tiếc. Chức năng truy vấn ngữ nghĩa đã bị tắt tại wiki này.", + "smw_iq_moreresults": "… kết quả khác", + "smw_parseerror": "Không hiểu giá trị cung cấp.", + "smw_decseparator": ",", + "smw_kiloseparator": ".", + "smw_notitle": "Không thể dùng “$1” làm tên trang trên wiki này.", + "smw_manytypes": "Thuộc tính này có nhiều hơn một kiểu", + "smw_emptystring": "Không chấp nhận chuỗi trống.", + "smw_notinenum": "“$1” không nằm trong danh sách [[Property:Allows value|các giá trị khả dĩ]] ($2) cho thuộc tính “$3”.", + "smw_noboolean": "“$1” không phải là giá trị Boole (đúng/sai).", + "smw_true_words": "true,t,yes,y,đúng,đ,có,c", + "smw_false_words": "false,f,no,n,sai,s,không,k", + "smw_nofloat": "“$1” không phải là số.", + "smw_infinite": "Không hỗ trợ các số lớn như “$1”.", + "smw_novalues": "Không định rõ giá trị.", + "smw_nodatetime": "Không hiểu ngày “$1”.", + "smw_toomanyclosing": "Dường có quá nhiều lần xuất hiện “$1” trong câu truy vấn.", + "smw_noclosingbrackets": "Lần sử dụng “[[” nào đó trong câu truy vấn của bạn không được đóng bằng “]]”.", + "smw_misplacedsymbol": "Ký hiệu “$1” được dùng tại nơi nó không hữu ích.", + "smw_unexpectedpart": "Phần “$1” của câu truy vấn không hiểu được.\nKết quả có thể không như mong đợi.", + "smw_emptysubquery": "Một truy vấn con nào đó không có điều kiện hợp lệ.", + "smw_misplacedsubquery": "Một truy vấn con nào đó được dùng tại nơi không cho phép dùng truy vấn con.", + "smw_valuesubquery": "Truy vấn con không hỗ trợ các giá trị của tham số “$1”.", + "smw_badqueryatom": "Phần “[[…]]” nào đó của câu truy vấn không hiểu được.", + "smw_propvalueproblem": "Không hiểu giá trị của thuộc tính “$1”.", + "smw_nodisjunctions": "Phân tách trong câu truy vấn không hỗ trợ trong wiki này và một phần câu truy vấn bị bỏ qua ($1).", + "smw_querytoolarge": "{{PLURAL:$2|Điều kiện|Các điều kiện}} truy vấn sau đây không được xem xét do hạn chế của wiki trong độ dài hoặc độ sâu truy vấn: $1.", + "smw_notemplategiven": "Xin hãy cung cấp giá trị cho tham số “template” để đinh dạng truy vấn này có thể hoạt động.", + "smw_type_header": "Tính chất của loại “$1”", + "smw_typearticlecount": "Hiển thị $1 thuộc tính sử dụng kiểu này.", + "smw_attribute_header": "Những trang dùng thuộc tính “$1”", + "smw_attributearticlecount": "Hiển thị $1 trang dùng thuộc tính này.", + "smw-propertylist-subproperty-header": "Thuộc tính con", + "smw-propertylist-redirect-header": "Từ đồng nghĩa", + "exportrdf": "Xuất trang ra RDF", + "smw_exportrdf_docu": "Trang này cho phép bạn lấy dữ liệu từ trang theo dạng RDF.\nĐể xuất trang, gõ vào tựa đề trong khung dưới đây, một dòng một tựa đề.", + "smw_exportrdf_recursive": "Xuất đệ quy tất cả các trang liên quan.\nChú ý rằng kết quả không thể quá lớn!", + "smw_exportrdf_backlinks": "Cũng xuất tất cả các trang chỉ đến trang được xuất.\nTạo ra RDF có thể duyệt được.", + "smw_exportrdf_lastdate": "Đừng xuất trang không thay đổi từ một thời điểm cho trước.", + "smw_exportrdf_submit": "Xuất", + "uriresolver": "Bộ giải URI", + "properties": "Thuộc tính", + "smw-categories": "Thể loại", + "smw_properties_docu": "Các thuộc tính được dùng trong wiki.", + "smw_property_template": "$1 thuộc loại $2 (sử dụng $3 lần)", + "smw_propertylackspage": "Tất cả các thuộc tính nên được mô tả bằng một trang!", + "smw_propertylackstype": "Không có loại này được chỉ định cho thuộc tính này (từ giờ giả thiết loại $1).", + "smw_propertyhardlyused": "Thuộc tính này khó sử dụng trong wiki!", + "smw-special-property-searchform-options": "Tùy chọn", + "smw-special-wantedproperties-filter-label": "Bộ lọc:", + "smw-special-wantedproperties-filter-none": "Không có", + "smw-special-wantedproperties-filter-unapproved": "Chưa chấp nhận", + "concepts": "Khái niệm", + "smw-special-concept-header": "Danh sách khái niệm", + "unusedproperties": "Thuộc tính không sử dụng", + "smw-unusedproperties-docu": "Các thuộc tính sau được tuyên bố mặc dù [https://www.semantic-mediawiki.org/wiki/Unused_properties không có trang nào] sử dụng chúng. Cũng có thể xem [[Special:Properties|danh sách đầu đủ]] hoặc [[Special:WantedProperties|các thuộc tính cần thiết]].", + "smw-unusedproperty-template": "$1 thuộc loại $2", + "wantedproperties": "Thuộc tính cần nhất", + "smw-wantedproperties-docu": "Các thuộc tính sau [https://www.semantic-mediawiki.org/wiki/Wanted_properties được sử dùng trong wiki] nhưng chưa có trang nào miêu tả chúng. Cũng có thể xem [[Special:Properties|danh sách đầy đủ]] hoặc [[Special:UnusedProperties|các thuộc tính không dùng]].", + "smw-wantedproperty-template": "$1 ($2 lần sử dụng)", + "smw_purge": "Làm mới", + "types": "Các dạng", + "smw_types_docu": "Sau đây là danh sách [https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes tất cả các kiểu dữ liệu có sẵn], mỗi [https://www.semantic-mediawiki.org/wiki/Help:Datatype kiểu] ứng với tập hợp thuộc tính khác biệt để miêu tả giá trị theo đặc điểm lưu giữ và hiển thị di truyền đến một thuộc tính được chỉ định.", + "smw-statistics": "Thống kê ngữ nghĩa", + "smw-statistics-query-size": "Kích thước truy vấn", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1}}Khái niệm", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1}}Khái niệm]]", + "smw_uri_doc": "Bộ giải URI hiện thực [$1 THẺ W3C tìm thấy tại httpRange-14].\nNó đảm bảo biểu diễn RDF (dành cho máy) hoặc một trang wiki (dành cho con người) được cung cấp tùy thuộc vào yêu cầu.", + "ask": "Tìm kiếm ngữ nghĩa", + "smw_ask_sortby": "Sắp xếp theo cột (tùy chọn)", + "smw_ask_ascorder": "Tăng dần", + "smw_ask_descorder": "Giảm dần", + "smw-ask-order-rand": "Ngẫu nhiên", + "smw_ask_submit": "Kết quả tìm kiếm", + "smw_ask_editquery": "Sửa truy vấn", + "smw_add_sortcondition": "[Thêm điều kiện sắp xếp]", + "smw-ask-sort-add-action": "Thêm điều kiện sắp xếp", + "smw_ask_hidequery": "Ẩn truy vấn (chế độ xem thu gọn)", + "smw_ask_help": "Trợ giúp truy vấn", + "smw_ask_queryhead": "Điều kiện", + "smw_ask_printhead": "Lựa chọn dữ liệu để hiển thị", + "smw_ask_format_as": "Định dạng:", + "smw_ask_defaultformat": "mặc định", + "smw_ask_otheroptions": "Tùy chọn khác", + "smw_ask_show_embed": "Hiện mã để nhúng", + "smw_ask_hide_embed": "Ẩn mã để nhúng", + "smw-ask-delete": "Xóa", + "smw-ask-sorting": "Sắp xếp", + "smw-ask-options": "Tùy chọn", + "smw-ask-options-sort": "Tùy chọn sắp xếp", + "smw-ask-search": "Tìm kiếm", + "smw-ask-debug": "Gỡ lỗi", + "smw-ask-result": "Kết quả", + "smw-ask-empty": "Xóa tất cả các mục", + "smw-ask-format": "Định dạng", + "searchbyproperty": "Tìm theo thuộc tính", + "smw_sbv_docu": "Tìm tất cả các trang có thuộc tính và giá trị cho trước.", + "smw_sbv_novalue": "Xin nhập vào một giá trị hợp lệ cho thuộc tính, hoặc xem tất cả các giá trị thuộc tính của “$1.”", + "smw_sbv_property": "Thuộc tính:", + "smw_sbv_value": "Giá trị:", + "smw_sbv_submit": "Kết quả tìm kiếm", + "browse": "Duyệt wiki", + "smw_browselink": "Duyệt thuộc tính", + "smw_browse_article": "Gõ vào tên trang để bắt đầu duyệt.", + "smw_browse_go": "Xem", + "smw_browse_show_incoming": "Hiện các thuộc tính liên kết đến đây", + "smw_browse_hide_incoming": "Ẩn các thuộc tính liên kết đến đây", + "smw_browse_no_outgoing": "Trang này không có thuộc tính.", + "smw_browse_no_incoming": "Không có thuộc tính liên kết đến trang này.", + "pageproperty": "Tìm kiếm thuộc tính trang", + "smw_pp_docu": "Nhập trang và thuộc tính hoặc chỉ cần một thuộc tính để lấy tất cả các giá trị được gán.", + "smw_pp_from": "Từ trang:", + "smw_pp_type": "Thuộc tính:", + "smw_pp_submit": "Kết quả tìm kiếm", + "smw_result_prev": "Trước", + "smw_result_next": "Sau", + "smw_result_results": "Kết quả", + "smw_result_noresults": "Không tìm thấy kết quả.", + "smwadmin": "Bảng điều khiển ngữ nghĩa MediaWiki", + "smw-admin-statistics-job-title": "Thống kê việc làm", + "smw_smwadmin_return": "Trở lại $1", + "smw-admin-announce": "Tuyên bố wiki của bạn", + "smw-admin-deprecation-notice-title-notice": "Cài đặt lỗi thời", + "smw-admin-deprecation-notice-title-replacement": "Đã thay thế hoặc đổi tên thiết lập", + "smw-admin-deprecation-notice-title-removal": "Đã loại bỏ thiết lập", + "smw_smwadmin_datarefreshbutton": "Lên lịch nâng cấp dữ liệu", + "smw_smwadmin_datarefreshstop": "Ngừng việc nâng cấp", + "smw_smwadmin_datarefreshstopconfirm": "{{GENDER:$1}}Có chắc", + "smw-admin-support": "Trợ giúp", + "smw-admin-smwhomepage": "Tài liệu sử dụng đầy đủ của MediaWiki Ngữ nghĩa có sẵn tại semantic-mediawiki.org.", + "smw-admin-bugsreport": "Hãy báo lỗi tại trang quản lý vấn đề. Trang báo cáo lỗi hướng dẫn soạn thảo báo cáo vấn đề có hiệu lực.", + "smw-admin-statistics": "Thống kê", + "smw-admin-supplementary-elastic-statistics-title": "Thống kê", + "smw_adminlinks_datastructure": "Cấu trúc dữ liệu", + "smw_adminlinks_displayingdata": "Hiển thị dữ liệu", + "smw_adminlinks_inlinequerieshelp": "Trợ giúp truy vấn nội dòng", + "smw-createproperty-isproperty": "Nó là tính chất thuộc kiểu $1.", + "smw-createproperty-allowedvals": "{{PLURAL:$1|Giá trị|Các giá trị}} cho phép của thuộc tính này là:", + "prefs-smw": "MediaWiki Ngữ nghĩa", + "smw-prefs-general-options-show-entity-issue-panel": "Hiển thị bảng vấn đề thực thể", + "smw-prefs-help-general-options-show-entity-issue-panel": "Nếu được bật, hãy chạy kiểm tra tính toàn vẹn trên mỗi trang và hiển thị [https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel Bảng vấn đề về thực thể].", + "smw_unknowntype": "Kiểu “$1” của thuộc tính này không hợp lệ.", + "smw_concept_header": "Trang về khái niệm “$1”", + "action-smw-patternedit": "sửa các biểu thức chính quy được Semantic MediaWiki sử dụng", + "smw-livepreview-loading": "Đang tải…", + "smw-property-tab-usage": "Sử dụng", + "smw-concept-tab-list": "Danh sách", + "smw-concept-tab-errors": "Lỗi", + "smw-listingcontinuesabbrev": "(tiếp theo)", + "smw-showingresults": "Bên dưới có cho đến {{PLURAL:$1|1 kết quả|$1 kết quả}} bắt đầu từ #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/vo.json b/mediawiki/extensions/SemanticMediaWiki/i18n/vo.json new file mode 100644 index 0000000..c069970 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/vo.json @@ -0,0 +1,84 @@ +{ + "@metadata": { + "authors": [ + "Malafaya", + "Smeira" + ] + }, + "smw_finallistconjunct": ", e", + "smw_isspecprop": "Patöf at binon patöf patik in vük at.", + "smw_concept_description": "Bepenam suemoda: „$1“.", + "smw_no_concept_namespace": "Suemods kanons pamiedetön te su pads nemadaspada: Miedet.", + "smw_multiple_concepts": "Suemodapad alik dalon labön suemodimiedeti te bali.", + "smw_baduri": "Els URI ön fom: „$1“ no padälons.", + "smw_iq_moreresults": "... seks pluik", + "smw_parseerror": "Völad pegivöl no pesuemon.", + "smw_notitle": "„$1“ no dalon pagebön as padanem in vük at.", + "smw_wrong_namespace": "Te pades se nemaspad: „$1“ padälons ad binön is.", + "smw_manytypes": "Sots plu bals pemiedetons pro patöf.", + "smw_emptystring": "Vödems vagik no pelasumons.", + "smw_notinenum": "„$1“ no komon in lised völadas mögik ($2) patöfa at.", + "smw_true_words": "veratik,v,si,s", + "smw_false_words": "dobik,d,no,n", + "smw_nofloat": "„$1“ no binon num.", + "smw_infinite": "Nums so gretik äs „$1“ no kanons pagebön.", + "smw_nodatetime": "Dät: „$1“ no pesuemon.", + "smw_emptysubquery": "Donaseivid semik no labon stipi lonöföl.", + "smw_misplacedsubquery": "Donaseivid semik pägebon uto, kö donaseivids no padälons.", + "smw_badqueryatom": "Dil semik: „[[…]]“ seivida no pesuemon.", + "smw_propvalueproblem": "Völad patöfa: „$1“ no pesuemon.", + "smw_notemplategiven": "Gevolös völadi paramete: „samafomot“, dat seividafomät at ojäfidon.", + "smw_type_header": "Patöfs sota: „$1“", + "smw_typearticlecount": "{{PLURAL:$1|Patöf $1 pajonon, kel labon|Patöfs $1 pajonons, kels labons}} soti at.", + "smw_attribute_header": "Pads patöfi: „$1“ geböls", + "smw_attributearticlecount": "{{PLURAL:$1|Pad $1 pajonon, kel gebon|Pads $1 pajonons, kels gebons}} patöfi at.", + "exportrdf": "Seveigön padis at RDF", + "properties": "Patöfs", + "smw-categories": "Klads", + "smw_properties_docu": "Patöfs sököl pagebons in vük.", + "smw_property_template": "$1 sota: $2 ($3)", + "smw_propertylackspage": "Patöfs valik sötons pabepenön su pad semik!", + "smw_propertyhardlyused": "Patöf at pagebon vemo selediko in vük!", + "unusedproperties": "Patöfs no pegeböls", + "smw-unusedproperties-docu": "Patöfs sököl dabinons, do pad votik nonik gebon onis.", + "smw-unusedproperty-template": "$1 sota: $2", + "wantedproperties": "Patöfs pavilöl", + "smw-wantedproperties-docu": "Patöfs sököl pagebons in vük ab no nog labons bepenamapadis oksik.", + "smw-wantedproperty-template": "$1 (gebs $2)", + "types": "Sots", + "smw_ask_submit": "Tuvön sekis", + "smw_ask_editquery": "Bevobön seividi", + "smw_add_sortcondition": "[Läükön leodükamastipi]", + "smw_ask_hidequery": "Klänedön seividi", + "smw_ask_queryhead": "Seivid", + "searchbyproperty": "Sukön ma patöf", + "smw_sbv_docu": "Sukön padis valik patöfi e völadi semikis labölis.", + "smw_sbv_novalue": "Penolös völadi lonöfol patöfa, u logolös patöfavöladis valik tefü „$1“.", + "smw_sbv_displayresultfuzzy": "Lised padas valik labü völad: „$1“ patöfa: „$1“.\nBi petuvons pads te aniks, i völads nilöfik palisedons.", + "smw_sbv_property": "Patöf", + "smw_sbv_value": "Völad:", + "smw_sbv_submit": "Tuvön sekis", + "browse": "Padön vüki", + "smw_browselink": "Logön patöfis", + "smw_browse_article": "Penolös nemi pada, de kel padam oprimon.", + "smw_browse_go": "Ledunön", + "smw_browse_show_incoming": "jonön patöfis isio peyümölis", + "smw_browse_hide_incoming": "klänedön patöfis isio peyümölis", + "smw_browse_no_outgoing": "Pad at no labon patöfis.", + "smw_browse_no_incoming": "Patöfs nonik peyümons lü pad at.", + "smw_inverse_label_default": "$1 de", + "pageproperty": "Suk padapatöfas", + "smw_pp_from": "De pad", + "smw_pp_type": "Patöf", + "smw_pp_submit": "Tuvön sekis", + "smw_result_prev": "Büik", + "smw_result_next": "Sököl", + "smw_result_results": "Seks.", + "smw_result_noresults": "Seks nonik.", + "smw_smwadmin_return": "Geikön lü pad: $1", + "smw_concept_header": "Pads suemoda: „$1“.", + "smw_conceptarticlecount": "{{PLURAL:$1|Pajonon pad $1, kel duton|Pajonons pads $1, kels dutons}} lü suemod at.", + "smw-livepreview-loading": "Pabelodon…", + "smw-listingcontinuesabbrev": "(fov.)", + "smw-showingresults": "Pajonons dono jü {{PLURAL:$1|sukasek '''1'''|sukaseks '''$1'''}}, primölo me nüm #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/vro.json b/mediawiki/extensions/SemanticMediaWiki/i18n/vro.json new file mode 100644 index 0000000..64f7e9e --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/vro.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Võrok" + ] + }, + "smw-categories": "Katõgooriaq", + "browse": "Viki kaeminõ", + "smw-livepreview-loading": "Laat…", + "smw-listingcontinuesabbrev": "lätt edesi", + "smw-showingresults": "{{PLURAL:$1|'''Üts''' tulõmus|'''$1''' tulõmust}} (tulõmusõst '''$2''' pääle)." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/wa.json b/mediawiki/extensions/SemanticMediaWiki/i18n/wa.json new file mode 100644 index 0000000..6c27007 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/wa.json @@ -0,0 +1,15 @@ +{ + "@metadata": { + "authors": [ + "Reptilien.19831209BE1", + "Srtxg" + ] + }, + "smw-categories": "Categoreyes", + "smw_purge": "Rafrister", + "browse": "Naivyî el wiki", + "smw-ui-tooltip-title-legend": "Ledjinde", + "smw-livepreview-loading": "Tcherdjant...", + "smw-listingcontinuesabbrev": "(shûte)", + "smw-showingresults": "Cial pa dzo {{PLURAL:$1|'''1''' rizultat|'''$1''' rizultats}} a pårti do limero '''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/war.json b/mediawiki/extensions/SemanticMediaWiki/i18n/war.json new file mode 100644 index 0000000..c7f3266 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/war.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Harvzsf", + "JinJian" + ] + }, + "smw-categories": "Mga kaarangay", + "browse": "Browse wiki", + "smw-livepreview-loading": "Ginkakarga. . .", + "smw-listingcontinuesabbrev": "pdyn." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/wo.json b/mediawiki/extensions/SemanticMediaWiki/i18n/wo.json new file mode 100644 index 0000000..551921a --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/wo.json @@ -0,0 +1,11 @@ +{ + "@metadata": { + "authors": [ + "Ibou" + ] + }, + "smw-categories": "Wàll", + "browse": "Wër wiki bi", + "smw-listingcontinuesabbrev": "(desit)", + "smw-showingresults": "Woneg $1 {{PLURAL:$1|ngérte|ciy ngérte}} doore ko ci #$2." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/xal.json b/mediawiki/extensions/SemanticMediaWiki/i18n/xal.json new file mode 100644 index 0000000..17fa9f2 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/xal.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Ukhant Erdemt", + "Алия" + ] + }, + "smw-categories": "Әңгллмүд", + "browse": "Халхсиг үзх", + "smw-livepreview-loading": "Белднә...", + "smw-listingcontinuesabbrev": "(залһан)" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/xmf.json b/mediawiki/extensions/SemanticMediaWiki/i18n/xmf.json new file mode 100644 index 0000000..4d88a58 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/xmf.json @@ -0,0 +1,16 @@ +{ + "@metadata": { + "authors": [ + "Kilavagora", + "Narazeni", + "Silovan" + ] + }, + "smw-categories": "კატეგორიეფი", + "browse": "ვიკიშ ძირაფა", + "smw-limitreport-intext-parsertime-value": "$1 მერქა", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 მერქა", + "smw-jsonview-search-label": "გორუა:", + "smw-listingcontinuesabbrev": "გჷნძარ.", + "smw-showingresults": "გიმე ქოძირით {{PLURAL:$1|1}}-შახ შედეგი დოწყაფილი #$2-შე." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/yi.json b/mediawiki/extensions/SemanticMediaWiki/i18n/yi.json new file mode 100644 index 0000000..3958287 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/yi.json @@ -0,0 +1,43 @@ +{ + "@metadata": { + "authors": [ + "Pacha Tchernof", + "פוילישער", + "පසිඳු කාවින්ද" + ] + }, + "smw_finallistconjunct": "און", + "smw_printername_list": "ליסטע", + "smw_printername_template": "מוסטער", + "smw_printername_category": "קאַטעגאָריע", + "validator-type-class-SMWParamSource": "טעקסט", + "smw-paramdesc-table-transpose": "ווײַזן טאבעלע קעפלעך ווערטיקאל און רעזולטאטן האריזאנט", + "smw_nodatetime": "די דאַטע \"$1\" איז נישט פֿארשטענדלעך.", + "smw_exportrdf_submit": "עקספארטירן", + "smw-categories": "קאַטעגאָריעס", + "smw-ask-parameters": "פאַראַמעטערס", + "smw-ask-search": "זוכן", + "smw_sbv_value": "ווערט:", + "browse": "בלעטערן וויקי", + "smw_browse_go": "גיין", + "smw_pp_from": "פֿון בלאט:", + "smw_result_prev": "פֿריערדיקער", + "smw_result_results": "רעזולטאט", + "smw_smwadmin_datarefreshstopconfirm": "יא, כ'בין {{GENDER:$1|זיכער}}.", + "smw-admin-supplementary-elastic-replication-pages": "בלעטער", + "prefs-general-options": "אַלגעמיינע ברירות", + "smw-ui-tooltip-title-error": "פֿעלער", + "smw-ui-tooltip-title-parameter": "פאַראַמעטער", + "smw-ui-tooltip-title-reference": "רעפערענץ", + "smw-admin-idlookup-input": "זוכן:", + "smw-admin-configutation-tab-namespaces": "נאָמענטיילן", + "smw-livepreview-loading": "לאדנדיג…", + "smw-search-syntax": "סינטאקס", + "smw-search-profile-extended-section-namespace": "נאָמענטייל", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|סעקונדע|סעקונדעס}}", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|סעקונדע|סעקונדעס}}", + "smw-format-datatable-search": "זוכן:", + "smw-help": "הילף", + "smw-listingcontinuesabbrev": "(המשך)", + "smw-showingresults": "ווייזן ביז {{PLURAL:$1|רעזולטאט '''איינס'''|'''$1''' רעזולטאטן}} אנגעפאנגן פון נומער #'''$2''':" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/yo.json b/mediawiki/extensions/SemanticMediaWiki/i18n/yo.json new file mode 100644 index 0000000..c13b421 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/yo.json @@ -0,0 +1,12 @@ +{ + "@metadata": { + "authors": [ + "Demmy" + ] + }, + "smw-categories": "Àwọn ẹ̀ka", + "browse": "Ìtúwò wiki", + "smw-livepreview-loading": "Óúnbọ̀wá...", + "smw-listingcontinuesabbrev": "tẹ̀síwájú", + "smw-showingresults": "Ìfihàn nísàlẹ̀ títí dé {{PLURAL:$1|èsì '''1'''|àwọn èsì '''$1'''}} láti ìbẹ̀rẹ̀ ní #'''$2'''." +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/zh-hans.json b/mediawiki/extensions/SemanticMediaWiki/i18n/zh-hans.json new file mode 100644 index 0000000..256cdc3 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/zh-hans.json @@ -0,0 +1,1173 @@ +{ + "@metadata": { + "authors": [ + "A Chinese Wikipedian", + "A Retired User", + "A2093064", + "Anakmalaysia", + "Angrydog001", + "CXuesong", + "Deathkon", + "Eduardo Addad de Oliveira", + "Eduardoaddad", + "FakeGreenHand", + "Func", + "Great Brightstar", + "GuoPC", + "Gzdavidwong", + "Hanyanbo98", + "Hehua", + "Huajing", + "Hudafu", + "Josephine W.", + "Lakejason0", + "Li3939108", + "Liangent", + "Linforest", + "LittlePaw365", + "Liuxinyu970226", + "Looong", + "LowensteinYang", + "McDutchie", + "NekoCharm", + "Nemo bis", + "NeverBehave", + "Onecountry", + "Phenolla", + "PhiLiP", + "Richarddong", + "SaoMikoto", + "Shirayuki", + "SolidBlock", + "Stang", + "StarHeart", + "Stieizc", + "Tiger", + "Tr jason", + "Wxyveronica", + "Xiaomingyan", + "Xiplus", + "Xzonn", + "Yanmiao liu", + "Yfdyh000", + "Zazzzz", + "Zorua Fox", + "予弦", + "列维劳德", + "夢蝶葬花", + "淮南皓月", + "神樂坂秀吉", + "科劳", + "落花有意12138", + "铁桶", + "阿pp", + "아라" + ] + }, + "smw-desc": "让机器与人类都能更轻松地访问wiki([https://www.semantic-mediawiki.org/wiki/Help:User_manual/zh-hans 在线文档])", + "smw-error": "错误", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ 语义MediaWiki]已安装并启用,但缺少适当的[https://www.semantic-mediawiki.org/wiki/Help:Upgrade 升级密钥]。", + "smw-upgrade-release": "发行", + "smw-upgrade-progress": "进度", + "smw-upgrade-progress-explain": "升级何时完成较难预测,因为这取决于数据存储库的大小和可用的硬件,对于较大的wiki,可能需要一定时间才能完成。\n\n请联系您的本地管理员获取更多有关进度的信息。", + "smw-upgrade-progress-create-tables": "正在创建(或更新)表格和索引...", + "smw-upgrade-progress-post-creation": "正在运行创建后任务...", + "smw-upgrade-progress-table-optimization": "正在运行表格优化...", + "smw-upgrade-progress-supplement-jobs": "正在添加补充工作...", + "smw-upgrade-error-title": "错误 » 语义MediaWiki", + "smw-upgrade-error-why-title": "我为何会看到这个页面?", + "smw-upgrade-error-why-explain": "语义MediaWiki的内部数据库结构发生更改,需要进行一些调整才能完全正常运行。原因可能有以下几种:\n* 添加了额外的固定属性(需要额外的表格设置)\n* 升级含有对表格或索引的某些更改,因此在访问数据之前必须进行拦截\n* 存储或查询引擎发生更改", + "smw-upgrade-error-how-title": "我该如何修复这个错误?", + "smw-upgrade-error-how-explain-admin": "管理员(或任何具有管理员权限的人)必须运行MediaWiki的 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php]或语义MediaWiki的[https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php]维护脚本。", + "smw-upgrade-error-how-explain-links": "您还可以查阅以下页面获取更多帮助:\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation 安装]说明\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting 故障排除]帮助页面", + "smw-extensionload-error-why-title": "我为何会看到这个页面?", + "smw-extensionload-error-why-explain": "本扩展不是使用enableSemantics加载的,而是通过其他方式启用的,例如直接使用wfLoadExtension( 'SemanticMediaWiki' )。", + "smw-extensionload-error-how-title": "我该如何修复这个错误?", + "smw-extensionload-error-how-explain": "要在启用扩展时避免命名空间声明和待处理配置的相关问题,必须使用enableSemantics来确保在通过ExtensionRegistry加载扩展之前设置好必需变量。\n\n更多帮助请查阅[https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics]帮助页面。", + "smw-upgrade-maintenance-title": "维护 » 语义MediaWiki", + "smw-upgrade-maintenance-why-title": "我为何会看到这个页面?", + "smw-upgrade-maintenance-note": "系统目前正在进行[https://www.semantic-mediawiki.org/ 语义MediaWiki]扩展及其数据存储库的[https://www.semantic-mediawiki.org/wiki/Help:Upgrade 升级]。我们恳请您耐心等待维护完成,之后即可再次访问本wiki。", + "smw-upgrade-maintenance-explain": "扩展通过把大部分维护任务推迟到update.php之后来尽量减少影响和停机时间,但某些数据库相关更改必需先行完成,以避免数据不一致。这可能包括:\n* 更改表格结构,如添加新字段或修改现有字段\n* 更改或添加表格索引\n* 运行表格优化(当启用时)", + "smw-semantics-not-enabled": "此wiki未启用语义MediaWiki功能。", + "smw_viewasrdf": "RDF信息源", + "smw_finallistconjunct": "和", + "smw-factbox-head": "...“$1”的更多信息", + "smw-factbox-facts": "事实", + "smw-factbox-facts-help": "展示用户创建的陈述和事实", + "smw-factbox-attachments": "附件", + "smw-factbox-attachments-value-unknown": "不适用", + "smw-factbox-attachments-is-local": "本地", + "smw-factbox-attachments-help": "展示可用的附件", + "smw-factbox-facts-derived": "衍生事实", + "smw-factbox-facts-derived-help": "展示根据规则或借助其他推理技术得出的事实", + "smw_isspecprop": "该属性是此wiki内的特殊属性。", + "smw-concept-cache-header": "缓存使用情况", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count 概念缓存]含有{{PLURAL:$1|'''$1'''个实体}}($2)。", + "smw-concept-no-cache": "没有可用的缓存。", + "smw_concept_description": "概念“$1”的描述", + "smw_no_concept_namespace": "概念只能在“概念:”(Concept:)命名空间内的页面上定义。", + "smw_multiple_concepts": "每个概念页面只能有一个概念定义。", + "smw_concept_cache_miss": "因为wiki配置要求概念“$1”离线计算,所以该概念目前无法使用。如果一段时间后问题仍未解决,请要求网站管理员让该概念可用。", + "smw_noinvannot": "值不能分配给反向属性。", + "version-semantic": "语义扩展", + "smw_baduri": "不允许“$1”形式的URI。", + "smw_printername_count": "结果计数", + "smw_printername_csv": "CSV导出", + "smw_printername_dsv": "DSV导出", + "smw_printername_debug": "调试查询(供专家使用)", + "smw_printername_embedded": "嵌入式页面内容", + "smw_printername_json": "JSON导出", + "smw_printername_list": "列表", + "smw_printername_plainlist": "普通列表", + "smw_printername_ol": "有序列表", + "smw_printername_ul": "无序列表", + "smw_printername_table": "表格", + "smw_printername_broadtable": "宽表格", + "smw_printername_template": "模板", + "smw_printername_templatefile": "模板文件", + "smw_printername_rdf": "RDF导出", + "smw_printername_category": "分类", + "validator-type-class-SMWParamSource": "文本", + "smw-paramdesc-limit": "最大返回结果数", + "smw-paramdesc-offset": "第一个结果的偏移量", + "smw-paramdesc-headers": "显示表头/属性名称", + "smw-paramdesc-mainlabel": "首列(主页面名称)的表头标签", + "smw-paramdesc-link": "把值显示成链接", + "smw-paramdesc-intro": "当有查询结果时显示在结果前的文字", + "smw-paramdesc-outro": "当有查询结果时显示在结果后的文字", + "smw-paramdesc-default": "当没有查询结果时显示的文字", + "smw-paramdesc-sep": "结果之间的分隔符", + "smw-paramdesc-propsep": "结果条目内属性之间的分隔符", + "smw-paramdesc-valuesep": "结果属性的值之间的分隔符", + "smw-paramdesc-showsep": "在CSV文件顶部显示分隔符(“sep=”)", + "smw-paramdesc-distribution": "显示值的出现次数,而不是显示所有值。", + "smw-paramdesc-distributionsort": "按出现次数排序值分布。", + "smw-paramdesc-distributionlimit": "限制值分布内值的数量。", + "smw-paramdesc-aggregation": "指定合计涉及的内容", + "smw-paramdesc-template": "用于展示打印输出的模板的名称", + "smw-paramdesc-columns": "显示结果的列数", + "smw-paramdesc-userparam": "当使用模板时传递给每个模板调用的值", + "smw-paramdesc-class": "给列表设置的额外CSS类", + "smw-paramdesc-introtemplate": "当有查询结果时显示在结果前的模板的名称", + "smw-paramdesc-outrotemplate": "当有查询结果时显示在结果后的模板的名称", + "smw-paramdesc-embedformat": "用于定义标题的HTML标记", + "smw-paramdesc-embedonly": "不显示标题", + "smw-paramdesc-table-class": "给表格设置的额外CSS类", + "smw-paramdesc-table-transpose": "垂直显示表头,水平显示结果", + "smw-paramdesc-prefix": "控制打印输出内命名空间的显示", + "smw-paramdesc-rdfsyntax": "要使用的RDF语法", + "smw-paramdesc-csv-sep": "指定列的分隔符", + "smw-paramdesc-csv-valuesep": "指定值的分隔符", + "smw-paramdesc-csv-merge": "合并有相同主体标识符(也称首列)的行及其每列的值", + "smw-paramdesc-csv-bom": "在输出文件的顶部添加BOM(标示字节顺序的字符)", + "smw-paramdesc-dsv-separator": "要使用的分隔符", + "smw-paramdesc-dsv-filename": "DSV文件的名称", + "smw-paramdesc-filename": "输出文件的名称", + "smw-smwdoc-description": "展示可用于特定结果格式的所有参数及其默认值和描述的表格。", + "smw-smwdoc-default-no-parameter-list": "该结果格式未提供格式特有参数。", + "smw-smwdoc-par-format": "显示参数文档的结果格式。", + "smw-smwdoc-par-parameters": "要显示的参数种类。“specific”显示格式特有的参数,“base”显示所有格式均有的参数,“all”两种参数都显示。", + "smw-paramdesc-sort": "排序查询所依据的属性", + "smw-paramdesc-order": "查询排序的顺序", + "smw-paramdesc-searchlabel": "提示继续搜索的文字", + "smw-paramdesc-named_args": "命名传递给模板的参数", + "smw-paramdesc-template-arguments": "设置命名的参数传递给模板的方式", + "smw-paramdesc-import-annotation": "解析主体期间复制的额外注解的数据", + "smw-paramdesc-export": "导出选项", + "smw-paramdesc-prettyprint": "显示额外缩进和换行的美化打印(pretty-print)输出", + "smw-paramdesc-json-unescape": "含有未转义斜杠和多字节Unicode字符的输出", + "smw-paramdesc-json-type": "序列化类型", + "smw-paramdesc-source": "备选查询来源", + "smw-paramdesc-jsonsyntax": "要使用的JSON语法", + "smw-printername-feed": "RSS和Atom信息源", + "smw-paramdesc-feedtype": "信息源类型", + "smw-paramdesc-feedtitle": "用作信息源标题的文字", + "smw-paramdesc-feeddescription": "用作信息源描述的文字", + "smw-paramdesc-feedpagecontent": "用信息源显示的页面内容", + "smw-label-feed-description": "$1的$2信息源", + "smw-paramdesc-mimetype": "输出文件的媒体类型(MIME类型)", + "smw_iq_disabled": "此wiki已停用语义查询。", + "smw_iq_moreresults": "...更多结果", + "smw_parseerror": "无法理解给定的值。", + "smw_decseparator": ".", + "smw_kiloseparator": ",", + "smw_notitle": "“$1”在此wiki内不能用作页面名称。", + "smw_noproperty": "“$1”在此wiki内不能用作属性名称。", + "smw_wrong_namespace": "这里只允许命名空间“$1”内的页面。", + "smw_manytypes": "给属性定义了不止一种类型。", + "smw_emptystring": "不接受空字符串。", + "smw_notinenum": "“$1”不在“$3”属性的[[Property:Allows value|允许值]]列表($2)内。", + "smw-datavalue-constraint-error-allows-value-list": "“$1”不在“$3”属性的[[Property:Allows value|允许值]]列表($2)内。", + "smw-datavalue-constraint-error-allows-value-range": "“$1”不在“$3”属性的[[Property:Allows value|允许值]]约束指定的“$2”范围内。", + "smw-constraint-error": "约束问题", + "smw-constraint-error-suggestions": "请检查列出的违反约束情况和属性以及它们的注解值,以确保满足所有约束要求。", + "smw-constraint-error-limit": "该列表最多含有$1个违反约束情况。", + "smw_noboolean": "“$1”不能被识别为布尔(真/假)值。", + "smw_true_words": "true,t,yes,y,真,对,是", + "smw_false_words": "false,f,no,n,假,错,否", + "smw_nofloat": "“$1”不是数字。", + "smw_infinite": "不支持“$1”这么大的数字。", + "smw_unitnotallowed": "“$1”未被声明为该属性的有效计量单位。", + "smw_nounitsdeclared": "该属性没有声明任何计量单位。", + "smw_novalues": "没有指定值。", + "smw_nodatetime": "无法理解日期“$1”。", + "smw_toomanyclosing": "查询内“$1”出现次数过多。", + "smw_noclosingbrackets": "您的查询内使用的某些“[[”未用对应的“]]”封闭。", + "smw_misplacedsymbol": "符号“$1”用在了没有用处的位置。", + "smw_unexpectedpart": "无法理解查询的“$1”部分。结果可能与预期不同。", + "smw_emptysubquery": "某些子查询有无效条件。", + "smw_misplacedsubquery": "某些子查询用在了不允许使用的位置。", + "smw_valuesubquery": "属性“$1”的值不支持子查询。", + "smw_badqueryatom": "无法理解查询的某些“[[...]]”部分。", + "smw_propvalueproblem": "无法理解属性“$1”的值。", + "smw_noqueryfeature": "此wiki不支持某些查询功能,部分查询被丢弃($1)。", + "smw_noconjunctions": "此wiki不支持查询内合取,部分查询被丢弃($1)。", + "smw_nodisjunctions": "此wiki不支持查询内析取,部分查询被丢弃($1)。", + "smw_querytoolarge": "由于此wiki对查询大小或深度的限制,无法考虑以下{{PLURAL:$2|查询条件}}:$1。", + "smw_notemplategiven": "请提供参数“template”(模板)的值以便此查询格式正常工作。", + "smw_db_sparqlqueryproblem": "无法从SPARQL数据库获得查询结果。该错误可能是暂时的,也可能表明数据库软件存在错误。", + "smw_db_sparqlqueryincomplete": "回答查询过于困难,因此被中止。某些结果可能会丢失。如果可能,请尝试使用更简单的查询。", + "smw_type_header": "“$1”类型的属性", + "smw_typearticlecount": "正在显示$1个使用此类型的{{PLURAL:$1|属性}}。", + "smw_attribute_header": "使用属性“$1”的页面", + "smw_attributearticlecount": "正在显示$1个使用此属性的{{PLURAL:$1|页面}}。", + "smw-propertylist-subproperty-header": "子属性", + "smw-propertylist-redirect-header": "同义词", + "smw-propertylist-error-header": "有不当分配的页面", + "smw-propertylist-count": "正在显示$1个相关的{{PLURAL:$1|实体}}。", + "smw-propertylist-count-with-restricted-note": "正在显示$1个相关的{{PLURAL:$1|实体}}(可用实体更多但显示数量限制为“$2”)。", + "smw-propertylist-count-more-available": "正在显示$1个相关的{{PLURAL:$1|实体}}(可用实体更多)。", + "specialpages-group-smw_group": "语义MediaWiki", + "specialpages-group-smw_group-maintenance": "维护", + "specialpages-group-smw_group-properties-concepts-types": "属性、概念、类型", + "specialpages-group-smw_group-search": "浏览与搜索", + "exportrdf": "导出页面为RDF", + "smw_exportrdf_docu": "此页面允许您以RDF格式获取页面上的数据。要导出页面,请在下方文本框内输入页面标题,每行一个。", + "smw_exportrdf_recursive": "递归导出所有相关页面。注意,结果可能过大!", + "smw_exportrdf_backlinks": "也导出引用导出页面的所有页面。生成可浏览的RDF。", + "smw_exportrdf_lastdate": "不导出自给定时刻之后无更改的页面。", + "smw_exportrdf_submit": "导出", + "uriresolver": "URI解析器", + "properties": "属性", + "smw-categories": "分类", + "smw_properties_docu": "以下属性在本wiki内使用。", + "smw_property_template": "$1,$2类型($3次{{PLURAL:$3|使用}})", + "smw_property_template_notype": "$1($2)", + "smw_propertylackspage": "所有属性都应通过页面进行描述!", + "smw_propertylackstype": "没有给该属性指定类型(暂时假设为$1类型)。", + "smw_propertyhardlyused": "该属性在本wiki内几乎没有使用!", + "smw-property-name-invalid": "属性$1无法使用(无效属性名称)。", + "smw-property-name-reserved": "“$1”被列为保留名称,不应用作属性。[https://www.semantic-mediawiki.org/wiki/Help:Property_naming 帮助页面]可能含有保留该名称原因的有关信息。", + "smw-sp-property-searchform": "显示名称含有以下文字的属性:", + "smw-sp-property-searchform-inputinfo": "输入区分大小写,用于筛选时,只显示匹配条件的属性。", + "smw-special-property-searchform": "显示名称含有以下文字的属性:", + "smw-special-property-searchform-inputinfo": "输入区分大小写,用于筛选时,只显示匹配条件的属性。", + "smw-special-property-searchform-options": "选项", + "smw-special-wantedproperties-filter-label": "筛选:", + "smw-special-wantedproperties-filter-none": "无", + "smw-special-wantedproperties-filter-unapproved": "未核准", + "smw-special-wantedproperties-filter-unapproved-desc": "与核准模式配合使用的筛选选项。", + "concepts": "概念", + "smw-special-concept-docu": "[https://www.semantic-mediawiki.org/wiki/Help:Concepts 概念]可视作“动态分类”,即不是手工创建,而是语义MediaWiki根据给定查询的描述计算得到的页面合集。", + "smw-special-concept-header": "概念列表", + "smw-special-concept-count": "以下{{PLURAL:$1|概念|$1个概念}}正在被列举。", + "smw-special-concept-empty": "没有找到概念。", + "unusedproperties": "未使用的属性", + "smw-unusedproperties-docu": "此页面列出已声明但未被其他页面使用的[https://www.semantic-mediawiki.org/wiki/Unused_properties 未使用的属性]。要获取其他类型属性列表,请查看[[Special:Properties|属性]]或[[Special:WantedProperties|需要的属性]]特殊页面。", + "smw-unusedproperty-template": "$1,$2类型", + "wantedproperties": "需要的属性", + "smw-wantedproperties-docu": "此页面列出在本wiki内使用但没有页面描述的[https://www.semantic-mediawiki.org/wiki/Wanted_properties 需要的属性]。要获取其他类型属性列表,请查看[[Special:Properties|属性]]或[[Special:UnusedProperties|未使用的属性]]特殊页面。", + "smw-wantedproperty-template": "$1($2次{{PLURAL:$2|使用}})", + "smw-special-wantedproperties-docu": "此页面列出在本wiki内使用但没有页面描述的[https://www.semantic-mediawiki.org/wiki/Wanted_properties 需要的属性]。要获取其他类型属性列表,请查看[[Special:Properties|属性]]或[[Special:UnusedProperties|未使用的属性]]特殊页面。", + "smw-special-wantedproperties-template": "$1($2次{{PLURAL:$2|使用}})", + "smw_purge": "刷新", + "smw-purge-update-dependencies": "语义MediaWiki正在清除当前页面缓存,因为它检测到一些需要更新的过时依赖。", + "smw-purge-failed": "语义MediaWiki尝试清除页面缓存失败", + "types": "类型", + "smw_types_docu": "[https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes 可用数据类型]列表,其中每个[https://www.semantic-mediawiki.org/wiki/Help:Datatype 类型]代表一组从存储特征角度和从会遗传给分配的属性的显示特征角度描述值的唯一特性。", + "smw-special-types-no-such-type": "“$1”未知或未指定为有效数据类型。", + "smw-statistics": "语义统计", + "smw-statistics-cached": "语义统计(缓存)", + "smw-statistics-entities-total": "实体(总计)", + "smw-statistics-entities-total-info": "估算的实体的行数。包括属性、概念或任何其他需要分配ID的注册对象表示形式。", + "smw-statistics-property-instance": "属性{{PLURAL:$1|值}}(总计)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|属性}}]](总计)", + "smw-statistics-property-total-info": "注册属性的总数。", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|属性}}(总计)", + "smw-statistics-property-used": "{{PLURAL:$1|属性}}(与至少一个值一起使用)", + "smw-statistics-property-page": "{{PLURAL:$1|属性}}(用页面注册)", + "smw-statistics-property-page-info": "统计有专门页面和描述的属性。", + "smw-statistics-property-type": "{{PLURAL:$1|属性}}(已分配数据类型)", + "smw-statistics-query-inline-legacy": "{{PLURAL:$1|查询}}", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|查询}}]](嵌入式,总计)", + "smw-statistics-query-format": "$1格式", + "smw-statistics-query-size": "查询大小", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|概念}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|概念}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|子对象}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|子对象}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|数据类型}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|属性值}}([[Special:ProcessingErrorList|{{PLURAL:$1|不正确的注解}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|属性值}}({{PLURAL:$1|不正确的注解}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities 过时{{PLURAL:$1|实体}}]", + "smw-statistics-delete-count-info": "已标记为需删除的实体,应使用提供的维护脚本定期处理。", + "smw_uri_doc": "URI解析器实现[$1 W3C关于httpRange-14的TAG发现报告]。它确保人类不会被转化为网站。它可确保RDF表示(针对机器)或维基页面(针对人类)是有根据请求交付。", + "ask": "语义搜索", + "smw-ask-help": "此部分含有一些解释#ask语法使用方法的链接。\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages 选择页面]介绍选择页面和构建条件的方法\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators 搜索运算符]列出可用的搜索运算符,包括范围查询和通配符查询的运算符\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Displaying_information 显示信息]概述打印输出语句和格式选项的用法", + "smw_ask_sortby": "按列排序(可选)", + "smw_ask_ascorder": "升序", + "smw_ask_descorder": "降序", + "smw-ask-order-rand": "随机", + "smw_ask_submit": "查找结果", + "smw_ask_editquery": "编辑查询", + "smw_add_sortcondition": "[添加排序条件]", + "smw-ask-sort-add-action": "添加排序条件", + "smw_ask_hidequery": "隐藏查询(紧凑视图)", + "smw_ask_help": "查询帮助", + "smw_ask_queryhead": "条件", + "smw_ask_printhead": "打印输出选择", + "smw_ask_printdesc": "(每行添加一个属性名称)", + "smw_ask_format_as": "格式为:", + "smw_ask_defaultformat": "默认", + "smw_ask_otheroptions": "其他选项", + "smw-ask-otheroptions-info": "此部分含有更改打印输出语句的选项。把鼠标悬停在参数上可查看参数说明。", + "smw-ask-otheroptions-collapsed-info": "请使用加号图标查看所有可用选项", + "smw_ask_show_embed": "显示嵌入代码", + "smw_ask_hide_embed": "隐藏嵌入代码", + "smw_ask_embed_instr": "要把该查询嵌入wiki页面,请使用下方代码。", + "smw-ask-delete": "删除", + "smw-ask-sorting": "排序", + "smw-ask-options": "选项", + "smw-ask-options-sort": "排序选项", + "smw-ask-format-options": "格式和选项", + "smw-ask-parameters": "参数", + "smw-ask-search": "搜索", + "smw-ask-debug": "调试", + "smw-ask-debug-desc": "生成查询调试信息", + "smw-ask-no-cache": "停用查询缓存", + "smw-ask-no-cache-desc": "没有查询缓存的结果", + "smw-ask-result": "结果", + "smw-ask-empty": "清除所有条目", + "smw-ask-download-link-desc": "以$1格式下载查询结果", + "smw-ask-format": "格式", + "smw-ask-format-selection-help": "所选格式的帮助:$1", + "smw-ask-condition-change-info": "条件已更改,搜索引擎需要重新运行查询以生成匹配新要求的结果。", + "smw-ask-input-assistance": "输入辅助", + "smw-ask-condition-input-assistance": "给打印输出、排序和条件字段提供[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance 输入辅助]。条件字段需要使用任一以下前缀:", + "smw-ask-condition-input-assistance-property": "p:可获取属性建议(如[[p:Has ...)", + "smw-ask-condition-input-assistance-category": "c:可获取分类建议", + "smw-ask-condition-input-assistance-concept": "con:可获取概念建议", + "smw-ask-format-change-info": "格式已修改,需要再次执行查询以匹配新参数和可视化选项。", + "smw-ask-format-export-info": "所选格式为没有可视化表示形式的导出格式,因此结果只能以下载形式提供。", + "smw-ask-query-search-info": "查询$1在$4{{PLURAL:$4|秒}}内被{{PLURAL:$3|1=$2(来自缓存)|$2(来自缓存)|$2}}回答。", + "smw-ask-extra-query-log": "查询日志", + "smw-ask-extra-other": "其他", + "searchbyproperty": "按属性搜索", + "processingerrorlist": "处理错误列表", + "constrainterrorlist": "约束错误列表", + "propertylabelsimilarity": "属性标签相似性报告", + "missingredirectannotations": "丢失的重定向注解", + "smw-processingerrorlist-intro": "以下列表提供与[https://www.semantic-mediawiki.org/ 语义MediaWiki]相关的[https://www.semantic-mediawiki.org/wiki/Processing_errors 处理错误]的概览。建议定期监控此列表并修正无效的值注解。", + "smw-constrainterrorlist-intro": "以下列表提供与[https://www.semantic-mediawiki.org/ 语义MediaWiki]相关的[https://www.semantic-mediawiki.org/wiki/Constraint_errors 约束错误]的概览。建议定期监控此列表并修正无效的值注解。", + "smw-missingredirects-intro": "以下段落会列出语义MediaWiki内缺少[https://www.semantic-mediawiki.org/wiki/Redirects 重定向]注解的页面(通过与MediaWiki内存储的信息对比得到),可通过手动[https://www.semantic-mediawiki.org/wiki/Help:Purge 清除页面缓存]或运行rebuildData.php维护脚本(使用选项--redirects)来重建这些注解。", + "smw-missingredirects-list": "缺少注解的页面", + "smw-missingredirects-list-intro": "显示$1个缺少重定向注解的{{PLURAL:$1|页面}}。", + "smw-missingredirects-noresult": "没有找到缺少的重定向注解。", + "smw_sbv_docu": "搜索有给定属性和值的所有页面。", + "smw_sbv_novalue": "请输入该属性的有效值,或查看“$1”的所有属性值。", + "smw_sbv_displayresultfuzzy": "有值为“$2”的“$1”属性的所有页面的列表。由于结果过少,也显示邻近值的结果。", + "smw_sbv_property": "属性:", + "smw_sbv_value": "值:", + "smw_sbv_submit": "查找结果", + "browse": "浏览wiki", + "smw_browselink": "浏览属性", + "smw_browse_article": "请输入开始浏览的页面名称。", + "smw_browse_go": "提交", + "smw_browse_show_incoming": "显示传入属性", + "smw_browse_hide_incoming": "隐藏传入属性", + "smw_browse_no_outgoing": "该页面没有属性。", + "smw_browse_no_incoming": "没有属性链接到该页面。", + "smw-browse-from-backend": "当前正在从后端检索信息。", + "smw-browse-intro": "此页面提供主体或实体实例的有关详细信息,请输入要检查的对象名称。", + "smw-browse-invalid-subject": "主体验证返回“$1”错误。", + "smw-browse-api-subject-serialization-invalid": "主体的序列化格式无效。", + "smw-browse-js-disabled": "JavaScript可能停用或不支持。我们建议使用支持JavaScript的浏览器。其他选项请查阅[https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi]配置参数页面。", + "smw-browse-show-group": "显示组合", + "smw-browse-hide-group": "隐藏组合", + "smw-noscript": "该页面或操作需要JavaScript才能工作。请在您的浏览器中启用JavaScript或使用支持Javascript的浏览器,以便功能按需提供。更多信息请查阅[https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript]帮助页面。", + "smw_inverse_label_default": "作为$1", + "smw_inverse_label_property": "反向属性标签", + "pageproperty": "页面属性搜索", + "pendingtasklist": "待处理任务列表", + "facetedsearch": "多面搜索", + "smw_pp_docu": "输入页面和属性,或只输入属性以检索所有分配值。", + "smw_pp_from": "页面:", + "smw_pp_type": "属性:", + "smw_pp_submit": "查找结果", + "smw-prev": "上{{PLURAL:$1|$1}}条", + "smw-next": "下{{PLURAL:$1|$1}}条", + "smw_result_prev": "上一页", + "smw_result_next": "下一页", + "smw_result_results": "结果", + "smw_result_noresults": "没有结果。", + "smwadmin": "语义MediaWiki控制面板", + "smw-admin-statistics-job-title": "作业统计", + "smw-admin-statistics-job-docu": "作业统计显示尚未执行的预定语义MediaWiki作业的有关信息。作业数量可能略有误差或含有失败的尝试。更多信息请查阅[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue 手册]。", + "smw-admin-statistics-querycache-title": "查询缓存", + "smw-admin-statistics-querycache-disabled": "[https://www.semantic-mediawiki.org/wiki/QueryCache 查询缓存]未在此wiki启用,因此没有可用的统计信息。", + "smw-admin-statistics-querycache-legend": "缓存统计含有以下临时累积数据及其衍生数据:\n* “misses”是从缓存检索数据无法获得响应,而被迫检索直接存储库(数据库、三重存储等)的尝试次数\n* “deletes”是缓存驱逐操作(通过清除缓存或查询依赖)的总数\n* “hits”含有从嵌入式(wiki页面内调用的查询)或非嵌入式(通过诸如Special:Ask等页面或API请求)来源检索缓存的次数\n* “medianRetrievalResponseTime”是收集过程中的缓存和非缓存检索请求的中位响应时间(秒)的方向值\n* “noCache”表示从缓存检索结果的无尝试请求(limit=0的查询、“no-cache”选项等)的总数", + "smw-admin-statistics-section-explain": "该部分给管理员提供额外的统计信息。", + "smw-admin-statistics-semanticdata-overview": "概览", + "smw-admin-permission-missing": "对此页面的访问因缺少权限而被阻止,请查阅[https://www.semantic-mediawiki.org/wiki/Help:Permissions 权限]帮助页面获取必要设置的有关详细信息。", + "smw-admin-setupsuccess": "存储引擎已设置完成。", + "smw_smwadmin_return": "返回$1", + "smw_smwadmin_updatestarted": "刷新语义数据的新更新流程已启动。所有储存的数据会在需要时重建或修复。您可以在此特殊页面上追踪更新进度。", + "smw_smwadmin_updatenotstarted": "已经有正在运行的更新流程。不会再创建另一个。", + "smw_smwadmin_updatestopped": "所有现有的更新流程均已停止。", + "smw_smwadmin_updatenotstopped": "要停止正在运行的更新流程,您必须选中复选框以确认您的要求。", + "smw-admin-docu": "此特殊页面会在您安装、升级、维护和使用语义MediaWiki时提供帮助,还提供进一步的管理功能、任务,以及统计。请记得在执行管理功能前备份重要数据。", + "smw-admin-environment": "软件环境", + "smw-admin-db": "数据库设置", + "smw-admin-db-preparation": "表格初始化正在进行,可能需要一些时间才能显示结果,这取决于表格的大小和可能需要的表格优化。", + "smw-admin-dbdocu": "语义MediaWiki需要自己的数据库结构(独立于MediaWiki,因此不影响MediaWiki安装的其余部分)来存储语义数据。虽然此设置功能可以多次执行而不造成任何损害,但是只需在安装或升级时执行一次即可。", + "smw-admin-permissionswarn": "如果操作因SQL错误而失败,则可能是wiki任用的数据库用户(检查“LocalSettings.php”文件设置)没有足够的权限。要么授予该用户创建和删除表格的额外权限,要么临时在“LocalSettings.php”文件输入数据库根目录的登录信息,要么使用可读取管理员凭据的维护脚本setupStore.php。", + "smw-admin-dbbutton": "初始化或升级表格", + "smw-admin-announce": "发布您的wiki", + "smw-admin-announce-text": "如果您的wiki是公开的,您可以在WikiApiary(追踪wiki的wiki)上注册它。", + "smw-admin-deprecation-notice-title": "弃用通知", + "smw-admin-deprecation-notice-docu": "以下部分含有已弃用或删除,但在此wiki上仍处于活跃状态的设置。预计任何未来发行版都会删除对这些配置的支持。", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1]已弃用,会在$2版本删除", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1]会删除(或替换)以下{{PLURAL:$2|选项}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1已弃用,会在$2版本删除", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1]已替换为[https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1]已替换为$2", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1]{{PLURAL:$2|选项}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1即将替换为$2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1]已在$2版本删除", + "smw-admin-deprecation-notice-title-notice": "已弃用的设置", + "smw-admin-deprecation-notice-title-notice-explanation": "已弃用的设置展示在此wiki检测到使用并计划在未来发行版中删除或更改的设置。", + "smw-admin-deprecation-notice-title-replacement": "已替换或重命名的设置", + "smw-admin-deprecation-notice-title-replacement-explanation": "已替换或重命名的设置含有已重命名或有其他形式修改的设置,建议立刻更新其名称或格式。", + "smw-admin-deprecation-notice-title-removal": "已删除的设置", + "smw-admin-deprecation-notice-title-removal-explanation": "已删除的设置识别在之前发行版中删除但在此wiki检测到使用的设置。", + "smw-admin-deprecation-notice-section-legend": "说明", + "smw-smwadmin-refresh-title": "数据修复与更新", + "smw_smwadmin_datarefresh": "数据重建", + "smw_smwadmin_datarefreshdocu": "所有语义MediaWki数据可以根据wiki当前内容还原。此功能可以用于,当内部格式因软件升级而更改时,修复受损数据或刷新数据。更新逐页面执行,不会立即完成。下面会显示更新是否正在进行,并允许您启动或停止更新(除非网站管理员停用该功能)。", + "smw_smwadmin_datarefreshprogress": "已有更新正在进行。更新进展缓慢是正常的,因为只会在每当有用户访问wiki时刷新一小块数据。要更快完成更新,您可以调用MediaWiki维护脚本runJobs.php(使用选项--maxjobs 1000限制每批次更新的数量)。当前更新估计进度:", + "smw_smwadmin_datarefreshbutton": "安排数据重建", + "smw_smwadmin_datarefreshstop": "停止此次更新", + "smw_smwadmin_datarefreshstopconfirm": "是的,我{{GENDER:$1|确认}}。", + "smw-admin-job-scheduler-note": "此部分内(已启用的)任务都通过作业队列执行,以避免执行过程中出现冲突死锁情况。[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue job queue 作业队列]对处理过程负责,因此维护脚本runJobs.php必需拥有适当的容量(请检查配置参数$wgRunJobsAsync)。", + "smw-admin-outdateddisposal-title": "过时实体废弃", + "smw-admin-outdateddisposal-intro": "某些活动(更改属性类型、删除wiki页面、纠正错误值)会产生[https://www.semantic-mediawiki.org/wiki/Outdated_entities 过时实体],建议定期删除这些实体以释放关联的表格空间。", + "smw-admin-outdateddisposal-active": "已安排过时实体废弃工作。", + "smw-admin-outdateddisposal-button": "安排废弃", + "smw-admin-feature-disabled": "此功能已在此wiki停用,请查阅设置帮助页面或联系系统管理员。", + "smw-admin-propertystatistics-title": "属性统计重建", + "smw-admin-propertystatistics-intro": "重建整个属性使用情况统计,借此更新并更正属性的[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count 使用次数]。", + "smw-admin-propertystatistics-active": "已安排属性统计重建工作。", + "smw-admin-propertystatistics-button": "安排统计重建", + "smw-admin-fulltext-title": "全文搜索重建", + "smw-admin-fulltext-intro": "用启用的[https://www.semantic-mediawiki.org/wiki/Full-text 全文搜索]数据类型从属性表格重建搜索索引。更改索引规则(修改停止词、新增词干分析器等)和/或新增或修改表格后,必需再次运行此工作。", + "smw-admin-fulltext-active": "已安排全文搜索重建工作。", + "smw-admin-fulltext-button": "安排全文重建", + "smw-admin-support": "获取支持", + "smw-admin-supportdocu": "我们提供多种资源帮助您处理以下问题:", + "smw-admin-installfile": "如果您在安装时遇到问题,请首先检查安装指导文件安装页面内的指南。", + "smw-admin-smwhomepage": "语义MediaWiki的完整用户文档位于semantic-mediawiki.org。", + "smw-admin-bugsreport": "漏洞错误可在问题追踪器报告,报告错误页面提供了一些关于撰写有效问题报告的方法指导。", + "smw-admin-questions": "如果您有更多疑问或建议,请加入语义MediaWiki用户邮件列表上的讨论。", + "smw-admin-other-functions": "其他功能", + "smw-admin-statistics-extra": "统计功能", + "smw-admin-statistics": "统计", + "smw-admin-supplementary-section-title": "补充功能", + "smw-admin-supplementary-section-subtitle": "支持的核心功能", + "smw-admin-supplementary-section-intro": "此部分提供维护活动范围外的额外功能,列出的某些功能(请查阅[https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions 文档])可能受限或不可用,因此在此wiki不可访问。", + "smw-admin-supplementary-settings-title": "配置与设置", + "smw-admin-supplementary-settings-intro": "$1展示定义语义MediaWiki行为的参数", + "smw-admin-main-title": "语义MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "运行统计", + "smw-admin-supplementary-operational-statistics-short-title": "运行统计", + "smw-admin-supplementary-operational-statistics-intro": "展示一组扩展的$1", + "smw-admin-supplementary-idlookup-title": "实体查找与废弃", + "smw-admin-supplementary-idlookup-short-title": "实体查找与废弃", + "smw-admin-supplementary-idlookup-intro": "支持简单的$1功能", + "smw-admin-supplementary-duplookup-title": "重复实体查找", + "smw-admin-supplementary-duplookup-intro": "$1可查找归类为所选表格矩阵的重复项的实体", + "smw-admin-supplementary-duplookup-docu": "此页面列出所选表格中归类为[https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities 重复]的条目。重复条目应该只会在更新终止或回滚事务不成功等极少数情况下产生。", + "smw-admin-supplementary-operational-statistics-cache-title": "缓存统计", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1展示一组精选的与缓存相关的统计信息", + "smw-admin-supplementary-operational-table-statistics-title": "表格统计", + "smw-admin-supplementary-operational-table-statistics-short-title": "表格统计", + "smw-admin-supplementary-operational-table-statistics-intro": "给一组选定的表格生成$1", + "smw-admin-supplementary-operational-table-statistics-explain": "此部分含有帮助管理员和数据管理员就后端和存储引擎的状态做出明智决策的选定表格的统计信息。", + "smw-admin-supplementary-operational-table-statistics-legend": "以下是表格统计使用的一些键的说明:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count 表格内的总行数", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id 当前使用的最后一个ID\n* duplicate_count id_table内找到的重复项数(另见[[Special:SemanticMediaWiki/duplicate-lookup|重复实体查找]])\n* rows.rev_count 分配有表示直接wiki页面链接的revision_id的行数\n* rows.smw_namespace_group_by_count 表格内使用的命名空间合计的行数\n* rows.smw_proptable_hash.query_match_count 有对应表格引用的查询子对象数\n* rows.smw_proptable_hash.query_null_count 没有表格引用(未链接、浮动引用)的查询子对象数", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent 唯一词语的百分比(百分比低表明重复词语占据了表格内容和索引)\n* rows.terms_occurrence.single_occurrence_total_count 只出现一次的词语数\n* rows.terms_occurrence.multi_occurrence_total_count 出现多次的词语数", + "smw-admin-supplementary-elastic-version-info": "版本", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1展示设置和索引统计的有关详细信息", + "smw-admin-supplementary-elastic-docu": "此页面含有连接至语义MediaWiki的Elasticsearch集群及其[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore]的设置、映射、健康状况和索引统计的有关信息。", + "smw-admin-supplementary-elastic-functions": "支持的功能", + "smw-admin-supplementary-elastic-settings-title": "设置(索引)", + "smw-admin-supplementary-elastic-settings-intro": "$1被Elasticsearch用于管理语义MediaWiki索引", + "smw-admin-supplementary-elastic-mappings-title": "映射", + "smw-admin-supplementary-elastic-mappings-intro": "$1列出索引与字段的映射", + "smw-admin-supplementary-elastic-mappings-docu": "此页面含有当前索引使用的字段映射的详细信息。建议监控与 index.mapping.total_fields.limit(指定索引内允许的最大字段数)相关的映射。", + "smw-admin-supplementary-elastic-mappings-docu-extra": "property_fields是有索引的核心字段数,而nested_fields是分配给核心字段以支持特定结构化搜索样板的额外字段的累积数。", + "smw-admin-supplementary-elastic-mappings-summary": "摘要", + "smw-admin-supplementary-elastic-mappings-fields": "字段映射", + "smw-admin-supplementary-elastic-nodes-title": "节点", + "smw-admin-supplementary-elastic-nodes-intro": "$1展示节点统计信息", + "smw-admin-supplementary-elastic-indices-title": "索引", + "smw-admin-supplementary-elastic-indices-intro": "$1提供可用索引及其统计的概览", + "smw-admin-supplementary-elastic-statistics-title": "统计", + "smw-admin-supplementary-elastic-statistics-intro": "$1展示索引等级的统计信息", + "smw-admin-supplementary-elastic-statistics-docu": "此页面提供在索引等级上进行的不同操作的索引统计洞察信息,返回的统计整合了初级数据和总合计。[https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html 帮助页面]含有可用索引统计的详细描述。", + "smw-admin-supplementary-elastic-status-replication": "复制状态", + "smw-admin-supplementary-elastic-status-last-active-replication": "最后一次活跃复制:$1", + "smw-admin-supplementary-elastic-status-refresh-interval": "刷新间隔:$1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "还原工作积压:$1(估计)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "摄入(文件)作业积压:$1(估计值)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "锁定的复制:$1(正在进行重建)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "复制监控(活跃):$1", + "smw-admin-supplementary-elastic-replication-header-title": "复制状态", + "smw-admin-supplementary-elastic-replication-function-title": "复制", + "smw-admin-supplementary-elastic-replication-intro": "$1展示失败复制的有关信息", + "smw-admin-supplementary-elastic-replication-docu": "此页面提供报告有Elasticsearch集群问题的实体的[https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring 复制状态]的有关信息。建议检查列出的实体并清除内容,以确认这是临时问题。", + "smw-admin-supplementary-elastic-replication-files-docu": "需要注意,对于文件列表,必需首先执行[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion 文件摄入]工作并等待其处理完成。", + "smw-admin-supplementary-elastic-replication-files": "文件", + "smw-admin-supplementary-elastic-replication-pages": "页面", + "smw-admin-supplementary-elastic-endpoints": "端点", + "smw-admin-supplementary-elastic-config": "配置", + "smw-admin-supplementary-elastic-no-connection": "本wiki目前'''无法'''建立与Elasticsearch集群的连接,请联系wiki管理员调查该问题,因为它会导致系统的索引和查询能力失效。", + "smw-list-count": "该列表含有$1个{{PLURAL:$1|实体}}。", + "smw-property-label-uniqueness": "“$1”标签匹配至少一个其他属性表示。请查阅[https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness 帮助页面]了解解决该问题的方法。", + "smw-property-label-similarity-title": "属性标签相似性报告", + "smw-property-label-similarity-intro": "$1计算现有属性标签的相似性", + "smw-property-label-similarity-threshold": "阈值:", + "smw-property-label-similarity-type": "显示类型ID", + "smw-property-label-similarity-noresult": "没有找到符合所选选项的结果。", + "smw-property-label-similarity-docu": "此页面比较属性标签间的[https://www.semantic-mediawiki.org/wiki/Property_similarity 相似性距离](不要与语义或词汇相似性混淆),并报告超出阈值的标签。报告可帮助筛选错误拼写或代表相同概念的等效属性(请查看[[Special:Properties|属性]]特殊页面了解报告的属性的概念和使用情况)。可以调整阈值来扩大或缩小用于近似匹配的距离。[[Property:$1|$1]]用于从分析中排除属性。", + "smw-admin-operational-statistics": "此页面含有从语义MediaWiki相关功能收集到的运行统计。wiki特有统计的扩展列表请查看[[Special:Statistics|这里]]。", + "smw_adminlinks_datastructure": "数据结构", + "smw_adminlinks_displayingdata": "数据显示", + "smw_adminlinks_inlinequerieshelp": "行内查询帮助", + "smw-page-indicator-usage-count": "估算的[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count 使用计数]:{{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "{{PLURAL:$1|用户|系统}}定义的属性", + "smw-property-indicator-last-count-update": "估算的使用计数 最后更新时间:$1", + "smw-concept-indicator-cache-update": "缓存计数 最后更新时间:$1", + "smw-createproperty-isproperty": "这是$1类型的属性。", + "smw-createproperty-allowedvals": "此属性的{{PLURAL:$1|允许值有}}:", + "smw-paramdesc-category-delim": "分隔符", + "smw-paramdesc-category-template": "用于格式化项目的模板", + "smw-paramdesc-category-userparam": "传递给模板的参数", + "smw-info-par-message": "要显示的消息。", + "smw-info-par-icon": "要显示的图标,“info”(信息)或“warning”(警告)。", + "prefs-smw": "语义MediaWiki", + "prefs-general-options": "常规选项", + "prefs-extended-search-options": "扩展搜索", + "prefs-ask-options": "语义搜索", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ 语义MediaWiki]及关联扩展给一组精选的特色功能和一般功能提供个人参数设置。各个设置及其描述和特征的列表请查阅[https://www.semantic-mediawiki.org/wiki/Help:User_preferences 帮助页面]。", + "smw-prefs-ask-options-tooltip-display": "在#ask[[Special:Ask|查询生成器]]特殊页面上把参数文本显示为信息工具提示。", + "smw-prefs-ask-options-compact-view-basic": "启用基本紧凑视图", + "smw-prefs-help-ask-options-compact-view-basic": "若启用,会在Special:Ask紧凑视图上显示一组精简的链接。", + "smw-prefs-general-options-time-correction": "使用本地[[Special:Preferences#mw-prefsection-rendering|时差]]参数设置给特殊页面启用时间校正", + "smw-prefs-general-options-jobqueue-watchlist": "在我的个人栏显示作业队列监视列表", + "smw-prefs-help-general-options-jobqueue-watchlist": "若启用,会显示待处理的精选工作及其估计队列大小的[https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist 列表]。", + "smw-prefs-general-options-disable-editpage-info": "停用编辑页面上的介绍性文字", + "smw-prefs-general-options-disable-search-info": "停用标准搜索页面上的语法支持信息", + "smw-prefs-general-options-suggester-textinput": "启用语义实体的输入辅助", + "smw-prefs-help-general-options-suggester-textinput": "若启用,即允许使用[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance 输入辅助]查找来自输入上下文的属性、概念、分类。", + "smw-prefs-general-options-show-entity-issue-panel": "显示实体问题面板", + "smw-prefs-help-general-options-show-entity-issue-panel": "若启用,会在每个页面上运行完整性检查并显示[https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel 实体问题面板]。", + "smw-prefs-factedsearch-profile": "选择[[Special:FacetedSearch|多面搜索]]默认配置文件:", + "smw-ui-tooltip-title-property": "属性", + "smw-ui-tooltip-title-quantity": "单位换算", + "smw-ui-tooltip-title-info": "信息", + "smw-ui-tooltip-title-service": "服务链接", + "smw-ui-tooltip-title-warning": "警告", + "smw-ui-tooltip-title-error": "错误", + "smw-ui-tooltip-title-parameter": "参数", + "smw-ui-tooltip-title-event": "事件", + "smw-ui-tooltip-title-note": "注释", + "smw-ui-tooltip-title-legend": "说明", + "smw-ui-tooltip-title-reference": "引用", + "smw_unknowntype": "该属性的类型“$1”无效", + "smw-concept-cache-text": "该概念共有$1个{{PLURAL:$1|页面}},最后更新于$2 $3。", + "smw_concept_header": "概念“$1”的页面", + "smw_conceptarticlecount": "下面正在显示$1个{{PLURAL:$1|页面}}。", + "smw-qp-empty-data": "由于选择标准不充分,无法显示请求的数据。", + "right-smw-admin": "访问管理任务(语义MediaWiki)", + "right-smw-patternedit": "维护允许的正则表达式和样板的编辑权限(语义MediaWiki)", + "right-smw-pageedit": "编辑“受编辑保护”(Is edit protected)的注释页面权限(语义MediaWiki)", + "right-smw-schemaedit": "编辑[https://www.semantic-mediawiki.org/wiki/Help:Schema 模式页面](语义MediaWiki)", + "right-smw-viewjobqueuewatchlist": "访问作业队列[https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist 监视列表]功能(语义MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "访问关联有修订误配的实体的有关信息(语义MediaWiki)", + "right-smw-vieweditpageinfo": "查看[https://www.semantic-mediawiki.org/wiki/Help:Edit_help 编辑帮助](语义MediaWiki)", + "restriction-level-smw-pageedit": "受保护(仅限符合资格的用户)", + "action-smw-patternedit": "编辑语义MediaWiki使用的正则表达式", + "action-smw-pageedit": "编辑有“受编辑保护”(Is edit protected)注释的页面(语义MediaWiki)", + "group-smwadministrator": "管理员(语义MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|管理员(语义MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:管理员(语义MediaWiki)", + "group-smwcurator": "负责人(语义MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|负责人(语义MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:负责人(语义MediaWiki)", + "group-smweditor": "编辑(语义MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|编辑(语义MediaWiki)}}", + "grouppage-smweditor": "{{ns:project}}:编辑(语义MediaWiki)", + "action-smw-admin": "访问语义MediaWiki管理任务", + "action-smw-ruleedit": "编辑规则页面(语义MediaWiki)", + "smw-property-namespace-disabled": "属性[https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks 命名空间]已停用,因此无法给该属性声明类型或其他属性特有特征。", + "smw-property-predefined-default": "“$1”是$2类型的预定义属性。", + "smw-property-predefined-common": "该属性是预部署属性(也称[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 特殊属性]),带有额外管理权限,但是可以像任何其他[https://www.semantic-mediawiki.org/wiki/Property 用户定义属性]一样使用。", + "smw-property-predefined-ask": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表示有关单个查询的元信息([https://www.semantic-mediawiki.org/wiki/Subobject 子对象]形式)的预定义属性。", + "smw-property-predefined-asksi": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的收集查询内使用的条件数的预定义属性。", + "smw-property-predefined-askde": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的告知查询深度的预定义属性。", + "smw-property-predefined-long-askde": "它是根据,子查询嵌套、属性链和执行[https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth]配置参数限制的查询得到的描述元素,计算得出的数字值。", + "smw-property-predefined-askpa": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的描述影响查询结果的参数的预定义属性。", + "smw-property-predefined-long-askpa": "它属于指定[https://www.semantic-mediawiki.org/wiki/Help:Query_profiler 查询配置文件]的属性集合。", + "smw-sp-properties-docu": "此页面列出此wiki可用的[https://www.semantic-mediawiki.org/wiki/Property 属性]及其使用次数。要获取最新的次数统计,我们建议定期运行[https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics 属性统计]维护脚本。要获取其他类型属性列表,请查看[[Special:UnusedProperties|未使用的属性]]或[[Special:WantedProperties|需要的属性]]特殊页面。", + "smw-sp-properties-cache-info": "列出的数据检索自[https://www.semantic-mediawiki.org/wiki/Caching 缓存],最后更新于$1。", + "smw-sp-properties-header-label": "属性列表", + "smw-admin-settings-docu": "显示所有与语义MediaWiki环境相关的默认和本地设置的列表。要获取各个设置的详细信息,请查阅[https://www.semantic-mediawiki.org/wiki/Help:Configuration 配置]帮助页面。", + "smw-sp-admin-settings-button": "生成设置列表", + "smw-admin-idlookup-title": "查找", + "smw-admin-idlookup-docu": "此部分展示语义MediaWiki中单个实体(wiki页面、子对象、属性等)的技术详细信息。输入可以是数字ID或匹配相关搜索字段的字符串值,任何ID都应该是语义MediaWiki内的ID,而与MediaWiki的页面或修订ID无关。", + "smw-admin-iddispose-title": "废弃", + "smw-admin-iddispose-docu": "请注意,废弃操作不受限制,一旦确认,会删除存储引擎内的该实体及其在待处理表格内的所有引用。请只在查阅[https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal 文档]后'''谨慎'''执行此任务。", + "smw-admin-iddispose-done": "ID“$1”已从存储后端删除。", + "smw-admin-iddispose-references": "ID“$1”{{PLURAL:$2|没有|有至少一个}}活跃引用:", + "smw-admin-iddispose-references-multiple": "有至少一个活跃引用记录的匹配项列表。", + "smw-admin-iddispose-no-references": "搜索无法把“$1”与表格条目匹配。", + "smw-admin-idlookup-input": "搜索:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "概览", + "smw-admin-tab-notices": "弃用通知", + "smw-admin-tab-maintenance": "维护", + "smw-admin-tab-supplement": "补充功能", + "smw-admin-tab-registry": "注册", + "smw-admin-tab-alerts": "警报", + "smw-admin-alerts-tab-deprecationnotices": "弃用通知", + "smw-admin-alerts-tab-maintenancealerts": "维护警报", + "smw-admin-alerts-section-intro": "此部分展示归类为需要管理员或有适当权限用户注意的设置、操作和其他活动相关的警报和通知。", + "smw-admin-maintenancealerts-section-intro": "以下警报和通知应予以解决,虽然不是必需的,但预计有助于提高系统和运行的维护性。", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "表格优化", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "系统发现最后一次[https://www.semantic-mediawiki.org/wiki/Table_optimization 表格优化]运行于$2天前(来自$1的记录),超出了$3天的维护阈值。如文档所述,运行优化会使查询规划器能够对查询做出更好的决策,因此建议定期运行表格优化。", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "过时实体", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "系统统计到$1个[https://www.semantic-mediawiki.org/wiki/Outdated_entities 过时实体],达到超过阈值$2的无人值守维护的临界水平。建议运行[https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php]维护脚本。", + "smw-admin-maintenancealerts-invalidentities-alert-title": "无效实体", + "smw-admin-maintenancealerts-invalidentities-alert": "系统匹配$1个[https://www.semantic-mediawiki.org/wiki/Invalid_entities {{PLURAL:$1|实体}}]到[https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace 未维护命名空间],建议运行[https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php]或[https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php]维护脚本。", + "smw-admin-deprecation-notice-section": "语义MediaWiki", + "smw-admin-configutation-tab-settings": "设置", + "smw-admin-configutation-tab-namespaces": "命名空间", + "smw-admin-configutation-tab-schematypes": "模式类型", + "smw-admin-maintenance-tab-tasks": "任务", + "smw-admin-maintenance-tab-scripts": "维护脚本", + "smw-admin-maintenance-no-description": "没有描述。", + "smw-admin-maintenance-script-section-title": "可用维护脚本列表", + "smw-admin-maintenance-script-section-intro": "执行以下列出的维护脚本需要管理员和命令行访问权限。", + "smw-admin-maintenance-script-description-dumprdf": "现有三元组的RDF导出。", + "smw-admin-maintenance-script-description-rebuildconceptcache": "此脚本用于管理语义MediaWiki的概念缓存,可以创建、删除和更新选定的缓存。", + "smw-admin-maintenance-script-description-rebuilddata": "通过循环遍历所有可能拥有语义数据的页面,重新创建数据库内的所有语义数据。", + "smw-admin-maintenance-script-description-rebuildelasticindex": "通过循环遍历所有拥有语义数据的实体,重建Elasticsearch索引(仅适用于使用ElasticStore的安装)。", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "查找Elasticsearch内丢失的实体(仅适用于使用ElasticStore的安装)并安排适当的更新工作。", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "重建SQLStore全文搜索索引(适用于启用该设置的安装)。", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "重建所有属性实体的使用统计。", + "smw-admin-maintenance-script-description-removeduplicateentities": "删除所选表格内找到的没有活跃引用的重复实体。", + "smw-admin-maintenance-script-description-setupstore": "设置LocalSettings.php内定义的存储和查询后端。", + "smw-admin-maintenance-script-description-updateentitycollation": "更新SQLStore内的smw_sort字段(根据[https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation]设置)。", + "smw-admin-maintenance-script-description-populatehashfield": "填充缺少值的行的smw_hash字段。", + "smw-admin-maintenance-script-description-purgeentitycache": "清除已知实体及其关联数据的缓存条目。", + "smw-admin-maintenance-script-description-updatequerydependencies": "更新查询和查询依赖(请查看[https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore]设置)。", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "废弃过时实体和查询链接。", + "smw-admin-maintenance-script-description-runimport": "填充和导入从[https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs]自动发现的内容。", + "smw-admin-maintenance-script-section-update": "更新脚本", + "smw-admin-maintenance-script-section-rebuild": "重建脚本", + "smw-livepreview-loading": "正在加载...", + "smw-sp-searchbyproperty-description": "此页面提供用于查找以属性和命名值描述的实体的简单[https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces 浏览界面]。其他可用搜索界面包括[[Special:PageProperty|页面属性搜索]]和[[Special:Ask|询问查询生成器]]。", + "smw-sp-searchbyproperty-resultlist-header": "结果列表", + "smw-sp-searchbyproperty-nonvaluequery": "分配有属性“$1”的值的列表。", + "smw-sp-searchbyproperty-valuequery": "具有属性“$1”且注解值为“$2”的页面列表。", + "smw-datavalue-number-textnotallowed": "“$1”不能分配给已声明的值为$2的数字类型。", + "smw-datavalue-number-nullnotallowed": "“$1”返回了“NULL”,它不能当作数字。", + "smw-editpage-annotation-enabled": "此页面支持用语义文内注解(如“[[Is specified as::World Heritage Site]]”)来构建语义MediaWiki提供的结构化和可查询内容。要了解注解或#ask解析器函数使用方法的详细说明,请查阅[https://www.semantic-mediawiki.org/wiki/Help:Getting_started 入门]、[https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation 文内注解]或[https://www.semantic-mediawiki.org/wiki/Help:Inline_queries 行内查询]帮助页面。", + "smw-editpage-annotation-disabled": "由于命名空间限制,此页面未启用语义文内注解。有关启用命名空间方法的详细信息请查阅[https://www.semantic-mediawiki.org/wiki/Help:Configuration 配置]帮助页面。", + "smw-editpage-property-annotation-enabled": "此属性可以使用语义注解扩展,以指定数据类型(如“[[Has type::Page]]”)或其他支持的声明(如“[[Subproperty of::dc:date]]”)。要了解扩展此页面的方法说明,请查阅[https://www.semantic-mediawiki.org/wiki/Help:Property_declaration 属性声明]或[https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes 可用数据类型列表]帮助页面。", + "smw-editpage-property-annotation-disabled": "此属性由于已经预定义,无法使用数据类型注解(如“[[Has type::Page]]”)扩展(更多信息请查阅[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 特殊属性]帮助页面)。", + "smw-editpage-concept-annotation-enabled": "此概念可以使用#concept解析器函数扩展。要了解#concept的使用方法说明,请查阅[https://www.semantic-mediawiki.org/wiki/Help:Concepts 概念]帮助页面。", + "smw-search-syntax-support": "搜索输入支持使用语义[https://www.semantic-mediawiki.org/wiki/Help:Semantic_search 查询语法],借助语义MediaWiki来匹配结果。", + "smw-search-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance 输入辅助]也已启用,以方便预选可用的属性和分类。", + "smw-search-help-intro": "[[ ... ]]输入会示意输入处理器使用语义MediaWiki搜索后端。需要注意,不支持组合[[ ... ]]与非结构化文本搜索,如[[ ... ]] OR 任意搜索文本不受支持。", + "smw-search-help-structured": "结构化搜索:\n\n*[[Category:Lorem ipsum]][[Has number::123]](作为[https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context 筛选上下文])\n\n*[[Has text::~*lorem*]](使用[https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context 查询上下文])", + "smw-search-help-proximity": "邻近搜索(未知的属性,'''仅'''适用于提供全文搜索集成的后端):\n\n*[[in:lorem ipsum]](在所有文档内搜索已索引的“lorem”和“ipsum”)\n\n* [[phrase:lorem ipsum]](把“lorem ipsum”作为词组来匹配)", + "smw-search-help-ask": "以下链接会解释#ask语法的使用方法。\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages 选择页面]描述选择页面和构建条件的方法\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Search_operators 搜索运算符]列出可用的搜索运算符,包括用于范围和通配符查询的运算符", + "smw-search-input": "输入和搜索", + "smw-search-help-input-assistance": "给输入字段提供[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance 输入辅助],需要使用任一以下前缀:\n\n*p:可启用属性建议(如[[p:Has ...)\n\n*c:可启用分类建议\n\n*con:可启用概念建议", + "smw-search-syntax": "语法", + "smw-search-profile": "扩展", + "smw-search-profile-tooltip": "与语义MediaWiki相关的搜索功能", + "smw-search-profile-sort-best": "最佳匹配", + "smw-search-profile-sort-recent": "最近", + "smw-search-profile-sort-title": "标题", + "smw-search-profile-extended-help-intro": "Special:Search[https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile 扩展配置文件]提供对语义MediaWiki及其支持的查询后端特有的搜索功能的访问。", + "smw-search-profile-extended-help-sort": "指定结果显示的排序参数设置:", + "smw-search-profile-extended-help-sort-title": "* “标题”使用页面标题(或显示标题)作为排序标准", + "smw-search-profile-extended-help-sort-recent": "* “最近”会首先展示最近修改的实体(子对象实体会被忽略,因为这些实体没有[[Property:Modification date|修改日期]]注解)", + "smw-search-profile-extended-help-sort-best": "* “最佳匹配”会根据后端提供的[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy 相关性]评分来排序实体", + "smw-search-profile-extended-help-form": "提供表单(若有维护)来匹配特定使用案例,其通过暴露不同的属性和值字段来缩减输入过程,方便用户进行搜索请求。(请查阅$1)", + "smw-search-profile-extended-help-namespace": "选择表单后,命名空间选择框会被隐藏,但可以通过“显示/隐藏”按钮使其可见。", + "smw-search-profile-extended-help-search-syntax": "搜索输入字段支持使用#ask语法定义语义MediaWiki特有的搜索上下文。有用的表达式包括:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in:可查找任何含有其后文的内容,当涉及的搜索上下文或属性未知时特别有用(例如in:(lorem && ipsum)等效于[[~~*lorem*]] && [[~~*ipsum*]])。", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase:可查找任何含有跟其后文词序完全相同的词组的内容", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has:可匹配任何有其后输入的属性的实体(例如has:(Foo && Bar)等效于[[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not:可不匹配任何包含其后文的实体", + "smw-search-profile-extended-help-search-syntax-prefix": "* 可使用和定义额外的自定义前缀,如:$1", + "smw-search-profile-extended-help-search-syntax-reserved": "* 有些表达式被保留,如:$1", + "smw-search-profile-extended-help-search-syntax-note": "''某些列出的操作仅在启用全文索引或ElasticStore时才有用。''", + "smw-search-profile-extended-help-query": "已使用$1作为查询。", + "smw-search-profile-extended-help-query-link": "要了解更多详细信息,请使用$1。", + "smw-search-profile-extended-help-find-forms": "可用表单", + "smw-search-profile-extended-section-sort": "排序方式", + "smw-search-profile-extended-section-form": "表单", + "smw-search-profile-extended-section-search-syntax": "搜索输入", + "smw-search-profile-extended-section-namespace": "命名空间", + "smw-search-profile-extended-section-query": "查询", + "smw-search-profile-link-caption-query": "查询生成器", + "smw-search-show": "显示", + "smw-search-hide": "隐藏", + "log-name-smw": "语义MediaWiki日志", + "log-show-hide-smw": "$1语义MediaWiki日志", + "logeventslist-smw-log": "语义MediaWiki日志", + "log-description-smw": "语义MediaWiki及其组件报告的[https://www.semantic-mediawiki.org/wiki/Help:Logging 已启用事件类型]的活动。", + "logentry-smw-maintenance": "语义MediaWiki发出的维护相关事件", + "smw-datavalue-import-unknown-namespace": "导入命名空间“$1”未知。请确保OWL导入详细信息可通过[[MediaWiki:Smw import $1]]获取", + "smw-datavalue-import-missing-namespace-uri": "无法在[[MediaWiki:Smw import $1|$1导入]]内找到“$1”命名空间的URI。", + "smw-datavalue-import-missing-type": "没有在[[MediaWiki:Smw import $2|$2导入]]内找到“$1”的类型定义。", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|$1导入]]", + "smw-datavalue-import-invalid-value": "“$1”不是有效的格式,预期结构为“命名空间:标识符”(例如“foaf:name”)。", + "smw-datavalue-import-invalid-format": "无法理解字符串“$1”的格式,预期应分成四部分。", + "smw-property-predefined-impo": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的描述与[https://www.semantic-mediawiki.org/wiki/Help:Import_vocabulary 导入词汇]的关系的预定义属性。", + "smw-property-predefined-type": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的描述属性的[[Special:Types|数据类型]]的预定义属性。", + "smw-property-predefined-sobj": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表示[https://www.semantic-mediawiki.org/wiki/Help:Container 容器]构造的预定义属性。", + "smw-property-predefined-long-sobj": "该容器允许积累,与普通wiki页面类似但与链接的嵌入主体分属不同实体空间的,属性值分配。", + "smw-property-predefined-errp": "“$1”是由[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供,用来追踪不规则值注解的输入错误的预定义属性。", + "smw-property-predefined-long-errp": "大多数情况下,这是由于类型误配或[[Property:Allows value|值]]限制造成的。", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value “$1”]是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的定义限制属性值分配的允许值列表的预定义属性。", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list “$1”]是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的指定指向保存限制属性值分配的允许值列表的引用的预定义属性。", + "smw-datavalue-property-restricted-annotation-use": "属性“$1”的应用范围受限,用户不能将其用作注解属性。", + "smw-datavalue-property-restricted-declarative-use": "属性“$1”是声明性属性,只能在属性或分类页面上使用。", + "smw-datavalue-property-create-restriction": "属性“$1”不存在,用户缺少“$2”权限,无法创建未核准的属性或用未核准的属性注解值(请查阅[https://www.semantic-mediawiki.org/wiki/Help:Authority_mode 核准模式])。", + "smw-datavalue-property-invalid-character": "“$1”含有用作属性标签部件的“$2”字符,因此被归类为无效。", + "smw-datavalue-property-invalid-chain": "不允许在注解过程中使用“$1”作为属性链。", + "smw-datavalue-restricted-use": "数据值“$1”被标记为限制使用。", + "smw-datavalue-invalid-number": "“$1”无法理解为数字。", + "smw-query-condition-circular": "“$1”内检测到可能存在的循环条件。", + "smw-query-condition-empty": "查询描述有空条件。", + "smw-types-list": "数据类型列表", + "smw-types-default": "“$1”是内置数据类型。", + "smw-types-help": "更多信息和示例请查阅[https://www.semantic-mediawiki.org/wiki/Help:Type_$1 帮助页面]。", + "smw-type-anu": "“$1”是[[Special:Types/URL|URL]]数据类型的变体,主要用于''owl:AnnotationProperty''导出声明。", + "smw-type-boo": "“$1”是描述值的真/假的基本数据类型。", + "smw-type-cod": "“$1”是[[Special:Types/Text|文本]]数据类型的变体,用于任意长度的技术文本,如源代码列表。", + "smw-type-geo": "“$1”是描述地理位置的数据类型,需要[https://www.semantic-mediawiki.org/wiki/Extension:Maps “Maps”](地图)扩展提供扩展功能。", + "smw-type-tel": "“$1”是根据RFC 3966所述方式描述国际电话号码的特殊数据类型。", + "smw-type-txt": "“$1”是描述任意长度字符串的基本数据类型。", + "smw-type-dat": "“$1”是以统一格式表示时刻的基本数据类型。", + "smw-type-ema": "“$1”是表示电子邮件的特殊数据类型。", + "smw-type-tem": "“$1”是表示温度的特殊数字数据类型。", + "smw-type-qty": "“$1”是用数字表示与计量单位一起描述数量的数据类型。", + "smw-type-rec": "“$1”是以固定顺序指定有类型属性的列表的容器数据类型。", + "smw-type-extra-tem": "换算模式包括开尔文、摄氏度、华氏度和兰氏度等支持的单位。", + "smw-type-tab-properties": "属性", + "smw-type-tab-types": "类型", + "smw-type-tab-type-ids": "类型ID", + "smw-type-tab-errors": "错误", + "smw-type-primitive": "基本", + "smw-type-contextual": "上下文", + "smw-type-compound": "复合词", + "smw-type-container": "容器", + "smw-type-no-group": "未归类", + "smw-special-pageproperty-description": "此页面提供用于查找属性和给定页面的所有值的浏览界面。其他可用搜索界面包括[[Special:SearchByProperty|属性搜索]]和[[Special:Ask|询问查询生成器]]。", + "smw-property-predefined-errc": "“$1”是由[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供,表示与不当值注解或输入处理相关的错误的预定义属性。", + "smw-property-predefined-long-errc": "错误会收集到[https://www.semantic-mediawiki.org/wiki/Help:Container 容器]内,其中可能包含指向造成差异的属性的引用。", + "smw-property-predefined-errt": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的容纳错误的文字描述的预定义属性。", + "smw-subobject-parser-invalid-naming-scheme": "用户定义的子对象含有无效的命名模式。前5个字符内的点符号($1)是给扩展保留的。您可以设置[https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier 命名标识符]。", + "smw-datavalue-record-invalid-property-declaration": "记录定义包含自身声明为记录类型的“$1”属性,这不被允许。", + "smw-property-predefined-mdat": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的记录主体的最后修改日期的预定义属性。", + "smw-property-predefined-cdat": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的记录主题的首次修订日期的预定义属性。", + "smw-property-predefined-newp": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表明主体是否为新增的预定义属性。", + "smw-property-predefined-ledt": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的容纳创建最后修订的用户的页面名称的预定义属性。", + "smw-property-predefined-mime": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的描述上传文件的MIME类型的预定义属性。", + "smw-property-predefined-media": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的描述上传文件的媒体类型的预定义属性。", + "smw-property-predefined-askfo": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的保存查询内使用的结果格式名称的预定义属性。", + "smw-property-predefined-askst": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的以字符串描述查询条件的预定义属性。", + "smw-property-predefined-askdu": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的容纳完成查询执行所需时间值(秒)的预定义属性。", + "smw-property-predefined-asksc": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的标识替代(例如远程、联合)查询来源的预定义属性。", + "smw-property-predefined-askco": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的描述查询或其组件的状态的预定义属性。", + "smw-property-predefined-long-askco": "对分配的表示内部编码状态的数字或编号的说明请查阅[https://www.semantic-mediawiki.org/wiki/Help:Query_profiler 帮助页面]。", + "smw-property-predefined-prec": "“$1”是描述数字数据类型的[https://www.semantic-mediawiki.org/wiki/Help:Display_precision 显示精度](小数位数)的预定义属性。", + "smw-property-predefined-attch-link": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的收集页面内嵌入文件和图像的链接的预定义属性。", + "smw-property-predefined-inst": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的储存独立于MediaWiki的分类信息的内部预定义属性。", + "smw-property-predefined-unit": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的定义数字类型属性的显示单位的声明性预定义属性。", + "smw-property-predefined-long-unit": "可使用半角逗号分隔的列表描述用于显示的单位或格式。", + "smw-property-predefined-conv": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的定义物理量单位的换算因数的声明性预定义属性。", + "smw-property-predefined-serv": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的添加属性的服务链接的声明性预定义属性。", + "smw-property-predefined-redi": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的记录重定向的内部预定义属性。", + "smw-property-predefined-subp": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的定义属性的[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of 父属性]的声明性预定义属性。", + "smw-property-predefined-subc": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的定义分类的[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of 父分类]的预定义属性。", + "smw-property-predefined-conc": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的定义相关概念的内部预定义属性。", + "smw-property-predefined-err-type": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的标识一组或一类[https://www.semantic-mediawiki.org/wiki/Help:Processing_errors 处理错误]的预定义属性。", + "smw-property-predefined-skey": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的保存排序引用的内部预定义属性。", + "smw-property-predefined-pplb": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的指定[https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label 首选属性标签]的声明性预定义属性。", + "smw-property-predefined-chgpro": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的保存[https://www.semantic-mediawiki.org/wiki/Help:Change_propagation 更改传播]信息的预定义属性。", + "smw-property-predefined-schema-link": ",由[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供。", + "smw-property-predefined-format-schema": ",由[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供。", + "smw-property-predefined-profile-schema": ",由[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供。", + "smw-property-predefined-trans": ",由[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供。", + "smw-property-predefined-trans-source": ",由[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供。", + "smw-property-predefined-trans-group": ",由[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供。", + "smw-property-predefined-cont-len": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的储存长度信息的预定义属性。", + "smw-property-predefined-long-cont-len": "它与[https://www.semantic-mediawiki.org/ElasticStore ElasticStore](和[https://www.semantic-mediawiki.org/Attachment_processor 附件处理器])配合使用可收集和储存从摄入文件(若提供)内检索到的长度信息。", + "smw-property-predefined-cont-lang": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的储存语言信息的预定义属性。", + "smw-property-predefined-long-cont-lang": "它与[https://www.semantic-mediawiki.org/ElasticStore ElasticStore](和[https://www.semantic-mediawiki.org/Attachment_processor 附件处理器])配合使用可收集和储存从摄入文件(若提供)内检索到的语言信息。", + "smw-property-predefined-cont-title": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的储存标题信息的预定义属性。", + "smw-property-predefined-long-cont-title": "它与[https://www.semantic-mediawiki.org/ElasticStore ElasticStore](和[https://www.semantic-mediawiki.org/Attachment_processor 附件处理器])配合使用可收集和储存从摄入文件(若提供)内检索到的标题信息。", + "smw-property-predefined-cont-author": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的储存作者信息的预定义属性。", + "smw-property-predefined-long-cont-author": "它与[https://www.semantic-mediawiki.org/ElasticStore ElasticStore](和[https://www.semantic-mediawiki.org/Attachment_processor 附件处理器])配合使用可收集和储存从摄入文件(若提供)内检索到的作者信息。", + "smw-property-predefined-cont-date": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的储存日期信息的预定义属性。", + "smw-property-predefined-long-cont-date": "它与[https://www.semantic-mediawiki.org/ElasticStore ElasticStore](和[https://www.semantic-mediawiki.org/Attachment_processor 附件处理器])配合使用可收集和储存从摄入文件(若提供)内检索到的日期信息。", + "smw-property-predefined-cont-type": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的储存文件类型信息的预定义属性。", + "smw-property-predefined-long-cont-type": "它与[https://www.semantic-mediawiki.org/ElasticStore ElasticStore](和[https://www.semantic-mediawiki.org/Attachment_processor 附件处理器])配合使用可收集和储存从摄入文件(若提供)内检索到的类型信息。", + "smw-property-predefined-cont-keyw": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表示关键词的预定义属性。", + "smw-property-predefined-long-cont-keyw": "它与[https://www.semantic-mediawiki.org/ElasticStore ElasticStore](和[https://www.semantic-mediawiki.org/Attachment_processor 附件处理器])配合使用可收集和储存从摄入文件(若提供)内检索到的关键词。", + "smw-property-predefined-file-attch": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表示储存附件信息的容器的预定义属性。", + "smw-property-predefined-long-file-attch": "它与[https://www.semantic-mediawiki.org/ElasticStore ElasticStore](和[https://www.semantic-mediawiki.org/Attachment_processor 附件处理器])配合使用可收集所有可从摄入文件(若提供)内检索到的内容特有信息。", + "smw-types-extra-geo-not-available": "未检测到[https://www.semantic-mediawiki.org/wiki/Extension:Maps “Maps”(地图)扩展],因此“$1”的运行能力受到限制。", + "smw-datavalue-monolingual-dataitem-missing": "预期用于构建单语言复合词的项目丢失。", + "smw-datavalue-monolingual-lcode-parenthesis": "($1)", + "smw-datavalue-languagecode-missing": "对于“$1”注解,解析器无法确定语言代码(即“甲@zh”)。", + "smw-datavalue-languagecode-invalid": "“$1”不被识别为支持的语言代码。", + "smw-property-predefined-lcode": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表示BCP47格式语言代码的预定义属性。", + "smw-type-mlt-rec": "“$1”是给文本值关联特定[[Property:Language code|语言代码]]的[https://www.semantic-mediawiki.org/wiki/Help:Container 容器]数据类型。", + "smw-types-extra-mlt-lcode": "该数据类型{{PLURAL:$2|需要|不需要}}语言代码(即{{PLURAL:$2|不接受没有语言代码的值注解|接受没有语言代码的值注解}})。", + "smw-property-predefined-text": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表示任意长度的文本的预定义属性。", + "smw-property-predefined-pdesc": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的在语言上下文内描述属性的预定义属性。", + "smw-property-predefined-list": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的定义配合[[Special:Types/Record|记录]]类型属性使用的属性的列表的预定义属性。", + "smw-limitreport-intext-parsertime": "[SMW]文内注解解析器时间", + "smw-limitreport-intext-postproctime": "[SMW]后处理时间", + "smw-limitreport-intext-parsertime-value": "$1{{PLURAL:$1|秒}}", + "smw-limitreport-intext-postproctime-value": "$1{{PLURAL:$1|秒}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW]存储更新(页面缓存清除)时间", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1{{PLURAL:$1|秒}}", + "smw_allows_pattern": "此页面应该含有根据[[Property:Allows pattern|允许样板]]属性提供的引用(后跟[https://zh.wikipedia.org/wiki/%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F 正则表达式])的列表。要编辑此页面,需要smw-patternedit权限。", + "smw-datavalue-allows-pattern-mismatch": "“$1”被“$2”正则表达式归类为无效。", + "smw-datavalue-allows-pattern-reference-unknown": "“$1”样板引用无法匹配[[MediaWiki:Smw allows pattern]]内的条目。", + "smw-datavalue-allows-value-list-unknown": "“$1”列表引用无法匹配[[MediaWiki:Smw allows list $1]]页面。", + "smw-datavalue-allows-value-list-missing-marker": "“$1”列表内容缺少有星号(*)列表标记的项目。", + "smw-datavalue-feature-not-supported": "此wiki不支持或停用“$1”功能。", + "smw-property-predefined-pvap": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的指定应用[https://zh.wikipedia.org/wiki/%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F 正则表达式]匹配的[[MediaWiki:Smw allows pattern|样板引用]]的预定义属性。", + "smw-property-predefined-dtitle": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的给实体分配独特显示标题的预定义属性。", + "smw-property-predefined-pvuc": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的限制每个实体的值分配必须唯一(或最多有一个值)的预定义属性。", + "smw-property-predefined-long-pvuc": "唯一性在两个值的字面表示不相等时建立,任何违反该约束的情形都会被归类为错误。", + "smw-datavalue-constraint-uniqueness-violation": "属性“$1”只允许唯一值分配,而''$2''已注解给主体“$3”。", + "smw-datavalue-constraint-uniqueness-violation-isknown": "属性“$1”只允许唯一值注解,''$2''已含有分配值。“$3”违反唯一性约束。", + "smw-datavalue-constraint-violation-non-negative-integer": "属性“$1”有“非负整数”约束,而值''$2''违反该要求。", + "smw-datavalue-constraint-violation-must-exists": "属性“$1”有must_exists(必须存在)约束,而值''$2''违反该要求。", + "smw-datavalue-constraint-violation-single-value": "“[[Property:$1|$1]]”属性有single_value(单一值)约束,而值“$2”违反该要求。", + "smw-constraint-violation-uniqueness": "“[[Property:$1|$1]]”属性分配有unique_value_constraint(唯一值约束)约束,该约束只允许唯一值分配,而''$2''值注释已注解给“$3”主体。", + "smw-constraint-violation-uniqueness-isknown": "“[[Property:$1|$1]]”属性分配有unique_value_constraint(唯一值约束)约束,因此只允许唯一值注释。''$2''已含有注解值“$3”,违反当前主体的唯一性约束。", + "smw-constraint-violation-non-negative-integer": "“[[Property:$1|$1]]”属性分配有non_negative_integer(非负整数)约束,而''$2''值注解违反约束要求。", + "smw-constraint-violation-must-exists": "“[[Property:$1|$1]]”属性分配有must_exists(必须存在)约束,而''$2''值注解违反约束要求。", + "smw-constraint-violation-single-value": "“[[Property:$1|$1]]”属性分配有single_value(单一值)约束,而“$2”值注解违反约束要求。", + "smw-constraint-violation-class-shape-constraint-missing-property": "“[[:$1]]”分类分配有键为property(属性)的shape_constraint(形式约束),但缺少必需的“$2”属性。", + "smw-constraint-violation-class-shape-constraint-wrong-type": "“[[:$1]]”分类分配有键为property_type(属性类型)的shape_constraint(形式约束),但“$2”属性不匹配“$3”类型。", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "“[[:$1]]”分类分配有键为max_cardinality(最大基数)的shape_constraint(形式约束),但“$2”属性不匹配基数“$3”。", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "“[[:$1]]”分类分配有键为min_textlength(最小文本长度)的shape_constraint(形式约束),但“$2”属性不匹配长度要求“$3”。", + "smw-constraint-violation-class-mandatory-properties-constraint": "“[[:$1]]”分类分配有mandatory_properties(强制属性)约束,必需有以下强制属性:$2", + "smw-constraint-violation-allowed-namespace-no-match": "“[[Property:$1|$1]]”属性分配有allowed_namespaces(允许命名空间)约束,而“$2”违反命名空间要求,只允许“$3”命名空间。", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "allowed_namespaces(允许命名空间)约束必需为页面类型。", + "smw-constraint-schema-category-invalid-type": "注解的“$1”模式对于分类无效,必须为“$2”类型。", + "smw-constraint-schema-property-invalid-type": "注解的“$1”模式对于属性无效,必须为“$2”类型。", + "smw-constraint-error-allows-value-list": "“$1”不在“$3”属性的[[Property:Allows value|允许值]]列表($2)内。", + "smw-constraint-error-allows-value-range": "“$1”不在“$3”属性的[[Property:Allows value|允许值]]约束指定的范围“$2”内。", + "smw-property-predefined-boo": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表示布尔值的[[Special:Types/Boolean|类型]]和预定义属性。", + "smw-property-predefined-num": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表示数字值的[[Special:Types/Number|类型]]和预定义属性。", + "smw-property-predefined-dat": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表示日期值的[[Special:Types/Date|类型]]和预定义属性。", + "smw-property-predefined-uri": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表示URI/URL值的[[Special:Types/URL|类型]]和预定义属性。", + "smw-property-predefined-qty": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表示数量值的[[Special:Types/Quantity|类型]]和预定义属性。", + "smw-datavalue-time-invalid-offset-zone-usage": "“$1”含有不支持的时差和时区标识符。", + "smw-datavalue-time-invalid-values": "值“$1”含有“$2”形式的无法解读的信息。", + "smw-datavalue-time-invalid-date-components-common": "“$1”含有一些无法解读的信息。", + "smw-datavalue-time-invalid-date-components-dash": "“$1”含有外部破折号或其他对日期解读无效的字符。", + "smw-datavalue-time-invalid-date-components-empty": "“$1”含有一些空组件。", + "smw-datavalue-time-invalid-date-components-three": "“$1”含有多于3个日期解读所必需的组件。", + "smw-datavalue-time-invalid-date-components-sequence": "“$1”含有无法根据日期组件的可用匹配矩阵进行解读的序列。", + "smw-datavalue-time-invalid-ampm": "“$1”含有作为小时元素的“$2”,它在12小时制里是无效的。", + "smw-datavalue-time-invalid-jd": "无法把输入值“$1”解读为有效的JD(儒略日)数字,报告的结果为“$2”。", + "smw-datavalue-time-invalid-prehistoric": "无法解读过早的输入值“$1”。例如,在过早的时间上下文下指定年或日历模型以外的组件可能返回预期外结果。", + "smw-datavalue-time-invalid": "无法把输入值“$1”解读为有效的日期或时间组件,报告的结果为“$2”。", + "smw-datavalue-external-formatter-uri-missing-placeholder": "格式化URI缺少''$1''占位符。", + "smw-datavalue-external-formatter-invalid-uri": "“$1”是无效的URL。", + "smw-datavalue-external-identifier-formatter-missing": "属性缺少[[Property:External formatter uri|“外部格式化URI”]](External formatter URI)分配。", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "“$1”外部标识符应该有多字段替换,但当前值“$2”缺少至少一个匹配要求的值参数。", + "smw-datavalue-keyword-maximum-length": "关键词超出$1个{{PLURAL:$1|字符}}的最大长度。", + "smw-property-predefined-eid": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表示外部标识符的[[Special:Types/External identifier|类型]]和预定义属性。", + "smw-property-predefined-peid": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的指定外部标识符的预定义属性。", + "smw-property-predefined-pefu": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的指定有占位符的外部资源的预定义属性。", + "smw-property-predefined-long-pefu": "URI应该含有可调整为[[Special:Types/External identifier|外部标识符]]值的占位符,以组成有效的资源引用。", + "smw-type-eid": "“$1”是[[Special:Types/Text|文本]]数据类型的变体,描述外部资源(基于URL)并要求被分配的属性声明[[Property:External formatter uri|外部格式化URI]]。", + "smw-property-predefined-keyw": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的规范文本并拥有受限字符长度的预定义属性和[[Special:Types/Keyword|类型]]。", + "smw-type-keyw": "“$1”是[[Special:Types/Text|文本]]数据类型的变体,拥有受限字符长度和规范化的内容表示形式。", + "smw-datavalue-stripmarker-parse-error": "给定值“$1”含有[https://en.wikipedia.org/wiki/Help:Strip_markers 剥除标记],因此无法充分解析。", + "smw-datavalue-parse-error": "无法理解给定的值“$1”。", + "smw-datavalue-propertylist-invalid-property-key": "属性列表“$1”含有无效的属性键“$2”。", + "smw-datavalue-type-invalid-typeuri": "“$1”类型无法转换为有效的URI表示形式。", + "smw-datavalue-wikipage-missing-fragment-context": "wiki页面输入值“$1”不能在没有上下文页面的情况下使用。", + "smw-datavalue-wikipage-invalid-title": "页面类型输入值“$1”含有无效字符或不完整,因此会在查询或注解过程中导致预期外结果。", + "smw-datavalue-wikipage-property-invalid-title": "输入值为“$2”的属性“$1”(作为页面类型)含有无效字符或不完整,因此会在查询或注解过程中导致预期外结果。", + "smw-datavalue-wikipage-empty": "wiki页面输入值为空(如[[SomeProperty::]]、[[]]),因此不能用作名称或查询条件的一部分。", + "smw-type-ref-rec": "“$1”是记录有关值分配的额外信息(如起源数据)的[https://www.semantic-mediawiki.org/wiki/Container 容器]类型。", + "smw-datavalue-reference-outputformat": "$1:$2", + "smw-datavalue-reference-invalid-fields-definition": "[[Special:Types/Reference|引用]]类型应该为使用[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields 有字段](Has fields)属性声明的属性列表。", + "smw-parser-invalid-json-format": "JSON解析器返回了“$1”。", + "smw-property-preferred-title-format": "$1($2)", + "smw-property-preferred-label-language-combination-exists": "“$1”不能用作首选标签,因为语言“$2”已分配给“$3”标签。", + "smw-clipboard-copy-link": "复制链接到剪贴板", + "smw-property-userdefined-fixedtable": "“$1”被配置为[https://www.semantic-mediawiki.org/wiki/Fixed_properties 固定属性],对其[https://www.semantic-mediawiki.org/wiki/Type_declaration 类型声明]的任何修改都需要运行setupStore.php或完成特殊的[[Special:SemanticMediaWiki|“数据库安装与升级”]]任务。", + "smw-data-lookup": "正在获取数据...", + "smw-data-lookup-with-wait": "正在处理该请求,可能需要一些时间。", + "smw-no-data-available": "没有可用数据。", + "smw-property-req-violation-missing-fields": "属性“$1”缺少其“$2”类型所必需的[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields 有字段](Has fields)声明。", + "smw-property-req-violation-multiple-fields": "属性“$1”含有多个(冲突的)[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields 有字段](Has fields)声明,其“$2”类型只应有一个该声明。", + "smw-property-req-violation-missing-formatter-uri": "由于未能定义外部格式化URIExternal formatter URI)属性,属性“$1”缺少注解的类型的声明的详细信息。", + "smw-property-req-violation-predefined-type": "作为预定义属性,属性“$1”含有与其默认类型不兼容的“$2”类型声明。", + "smw-property-req-violation-import-type": "检测到与导入的“$1”词汇的预定义类型不兼容的类型声明。通常无需声明类型,因为会从导入定义中检索类型信息。", + "smw-property-req-violation-change-propagation-locked-error": "属性“$1”已更改,需要使用[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改传播]过程重新评估分配的实体。该属性页面已锁定,直到主要规格更新完成,以防止中途中断或规格相互矛盾。该页面能解锁前,该过程可能持续一段时间,时长取决于[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue 作业队列]调度器的大小和频率。", + "smw-property-req-violation-change-propagation-locked-warning": "属性“$1”已更改,需要使用[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改传播]过程重新评估分配的实体。更新可能需要一段时间,时长取决于[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue 作业队列]调度器的大小和频率,建议推迟对该属性的更改,以防止中途中断或规格相互矛盾。", + "smw-property-req-violation-change-propagation-pending": "[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改传播]更新正在等待处理(估计有$1个[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|工作}}]),建议等待该过程完成后再修改属性,以防止中途中断或规格相互矛盾。", + "smw-property-req-violation-missing-maps-extension": "语义MediaWiki无法检测到作为先决条件的[https://www.semantic-mediawiki.org/wiki/Extension:Maps “Maps”](地图)扩展,因此该属性功能受限(即无法储存或处理地理数据)。", + "smw-property-req-violation-type": "该属性含有冲突的类型规格,可能导致无效的值注解,因此需要用户分配一个适当的类型。", + "smw-property-req-error-list": "该属性含有以下错误或警告:", + "smw-property-req-violation-parent-type": "属性“$1”和分配的父属性“$2”有不同的类型注解。", + "smw-property-req-violation-forced-removal-annotated-type": "[https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance 强制父类型继承]执行已启用,“$1”属性的注解类型与其父属性的“$2”类型不匹配,并已更改以符合该要求。建议调整页面内的类型定义,以便删除该属性的错误消息和强制执行。", + "smw-change-propagation-protection": "此页面已锁定,以防止在[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改传播]更新运行时意外修改数据。该页面解锁前,该过程可能持续一段时间,时长取决于[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue 作业队列]调度器的大小和频率。", + "smw-category-change-propagation-locked-error": "分类“$1”已更改,需要使用[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改传播]过程重新评估分配的实体。该分类页面已锁定,直到主要规格更新完成,以防止中途中断或规格相互矛盾。该页面能解锁前,该过程可能持续一段时间,时长取决于[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue 作业队列]调度器的大小和频率。", + "smw-category-change-propagation-locked-warning": "分类“$1”已更改,需要使用[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改传播]过程重新评估分配的实体。更新可能需要一段时间,时长取决于[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue 作业队列]调度器的大小和频率,建议推迟对该分类的更改,以防止中途中断或规格相互矛盾。", + "smw-category-change-propagation-pending": "[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改传播]更新正在等待处理(估计有$1个[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|工作}}]),建议等待该过程完成后再修改分类,以防止中途中断或规格相互矛盾。", + "smw-category-invalid-value-assignment": "“$1”未被识别为有效的分类或值注解。", + "protect-level-smw-pageedit": "仅允许有页面编辑权限的用户(语义MediaWiki)", + "smw-create-protection": "[https://www.semantic-mediawiki.org/wiki/Help:Authority_mode 核准模式]启用时,“$1”属性的创建仅限于有适当的“$2”权限(或[https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups 用户组])的用户。", + "smw-create-protection-exists": "[https://www.semantic-mediawiki.org/wiki/Help:Authority_mode 核准模式]启用时,“$1”属性的更改仅限于有适当的“$2”权限(或[https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups 用户组])的用户。", + "smw-edit-protection": "此页面受[[Property:Is edit protected|保护]]以防止意外数据修改,只能被有适当的编辑权限(“$1”)或[https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups 用户组]的用户编辑。", + "smw-edit-protection-disabled": "编辑保护已停用,因此“︁$1”︁不能用来保护实体页面免受未经授权的编辑。", + "smw-edit-protection-auto-update": "语义MediaWiki已根据“受编辑保护”(Is edit protected)属性更新保护状态。", + "smw-edit-protection-enabled": "受编辑保护(语义MediaWiki)", + "smw-patternedit-protection": "此页面受保护,只能被有适当的smw-patternedit[https://www.semantic-mediawiki.org/wiki/Help:Permissions 权限]的用户编辑。", + "smw-property-predefined-edip": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的表明编辑是否受保护的预定义属性。", + "smw-property-predefined-long-edip": "虽然任何用户都有资格给主体添加该属性,但是只有拥有专门权限的用户才能在给实体添加保护后编辑或撤销保护。", + "smw-query-reference-link-label": "查询引用", + "smw-format-datatable-emptytable": "表格内没有可用数据", + "smw-format-datatable-info": "正在显示第_START_至_END_条记录,共_TOTAL_条", + "smw-format-datatable-infoempty": "正在显示第0至0条记录,共0条", + "smw-format-datatable-infofiltered": "(筛选自全部_MAX_条记录)", + "smw-format-datatable-infothousands": ",", + "smw-format-datatable-lengthmenu": "显示_MENU_条记录", + "smw-format-datatable-loadingrecords": "正在加载...", + "smw-format-datatable-processing": "正在处理...", + "smw-format-datatable-search": "搜索:", + "smw-format-datatable-zerorecords": "没有找到匹配的记录", + "smw-format-datatable-first": "首页", + "smw-format-datatable-last": "末页", + "smw-format-datatable-next": "下页", + "smw-format-datatable-previous": "上页", + "smw-format-datatable-sortascending": ":激活以按升序排序此列", + "smw-format-datatable-sortdescending": ":激活以按降序排序此列", + "smw-format-datatable-toolbar-export": "导出", + "smw-format-list-other-fields-open": "(", + "smw-format-list-other-fields-close": ")", + "smw-category-invalid-redirect-target": "分类“$1”含有指向非分类命名空间的无效重定向目标。", + "smw-parser-function-expensive-execution-limit": "解析器函数已达到高开销执行的限制(请检查配置参数[https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit])。", + "smw-postproc-queryref": "语义MediaWiki正在根据某些必需的查询后处理来刷新当前页面。", + "apihelp-smwinfo-summary": "检索语义MediaWiki有关统计信息和其他元信息的API模块。", + "apihelp-ask-summary": "使用询问语法查询语义MediaWiki的API模块。", + "apihelp-askargs-summary": "使用条件、打印输出和参数列表形式的询问语法查询语义MediaWiki的API模块。", + "apihelp-browsebyproperty-summary": "检索属性或属性列表有关信息的API模块。", + "apihelp-browsebysubject-summary": "检索主体有关信息的API模块。", + "apihelp-smwtask-summary": "执行语义MediaWiki相关任务的API模块(仅供内部使用,不供公开使用)。", + "apihelp-smwbrowse-summary": "支持浏览语义MediaWiki内不同实体类型的活动的API模块。", + "apihelp-ask-parameter-api-version": "输出格式:\n;2:向后兼容格式,结果列表使用{}。\n;3:实验格式,结果列表使用[]。", + "apihelp-smwtask-param-task": "定义任务类型", + "apihelp-smwtask-param-params": "匹配所选任务类型要求的JSON编码参数", + "smw-apihelp-smwtask-example-update": "给特定主体运行更新任务的示例:", + "smw-api-invalid-parameters": "无效参数,“$1”", + "smw-parser-recursion-level-exceeded": "解析过程中超出了$1层的递归深度。建议验证模板结构,或在必要时调整配置参数$maxRecursionDepth。", + "smw-property-page-list-count": "正在显示$1个使用此属性的{{PLURAL:$1|页面}}。", + "smw-property-page-list-search-count": "正在显示$1个使用有“$2”值匹配的此属性的{{PLURAL:$1|页面}}。", + "smw-property-page-filter-note": "[https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter 搜索筛选]允许包含[https://www.semantic-mediawiki.org/wiki/Help:Query_expressions 查询表达式],如~!。选用的[https://www.semantic-mediawiki.org/wiki/Query_engine 查询引擎]可能还支持不区分大小写匹配或其他简短表达式,像是:\n\n* in:的结果会包含查询词,如“in:甲”\n\n* not:的结果不会包含查询词,如“not:乙”", + "smw-property-reserved-category": "分类", + "smw-category": "分类", + "smw-datavalue-uri-invalid-scheme": "“$1”未被列为有效的URI模式。", + "smw-datavalue-uri-invalid-authority-path-component": "“$1”被识别为含有无效的“$2”权限或路径组件。", + "smw-browse-property-group-title": "属性组合", + "smw-browse-property-group-label": "属性组合标签", + "smw-browse-property-group-description": "属性组合描述", + "smw-property-predefined-ppgr": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的标识用作属性组合实例的实体(主要是分类)的预定义属性。", + "smw-filter": "筛选", + "smw-section-expand": "展开该部分", + "smw-section-collapse": "折叠该部分", + "smw-ask-format-help-link": "[https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]格式", + "smw-help": "帮助", + "smw-cheat-sheet": "速查表", + "smw-personal-jobqueue-watchlist": "作业队列监视列表", + "smw-personal-jobqueue-watchlist-explain": "数字表示等待执行的作业队列条目的估计数。", + "smw-property-predefined-label-skey": "排序键", + "smw-processing": "正在处理...", + "smw-loading": "正在加载...", + "smw-fetching": "正在获取...", + "smw-preparing": "正在准备...", + "smw-expand": "展开", + "smw-collapse": "折叠", + "smw-copy": "复制", + "smw-copy-clipboard-title": "复制内容到剪贴板", + "smw-jsonview-expand-title": "展开JSON视图", + "smw-jsonview-collapse-title": "折叠JSON视图", + "smw-jsonview-search-label": "搜索:", + "smw-redirect-target-unresolvable": "目标无法解析,原因是“$1”", + "smw-types-title": "类型:$1", + "smw-schema-namespace-editcontentmodel-disallowed": "不允许更改[https://www.semantic-mediawiki.org/wiki/Help:Schema 模式页面]的内容模型。", + "smw-schema-namespace-edit-protection": "此页面受保护,只能被有适当的smw-schemaedit[https://www.semantic-mediawiki.org/wiki/Help:Permissions 权限]的用户编辑。", + "smw-schema-namespace-edit-protection-by-import-performer": "此页面由列出的[https://www.semantic-mediawiki.org/wiki/Import_performer 导入执行者]导入。这意味着只有列出的用户才能更改此页面的内容。", + "smw-schema-error-title": "验证{{PLURAL:$1|错误}}", + "smw-schema-error-schema": "验证模式'''$1'''找到以下不一致:", + "smw-schema-error-miscellaneous": "其他错误($1)", + "smw-schema-error-validation-json-validator-inaccessible": "JSON验证器“$1”无法访问(或未安装),因此无法检查“$2”文件,这会阻止当前页面被保存或更改。", + "smw-schema-error-validation-file-inaccessible": "无法访问验证文件“$1”。", + "smw-schema-error-violation": "[“$1”,“$2”]", + "smw-schema-error-type-missing": "内容缺少在[https://www.semantic-mediawiki.org/wiki/Help:Schema 模式命名空间]内识别和使用它所需的类型。", + "smw-schema-error-type-unknown": "“$1”类型未注册,不能用于[https://www.semantic-mediawiki.org/wiki/Help:Schema SMW/模式]命名空间内的内容。", + "smw-schema-error-json": "JSON错误:“$1”", + "smw-schema-error-input": "输入验证找到以下问题,需要在保存内容前解决这些问题。[https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling 模式帮助]页面可能会提供一些消除不一致或解决模式输入问题方法的建议。", + "smw-schema-error-input-schema": "验证模式'''$1'''找到以下不一致,需要在保存内容前解决它们。[https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling 模式帮助]页面可能会提供一些解决这类问题方法的建议。", + "smw-schema-error-title-prefix": "此模式类型要求模式标题以“$1”前缀开头。", + "smw-schema-validation-error": "“$1”类型未注册,不能用于[https://www.semantic-mediawiki.org/wiki/Help:Schema SMW/模式]命名空间内的内容。", + "smw-schema-validation-schema-title": "JSON模式", + "smw-schema-summary-title": "摘要", + "smw-schema-title": "模式", + "smw-schema-usage": "使用情况", + "smw-schema-type": "模式类型", + "smw-schema-type-description": "类型描述", + "smw-schema-description": "模式描述", + "smw-schema-description-link-format-schema": "此模式类型支持定义用于创建与[[Property:Formatter schema|格式化模式]]分配的属性相关的上下文敏感链接的特征。", + "smw-schema-description-search-form-schema": "此模式类型支持定义[https://www.semantic-mediawiki.org/wiki/Help:SMWSearch 扩展搜索]配置文件的输入形式和特征,其中含有生成输入字段、定义默认命名空间、声明搜索请求的前缀表达式的方法说明。", + "smw-schema-description-property-profile-schema": "此模式类型支持定义配置文件,可声明分配的属性及其注解值的特征。", + "smw-schema-description-facetedsearch-profile-schema": "此模式类型支持定义用于组成[[Special:FacetedSearch|多面搜索]]环境的配置文件。", + "smw-schema-description-property-group-schema": "此模式类型支持定义[https://www.semantic-mediawiki.org/wiki/Help:Property_group 属性组合],可帮助组织[https://www.semantic-mediawiki.org/wiki/Help:Special:Browse 浏览]界面结构。", + "smw-schema-description-property-constraint-schema": "这支持定义属性实例以及分配给它的值的约束规则。", + "smw-schema-description-class-constraint-schema": "此模式类型支持定义类实例(也称为分类)的约束规则。", + "smw-schema-tag": "{{PLURAL:$1|标记}}", + "smw-property-predefined-constraint-schema": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的定义约束模式的预定义属性。", + "smw-property-predefined-schema-desc": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的储存模式描述的预定义属性。", + "smw-property-predefined-schema-def": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的储存模式内容的预定义属性。", + "smw-property-predefined-schema-tag": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的标识模式集合的预定义属性。", + "smw-property-predefined-long-schema-tag": "即标识有相似内容或特征的模式的标签。", + "smw-property-predefined-schema-type": "“$1”是[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 语义MediaWiki]提供的描述用于区分模式组合的类型的预定义属性。", + "smw-property-predefined-long-schema-type": "每个[https://www.semantic-mediawiki.org/wiki/Help:Schema/Type 类型]都提供自己的语法元素和应用规则的表达方式,并可借助[https://www.semantic-mediawiki.org/wiki/Help:Schema#validation 验证模式]来表达。", + "smw-ask-title-keyword-type": "关键词搜索", + "smw-ask-message-keyword-type": "此搜索匹配$1条件。", + "smw-remote-source-unavailable": "无法连接远程“$1”目标。", + "smw-remote-source-disabled": "'''$1'''来源已禁用远程请求支持!", + "smw-remote-source-unmatched-id": "'''$1'''来源不匹配支持远程请求的语义MediaWiki版本。", + "smw-remote-request-note": "结果获取自'''$1'''远程来源,生成的内容很可能含有当前wiki内无法提供的信息。", + "smw-remote-request-note-cached": "结果获取自'''$1'''远程来源'''缓存''',生成的内容很可能含有当前wiki内无法提供的信息。", + "smw-parameter-missing": "缺少参数“$1”。", + "smw-property-tab-usage": "使用情况", + "smw-property-tab-profile-schema": "配置文件模式", + "smw-property-tab-redirects": "同义词", + "smw-property-tab-subproperties": "子属性", + "smw-property-tab-errors": "不当分配", + "smw-property-tab-constraint-schema": "约束模式", + "smw-property-tab-constraint-schema-title": "编译的约束模式", + "smw-property-tab-specification": "...更多", + "smw-concept-tab-list": "列表", + "smw-concept-tab-errors": "错误", + "smw-ask-tab-result": "结果", + "smw-ask-tab-extra": "额外", + "smw-ask-tab-debug": "调试", + "smw-ask-tab-code": "代码", + "smw-install-incomplete-tasks-title": "未完成的管理任务", + "smw-install-incomplete-intro": "要完成[https://www.semantic-mediawiki.org 语义MediaWiki]的{{PLURAL:$1|安装|升级}},还有$2个未完成或[[Special:PendingTaskList|待处理]]的{{PLURAL:$2|任务}}。管理员或有足够权限的用户可以完成{{PLURAL:$2|它|它们}}。这应该在添加新数据之前完成,以避免数据不一致。", + "smw-install-incomplete-intro-note": "此消息会在所有相关任务解决后消失。", + "smw-pendingtasks-intro-empty": "没有与语义MediaWiki相关的归类为待处理、未完成或未解决的任务。", + "smw-pendingtasks-intro": "此页面提供与语义MediaWiki相关的归类为待处理、未完成或未解决的任务的有关信息。", + "smw-pendingtasks-setup-no-tasks-intro": "安装(或升级)已完成,目前没有待处理或未解决的任务。", + "smw-pendingtasks-tab-setup": "设置", + "smw-updateentitycollation-incomplete": "[https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation]设置最近被更改,必需执行[https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php]脚本,以便更新实体并使其含有正确的排序字段值。", + "smw-updateentitycountmap-incomplete": "smw_countmap字段在最近发行版中添加,必需执行[https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php]脚本,以便功能能够访问该字段的内容。", + "smw-populatehashfield-incomplete": "smw_hash字段填充在设置过程中跳过。必需执行[https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php]脚本。", + "smw-install-incomplete-populate-hash-field": "smw_hash字段填充在设置过程中跳过。必需执行[https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php]脚本。", + "smw-install-incomplete-elasticstore-indexrebuild": "ElasticStore已被选为[https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore 默认存储],但是扩展无法找到任何执行[https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php]脚本的记录,请按说明运行该脚本。", + "smw-elastic-rebuildelasticindex-run-incomplete": "ElasticStore已被选为[https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore 默认存储],但是扩展无法找到任何执行[https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php]脚本的记录,请按说明运行该脚本。", + "smw-pendingtasks-setup-intro": "语义MediaWiki的{{PLURAL:$1|安装|升级}}已把以下任务归类为[https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade 未完成],管理员(或有足够权限的用户)应该在用户继续创建或更改内容之前解决这些任务。", + "smw-pendingtasks-setup-tasks": "任务", + "smw-filter-count": "筛选数", + "smw-es-replication-check": "复制检查(Elasticsearch)", + "smw-es-replication-error": "Elasticsearch复制问题", + "smw-es-replication-file-ingest-error": "文件摄入问题", + "smw-es-replication-maintenance-mode": "Elasticsearch维护", + "smw-es-replication-error-missing-id": "复制监控发现Elasticsearch后端缺少条目“$1”(ID:$2)。", + "smw-es-replication-error-divergent-date": "复制监控发现条目“$1”(ID:$2)的修改日期存在差异。", + "smw-es-replication-error-divergent-date-short": "以下是用于对比的日期信息:", + "smw-es-replication-error-divergent-date-detail": "引用的修改日期:\n*Elasticsearch:$1\n*数据库:$2", + "smw-es-replication-error-divergent-revision": "复制监控发现条目“$1”(ID:$2)的关联修订存在差异。", + "smw-es-replication-error-divergent-revision-short": "以下是用于对比的关联修订数据:", + "smw-es-replication-error-divergent-revision-detail": "引用的关联修订:\n*Elasticsearch:$1\n*数据库:$2", + "smw-es-replication-error-maintenance-mode": "Elasticsearch复制目前受到限制,因为它在[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode 维护模式]下运行,对实体和页面的更改不会立即可见,查询结果可能含有过时信息。", + "smw-es-replication-error-no-connection": "复制监控无法执行任何检查,因为它无法与Elasticsearch集群建立连接。", + "smw-es-replication-error-bad-request-exception": "Elasticsearch连接处理程序抛出了错误请求异常(“400 Bad Request错误”),表明复制和搜索请求期间存在持续问题。", + "smw-es-replication-error-other-exception": "Elasticsearch连接处理程序抛出了异常:“$1”。", + "smw-es-replication-error-suggestions": "建议编辑页面或清除页面缓存以消除差异。如果问题仍然存在,请检查Elasticsearch集群本身(分配器、异常、磁盘空间等)。", + "smw-es-replication-error-suggestions-maintenance-mode": "建议联系wiki管理员检查[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild 索引重建]当前是否正在进行或refresh_interval是否没有设置为预期的默认值。", + "smw-es-replication-error-suggestions-no-connection": "建议联系wiki管理员并报告“无连接”问题。", + "smw-es-replication-error-suggestions-exception": "请检查日志获取Elasticsearch状态、索引,以及可能存在的错误配置问题的有关信息。", + "smw-es-replication-error-file-ingest-missing-file-attachment": "复制监控发现“$1”缺少[[Property:File attachment|文件附件]](File attachment)注解,表明文件摄入处理器尚未启动或尚未完成处理。", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "请确保[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion 文件摄入]工作在注解和文件索引可用之前安排并执行。", + "smw-report": "报告", + "smw-legend": "说明", + "smw-datavalue-constraint-schema-category-invalid-type": "注解的“$1”模式对于分类无效,必须为“$2”类型。", + "smw-datavalue-constraint-schema-property-invalid-type": "注解的“$1”模式对于属性无效,必须为“$2”类型。", + "smw-entity-examiner-check": "在后台运行{{PLURAL:$1|检查器}}", + "smw-entity-examiner-indicator": "实体问题面板", + "smw-entity-examiner-deferred-check-awaiting-response": "“$1”检查器目前正在等待后端的响应。", + "smw-entity-examiner-deferred-elastic-replication": "Elastic", + "smw-entity-examiner-deferred-constraint-error": "约束", + "smw-entity-examiner-associated-revision-mismatch": "修订", + "smw-entity-examiner-deferred-fake": "虚假", + "smw-entity-examiner-indicator-suggestions": "作为实体检查的一部分,发现了以下{{PLURAL:$1|问题}},建议仔细检查{{PLURAL:$1|该问题|这些问题}}并采取适当的{{PLURAL:$1|操作}}。", + "smw-indicator-constraint-violation": "{{PLURAL:$1|约束}}", + "smw-indicator-revision-mismatch": "修订", + "smw-indicator-revision-mismatch-error": "[https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner 关联修订]检查发现,MediaWiki内引用的修订与语义MediaWiki内给该实体关联的修订误配。", + "smw-indicator-revision-mismatch-comment": "误配通常表明某些进程中断了语义MediaWiki内的存储操作。建议检查服务器日志并查找异常或其他故障。", + "smw-facetedsearch-intro-text": "语义MediaWiki的[https://www.semantic-mediawiki.org/wiki/Faceted_search 多面搜索]给用户提供简单界面,可借助创建自从属属性和分类的多面视图快速缩小特定查询条件的结果范围。", + "smw-facetedsearch-intro-tips": "* 使用category:?property:?concept:?可分别查找可用的构建条件集合的分类、属性、概念\n* 使用#ask语法可描述条件(例如[[Category:Foo]])\n* 使用“OR”“AND”或其他查询表达式可创建复杂条件\n* 当选用的[https://www.semantic-mediawiki.org/wiki/Query_engine 查询引擎]支持时,in:phrase:等表达式可用于全文匹配或非结构化搜索", + "smw-facetedsearch-profile-label-default": "默认配置文件", + "smw-facetedsearch-intro-tab-explore": "探索", + "smw-facetedsearch-intro-tab-search": "搜索", + "smw-facetedsearch-explore-intro": "选择集合,开始浏览。", + "smw-facetedsearch-profile-options": "配置文件选项", + "smw-facetedsearch-size-options": "分页选项", + "smw-facetedsearch-order-options": "顺序选项", + "smw-facetedsearch-format-options": "显示选项", + "smw-facetedsearch-format-table": "表格", + "smw-facetedsearch-input-filter-placeholder": "筛选...", + "smw-facetedsearch-no-filters": "没有筛选。", + "smw-facetedsearch-no-filter-range": "没有筛选范围。", + "smw-facetedsearch-no-output": "对于所选的“$1”格式,没有可用的输出。", + "smw-facetedsearch-clear-filters": "清除{{PLURAL:$1|筛选}}", + "smw-search-placeholder": "搜索...", + "smw-listingcontinuesabbrev": "续", + "smw-showingresults": "下面正在显示从第$2条结果开始的{{PLURAL:$1|1|$1}}条结果。" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/i18n/zh-hant.json b/mediawiki/extensions/SemanticMediaWiki/i18n/zh-hant.json new file mode 100644 index 0000000..158ed5b --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/i18n/zh-hant.json @@ -0,0 +1,1148 @@ +{ + "@metadata": { + "authors": [ + "A Chinese Wikipedian", + "A Retired User", + "A2093064", + "Anakmalaysia", + "Assoc", + "Ch.Andrew", + "Cwlin0416", + "Fanjiayi", + "Frankou", + "Gzdavidwong", + "H78c67c", + "Hello903hello", + "Hitaypayan", + "Justincheng12345", + "Kly", + "LNDDYL", + "Lakejason0", + "Laundry Machine", + "Littletung", + "Liuxinyu970226", + "Mark85296341", + "McDutchie", + "Oapbtommy", + "Reke", + "Sheepy", + "Shirayuki", + "Simon Shek", + "StephDC", + "SunAfterRain", + "Sunny00217", + "Taiwania Justo", + "Wehwei", + "Willy1018", + "Winston Sung", + "Wrightbus", + "Wwycheuk", + "Xiplus", + "予弦", + "列维劳德", + "捍粵者", + "机智的小鱼君", + "神樂坂秀吉", + "아라" + ] + }, + "smw-desc": "讓您的 Wiki 更容易使用 - 不論是對於機器''或''人類([https://www.semantic-mediawiki.org/wiki/Help:User_manual 線上說明文件])", + "smw-error": "錯誤", + "smw-upgrade-error": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] 已安裝完並且已啟用,但缺少符合的[https://www.semantic-mediawiki.org/wiki/Help:Upgrade 更新鍵]。", + "smw-upgrade-release": "釋出", + "smw-upgrade-progress": "進度", + "smw-upgrade-progress-explain": "關於升級會何時完成的估計是難以預測的,因為這取決於資料存放大小以及可用的硬體,而規模較大的 wiki 會需要一段時間才能完成。\n\n請聯絡您本地的管理員來獲得更多有關進度的資訊。", + "smw-upgrade-progress-create-tables": "正在建立(或更新)表格與索引…", + "smw-upgrade-progress-post-creation": "正在執行建立後工作…", + "smw-upgrade-progress-table-optimization": "正在將表格最佳化…", + "smw-upgrade-progress-supplement-jobs": "正在新增補充作業…", + "smw-upgrade-error-title": "錯誤 » Semantic MediaWiki", + "smw-upgrade-error-why-title": "為什麼我會看到此頁面?", + "smw-upgrade-error-why-explain": "Semantic MediaWiki 的內部資料庫架構已更改,並且需要做出一些調整來讓功能齊全,這可能有包含以下數種原因:\n* 已添加額外固定屬性(需要額外表格設定)\n* 更新包含一些對於表格的變動,或是在存取資料之前索引有必要產生中斷\n* 對於存儲或查詢引擎的更改", + "smw-upgrade-error-how-title": "我要如何修正此錯誤?", + "smw-upgrade-error-how-explain-admin": "管理員(或任何具有管理權限的人)需運行 MediaWiki 的 [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Update.php update.php] 或 Semantic MediaWiki 的 [https://www.semantic-mediawiki.org/wiki/Help:SetupStore.php setupStore.php] 維護手稿。", + "smw-upgrade-error-how-explain-links": "您可以參考以下頁面來獲得進一步協助:\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation 安裝]指引\n* [https://www.semantic-mediawiki.org/wiki/Help:Installation/Troubleshooting 問題排除]說明頁面", + "smw-extensionload-error-why-title": "為什麼我會看到此頁面?", + "smw-extensionload-error-why-explain": "使用 enableSemantics不能載入擴充,改由透過像是直接使用 wfLoadExtension( 'SemanticMediaWiki' ) 來啟用。", + "smw-extensionload-error-how-title": "我要如何修正此錯誤?", + "smw-extensionload-error-how-explain": "要啟用擴充套件以及防止命名空間聲明問題和待定設置,需要使用 enableSemantics,這會確保在透過 ExtensionRegistry 載入擴充套件之前所需的變數已被設定。\n\n請查看 [https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics enableSemantics] 說明頁面來獲得更多幫助。", + "smw-upgrade-maintenance-title": "維護 » Semantic MediaWiki", + "smw-upgrade-maintenance-why-title": "為什麼我會看到此頁面?", + "smw-upgrade-maintenance-note": "系統目前正擴充[https://www.semantic-mediawiki.org/ Semantic MediaWiki]與[https://www.semantic-mediawiki.org/wiki/Help:Upgrade 更新]該資料儲存庫,在wiki可存取前,希望您能耐心等候讓保養得以繼續。", + "smw-upgrade-maintenance-explain": "該擴充嘗試靠著推遲多數維護任務到 update.php 之後,來減輕影響與停機時間 ,但一些資料庫相關的變更需要先完成以避免資料內容不一致。包含有:\n* 更改表格的結構,例如添加新的或變動現有欄位\n* 更改或添加表格的索引\n* 運行表格最佳化(當有啟用時)", + "smw-semantics-not-enabled": "Semantic MediaWiki 功能沒有為此 wiki 啟用。", + "smw_viewasrdf": "訂閱 RDF feed", + "smw_finallistconjunct": "和", + "smw-factbox-head": "...更多有關「$1」", + "smw-factbox-facts": "事實", + "smw-factbox-facts-help": "顯示由某一使用者所創建的聲明和事實", + "smw-factbox-attachments": "附件", + "smw-factbox-attachments-value-unknown": "N/A", + "smw-factbox-attachments-is-local": "本地", + "smw-factbox-attachments-help": "顯示所有可用附件", + "smw-factbox-facts-derived": "衍生的事實", + "smw-factbox-facts-derived-help": "顯示衍生自規則的實情,或是在其它推理技術幫助下所生成的實情", + "smw_isspecprop": "此屬性為此 Wiki 的特殊屬性。", + "smw-concept-cache-header": "暫存使用", + "smw-concept-cache-count": "[https://www.semantic-mediawiki.org/wiki/Help:Concept_cache_count 概念快取]包含 {{PLURAL:$1|'''1'''|'''$1'''}} 個實體($2)。", + "smw-concept-no-cache": "沒有可用快取。", + "smw_concept_description": "概念 \"$1\" 的描述", + "smw_no_concept_namespace": "概念只能定義於命名空間 Concept: 中。", + "smw_multiple_concepts": "每頁概念頁面只能擁有一個概念定義。", + "smw_concept_cache_miss": "因為維基設定需要概念 \"$1\" 在離線時計算,此概念現在無法使用。\n如果這個問題在一段時間後仍未解決,請向網站管理員請求令該概念可用。", + "smw_noinvannot": "不能為逆屬性指定值。", + "version-semantic": "語意擴充功能", + "smw_baduri": "不允許 \"$1\" 形式的 URI。", + "smw_printername_count": "計算結果", + "smw_printername_csv": "匯出為 CSV", + "smw_printername_dsv": "匯出為 DSV", + "smw_printername_debug": "偵錯查詢 (用於專業人士)", + "smw_printername_embedded": "嵌入頁面內容", + "smw_printername_json": "匯出為 JSON", + "smw_printername_list": "清單", + "smw_printername_plainlist": "純清單", + "smw_printername_ol": "編號清單", + "smw_printername_ul": "符號清單", + "smw_printername_table": "表格", + "smw_printername_broadtable": "寬版表格", + "smw_printername_template": "模板", + "smw_printername_templatefile": "模板檔案", + "smw_printername_rdf": "匯出為 RDF", + "smw_printername_category": "類別", + "validator-type-class-SMWParamSource": "內容", + "smw-paramdesc-limit": "查詢結果數量上限", + "smw-paramdesc-offset": "第一個結果的偏差", + "smw-paramdesc-headers": "顯示標頭/屬性名稱", + "smw-paramdesc-mainlabel": "主要頁面的標籤名稱", + "smw-paramdesc-link": "以連結顯示數值", + "smw-paramdesc-intro": "查詢結果前顯示的文字", + "smw-paramdesc-outro": "查詢結果後顯示的文字", + "smw-paramdesc-default": "查詢結果為空時顯示的文字", + "smw-paramdesc-sep": "結果之間的分隔符號", + "smw-paramdesc-propsep": "結果記錄的内容之間的分隔符號", + "smw-paramdesc-valuesep": "用於結果裡屬性值之間的分隔符號", + "smw-paramdesc-showsep": "顯示分隔符號於 CSV 檔案的頂端 (\"sep=\")", + "smw-paramdesc-distribution": "顯示出現的次數,不顯示所有數值。", + "smw-paramdesc-distributionsort": "依出現次數排序數值分布。", + "smw-paramdesc-distributionlimit": "限制數值分佈只計算特殊數值。", + "smw-paramdesc-aggregation": "指定聚集應與什麼相關", + "smw-paramdesc-template": "用來顯示列印頁面的模板名稱", + "smw-paramdesc-columns": "所要顯示結果的欄數", + "smw-paramdesc-userparam": "使用模板時,傳遞給模板的參數值", + "smw-paramdesc-class": "為清單設定的額外 CSS 類別", + "smw-paramdesc-introtemplate": "查詢結果前顯示的模板名稱", + "smw-paramdesc-outrotemplate": "查詢結果後顯示的模板名稱", + "smw-paramdesc-embedformat": "定義標題的 HTML 標籤", + "smw-paramdesc-embedonly": "不顯示標題", + "smw-paramdesc-table-class": "額外套用到表格上的 CSS 類別", + "smw-paramdesc-table-transpose": "垂直顯示表格標題,水平顯示結果", + "smw-paramdesc-prefix": "控制在列印輸出裡命名空間的顯示", + "smw-paramdesc-rdfsyntax": "使用 RDF 語法", + "smw-paramdesc-csv-sep": "指定的欄位分隔符號", + "smw-paramdesc-csv-valuesep": "指定一個值的分隔符號", + "smw-paramdesc-csv-merge": "與相同主題識別字(或稱首欄)來合併列和欄的值", + "smw-paramdesc-csv-bom": "在輸出檔案的頂端添加 BOM(訊號位元組順序字元)", + "smw-paramdesc-dsv-separator": "使用的分隔符號", + "smw-paramdesc-dsv-filename": "DSV 檔案名稱", + "smw-paramdesc-filename": "輸出的檔案名稱", + "smw-smwdoc-description": "顯示所有參數的表,它們可以與預設值和描述一起用於指定的結果格式。", + "smw-smwdoc-default-no-parameter-list": "此結果格式未提供格式特定參數。", + "smw-smwdoc-par-format": "顯示參數文件的結果格式。", + "smw-smwdoc-par-parameters": "要顯示哪些參數。\"specific\" (專用) 表示該格式所新增那些的,\"base\" (基礎) 表示所有格式當中可用的那些,而\"all\" (全部) 表示兩種情況具有。", + "smw-paramdesc-sort": "排序查詢的屬性", + "smw-paramdesc-order": "查詢排序的順序", + "smw-paramdesc-searchlabel": "繼續搜尋文字", + "smw-paramdesc-named_args": "請指定傳遞給該模板的變數", + "smw-paramdesc-template-arguments": "設定命名參數如何傳遞到模板", + "smw-paramdesc-import-annotation": "額外的帶註釋資料在解析主題期間都會被複製", + "smw-paramdesc-export": "匯出選項", + "smw-paramdesc-prettyprint": "美化輸出顯示額外縮排與換行", + "smw-paramdesc-json-unescape": "包含未跳脫斜線以及多位元組萬國碼字元的輸出", + "smw-paramdesc-json-type": "序列化類型", + "smw-paramdesc-source": "替代的查詢來源", + "smw-paramdesc-jsonsyntax": "使用 JSON 語法", + "smw-printername-feed": "訂閱 RSS 與 Atom feed", + "smw-paramdesc-feedtype": "訂閱類型", + "smw-paramdesc-feedtitle": "訂閱來源的標題文字", + "smw-paramdesc-feeddescription": "訂閱來源的描述文字", + "smw-paramdesc-feedpagecontent": "訂閱來源顯示的頁面內容", + "smw-label-feed-description": "訂閱 $1 $2 feed", + "smw-paramdesc-mimetype": "用於輸出檔案的媒體類型(MIME 類型)", + "smw_iq_disabled": "此 wiki 的語義查詢已被停用", + "smw_iq_moreresults": "...更多結果", + "smw_parseerror": "輸入的值無法理解。", + "smw_notitle": " \"$1\" 不得被用做此 wiki 的頁面名稱。", + "smw_noproperty": "\"$1\"不能用作此 wiki 中的一個屬性名稱。", + "smw_wrong_namespace": "此處只允許命名空間 \"$1\" 中的頁面。", + "smw_manytypes": "此屬性定義了一種以上類型。", + "smw_emptystring": "不接受空字元串。", + "smw_notinenum": "「$1」不在用於「$3」屬性[[Property:Allows value|所允許值]]的清單($2)中。", + "smw-datavalue-constraint-error-allows-value-list": "「$1」不在用於「$3」屬性[[Property:Allows value|所允許值]]的清單($2)中。", + "smw-datavalue-constraint-error-allows-value-range": "「$1」沒有符合用於限制屬性「$3」的[[Property:Allows value|允許值]]所指定的「$2」範圍。", + "smw-constraint-error": "限制問題", + "smw-constraint-error-suggestions": "請檢查所列出違反內容與帶有其註釋值的屬性,來確認符合所有限制的需求。", + "smw-constraint-error-limit": "清單最多包含 $1 個違反內容。", + "smw_noboolean": "\"$1\" 不是布林 (是非) 值", + "smw_true_words": "true,t,yes,y,是,真,對", + "smw_false_words": "false,f,no,n,否,假,錯", + "smw_nofloat": "「$1」不是數字。", + "smw_infinite": " \"$1\" 數值過大,無法支援。", + "smw_unitnotallowed": "\"$1\"未被聲明為此屬性的一個有效的度量單位。", + "smw_nounitsdeclared": "此屬性沒有聲明任何度量單位。", + "smw_novalues": "未設定數值。", + "smw_nodatetime": "無法理解日期 \"$1\"", + "smw_toomanyclosing": "查詢中 \"$1\" 過多。", + "smw_noclosingbrackets": "你的查詢中有未符合\"]]\"的\"[[\"。", + "smw_misplacedsymbol": "符號 \"$1\" 的位置無效。", + "smw_unexpectedpart": "查詢的 \"$1\" 部分無法理解。\n結果可能與預料的不同。", + "smw_emptysubquery": "部份子查詢的條件無效。", + "smw_misplacedsubquery": "部份子查詢使用在不允許子查詢的地方。", + "smw_valuesubquery": "子查詢不支援屬性 \"$1\" 的值", + "smw_badqueryatom": "部份查詢 \"[[...]]\" 無法理解。", + "smw_propvalueproblem": "屬性 \"$1\" 的值無法理解。", + "smw_noqueryfeature": "此 wiki 不支援一些查詢功能,查詢被部分停止 ($1) 。", + "smw_noconjunctions": "此 wiki 不支援查詢中的合取,查詢被部分停止 ($1) 。", + "smw_nodisjunctions": "此 wiki 不支援查詢中的析取,查詢被部分停止 ($1) 。", + "smw_querytoolarge": "由于此 wiki 在査詢大小或深度上的限制,下列{{PLURAL:$2|查詢準則}}無法列入考慮:$1。", + "smw_notemplategiven": "為使查詢格式正常工作,請為參數 \"模板\" 賦值。", + "smw_db_sparqlqueryproblem": "無法從 SPARQL 資料庫獲得查詢結果。這個錯誤可能是暫時的,也可能是資料庫軟體的錯誤造成的。", + "smw_db_sparqlqueryincomplete": "本查詢太過複雜因而被中止,可能會因此遺失部分結果。如果可能,請嘗試改用一個較簡單的查詢。", + "smw_type_header": "類型 \"$1\" 的屬性", + "smw_typearticlecount": "使用此類型顯示 $1 {{PLURAL:$1|property|屬性}}", + "smw_attribute_header": "使用屬性 \"$1\" 的頁面", + "smw_attributearticlecount": "使用此屬性顯示 $1 {{PLURAL:$1|page|頁面}}", + "smw-propertylist-subproperty-header": "子屬性", + "smw-propertylist-redirect-header": "同義詞", + "smw-propertylist-error-header": "不適當分配的頁面", + "smw-propertylist-count": "顯示 $1 個相關{{PLURAL:$1|實體|實體}}。", + "smw-propertylist-count-with-restricted-note": "顯示 $1 個相關{{PLURAL:$1|實體|實體}}(有更多實體可用,但被限制僅顯示 \"$2\" 個實體)。", + "smw-propertylist-count-more-available": "顯示 $1 個相關{{PLURAL:$1|實體|實體}}(有更多實體可用)。", + "specialpages-group-smw_group": "語意MediaWiki", + "specialpages-group-smw_group-maintenance": "維護", + "specialpages-group-smw_group-properties-concepts-types": "屬性、概念、與類型", + "specialpages-group-smw_group-search": "瀏覽與搜尋", + "exportrdf": "輸出頁面到 RDF", + "smw_exportrdf_docu": "這個頁面用於以 RDF 格式獲得頁面資料。\n在下方文字框中輸入標題以匯出頁面,每行一個標題。", + "smw_exportrdf_recursive": "遞歸匯出所有相關頁面。\n注意:結果檔案會很大。", + "smw_exportrdf_backlinks": "同時匯出與匯出頁面相關的所有頁面。\n產生可瀏覽的 RDF。", + "smw_exportrdf_lastdate": "不要匯出自指定時間後無變更的頁面。", + "smw_exportrdf_submit": "匯出", + "uriresolver": "URI 解析器", + "properties": "屬性", + "smw-categories": "分類", + "smw_properties_docu": "本 wiki 使用以下屬性。", + "smw_property_template": "類型為 $2 的屬性 $1 (出現 $3 次)", + "smw_propertylackspage": "所有屬性均應有一個頁面描述!", + "smw_propertylackstype": "此屬性未指定類型 (目前預設為類型 $1)", + "smw_propertyhardlyused": "此屬性在本 wiki 中不常使用。", + "smw-property-name-invalid": "無法使用屬性 $1 (無效的屬性名稱)。", + "smw-property-name-reserved": "「$1」被列舉為保留名稱,且不應用作屬性。以下[https://www.semantic-mediawiki.org/wiki/Help:Property_naming 幫助頁面]可能包含有關為何該名稱是保留名稱的資訊。", + "smw-sp-property-searchform": "顯示包含以下內容的屬性:", + "smw-sp-property-searchform-inputinfo": "輸入區分大小寫且當用來搜尋時只會顯示符合條件的屬性。", + "smw-special-property-searchform": "顯示包含以下內容的屬性:", + "smw-special-property-searchform-inputinfo": "輸入區分大小寫且當用來搜尋時只會顯示符合條件的屬性。", + "smw-special-property-searchform-options": "選項", + "smw-special-wantedproperties-filter-label": "篩選:", + "smw-special-wantedproperties-filter-none": "無", + "smw-special-wantedproperties-filter-unapproved": "未批准", + "smw-special-wantedproperties-filter-unapproved-desc": "篩選用於權威模式時連接的選項。", + "concepts": "概念", + "smw-special-concept-docu": "[https://www.semantic-mediawiki.org/wiki/Help:Concepts 概念]可被看做是 \"動態分類\",即非手動建立的頁面集合,是由 Semantic MediaWiki 從指定查詢中的描述所找出。", + "smw-special-concept-header": "概念清單", + "smw-special-concept-count": "以下列出{{PLURAL:$1|1 個概念|$1 個概念}}。", + "smw-special-concept-empty": "查無概念。", + "unusedproperties": "未使用的屬性", + "smw-unusedproperties-docu": "此頁面列出已聲明,沒有被其它頁面使用的[https://www.semantic-mediawiki.org/wiki/Unused_properties 未使用屬性]。差別內容請參見[[Special:Properties|全部屬性]]或[[Special:WantedProperties|所需屬性]]特殊頁面。", + "smw-unusedproperty-template": "類型為 $2 的屬性 $1", + "wantedproperties": "需要的屬性", + "smw-wantedproperties-docu": "此頁面列出在 wiki 中使用,但沒有頁面描述的[https://www.semantic-mediawiki.org/wiki/Wanted_properties 所需屬性]。差別內容請參見[[Special:Properties|全部屬性]]或[[Special:UnusedProperties|未使用屬性]]特殊頁面。", + "smw-wantedproperty-template": "$1 ($2 {{PLURAL:$2|use|使用}})", + "smw-special-wantedproperties-docu": "此頁面列出在 wiki 中使用,但沒有頁面描述的[https://www.semantic-mediawiki.org/wiki/Wanted_properties 所需屬性]。差別內容請參見[[Special:Properties|全部屬性]]或[[Special:UnusedProperties|未使用屬性]]特殊頁面。", + "smw-special-wantedproperties-template": "$1($2 {{PLURAL:$2|次使用}})", + "smw_purge": "重新整理", + "smw-purge-update-dependencies": "由於一些需要更新的過時相依內容被檢測出,Semantic MediaWiki 正清除目前的頁面。", + "smw-purge-failed": "Semantic MediaWiki 嘗試清除頁面但不成功", + "types": "類型", + "smw_types_docu": "[https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes 可用資料類型]的列表,每種[https://www.semantic-mediawiki.org/wiki/Help:Datatype 類型]代表唯一的屬性集,以描述儲存方面的值,並顯示遺傳至分配内容的特徵。", + "smw-special-types-no-such-type": "「$1」為未知,或是尚未指定成有效的資料型態。", + "smw-statistics": "Semantic 語義統計", + "smw-statistics-cached": "語意統計(快取)", + "smw-statistics-entities-total": "實體(總計)", + "smw-statistics-entities-total-info": "估計的實體列次數。此包含屬性、概念,或是任何其它需要分配 ID 的已註冊物件表示。", + "smw-statistics-property-instance": "屬性{{PLURAL:$1|值|值}} (總計)", + "smw-statistics-property-total": "[[Special:Properties|{{PLURAL:$1|屬性|屬性}}]] (總計)", + "smw-statistics-property-total-info": "已註冊屬性總數。", + "smw-statistics-property-total-legacy": "{{PLURAL:$1|屬性|屬性}} (總計)", + "smw-statistics-property-used": "{{PLURAL:$1|屬性|屬性}}(使用了至少一個值)", + "smw-statistics-property-page": "{{PLURAL:$1|Property|屬性}} (使用頁面註冊)", + "smw-statistics-property-page-info": "具有專用頁面與描述之屬性的次數。", + "smw-statistics-property-type": "{{PLURAL:$1|Property|屬性}} (指派給資料型態)", + "smw-statistics-query-inline-legacy": "$1 條查詢", + "smw-statistics-query-inline": "[[Property:Has query|{{PLURAL:$1|查詢|查詢}}]](嵌入、總計)", + "smw-statistics-query-format": "$1格式", + "smw-statistics-query-size": "隊列長度", + "smw-statistics-concept-count-legacy": "{{PLURAL:$1|概念|概念}}", + "smw-statistics-concept-count": "[[Special:Concepts|{{PLURAL:$1|概念}}]]", + "smw-statistics-subobject-count": "[[Property:Has subobject|{{PLURAL:$1|子物件}}]]", + "smw-statistics-subobject-count-legacy": "{{PLURAL:$1|子物件|子物件}}", + "smw-statistics-datatype-count": "[[Special:Types|{{PLURAL:$1|資料型態|資料型態}}]]", + "smw-statistics-error-count": "{{PLURAL:$1|屬性值}}([[Special:ProcessingErrorList|{{PLURAL:$1|不正確注釋}}]])", + "smw-statistics-error-count-legacy": "{{PLURAL:$1|屬性值|屬性值}}({{PLURAL:$1|不正確注釋|不正確注釋}})", + "smw-statistics-delete-count": "[https://www.semantic-mediawiki.org/wiki/Help:Outdated_entities 過時的{{PLURAL:$1|實體|實體}}]", + "smw-statistics-delete-count-info": "被標記為應被定期所使用的提供維護手稿給移除處置的實體。", + "smw_uri_doc": "URI 分析器實現[$1 W3C httpRange-14 標記尋找]。這確保一個 RDF 表示(對於機器)或是 wiki 頁面(對於人類)是個有根據請求的交遞。", + "ask": "語意搜尋", + "smw-ask-help": "此章節包含一些幫助解釋如何使用 #ask 語法的連結。\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages 選擇頁面]介紹如何選擇頁面,並構造條件\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Search_operators 搜索操作]列舉可用的蒐索操作,包含範圍査詢和萬用字元査詢\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Displaying_information 顯示資訊]概述列印輸出說明的用法及格式選項", + "smw_ask_sortby": "按列排序 (選填)", + "smw_ask_ascorder": "升冪", + "smw_ask_descorder": "降冪", + "smw-ask-order-rand": "隨機", + "smw_ask_submit": "搜尋結果", + "smw_ask_editquery": "編輯查詢", + "smw_add_sortcondition": "[增加排序條件]", + "smw-ask-sort-add-action": "增加排序條件", + "smw_ask_hidequery": "隱藏查詢(密集檢視)", + "smw_ask_help": "查詢說明", + "smw_ask_queryhead": "條件", + "smw_ask_printhead": "列印輸出選擇", + "smw_ask_printdesc": "(每行一個查詢名)", + "smw_ask_format_as": "格式為:", + "smw_ask_defaultformat": "預設", + "smw_ask_otheroptions": "其他選項", + "smw-ask-otheroptions-info": "本節包含改變列印輸出語句的選項。可透過在它們上面懸停滑鼠來查看參數描述。", + "smw-ask-otheroptions-collapsed-info": "請使用加號圖示來檢視所有可用的選項", + "smw_ask_show_embed": "顯示嵌入代碼", + "smw_ask_hide_embed": "隱藏嵌入的代碼", + "smw_ask_embed_instr": "使用以下代碼將查詢嵌入維基頁面。", + "smw-ask-delete": "移除", + "smw-ask-sorting": "排序", + "smw-ask-options": "選項", + "smw-ask-options-sort": "排序選項", + "smw-ask-format-options": "格式和選項", + "smw-ask-parameters": "參數", + "smw-ask-search": "搜尋", + "smw-ask-debug": "除錯", + "smw-ask-debug-desc": "產生查詢除錯訊息", + "smw-ask-no-cache": "停用查詢快取", + "smw-ask-no-cache-desc": "沒有査詢快取的結果", + "smw-ask-result": "結果", + "smw-ask-empty": "清空所有項目", + "smw-ask-download-link-desc": "以 $1 格式來下載查詢結果", + "smw-ask-format": "格式", + "smw-ask-format-selection-help": "有關選定格式的幫助:$1", + "smw-ask-condition-change-info": "條件已改變,搜尋引擎需要重新運行査詢來產生匹配新要求的結果。", + "smw-ask-input-assistance": "輸入說明", + "smw-ask-condition-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance 輸入幫助]提供於列印輸出、排序、條件欄位方面。條件欄位需要以下字首之一:", + "smw-ask-condition-input-assistance-property": "p: 檢索屬性建議(例如:[[p:Has ...)", + "smw-ask-condition-input-assistance-category": "c: 來索取分類建議", + "smw-ask-condition-input-assistance-concept": "con: 來索取概念建議", + "smw-ask-format-change-info": "格式已變動,並且需要再次執行查詢來比對新參數和視覺化選項。", + "smw-ask-format-export-info": "所選格式為不具有視覺化呈現的匯出格式,因此內容結果僅能提供下載。", + "smw-ask-query-search-info": "查詢 $1 由 {{PLURAL:$3|1=$2(來自快取)|$2(來自快取)|$2}}在 $4 {{PLURAL:$4|秒|秒}}內回應。", + "smw-ask-extra-query-log": "查詢日誌", + "smw-ask-extra-other": "其他", + "searchbyproperty": "按屬性查詢", + "processingerrorlist": "處理錯誤清單", + "constrainterrorlist": "限制錯誤清單", + "propertylabelsimilarity": "屬性標籤相似度報告", + "missingredirectannotations": "缺少重新導向註解", + "smw-processingerrorlist-intro": "以下清單提供有關出現在連接 [https://www.semantic-mediawiki.org/ Semantic MediaWiki] 時的[https://www.semantic-mediawiki.org/wiki/Processing_errors 處理錯誤]方面概要。建議定期查看此清單,並修正無效的值註解。", + "smw-constrainterrorlist-intro": "以下清單提供有關出現在連接 [https://www.semantic-mediawiki.org/ Semantic MediaWiki] 時的[https://www.semantic-mediawiki.org/wiki/Constraint_errors 限制錯誤]方面概要。建議定期查看此清單,並修正無效的值註解。", + "smw-missingredirects-intro": "以下段落會列出在 Semantic MediaWiki 裡缺少[https://www.semantic-mediawiki.org/wiki/Redirects 重新導向]通知的頁面(透過比較儲存在 MediaWiki 的資訊),並以手動[https://www.semantic-mediawiki.org/wiki/Help:Purge 清除]頁面或是運行 rebuildData.php 維護手稿(帶選項 --redirects)來重新儲存這些註解。", + "smw-missingredirects-list": "缺少註解的頁面", + "smw-missingredirects-list-intro": "顯示 $1 個缺少重新導向註解的{{PLURAL:$1|頁面}}。", + "smw-missingredirects-noresult": "沒有找出缺少重新導向註解。", + "smw_sbv_docu": "搜尋所有已設定屬性和值的頁面。", + "smw_sbv_novalue": "為此屬性輸入一個有效值,或者顯示所有 \"$1\" 的屬性值。", + "smw_sbv_displayresultfuzzy": "有值為 \"$2\" 的屬性 \"$1\" 的所有頁面清單。\n由於精確相符的頁面不多,同時列出了部分有相似值的頁面。", + "smw_sbv_property": "屬性:", + "smw_sbv_value": "值:", + "smw_sbv_submit": "搜尋結果", + "browse": "瀏覽 wiki", + "smw_browselink": "瀏覽屬性", + "smw_browse_article": "輸入瀏覽起始頁面名稱。", + "smw_browse_go": "進入", + "smw_browse_show_incoming": "顯示連入屬性", + "smw_browse_hide_incoming": "隱藏連入屬性", + "smw_browse_no_outgoing": "這個頁面沒有設定屬性。", + "smw_browse_no_incoming": "沒有屬性連結到此頁。", + "smw-browse-from-backend": "訊息目前正從後端取得。", + "smw-browse-intro": "此頁面提供有關主題或實體實例的詳情,請輸入物件名稱來檢查。", + "smw-browse-invalid-subject": "主題驗證返回“$1”錯誤。", + "smw-browse-api-subject-serialization-invalid": "主題有無效的序列化格式。", + "smw-browse-js-disabled": "似乎是 JavaScript 被停用或無法使用,我們建議使用支援 Javascript 的瀏覽器。其它選項有在 [https://www.semantic-mediawiki.org/wiki/Help:$smwgBrowseByApi $smwgBrowseByApi] 設置參數頁面裡被提及到。", + "smw-browse-show-group": "顯示群組", + "smw-browse-hide-group": "隱藏群組", + "smw-noscript": "此頁面或操作需要 JavaScript 才能執行。請在您的瀏覽器上啟用 JavaScript,或是使用支援 JavaScript 的瀏覽器,以讓依據要求所提供的功能可被提供。進一步的詳細內容,請查看 [https://www.semantic-mediawiki.org/wiki/Help:Noscript noscript] 說明頁面。", + "smw_inverse_label_default": "的$1", + "smw_inverse_label_property": "逆屬性標籤", + "pageproperty": "頁面屬性搜尋", + "pendingtasklist": "待辦任務清單", + "facetedsearch": "多面搜尋", + "smw_pp_docu": "輸入頁面和屬性,或是僅輸入屬性來索取所有分配的值。", + "smw_pp_from": "從頁面:", + "smw_pp_type": "屬性:", + "smw_pp_submit": "搜尋結果", + "smw-prev": "前{{PLURAL:$1|$1}}", + "smw-next": "後{{PLURAL:$1|$1}}", + "smw_result_prev": "上一個", + "smw_result_next": "下一個", + "smw_result_results": "結果", + "smw_result_noresults": "沒有結果。", + "smwadmin": "Semantic MediaWiki 功能板", + "smw-admin-statistics-job-title": "作業統計", + "smw-admin-statistics-job-docu": "作業統計顯示出有關已安排但尚未執行的 Semantic MediaWiki 作業。作業數目可能會有些不精準或是包含到失敗的嘗試,請查閱[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue 手冊]來獲得進一步資訊。", + "smw-admin-statistics-querycache-title": "查詢快取", + "smw-admin-statistics-querycache-disabled": "[https://www.semantic-mediawiki.org/wiki/QueryCache 查詢快取]在此 wiki 未啟用,因此沒有可用的統計內容。", + "smw-admin-statistics-querycache-legend": "快取統計為含有臨時累計內容和衍生資料,包括: \n* \"misses\" 是嘗試從快取索取資料但帶有無效回應,而必須直接做儲存(資料庫、三重儲存或其它)檢索的總數\n* \"deletes\" 代表回收快取操作(透過清除或是依靠查詢)的總數量\n* \"hits\" 含有來自內嵌(來自以 wiki 頁面的查詢呼叫)或非內嵌(如有啟用,由像是 Special:Ask 頁面或是 API 的請求) 來源索取的快取數量\n* \"medianRetrievalResponseTime\" 是用於超過收集過程時間段落的快取、非快取檢索請求回應時間(以秒為單位)中位數的取向值\n* \"noCache\" 表示沒有嘗試從快取來索取結果的次數(limit=0 的查詢,或是 'no-cache' 等其它選項)", + "smw-admin-statistics-section-explain": "提供給管理員額外統計的段落。", + "smw-admin-statistics-semanticdata-overview": "概要", + "smw-admin-permission-missing": "出於缺少權限緣故,被阻止存取此頁面,請參閱[https://www.semantic-mediawiki.org/wiki/Help:Permissions 權限]說明頁面來獲得更多有關所需設定的詳情。", + "smw-admin-setupsuccess": "儲存引擎已設定。", + "smw_smwadmin_return": "返回「$1」", + "smw_smwadmin_updatestarted": "更新語意資料過程開始。\n所有已儲存資料將被按需重建或修復。\n你可以透過本特殊頁面追蹤更新程序。", + "smw_smwadmin_updatenotstarted": "已有更新程序正在執行,請勿建立另一個。", + "smw_smwadmin_updatestopped": "已停止所有更新程序。", + "smw_smwadmin_updatenotstopped": "若要停止更新程序,您必須勾選核取方塊來表示您確實如此要求。", + "smw-admin-docu": "這個特殊頁面為您安裝、升級、維護和使用 Semantic MediaWiki 時提供說明,並提供進一步的管理功能和任務,以及統計。\n請記得在執行管理功能前備份好資料。", + "smw-admin-environment": "軟體環境", + "smw-admin-db": "資料庫設定", + "smw-admin-db-preparation": "表格正在初始化,依大小及可能的表格最佳化來顯示結果前可能會花一段時間。", + "smw-admin-dbdocu": "Semantic MediaWiki 需要本身所持有的資料庫架構來儲存語意資料(這獨立於 MediaWiki,不會對 MediaWiki 的安裝部份造成影響)\n這個設定功能可多次執行,不會造成任何危害。但是只需在安裝或升級時執行一次即可。", + "smw-admin-permissionswarn": "如果操作因 SQL 錯誤而失敗,可能是您 wiki 所用的資料庫使用者(可在您的 LocalSettings.php 檔案上檢查)沒有相應權限。您可以向該使用者賦予建立和刪除表格的權限,或臨時將資料庫 root 使用者的登入資訊輸入在 LocalSettings.php 檔案,或是使用維護手稿 setupStore.php,該手稿可以使用 LocalSettings.php 中的資訊。", + "smw-admin-dbbutton": "初始化或升級表格", + "smw-admin-announce": "發佈 wiki", + "smw-admin-announce-text": "若您的 wiki 是公開的,您可以在 WikiApiary 註冊它,這是用來追蹤 wiki 的 wiki。", + "smw-admin-deprecation-notice-title": "棄用通知", + "smw-admin-deprecation-notice-docu": "下面段落包含已被棄用或移除;但在此 wiki 上發現有被啟動的設定。今起往後任何發行版本都將移除對這些配置的支援。", + "smw-admin-deprecation-notice-config-notice": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] 已棄用,並將在 $2 版本裡移除", + "smw-admin-deprecation-notice-config-notice-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] 將移除(或替換)以下{{PLURAL:$2|選項}}:", + "smw-admin-deprecation-notice-config-notice-option-list": "$1已棄用,並將在$2中移除", + "smw-admin-deprecation-notice-config-replacement": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] 已被替換為 [https://www.semantic-mediawiki.org/wiki/Help:$2 $2]", + "smw-admin-deprecation-notice-config-replacement-other": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] 已被 $2 取代", + "smw-admin-deprecation-notice-config-replacement-option": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1] {{PLURAL:$2|選項}}:", + "smw-admin-deprecation-notice-config-replacement-option-list": "$1 正在替換為 $2", + "smw-admin-deprecation-notice-config-removal": "[https://www.semantic-mediawiki.org/wiki/Help:$1 $1]已在 $2 版本中被移除", + "smw-admin-deprecation-notice-title-notice": "棄用的設定", + "smw-admin-deprecation-notice-title-notice-explanation": "棄用設定顯示出在此 wiki 上所偵測到使用的設定會計畫在之後釋出的版本裡移除或更改。", + "smw-admin-deprecation-notice-title-replacement": "已替換或重新命名的設定", + "smw-admin-deprecation-notice-title-replacement-explanation": "取代或重新命名設定包含已重新命名或或是其它變動的設定,建議立即更新其名稱或格式。", + "smw-admin-deprecation-notice-title-removal": "已移除的設定", + "smw-admin-deprecation-notice-title-removal-explanation": "移除設定標識的設定已在上一個發佈版本中移除,但在此 wiki 上被檢測到有使用著。", + "smw-admin-deprecation-notice-section-legend": "圖例", + "smw-smwadmin-refresh-title": "資料修復與更新", + "smw_smwadmin_datarefresh": "資料重建", + "smw_smwadmin_datarefreshdocu": "可以基於維基先有內容對所有 Semantic MediaWki 資料進行重置。\n這個功能對修復損壞的資料,或者在軟體升級,內部格式改變時更新資料非常有用。\n更新時逐頁面執行的,需要一段時間。\n下方將顯示更新是否正在進行,並允許你開始或終止更新。 (此功能可以被網站管理員停用)", + "smw_smwadmin_datarefreshprogress": "有一個更新正在進行。\n更新程序可能會很慢,因為該程序僅在使用者訪問維基時小塊地更新資料。\n可以使用 MediaWiki 維護腳本runJobs.php (使用選項 --maxjobs 1000 限制每批更新數目) 來加快更新完成速度。\n目前更新的估計進度:", + "smw_smwadmin_datarefreshbutton": "安排資料重建", + "smw_smwadmin_datarefreshstop": "停止更新", + "smw_smwadmin_datarefreshstopconfirm": "是的,我{{GENDER:$1|確認}}。", + "smw-admin-job-scheduler-note": "在此段落的任務(已啟用)會透過任務佇列進行,以避免在執行期間出現死結狀況。[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue 任務佇列]負責程序,在緊要時可採用 runJobs.php 維護用手稿檔案(另參見設置參數 $wgRunJobsAsync)。", + "smw-admin-outdateddisposal-title": "過時實體處置", + "smw-admin-outdateddisposal-intro": "部分行動(對於屬性類型的更改、wiki 頁面的移除、或錯誤值的糾正)的結果會在[https://www.semantic-mediawiki.org/wiki/Outdated_entities 過時實體]上,並建議定期移除它們以釋放相關表格空間。", + "smw-admin-outdateddisposal-active": "過時實體處置任務已加入排程。", + "smw-admin-outdateddisposal-button": "安排處置", + "smw-admin-feature-disabled": "該功能已在此 wiki 上禁用。請查閱設定幫助頁面或聯絡系統管理員。", + "smw-admin-propertystatistics-title": "屬性統計重建", + "smw-admin-propertystatistics-intro": "重建整個屬性使用統計以及其中的更新,並更正[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count usage 使用計數]屬性。", + "smw-admin-propertystatistics-active": "屬性統計重建任務已加入排程。", + "smw-admin-propertystatistics-button": "安排統計重建", + "smw-admin-fulltext-title": "重建全文搜尋", + "smw-admin-fulltext-intro": "從啟用[https://www.semantic-mediawiki.org/wiki/Full-text 全文搜索]資料類型的屬性表格來重建搜尋索引。對索引規則的更改(改變的停用詞、新的詞幹等)以及/或是新的已添加或已變動表格,需要重新運行此任務。", + "smw-admin-fulltext-active": "全文搜尋重建任務已加入排程。", + "smw-admin-fulltext-button": "排程重建全文", + "smw-admin-support": "獲得協助", + "smw-admin-supportdocu": "已提供各種資源來幫助您解决以下問題:", + "smw-admin-installfile": "如果您安裝時遇到問題,請先檢查安裝文件安裝頁面中的指引。", + "smw-admin-smwhomepage": "Semantic MediaWiki 的完整使用者文件請查閱 semantic-mediawiki.org。", + "smw-admin-bugsreport": "程式問題可在問題追蹤報告,報告錯誤頁面提供一些如何書寫有效的問題報告方面指導。", + "smw-admin-questions": "如果有問題或建議,可加入 Semantic MediaWiki 使用者郵件清單。", + "smw-admin-other-functions": "其它功能", + "smw-admin-statistics-extra": "統計功能", + "smw-admin-statistics": "統計", + "smw-admin-supplementary-section-title": "補充功能", + "smw-admin-supplementary-section-subtitle": "支援核心功能", + "smw-admin-supplementary-section-intro": "此段落所提供額外功能不在維護活動的範圍之內,並且有些列在這裡的函式(參見[https://www.semantic-mediawiki.org/wiki/Help:Special:SemanticMediaWiki/Supplementary_functions 文檔])為受到限制或是不可用,因此在此維基上不可取用。", + "smw-admin-supplementary-settings-title": "設置與設定", + "smw-admin-supplementary-settings-intro": "$1列出定義 Semantic MediaWiki 行為的參數", + "smw-admin-main-title": "Semantic MediaWiki » $1", + "smw-admin-supplementary-operational-statistics-title": "操作統計", + "smw-admin-supplementary-operational-statistics-short-title": "操作統計", + "smw-admin-supplementary-operational-statistics-intro": "顯示$1的擴充集合", + "smw-admin-supplementary-idlookup-title": "實體查找與處置", + "smw-admin-supplementary-idlookup-short-title": "實體查找與處置", + "smw-admin-supplementary-idlookup-intro": "支援簡單的$1功能", + "smw-admin-supplementary-duplookup-title": "重複實體查找", + "smw-admin-supplementary-duplookup-intro": "$1用來替所選的表格矩陣找出被歸類為重複內容的項", + "smw-admin-supplementary-duplookup-docu": "此頁面列舉來自所選表格的項目,它們被歸類為[https://www.semantic-mediawiki.org/wiki/Help:Duplicate_entities 重複項]。重複項(如有)應僅在少數情況下會被終止更新或是未成功的回退事項所導致出。", + "smw-admin-supplementary-operational-statistics-cache-title": "快取統計", + "smw-admin-supplementary-operational-statistics-cache-intro": "$1顯示已選擇的快取相關統計", + "smw-admin-supplementary-operational-table-statistics-title": "表格統計", + "smw-admin-supplementary-operational-table-statistics-short-title": "表格統計", + "smw-admin-supplementary-operational-table-statistics-intro": "為所選的表格集產生$1", + "smw-admin-supplementary-operational-table-statistics-explain": "此段落含有關於後端與儲存引擎狀態的已選表格統計,可用來協助管理員與資料策展人做出正確決策。", + "smw-admin-supplementary-operational-table-statistics-legend": "圖例描述了一些用於表格統計的鍵且包含有:", + "smw-admin-supplementary-operational-table-statistics-legend-general": "* total_row_count 為在表格裡的列總數", + "smw-admin-supplementary-operational-table-statistics-legend-id-table": "* last_id 目前使用的最新 ID\n* duplicate_count 在 the id_table 找到的重複項數目(可另外參考[[Special:SemanticMediaWiki/duplicate-lookup|重複單元查找]])\n* rows.rev_count 指示出直接的 wiki 頁面連結,有分配到 revision_id 的列數\n* rows.smw_namespace_group_by_count 在表格裡有使用到的命名空間合計數目\n* rows.smw_proptable_hash.query_match_count 帶有對應表格參照的子物件查詢數目\n* rows.smw_proptable_hash.query_null_count 不帶有表格參照(未連結、浮動參考)的子物件查詢數目", + "smw-admin-supplementary-operational-table-statistics-legend-blob-table": "* unique_terms_occurrence_in_percent 唯一項目的百分率(較低的百分率代表著重複的項目佔據著表格內容與索引)\n* rows.terms_occurrence.single_occurrence_total_count 僅出現一次項目的數目\n* rows.terms_occurrence.multi_occurrence_total_count 出現一次以上項目的數目", + "smw-admin-supplementary-elastic-version-info": "版本", + "smw-admin-supplementary-elastic-section-subtitle": "Elasticsearch", + "smw-admin-supplementary-elastic-intro": "$1顯示詳細設定與索引統計", + "smw-admin-supplementary-elastic-docu": "此頁面包含有關設定的資訊、對應、狀態,以及相關連結到 Semantic MediaWiki 以及其 [https://www.semantic-mediawiki.org/wiki/Help:ElasticStore ElasticStore] 之 Elasticsearch 叢集的索引統計。", + "smw-admin-supplementary-elastic-functions": "支援功能", + "smw-admin-supplementary-elastic-settings-title": "設定(索引)", + "smw-admin-supplementary-elastic-settings-intro": "$1 由 Elasticsearch 所使用來管理 Semantic MediaWiki 索引", + "smw-admin-supplementary-elastic-mappings-title": "對應", + "smw-admin-supplementary-elastic-mappings-intro": "$1 用來列出索引與欄位對應", + "smw-admin-supplementary-elastic-mappings-docu": "此頁面包含由目前索引所使用的欄位對應詳情。建議監測與 index.mapping.total_fields.limit 關聯的對應。(指定在所允許索引裡的最大欄位數)", + "smw-admin-supplementary-elastic-mappings-docu-extra": "當 nested_fields 參照分配給核心欄位、用來支援特定結構搜尋模式的額外欄位之累積次數時,property_fields 參照索引核心欄位次數。", + "smw-admin-supplementary-elastic-mappings-summary": "摘要", + "smw-admin-supplementary-elastic-mappings-fields": "欄位對應", + "smw-admin-supplementary-elastic-nodes-title": "節點", + "smw-admin-supplementary-elastic-nodes-intro": "$1顯示節點統計", + "smw-admin-supplementary-elastic-indices-title": "索引", + "smw-admin-supplementary-elastic-indices-intro": "$1 提供可用索引以及其統計內容的概要", + "smw-admin-supplementary-elastic-statistics-title": "統計", + "smw-admin-supplementary-elastic-statistics-intro": "$1 顯示索引層級統計", + "smw-admin-supplementary-elastic-statistics-docu": "此頁面提供發生在索引層級上不同操作的索引統計方面洞察,所回傳統計是以初級內容與總計集成的聚合。[https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html 說明頁面]包含可用索引統計的詳情描述。", + "smw-admin-supplementary-elastic-status-replication": "複製狀態", + "smw-admin-supplementary-elastic-status-last-active-replication": "上一次有效的複製:$1", + "smw-admin-supplementary-elastic-status-refresh-interval": "重整間隔:$1", + "smw-admin-supplementary-elastic-status-recovery-job-count": "積壓修復任務:$1(估計值)", + "smw-admin-supplementary-elastic-status-file-ingest-job-count": "收取(檔案)作業的積壓:$1(估計值)", + "smw-admin-supplementary-elastic-status-rebuild-lock": "複製已鎖定:$1(重建中)", + "smw-admin-supplementary-elastic-status-replication-monitoring": "複製監測(有效):$1", + "smw-admin-supplementary-elastic-replication-header-title": "複製狀態", + "smw-admin-supplementary-elastic-replication-function-title": "複製", + "smw-admin-supplementary-elastic-replication-intro": "$1顯示有關複製失敗的資訊", + "smw-admin-supplementary-elastic-replication-docu": "此頁面提供關於被回報有 Elasticsearch 叢集問題的實體[https://www.semantic-mediawiki.org/wiki/Help:Replication_monitoring 複製狀態]資訊。建議檢閱所列項目,並清除內容以確認是臨時問題。", + "smw-admin-supplementary-elastic-replication-files-docu": "對於檔案清單,應注意需先執行[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion 檔案接納]任務,並需完成該處理。", + "smw-admin-supplementary-elastic-replication-files": "檔案", + "smw-admin-supplementary-elastic-replication-pages": "頁面", + "smw-admin-supplementary-elastic-endpoints": "端點", + "smw-admin-supplementary-elastic-config": "設置", + "smw-admin-supplementary-elastic-no-connection": "Wiki 目前'''無法'''建立對 Elasticsearch 叢集的連結,請聯絡 wiki 管理員來調查此問題,因為這會導致系統的索引與查詢功能失效。", + "smw-list-count": "清單包含 $1 個{{PLURAL:$1|項目|項目}}。", + "smw-property-label-uniqueness": "「$1」標籤符合了至少一個其它屬性表示內容。請查閱[https://www.semantic-mediawiki.org/wiki/Help:Property_uniqueness 幫助頁面]瞭解如何解决該問題。", + "smw-property-label-similarity-title": "屬性標籤相似度報告", + "smw-property-label-similarity-intro": "$1可計算現有屬性標籤的相似度", + "smw-property-label-similarity-threshold": "臨界:", + "smw-property-label-similarity-type": "顯示類型 ID", + "smw-property-label-similarity-noresult": "找不到符合所選項目的结果。", + "smw-property-label-similarity-docu": "此頁面比較兩個屬性標籤間的[https://www.semantic-mediawiki.org/wiki/Property_similarity 相似性差距](不要被語意或詞彙相似性給混淆),並在超過臨界時做出報告。該報告可幫助篩選掉拼寫錯誤或提供相同概念的等效屬性(請參見[[Special:Properties|屬性]]特殊頁面來協助闡明報告屬性的概念和用法)。用於近似相比的臨界值可被調整增加或減少相似差距。[[Property:$1|$1]] 用於從分析中排除屬性。", + "smw-admin-operational-statistics": "此頁面包含存在於或來自 Semantic MediaWiki 相關功能的所收集運作統計。Wiki 特定統計的擴充清單可[[Special:Statistics|在此]]找到。", + "smw_adminlinks_datastructure": "資料結構", + "smw_adminlinks_displayingdata": "資料顯示", + "smw_adminlinks_inlinequerieshelp": "直接插入式查詢幫助", + "smw-page-indicator-usage-count": "已估計[https://www.semantic-mediawiki.org/wiki/Help:Property_usage_count 使用次數]:{{PLURAL:$2|'''$2'''}}", + "smw-property-indicator-type-info": "{{PLURAL:$1|使用者|系統}}定義的屬性", + "smw-property-indicator-last-count-update": "估計使用數\n上一次更新於:$1", + "smw-concept-indicator-cache-update": "快取數\n上一次更新:$1", + "smw-createproperty-isproperty": "它是一個類型為$1的屬性。", + "smw-createproperty-allowedvals": "允許的{{PLURAL:$1|屬性值為|屬性值為}}:", + "smw-paramdesc-category-delim": "分隔符", + "smw-paramdesc-category-template": "格式化這些條目的模板", + "smw-paramdesc-category-userparam": "傳遞模板的參數", + "smw-info-par-message": "顯示的訊息。", + "smw-info-par-icon": "顯示的圖示,\"訊息\"或\"警告\"。", + "prefs-smw": "Semantic MediaWiki", + "prefs-general-options": "一般選項", + "prefs-extended-search-options": "延伸搜尋", + "prefs-ask-options": "Semantic 搜尋", + "smw-prefs-intro-text": "[https://www.semantic-mediawiki.org/ Semantic MediaWiki] 與分配的擴充套件,提供用於所選特性與功能群組的各別偏好設定。以下[https://www.semantic-mediawiki.org/wiki/Help:User_preferences 說明頁面]有著各別設定與其描述與特徵的清單。", + "smw-prefs-ask-options-tooltip-display": "在 #ask [[Special:Ask|查詢建置器]]特殊頁面顯示參數文字作為資訊提示。", + "smw-prefs-ask-options-compact-view-basic": "啟用基本密集檢視", + "smw-prefs-help-ask-options-compact-view-basic": "若有啟用,顯示在 Special:Ask 密集檢視的連結簡化集合。", + "smw-prefs-general-options-time-correction": "使用本地[[Special:Preferences#mw-prefsection-rendering|時間偏移]]偏好設定來啟用替特殊頁面做時間調正。", + "smw-prefs-general-options-jobqueue-watchlist": "在我的個人工具列顯示任務佇列", + "smw-prefs-help-general-options-jobqueue-watchlist": "若有啟用,將待定所選任務[https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist 清單]與所估計佇列大小一同顯示。", + "smw-prefs-general-options-disable-editpage-info": "在編輯頁面停用前言文字", + "smw-prefs-general-options-disable-search-info": "在標準搜尋頁面上停用語法支援資訊", + "smw-prefs-general-options-suggester-textinput": "啟用語意實體的輸入幫助", + "smw-prefs-help-general-options-suggester-textinput": "若有啟用,允許使用[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance 輸入幫助]來查找來自輸入上下文的屬性、概念、以及分類。", + "smw-prefs-general-options-show-entity-issue-panel": "顯示實體問題面板", + "smw-prefs-help-general-options-show-entity-issue-panel": "如有啟用,會在每個頁面上運行完整檢查並顯示[https://www.semantic-mediawiki.org/wiki/Help:Entity_issue_panel 實體問題面板]。", + "smw-prefs-factedsearch-profile": "選擇[[Special:FacetedSearch|多面搜尋]]的預設個人檔案:", + "smw-ui-tooltip-title-property": "屬性", + "smw-ui-tooltip-title-quantity": "單位轉換", + "smw-ui-tooltip-title-info": "資訊", + "smw-ui-tooltip-title-service": "服務連結", + "smw-ui-tooltip-title-warning": "警告", + "smw-ui-tooltip-title-error": "錯誤", + "smw-ui-tooltip-title-parameter": "參數", + "smw-ui-tooltip-title-event": "事件", + "smw-ui-tooltip-title-note": "註釋", + "smw-ui-tooltip-title-legend": "圖例", + "smw-ui-tooltip-title-reference": "參考文獻", + "smw_unknowntype": "此屬性類型「$1」無效", + "smw-concept-cache-text": "此概念總共有 $1 {{PLURAL:$1|個頁面|個頁面}},最後更新於 $2 $3。", + "smw_concept_header": "概念 \"$1\" 的頁面", + "smw_conceptarticlecount": "顯示於以下 $1 {{PLURAL:$1|個頁面|個頁面}}。", + "smw-qp-empty-data": "出於一些選擇標準不足,請求資料無法顯示。", + "right-smw-admin": "存取管理工作項目(Semantic MediaWiki)", + "right-smw-patternedit": "編輯維護所允許正規表達式與模式方面的取用(Semantic MediaWiki)", + "right-smw-pageedit": "編輯有關 Is edit protected 註釋頁面的取用(Semantic MediaWiki)", + "right-smw-schemaedit": "編輯[https://www.semantic-mediawiki.org/wiki/Help:Schema 架構頁面](Semantic MediaWiki)", + "right-smw-viewjobqueuewatchlist": "存取任務佇列[https://www.semantic-mediawiki.org/wiki/Help:Job_queue_watchlist 監視清單]功能(Semantic MediaWiki)", + "right-smw-viewentityassociatedrevisionmismatch": "存取相關修訂不符合的實體資訊(Semantic MediaWiki)", + "right-smw-vieweditpageinfo": "檢視[https://www.semantic-mediawiki.org/wiki/Help:Edit_help 編輯說明](Semantic MediaWiki)", + "restriction-level-smw-pageedit": "已保護(僅限有資格的使用者)", + "action-smw-patternedit": "編輯由語義MediaWiki使用的規則運算式", + "action-smw-pageedit": "編輯帶有註釋 Is edit protected 的頁面(Semantic MediaWiki)", + "group-smwadministrator": "管理員(Semantic MediaWiki)", + "group-smwadministrator-member": "{{GENDER:$1|管理員(Semantic MediaWiki)}}", + "grouppage-smwadministrator": "{{ns:project}}:管理員(Semantic MediaWiki)", + "group-smwcurator": "策展人(Semantic MediaWiki)", + "group-smwcurator-member": "{{GENDER:$1|策展人(Semantic MediaWiki)}}", + "grouppage-smwcurator": "{{ns:project}}:策展人(Semantic MediaWiki)", + "group-smweditor": "編輯者(Semantic MediaWiki)", + "group-smweditor-member": "{{GENDER:$1|編輯者(Semantic MediaWiki)}}", + "grouppage-smweditor": "{{ns:project}}:編輯者(Semantic MediaWiki)", + "action-smw-admin": "存取 Semantic MediaWiki 的管理工作項目", + "action-smw-ruleedit": "編輯規則頁面(Semantic MediaWiki)", + "smw-property-namespace-disabled": "屬性[https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespacesWithSemanticLinks 命名空間]已停用,無法嘗試對此屬性聲明類型或是其它屬性指定特徵。", + "smw-property-predefined-default": "「$1」是$2類型的預先定義屬性。", + "smw-property-predefined-common": "此屬性為預先部署(即為[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 特殊屬性])且帶有額外管理權限,但可以像其它[https://www.semantic-mediawiki.org/wiki/Property 使用者定義屬性]般地使用。", + "smw-property-predefined-ask": "「$1」是代表出有關各查詢的詮釋資訊(在[https://www.semantic-mediawiki.org/wiki/Subobject 子物件]的形式),且由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供的預先定義屬性。", + "smw-property-predefined-asksi": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,收集使用在查詢的條件數量之預先定義屬性。", + "smw-property-predefined-askde": "「$1」是用由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,告知有關查詢深度的預先定義屬性。", + "smw-property-predefined-long-askde": "這是基於子查詢巢狀、屬性鏈,和可用的描述元素,根據 [https://www.semantic-mediawiki.org/wiki/Help:$smwgQMaxDepth $smwgQMaxDepth] 設置參數所限制的執行查詢計算出來的數值。", + "smw-property-predefined-askpa": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,描述影響查詢結果的參數之預先定義屬性。", + "smw-property-predefined-long-askpa": "這是屬性集合的一部分,可指定[https://www.semantic-mediawiki.org/wiki/Help:Query_profiler 查詢偏好設定]。", + "smw-sp-properties-docu": "此頁面列出此 wiki 上的可用[https://www.semantic-mediawiki.org/wiki/Property 屬性]以及其使用數。為了能有最新的數量統計,建議您定期運作[https://www.semantic-mediawiki.org/wiki/rebuildPropertyStatistics 屬性統計]維護手稿程式。觀點上的差異,請查看[[Special:UnusedProperties|未使用]]或[[Special:WantedProperties|有所需要]]的屬性特殊頁面。", + "smw-sp-properties-cache-info": "所列出資料已從[https://www.semantic-mediawiki.org/wiki/Caching 快取]檢索,並更新於 $1。", + "smw-sp-properties-header-label": "屬性清單", + "smw-admin-settings-docu": "顯示所有相關 Semantic MediaWiki 環境之預設及本地化設定的清單。有關個別設定詳情,請參閱[https://www.semantic-mediawiki.org/wiki/Help:Configuration 設置]說明頁面。", + "smw-sp-admin-settings-button": "產生設定清單", + "smw-admin-idlookup-title": "查找", + "smw-admin-idlookup-docu": "此段落顯示出有關在 Semantic MediaWiki 上個別實體(wiki 頁面、子物件、屬性、其它) 的技術詳情。輸入內容可以是數字 ID 或是字串值來比對相關搜尋欄位,不過任何 ID 的引用是相關 Semantic MediaWiki;而不是 MediaWiki 的頁面或修訂 ID。", + "smw-admin-iddispose-title": "擴散", + "smw-admin-iddispose-docu": "請注意,處理操作不受限制,一旦確認,存儲引擎中的所有數據和掛起的請求將全部被删除。請'''慎重'''執行此任務,並只在查閱[https://www.semantic-mediawiki.org/wiki/Help:Object_ID_disposal 檔案]後進行。", + "smw-admin-iddispose-done": "ID“$1”已從存儲後端中移除。", + "smw-admin-iddispose-references": "ID「$1」{{PLURAL:$2|沒有|至少有一個}}有效的參考文獻。", + "smw-admin-iddispose-references-multiple": "至少具有一個有效參考文獻紀錄的符合清單。", + "smw-admin-iddispose-no-references": "搜尋無法找出符合「$1」的表格項目。", + "smw-admin-idlookup-input": "搜尋:", + "smw-admin-objectid": "ID:", + "smw-admin-tab-general": "預覽", + "smw-admin-tab-notices": "棄用通知", + "smw-admin-tab-maintenance": "維護", + "smw-admin-tab-supplement": "補充功能", + "smw-admin-tab-registry": "註冊", + "smw-admin-tab-alerts": "警告", + "smw-admin-alerts-tab-deprecationnotices": "棄用通知", + "smw-admin-alerts-tab-maintenancealerts": "維護警告", + "smw-admin-alerts-section-intro": "此段落顯示出與設定、操作、其它行動關聯的警告與通知,這些已被歸類為需要具有適當權限的管理員或使用者關注。", + "smw-admin-maintenancealerts-section-intro": "儘管非必須,以下警告與通知應被解決,因為這預期能幫助增進系統與操作的維護性。", + "smw-admin-maintenancealerts-lastoptimizationrun-alert-title": "表格最佳化", + "smw-admin-maintenancealerts-lastoptimizationrun-alert": "系統找出上一次[https://www.semantic-mediawiki.org/wiki/Table_optimization 表格最佳化]是在 $2 天前執行(來自$1的紀錄),這已超出 $3 天維護的臨界值。如文件所述,執行最佳化能使得查詢規劃對於查詢作出更好的決策,因此建議定期執行表格最佳化。", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert-title": "過時實體", + "smw-admin-maintenancealerts-outdatedentitiesmaxcount-alert": "系統計算出有 $1 個[https://www.semantic-mediawiki.org/wiki/Outdated_entities 過時實體],且超出$2臨界值達到未被注意維護的危急等級。建議執行 [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] 維護手稿。", + "smw-admin-maintenancealerts-invalidentities-alert-title": "無效實體", + "smw-admin-maintenancealerts-invalidentities-alert": "系統相配了 $1 個[https://www.semantic-mediawiki.org/wiki/Invalid_entities {{PLURAL:$1|實體}}]到一個[https://www.semantic-mediawiki.org/wiki/Unmaintained_namespace 未維護命名空間],並建議執行 [https://www.semantic-mediawiki.org/wiki/disposeOutdatedEntities.php disposeOutdatedEntities.php] 或是 [https://www.semantic-mediawiki.org/wiki/rebuildData.php rebuildData.php] 維護手稿。", + "smw-admin-deprecation-notice-section": "Semantic MediaWiki", + "smw-admin-configutation-tab-settings": "設定", + "smw-admin-configutation-tab-namespaces": "命名空間", + "smw-admin-configutation-tab-schematypes": "綱要類型", + "smw-admin-maintenance-tab-tasks": "任務", + "smw-admin-maintenance-tab-scripts": "維護用手稿", + "smw-admin-maintenance-no-description": "沒有描述。", + "smw-admin-maintenance-script-section-title": "可用維護手稿清單", + "smw-admin-maintenance-script-section-intro": "以下維護手稿需要為管理員,並且得使用命令列才能執行所列出的手稿。", + "smw-admin-maintenance-script-description-dumprdf": "現有的三重 RDF 匯出。", + "smw-admin-maintenance-script-description-rebuildconceptcache": "此手稿用於管理 Semantic MediaWiki 的概念快取,這可創建、移除、更新所選快取。", + "smw-admin-maintenance-script-description-rebuilddata": "以循環透過所有可能含有語意資料的頁面來重新創建在資料庫的語意資料。", + "smw-admin-maintenance-script-description-rebuildelasticindex": "以循環透過所有含有語意資料的實體來重新建置 Elasticsearch 索引(僅用於使用 ElasticStore 的安裝)。", + "smw-admin-maintenance-script-description-rebuildelasticmissingdocuments": "在 Elasticsearch 尋找缺少的實體(僅適用於使用 ElasticStore 安裝),以及安排合適的更新作業。", + "smw-admin-maintenance-script-description-rebuildfulltextsearchtable": "重新建置 SQLStore 全文搜尋索引(用於設定已啟用的安裝)。", + "smw-admin-maintenance-script-description-rebuildpropertystatistics": "重新建置所有屬性實體的使用統計內容。", + "smw-admin-maintenance-script-description-removeduplicateentities": "移除在所選且沒有有效參考文獻的表格上找出的重複實體。", + "smw-admin-maintenance-script-description-setupstore": "依照定義設定在 LocalSettings.php 的儲存與查詢後端。", + "smw-admin-maintenance-script-description-updateentitycollation": "更新在 SQLStoresmw_sort 欄位(依據 [https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] 設定)。", + "smw-admin-maintenance-script-description-populatehashfield": "為缺少值的列填充 smw_hash 欄位。", + "smw-admin-maintenance-script-description-purgeentitycache": "清除已知項目與它們所關聯資料的快取項目。", + "smw-admin-maintenance-script-description-updatequerydependencies": "更新查詢和查詢相依關係(請查看 [https://www.semantic-mediawiki.org/wiki/Help:$smwgEnabledQueryDependencyLinksStore $smwgEnabledQueryDependencyLinksStore] 設定)。", + "smw-admin-maintenance-script-description-disposeoutdatedentities": "處置過時實體與查詢連結。", + "smw-admin-maintenance-script-description-runimport": "從[https://www.semantic-mediawiki.org/wiki/Help:$smwgImportFileDirs $smwgImportFileDirs]填入與匯入自動檢測的內容。", + "smw-admin-maintenance-script-section-update": "更新手稿", + "smw-admin-maintenance-script-section-rebuild": "重建手稿", + "smw-livepreview-loading": "讀取中...", + "smw-sp-searchbyproperty-description": "此頁面提供用於找尋由屬性實體與命名值所描述實體的簡易[https://www.semantic-mediawiki.org/wiki/Help:Browsing_interfaces 瀏覽介面]。其它可用的搜尋介面,包含有[[Special:PageProperty|頁面屬性搜尋]]以及[[Special:Ask|詢問查詢建置器]]。", + "smw-sp-searchbyproperty-resultlist-header": "結果清單", + "smw-sp-searchbyproperty-nonvaluequery": "已分配屬性「$1」的值清單。", + "smw-sp-searchbyproperty-valuequery": "已註解屬性「$1」帶有值「$2」的頁面清單", + "smw-datavalue-number-textnotallowed": "「$1」不能分配給值為 $2 的聲明數字類型。", + "smw-datavalue-number-nullnotallowed": "「$1」回傳了「NULL」,這不允許作為數字。", + "smw-editpage-annotation-enabled": "此頁面支援語義文內註釋 (例如 \"[[Is specified as::World Heritage Site]]\") 來建立由 Semantic MediaWiki 提供的結構化、可查詢的內容。 如何使用標示法或 #ask 分析器功能的詳細說明,請查看 [https://www.semantic-mediawiki.org/wiki/Help:Getting_started 入門指引]、[https://www.semantic-mediawiki.org/wiki/Help:In-text_annotation 文內註釋]或[https://www.semantic-mediawiki.org/wiki/Help:Inline_queries 行內查詢]說明頁面。", + "smw-editpage-annotation-disabled": "由於命名空間限制,此頁面在語義文內註釋中不會開啟。有關如何開啟命名空間的詳細資料可在[https://www.semantic-mediawiki.org/wiki/Help:Configuration 設定]說明頁面找到。", + "smw-editpage-property-annotation-enabled": "此屬性可以擴充使用語意註解來指定資料類型(例如:\"[[Has type::Page]]\")或支援的宣告(例如:\"[[Subproperty of::dc:date]]\")。有關如何增加此頁面的描述,請查看[https://www.semantic-mediawiki.org/wiki/Help:Property_declaration 屬性宣告]或是[https://www.semantic-mediawiki.org/wiki/Help:List_of_datatypes 可用資料類型清單]說明頁面。", + "smw-editpage-property-annotation-disabled": "此屬性已被預先定義,因此不能以資料類型註解(例如:\"[[Has type::Page]]\")來擴充(請查看[https://www.semantic-mediawiki.org/wiki/Help:Special_properties 特殊屬性]說明頁面來獲得更多資訊)。", + "smw-editpage-concept-annotation-enabled": "此概念可使用 #concept 解析功能來擴充。有關如何使用 #concept 的敘述內容,請參見 [https://www.semantic-mediawiki.org/wiki/Help:Concepts 概念]說明頁面。", + "smw-search-syntax-support": "搜尋輸入支援語意[https://www.semantic-mediawiki.org/wiki/Help:Semantic_search 查詢語法]的使用,來協助使用 Semantic MediaWiki 比對結果。", + "smw-search-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance 輸入幫助]也已啟用,來減少可用屬性和分類的預先選擇。", + "smw-search-help-intro": "[[ ... ]] 輸入會指示至輸入處理器來使用 Semantic MediaWiki 後端搜尋。另外需注意不支援 [[ ... ]] 結合像是 [[ ... ]] OR Lorem ipsum 這樣的非結構化文字搜尋。", + "smw-search-help-structured": "結構化搜尋:\n\n*[[Category:Lorem ipsum]][[Has number::123]](作為 [https://www.semantic-mediawiki.org/wiki/Help:Search#Filter_context 已篩選語境])\n\n*[[Has text::~*lorem*]](帶有[https://www.semantic-mediawiki.org/wiki/Help:Search#Query_context 查詢語境])", + "smw-search-help-proximity": "接近搜尋(未知的屬性,'''只'''對於提供全文搜尋整合的後端可用):\n\n*[[in:lorem ipsum]](在所有文件裡搜尋已索引的 \"lorem\" 和 \"ipsum\")\n\n* [[phrase:lorem ipsum]](比對 \"lorem ipsum\" 為詞組)", + "smw-search-help-ask": "以下連結會解釋如何使用 #ask 語法。\n\n* [https://www.semantic-mediawiki.org/wiki/Help:Selecting_pages 選擇頁面]描述來選擇頁面如何並建置條件\n\n*[https://www.semantic-mediawiki.org/wiki/Help:Search_operators 搜尋運算]列出包括用於範圍和萬用查詢的可用搜尋運算", + "smw-search-input": "輸入與搜尋", + "smw-search-help-input-assistance": "[https://www.semantic-mediawiki.org/wiki/Help:Input_assistance 輸入幫助]用於輸入欄位時提供,這需要使用以下字首之一:\n\n*p: 用來啟用屬性建議(例如:[[p:Has ...)\n\n*c: 用來啟用分類建議\n\n*con: 用來啟用概念建議", + "smw-search-syntax": "語法", + "smw-search-profile": "擴充", + "smw-search-profile-tooltip": "搜尋與 Semantic MediaWiki 關聯的功能", + "smw-search-profile-sort-best": "最佳符合", + "smw-search-profile-sort-recent": "最新", + "smw-search-profile-sort-title": "標題", + "smw-search-profile-extended-help-intro": "Special:Search [https://www.semantic-mediawiki.org/wiki/Help:SMWSearch/Extended_profile 擴充偏好設定]提供取用在特定於 Semantic MediaWiki 的搜尋功能,並且支援後端查詢。", + "smw-search-profile-extended-help-sort": "指定用於結果顯示的排序偏好:", + "smw-search-profile-extended-help-sort-title": "* \"Title\" 使用頁面標題(或顯示標題)來作為排序標準", + "smw-search-profile-extended-help-sort-recent": "* \"Most recent\" 會優先顯示出最多近期變動的實體(子物件實體會抑制成這些實體,並不會以[[Property:Modification date|修改日期]]來註解)", + "smw-search-profile-extended-help-sort-best": "* \"Best match\" 會基於由後端所提供的[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Relevancy 關聯度]分數來排序實體", + "smw-search-profile-extended-help-form": "所提供會根據所見的不同屬性和值欄位來比對特定使用情況的表單(如有保持著),會減少輸入過程讓要持續搜尋請求的使用者能更容易利用。(請查看$1)", + "smw-search-profile-extended-help-namespace": "當表單選擇時,命名空間選擇框會被隱藏起來,但可借助「顯示/隱藏」按鈕來將其可見。", + "smw-search-profile-extended-help-search-syntax": "搜尋輸入欄位支援用來定義 Semantic MediaWiki 指定搜尋語境的 #ask 語法使用。有效的表達式包含:", + "smw-search-profile-extended-help-search-syntax-simplified-in": "* in: 用於查詢包含「...」的任何內容,這在所涉及的搜尋上下文或屬性未知時很有用(例如:in:(lorem && ipsum) 等同 [[~~*lorem*]] && [[~~*ipsum*]])。", + "smw-search-profile-extended-help-search-syntax-simplified-phrase": "* phrase: 為在完全相同排序裡查找任何含有「...」的項目", + "smw-search-profile-extended-help-search-syntax-simplified-has": "* has: 為符合任何具有屬性 \"...\" 的項目(例如:has:(Foo && Bar) 等同於 [[Foo::+]] && [[Bar::+]])", + "smw-search-profile-extended-help-search-syntax-simplified-not": "* not: 為沒有符合任何包含「...」的項目", + "smw-search-profile-extended-help-search-syntax-prefix": "* 額外可用且已定義的自定義字首,例如像是:$1", + "smw-search-profile-extended-help-search-syntax-reserved": "* 一些表達式為保留的,例如像是:$1", + "smw-search-profile-extended-help-search-syntax-note": "''一些所列出的操作,僅適用於啟用的全文索引或 ElasticStore。''", + "smw-search-profile-extended-help-query": "已使用 $1 作為查詢。", + "smw-search-profile-extended-help-query-link": "有關更多詳情,請使用$1。", + "smw-search-profile-extended-help-find-forms": "可用表單", + "smw-search-profile-extended-section-sort": "排序依", + "smw-search-profile-extended-section-form": "表單", + "smw-search-profile-extended-section-search-syntax": "搜尋輸入", + "smw-search-profile-extended-section-namespace": "命名空間", + "smw-search-profile-extended-section-query": "查詢", + "smw-search-profile-link-caption-query": "查詢建置器", + "smw-search-show": "顯示", + "smw-search-hide": "隱藏", + "log-name-smw": "Semantic MediaWiki 日誌", + "log-show-hide-smw": "$1 Semantic MediaWiki 日誌", + "logeventslist-smw-log": "Semantic MediaWiki 日誌", + "log-description-smw": "有關[https://www.semantic-mediawiki.org/wiki/Help:Logging 已啟用事件類型]的行動,該已由 Semantic MediaWiki 及其元件所回報。", + "logentry-smw-maintenance": "由 Semantic MediaWiki 發佈出的維護相關事件", + "smw-datavalue-import-unknown-namespace": "匯入的命名空間 \"$1\" 不明,請確認 OWL 匯入詳細資訊,可至 [[MediaWiki:Smw import $1]] 取得。", + "smw-datavalue-import-missing-namespace-uri": "無法在[[MediaWiki:Smw import $1|$1 匯入]]資料中找到 \"$1\" 命名空間的 URI。", + "smw-datavalue-import-missing-type": "在 [[MediaWiki:Smw import $2|$2]] 個匯入裡,找不到用於「$1」的類型定義。", + "smw-datavalue-import-link": "[[MediaWiki:Smw import $1|$1 匯入]]", + "smw-datavalue-import-invalid-value": "「$1」不是個有效格式,且預期要含有\"命名空間\":\"識別碼\"(例如:\"foaf:name\")。", + "smw-datavalue-import-invalid-format": "字串「$1」預期應分割成四個部分,但格式未能理解。", + "smw-property-predefined-impo": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來描述與[https://semantic-mediawiki.org/wiki/Help:Import_vocabulary 已匯入詞彙]間的關係的預先定義屬性。", + "smw-property-predefined-type": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來描述屬性[[Special:Types|資料類型]]的預先定義屬性。", + "smw-property-predefined-sobj": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來表示出[https://www.semantic-mediawiki.org/wiki/Help:Container 容器]結構的預先定義屬性。", + "smw-property-predefined-long-sobj": "容器允許與普通 wiki 頁面相似,但當連結至嵌入主題時,是以不同實體空間的累積屬性-值分配。", + "smw-property-predefined-errp": "「$1」是用由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,用來追蹤異常值通知方面輸入錯誤的預先定義屬性。", + "smw-property-predefined-long-errp": "在多數情況下,這是由於類型不符合或是[[Property:Allows value|值]]方面的限制所造成。", + "smw-property-predefined-pval": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value \"$1\"] 是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,可定義出允許值清單,來對屬性做值分配限制的預先定義屬性。", + "smw-property-predefined-pvali": "[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Allows_value_list \"$1\"] 是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,可指定參考文獻至允許值清單,來對屬性做值分配限制的預先定義屬性。", + "smw-datavalue-property-restricted-annotation-use": "屬性「$1」有限制應用區域,且不能由使用者來註解屬性。", + "smw-datavalue-property-restricted-declarative-use": "屬性「$1」是宣告式屬性,且僅能在屬性和分類頁面上使用。", + "smw-datavalue-property-create-restriction": "屬性「$1」不存在,且使用者缺少建立或是以未核准屬性來註解值的「$2」權限(查看[https://www.semantic-mediawiki.org/wiki/Help:Authority_mode 權威模式])。", + "smw-datavalue-property-invalid-character": "「$1」包含作為屬性標籤一部份的列舉字元「$2」,因此被歸類為無效。", + "smw-datavalue-property-invalid-chain": "不允許在註解過程中使用「$1」作為屬性鏈。", + "smw-datavalue-restricted-use": "資料值「$1」被標記為限制使用。", + "smw-datavalue-invalid-number": "\"$1\" 無法作為數字解讀。", + "smw-query-condition-circular": "於 \"$1\" 偵測到可能會發生循環的情況。", + "smw-query-condition-empty": "查詢描述含有空的條件。", + "smw-types-list": "資料型態清單", + "smw-types-default": "\"$1\" 是內建的資料型態。", + "smw-types-help": "更多的資訊與範例可在此[https://www.semantic-mediawiki.org/wiki/Help:Type_$1 說明頁面]找到。", + "smw-type-anu": "\"$1\" 是 [[Special:Types/URL|URL]] 資料型態的變體,大多用在 ''owl:AnnotationProperty'' 匯出宣告。", + "smw-type-boo": "「$1」是基本資料型態,用來描述真/假值。", + "smw-type-cod": "\"$1\" 是[[Special:Types/Text|文字]]資料型態的變體,使用在不定長度的技術文字,如原始碼清單。", + "smw-type-geo": "「$1」是資料型態,用來描述地理位置,需要搭配 [https://www.semantic-mediawiki.org/wiki/Extension:Maps \"Maps\"] 擴充來提供延伸功能。", + "smw-type-tel": "\"$1\" 是特殊的資料型態,用來描述依 RFC 3966 規範的國際電話號碼。", + "smw-type-txt": "「$1」是基本資料型態,用來描述任意長度的字串。", + "smw-type-dat": "「$1」是基本資料型態,使用統一格式來代表時間點。", + "smw-type-ema": "「$1」是表現出電子郵件的特殊資料類型。", + "smw-type-tem": "「$1」是代表溫度的特殊數字資料類型。", + "smw-type-qty": "「$1」是以數字表示以及計量單位來描述數量的資料類型。", + "smw-type-rec": "「$1」是指定出固定排序類型化的屬性清單之容器資料類型。", + "smw-type-extra-tem": "轉換架構含有像是克耳文、攝氏、華氏,以及蘭金溫標這類的支援單位。", + "smw-type-tab-properties": "屬性", + "smw-type-tab-types": "類型", + "smw-type-tab-type-ids": "類型 ID", + "smw-type-tab-errors": "錯誤", + "smw-type-primitive": "基本", + "smw-type-contextual": "上下文", + "smw-type-compound": "合成詞", + "smw-type-container": "容器", + "smw-type-no-group": "未分類", + "smw-special-pageproperty-description": "此頁面提供瀏覽用於找尋屬性全部值與指定頁面的介面。其它可用搜尋介面包括[[Special:SearchByProperty|屬性搜尋]]與[[Special:Ask|請求查詢建置器]]。", + "smw-property-predefined-errc": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,表示出現在連接到不恰當值註解或輸入處理時的錯誤之預先定義屬性。", + "smw-property-predefined-long-errc": "錯誤會收集於[https://www.semantic-mediawiki.org/wiki/Help:Container 容器]裡,可能會包含導致內容不符的屬性參考文獻。", + "smw-property-predefined-errt": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,含有錯誤方面文字描述的預先定義屬性。", + "smw-subobject-parser-invalid-naming-scheme": "使用者定義的子物件包含無效的命名架構。使用在前五個字元的點號($1)已被保留用於擴充方面。您可以來設定[https://www.semantic-mediawiki.org/wiki/Help:Adding_subobjects#Named_identifier 命名的識別碼]。", + "smw-datavalue-record-invalid-property-declaration": "紀錄定義包含著本身已被聲明為紀錄類型屬性「$1」,因此不被許可。", + "smw-property-predefined-mdat": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,對應主題最後一次修改的日期之預先定義屬性。", + "smw-property-predefined-cdat": "「$1」是用由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,對應主題首次修訂的日期之預先定義屬性。", + "smw-property-predefined-newp": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,表示出是否為新主題的預先定義屬性。", + "smw-property-predefined-ledt": "「$1」是用由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,含有使用者所建立出最新一次修訂的頁面名稱之預先定義屬性。", + "smw-property-predefined-mime": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來描述已上傳檔案的 MIME 類型之預先定義屬性。", + "smw-property-predefined-media": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來描述已上傳檔案的多媒體類型之預先定義屬性。", + "smw-property-predefined-askfo": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,持有使用在查詢裡結果格式名稱的預先定義屬性。", + "smw-property-predefined-askst": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,以字串來描述查詢條件的預先定義屬性。", + "smw-property-predefined-askdu": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,含有查詢執行完畢所需時間值(以秒為單位)的預先定義屬性。", + "smw-property-predefined-asksc": "「$1」是用由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,確認替代(例如:遠端、聯合)查詢來源的預先定義屬性。", + "smw-property-predefined-askco": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,描述查詢狀態或構成要素的預先定義屬性。", + "smw-property-predefined-long-askco": "數字或分配數字代表內部編碼狀態,在[https://www.semantic-mediawiki.org/wiki/Help:Query_profiler 說明頁面]裡含有進一步解釋。", + "smw-property-predefined-prec": "「$1」是用於數字資料類型裡[https://www.semantic-mediawiki.org/wiki/Help:Display_precision 顯示精確度](小數位數)的預先定義屬性。", + "smw-property-predefined-attch-link": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,收集在頁面裡所找出的內嵌檔案和圖片連結之預先定義屬性。", + "smw-property-predefined-inst": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,用來儲存獨立於 MediaWiki 之分類資訊的內部預先定義屬性。", + "smw-property-predefined-unit": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,定義數字類型屬性所顯示單位的宣告式預先定義屬性。", + "smw-property-predefined-long-unit": "以逗號區分的清單允許描述用來顯示的單位或格式。", + "smw-property-predefined-conv": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,定義某個物理量單位之轉換因數的宣告式預先定義屬性。", + "smw-property-predefined-serv": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,添加服務連結到屬性裡的宣告式預先定義屬性。", + "smw-property-predefined-redi": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,用來記錄重新導向的內部預先定義屬性。", + "smw-property-predefined-subp": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,指定一個屬性為另一個[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subproperty_of 子屬性]的宣告式預先定義屬性。", + "smw-property-predefined-subc": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,定義一個分類為另個[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Subcategory_of 子分類]的預先定義屬性。", + "smw-property-predefined-conc": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,定義相關概念的內部預先定義屬性。", + "smw-property-predefined-err-type": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,識別出一個[https://www.semantic-mediawiki.org/wiki/Help:Processing_errors 處理錯誤]群組或類別的預先定義屬性。", + "smw-property-predefined-skey": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,持有排序參照的內部預先定義屬性。", + "smw-property-predefined-pplb": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,指定一個[https://www.semantic-mediawiki.org/wiki/Help:Preferred_property_label 首選屬性標籤]的預先定義屬性。", + "smw-property-predefined-chgpro": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,持有[https://www.semantic-mediawiki.org/wiki/Help:Change_propagation 更改傳播]資訊的預先定義屬性。", + "smw-property-predefined-schema-link": "並且是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供。", + "smw-property-predefined-format-schema": "並且是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供。", + "smw-property-predefined-profile-schema": "並且是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供。", + "smw-property-predefined-trans": "並且是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供。", + "smw-property-predefined-trans-source": "並且是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供。", + "smw-property-predefined-trans-group": "並且是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供。", + "smw-property-predefined-cont-len": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,儲存長度資訊的預先定義屬性。", + "smw-property-predefined-long-cont-len": "這與 [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] 連結使用(以及[https://www.semantic-mediawiki.org/Attachment_processor 附件處理器])來收集並儲存從接納檔案索取的長度資訊(若有提供的話)。", + "smw-property-predefined-cont-lang": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,儲存語言資訊的預先定義屬性。", + "smw-property-predefined-long-cont-lang": "這與 [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] 連結使用(以及[https://www.semantic-mediawiki.org/Attachment_processor 附件處理器])來收集並儲存從接納檔案索取的語言資訊(若有提供的話)。", + "smw-property-predefined-cont-title": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,儲存標題資訊的預先定義屬性。", + "smw-property-predefined-long-cont-title": "這與 [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] 連結使用(以及[https://www.semantic-mediawiki.org/Attachment_processor 附件處理器])來收集並儲存從接納檔案索取的標題資訊(若有提供的話)。", + "smw-property-predefined-cont-author": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,儲存作者資訊的預先定義屬性。", + "smw-property-predefined-long-cont-author": "這與 [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] 連結使用(以及[https://www.semantic-mediawiki.org/Attachment_processor 附件處理器])來收集並儲存從接納檔案索取的作者資訊(若有提供的話)。", + "smw-property-predefined-cont-date": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,儲存日期資訊的預先定義屬性。", + "smw-property-predefined-long-cont-date": "這與 [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] 連結使用(以及[https://www.semantic-mediawiki.org/Attachment_processor 附件處理器])來收集並儲存從接納檔案索取的日期資訊(若有提供的話)。", + "smw-property-predefined-cont-type": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,儲存檔案類型資訊的預先定義屬性。", + "smw-property-predefined-long-cont-type": "這與 [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] 連結使用(以及[https://www.semantic-mediawiki.org/Attachment_processor 附件處理器])來收集並儲存從接納檔案索取的類型資訊(若有提供的話)。", + "smw-property-predefined-cont-keyw": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,代表關鍵字的預先定義屬性。", + "smw-property-predefined-long-cont-keyw": "這與 [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] 連結使用(以及[https://www.semantic-mediawiki.org/Attachment_processor 附件處理器])來收集並儲存從接納檔案索取的關鍵字(若有提供的話)。", + "smw-property-predefined-file-attch": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,表示出一個有儲存附件資訊之容器的預先定義屬性。", + "smw-property-predefined-long-file-attch": "這與 [https://www.semantic-mediawiki.org/ElasticStore ElasticStore] 連結使用(以及[https://www.semantic-mediawiki.org/Attachment_processor 附件處理器])來收集從接納檔案索取的所有特定資訊內容(若有提供的話)。", + "smw-types-extra-geo-not-available": "未偵測到[https://www.semantic-mediawiki.org/wiki/Extension:Maps 擴充「Maps」] ,因此「$1」的運作能力被受限。", + "smw-datavalue-monolingual-dataitem-missing": "缺少用來建置單語合成詞值的預期項目。", + "smw-datavalue-languagecode-missing": "對於「$1」註解,解析器無法判斷語言代碼(例如像:\"foo@en\")。", + "smw-datavalue-languagecode-invalid": "「$1」不被認為是支援的語言代碼。", + "smw-property-predefined-lcode": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,表示出 BCP47 格式語言代碼的預先定義屬性。", + "smw-type-mlt-rec": "「$1」是以特定[[Property:Language code|語言代碼]]來關聯文字值的[https://www.semantic-mediawiki.org/wiki/Help:Container 容器]資料類型。", + "smw-types-extra-mlt-lcode": "資料類型{{PLURAL:$2|需要|不需}}語言代碼(註:{{PLURAL:$2|不接受沒有語言代碼的值註解|可接受沒有語言代碼的值註解}})。", + "smw-property-predefined-text": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,表示出任意長度文字的預先定義屬性。", + "smw-property-predefined-pdesc": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,允許描述在語境裡屬性的預先定義屬性。", + "smw-property-predefined-list": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來定義與[[Special:Types/Record|紀錄]]類型屬性一同使用的屬性清單之預先定義屬性。", + "smw-limitreport-intext-parsertime": "[SMW]文內註解解析器時間", + "smw-limitreport-intext-postproctime": "[SMW]發佈處理時間", + "smw-limitreport-intext-parsertime-value": "$1 {{PLURAL:$1|秒|秒}}", + "smw-limitreport-intext-postproctime-value": "$1 {{PLURAL:$1|秒|秒}}", + "smw-limitreport-pagepurge-storeupdatetime": "[SMW]存儲更新時間(在頁面清除時)", + "smw-limitreport-pagepurge-storeupdatetime-value": "$1 {{PLURAL:$1|秒|秒}}", + "smw_allows_pattern": "此頁面預期包含參考文獻清單(依據[https://zh.wikipedia.org/wiki/%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F 正規表示式]),透過[[Property:Allows pattern|允許模式]]參數可用。要編輯此頁面,需要 smw-patternedit 權限。", + "smw-datavalue-allows-pattern-mismatch": "「$1」被正規表達式「$2」歸類為無效。", + "smw-datavalue-allows-pattern-reference-unknown": "「$1」模式參考文獻不符合在 [[MediaWiki:Smw allows pattern]] 裡的項目。", + "smw-datavalue-allows-value-list-unknown": "「$1」清單參考文獻不符合[[MediaWiki:Smw allows list $1]]頁面。", + "smw-datavalue-allows-value-list-missing-marker": "「$1」清單內容缺少帶有 * 清單標記的項目。", + "smw-datavalue-feature-not-supported": "「$1」功能在此 wiki 不支援或是被停用。", + "smw-property-predefined-pvap": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,可指定[[MediaWiki:Smw allows pattern|模式參照]]來套用到[https://zh.wikipedia.org/wiki/%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F 正規表達式]比對的預先定義屬性。", + "smw-property-predefined-dtitle": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,可為實體分配不同顯示標題的預先定義屬性。", + "smw-property-predefined-pvuc": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,替各實例限制值分配以達到內容不重複(或最多一個)的預先定義屬性。", + "smw-property-predefined-long-pvuc": "唯一性會在兩個值在字面涵義上不相等時建立,且違反任何限制會被歸類為錯誤。", + "smw-datavalue-constraint-uniqueness-violation": "屬性「$1」僅允許唯一值分配,而「$2」已註解在主題「$3」裡。", + "smw-datavalue-constraint-uniqueness-violation-isknown": "屬性「$1」僅允許唯一值註解,「$2」已包含所分配值。「$3」違反了唯一性限制。", + "smw-datavalue-constraint-violation-non-negative-integer": "屬性「$1」有「非負整數」限制,且內容值「$2」違反需求。", + "smw-datavalue-constraint-violation-must-exists": "屬性「$1」有 must_exists 限制,且值「$2」不合乎需求。", + "smw-datavalue-constraint-violation-single-value": "屬性「[[Property:$1|$1]]」有 single_value 限制,且內容值「$2」違反需求。", + "smw-constraint-violation-uniqueness": "unique_value_constraint 限制被分配到僅允許唯一值分配的「[[Property:$1|$1]]」屬性,另外在「$3」主題裡找出已註解了值註解''$2''。", + "smw-constraint-violation-uniqueness-isknown": "unique_value_constraint 限制被分配到「[[Property:$1|$1]]」屬性,因此僅允許唯一值註解,「$2」已包含帶有「$3」的值註釋,違反了目前主題的唯一性限制。", + "smw-constraint-violation-non-negative-integer": "non_negative_integer 限制被分配到「[[Property:$1|$1]]」屬性,且「$2」值註解違反了限制需求。", + "smw-constraint-violation-must-exists": "must_exists 限制被分配到「[[Property:$1|$1]]」屬性,且「$2」值註解違反了限制需求。", + "smw-constraint-violation-single-value": "single_value 限制被分配到「[[Property:$1|$1]]」屬性,且「$2」值註解違反了限制需求。", + "smw-constraint-violation-class-shape-constraint-missing-property": "shape_constraint 被分配到帶有 property 關鍵字的「[[:$1]]」分類,缺少所需要的「$2」屬性。", + "smw-constraint-violation-class-shape-constraint-wrong-type": "shape_constraint 被分配到帶有 property_type 關鍵字的「[[:$1]]」分類,「$2」屬性不符合「$3」的類型。", + "smw-constraint-violation-class-shape-constraint-invalid-max-cardinality": "shape_constraint 被分配到帶有 max_cardinality 關鍵字的「[[:$1]]」分類,「$2」屬性不符合「$3」的基數。", + "smw-constraint-violation-class-shape-constraint-invalid-min-length": "shape_constraint 被分配到帶有 min_textlength 關鍵字的「[[:$1]]」分類,「$2」屬性不符合「$3」的長度需求。", + "smw-constraint-violation-class-mandatory-properties-constraint": "mandatory_properties 限制被分配到分類「[[:$1]]」,並需要以下強制屬性:$2", + "smw-constraint-violation-allowed-namespace-no-match": "allowed_namespaces 限制分配到「[[Property:$1|$1]]」屬性,而「$2」違反了命名空間所需,僅允許以下「$3」命名空間。", + "smw-constraint-violation-allowed-namespaces-requires-page-type": "allowed_namespaces 限制需要頁面類型。", + "smw-constraint-schema-category-invalid-type": "註解「$1」架構對於分類無效,需要是「$2」類型。", + "smw-constraint-schema-property-invalid-type": "註解「$1」架構對於分類無效,需要是「$2」類型。", + "smw-constraint-error-allows-value-list": "「$1」不在用於「$3」屬性[[Property:Allows value|所允許值]]的清單($2)中。", + "smw-constraint-error-allows-value-range": "「$1」沒有符合用於限制屬性「$3」的[[Property:Allows value|允許值]]所指定的「$2」範圍。", + "smw-property-predefined-boo": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來代表布林值的[[Special:Types/Boolean|類型]]及預先定義屬性。", + "smw-property-predefined-num": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來代表數字值的[[Special:Types/Number|類型]]及預先定義屬性。", + "smw-property-predefined-dat": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來代表日期值的[[Special:Types/Date|類型]]及預先定義屬性。", + "smw-property-predefined-uri": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來代表 URI/URL 值的[[Special:Types/URL|類型]]及預先定義屬性。", + "smw-property-predefined-qty": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來代表數量的[[Special:Types/Quantity|類型]]及預先定義屬性。", + "smw-datavalue-time-invalid-offset-zone-usage": "「$1」含有不支援的偏差和區域識別碼。", + "smw-datavalue-time-invalid-values": "值「$1」包含在「$2」形式下無法解釋的資訊。", + "smw-datavalue-time-invalid-date-components-common": "「$1」包含一些無法解釋的資訊。", + "smw-datavalue-time-invalid-date-components-dash": "「$1」含有外部連接號或是其它無效的闡明日期字元。", + "smw-datavalue-time-invalid-date-components-empty": "「$1」包含一些空的成份。", + "smw-datavalue-time-invalid-date-components-three": "「$1」包含超過闡明日期所需的三個要素。", + "smw-datavalue-time-invalid-date-components-sequence": "「$1」含有無法解讀,違反用於日期組件之可用符合模型的序列。", + "smw-datavalue-time-invalid-ampm": "「$1」包含作為小時元素的「$2」,這在 12 小時制裡是無效的。", + "smw-datavalue-time-invalid-jd": "無法將輸入值「$1」解讀為有效的儒略日,以「$2」內容回報。", + "smw-datavalue-time-invalid-prehistoric": "無法解讀過時的輸入值「$1」。例如在舊式上下文裡指定了超過一年或是日曆模組,可能會回傳非預期的結果。", + "smw-datavalue-time-invalid": "無法將輸入值「$1」解讀為有效的日期或時間成份,以「$2」內容回報。", + "smw-datavalue-external-formatter-uri-missing-placeholder": "格式化 URI 缺少「$1」佔位符。", + "smw-datavalue-external-formatter-invalid-uri": "「$1」是無效的 URL。", + "smw-datavalue-external-identifier-formatter-missing": "屬性缺少[[Property:External formatter uri|\"外部格式化 URI\"]] 分配。", + "smw-datavalue-external-identifier-multi-substitute-parameters-missing": "外部識別碼\"$1\"需要多個欄位代換,但目前在最少需一個值的要求上缺少了值\"$2\"。", + "smw-datavalue-keyword-maximum-length": "關鍵詞超出最大長度 $1 個{{PLURAL:$1|字元|字元}}。", + "smw-property-predefined-eid": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來代表外部識別碼的[[Special:Types/External identifier|類型]]及預先定義屬性。", + "smw-property-predefined-peid": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,指定外部識別碼的預先定義屬性。", + "smw-property-predefined-pefu": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,以佔位符來指定外部資源的預先定義屬性。", + "smw-property-predefined-long-pefu": "URI 預期包含將由[[Special:Types/External identifier|外部識別碼]]值所調整的佔位符,來形成有效的資源參照。", + "smw-type-eid": "\"$1\" 是描述外部資源(基於 URI)[[Special:Types/Text|文字]]的資料型態變體,且需要分配屬性來聲明[[Property:External formatter uri|外部格式化 URI]]。", + "smw-property-predefined-keyw": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,可標準化文字且含有限制字元長度的預先定義屬性與[[Special:Types/Keyword|類型]]。", + "smw-type-keyw": "\"$1\" 是[[Special:Types/Text|文字]]資料型態的變體,為具標準化內容呈現的有限字元長度。", + "smw-datavalue-stripmarker-parse-error": "提供的值「$1」含有 [https://en.wikipedia.org/wiki/Help:Strip_markers strip markers] 內容,因此不能被充分解析。", + "smw-datavalue-parse-error": "提供的值「$1」無法理解。", + "smw-datavalue-propertylist-invalid-property-key": "屬性清單「$1」包含無效的屬性鍵「$2」。", + "smw-datavalue-type-invalid-typeuri": "類型「$1」不可轉換成有效的 URI 表述。", + "smw-datavalue-wikipage-missing-fragment-context": "Wiki 頁面輸入值「$1」不可在不帶脈絡頁面情況下使用。", + "smw-datavalue-wikipage-invalid-title": "頁面類型輸入值「$1」包含無效字元或是內容不完整,導致在查詢或註釋過程裡發生意外結果。", + "smw-datavalue-wikipage-property-invalid-title": "屬性「$1」(作為頁面類型)所帶的輸入值「$2」包含無效字元或是內容不完整,導致在查詢或註釋過程裡發生意外結果。", + "smw-datavalue-wikipage-empty": "Wiki 頁面輸入值為空(例如像:[[SomeProperty::]], [[]]),因此不能用作為查詢條件的名稱或一部份。", + "smw-type-ref-rec": "「$1」是個允許記錄有關值分配之額外資訊(例如:出處資料)的[https://www.semantic-mediawiki.org/wiki/Container 容器]類型。", + "smw-datavalue-reference-outputformat": "$1:$2", + "smw-datavalue-reference-invalid-fields-definition": "[[Special:Types/Reference|參考文獻]]類型應為聲明使用[https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields 含有欄位]屬性的屬性清單。", + "smw-parser-invalid-json-format": "JSON 解析器回傳了「$1」。", + "smw-property-preferred-title-format": "$1($2)", + "smw-property-preferred-label-language-combination-exists": "「$1」不能用於首選標籤,因為語言「$2」已分配給標籤「$3」。", + "smw-clipboard-copy-link": "複製連結到剪貼簿", + "smw-property-userdefined-fixedtable": "「$1」被設置為[https://www.semantic-mediawiki.org/wiki/Fixed_properties 固定屬性],並且任何對其[https://www.semantic-mediawiki.org/wiki/Type_declaration 類型宣告]的變更需要運作 setupStore.php 或是完成特殊[[Special:SemanticMediaWiki|「資料庫與安裝與更新」]]任務。", + "smw-data-lookup": "正在抓取資料…", + "smw-data-lookup-with-wait": "正在處理請求,可能需花費一些時間。", + "smw-no-data-available": "沒有可用資料。", + "smw-property-req-violation-missing-fields": "屬性「$1」缺少用於此「$2」類型所需的 [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] 宣告。", + "smw-property-req-violation-multiple-fields": "屬性「$1」含有多個 [https://www.semantic-mediawiki.org/wiki/Help:Special_property_Has_fields Has fields] 宣告(因此衝突),但「$2」類型僅能用一個。", + "smw-property-req-violation-missing-formatter-uri": "因定義 External formatter URI 屬性失敗,屬性「$1」缺少用於註釋類型的定義詳情。", + "smw-property-req-violation-predefined-type": "作為預先定義屬性的「$1」屬性包含「$2」類型宣告,因此與此屬性的預設類型不相容。", + "smw-property-req-violation-import-type": "偵測到與所匯入詞彙「$1」預先定義類型不相容的類型宣告。在一般情況下,因為有從匯入定義裡檢索資訊,所以不需要宣告類型。", + "smw-property-req-violation-change-propagation-locked-error": "屬性「$1」已調整,並要求使用[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改傳播]過程來重新評估分配的實體。此期間屬性頁面會在主要規格更新完成之前被鎖定,以防止中途打斷或是規格衝突。在頁面取消鎖定之前,過程花費的時間會依據[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue 任務佇列]排程的大小與頻率。", + "smw-property-req-violation-change-propagation-locked-warning": "屬性「$1」已調整,並要求使用[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改傳播]過程來重新評估分配的實體。更新花費的時間會依據[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue 任務佇列]排程的大小與頻率,並建議延後對屬性進行更改,以防止中途打斷或是規格衝突。", + "smw-property-req-violation-change-propagation-pending": "[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改傳播]更新正在等待中(估計有 $1 個[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|任務|任務}}]),建議在處理完成前暫停屬性方面的變動,以防止中途打斷或是規格衝突。", + "smw-property-req-violation-missing-maps-extension": "Semantic MediaWiki 無法檢測出[https://www.semantic-mediawiki.org/wiki/Extension:Maps 「Maps」]擴充,該為所需項目因此限制此屬性的功能(例如:無法儲存或處理地理資料)。", + "smw-property-req-violation-type": "屬性包含衝突的類型規格,可能會導致值註解無效,因此應讓使用者分配一個合適類型。", + "smw-property-req-error-list": "屬性包含以下錯誤或警告:", + "smw-property-req-violation-parent-type": "屬性「$1」與分配的父屬性「$2」擁有不同的類型註解。", + "smw-property-req-violation-forced-removal-annotated-type": "[https://www.semantic-mediawiki.org/wiki/Help:Mandatory_parent_type_inheritance mandatory 父類型繼承]執行已啟用,「$1」屬性的註解類型不符合父屬性「$2」類型,並且為了反應請求而被修改。建議調整頁內類型定義,來去除此屬性的錯誤訊息和強制執行。", + "smw-change-propagation-protection": "此頁面已被鎖定,以防止當[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改傳播]更新在運行時意外的資料變動。在頁面解開鎖定前,會依據[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue 任務佇列]排程的大小與頻率花費一段時間。", + "smw-category-change-propagation-locked-error": "分類「$1」已調整,並要求使用[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改傳播]過程來重新評估分配的實體。此期間分類頁面會在主要規格更新完成之前被鎖定,以防止中途打斷或是規格衝突。在頁面取消鎖定之前,過程花費的時間會依據[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue 任務佇列]排程的大小與頻率。", + "smw-category-change-propagation-locked-warning": "分類「$1」已調整,並要求使用[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改傳播]過程來重新評估分配的實體。更新花費的時間會依據[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue 任務佇列]排程的大小與頻率,並建議延後對分類進行更改,以防止中途打斷或是規格衝突。", + "smw-category-change-propagation-pending": "[https://www.semantic-mediawiki.org/wiki/Change_propagation 更改傳播]更新正在等待中(估計有 $1 個[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Job_queue {{PLURAL:$1|任務|任務}}]),建議在處理完成前暫停分類方面的變動,以防止中途打斷或是規格衝突。", + "smw-category-invalid-value-assignment": "「$1」未被視為有效分類或值註解。", + "protect-level-smw-pageedit": "僅允許俱有頁面編輯權限的使用者(Semantic MediaWiki)", + "smw-create-protection": "當[https://www.semantic-mediawiki.org/wiki/Help:Authority_mode 權威模式]啟用後,具有符合「$2」權限的使用者(或是[https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups 使用者群組])會在建立屬性「$1」時受限", + "smw-create-protection-exists": "當[https://www.semantic-mediawiki.org/wiki/Help:Authority_mode 權威模式]啟用後,具有符合「$2」權限的使用者(或是[https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups 使用者群組])會在更改屬性「$1」時受限", + "smw-edit-protection": "此頁面已被[[Property:Is edit protected|保護]]以防止意外的資料變動,並僅可由擁有編輯權限(\"$1\")的使用者或[https://www.semantic-mediawiki.org/wiki/Help:User_rights_and_user_groups 使用者群組]來編輯。", + "smw-edit-protection-disabled": "編輯保護已被停用,因此「$1」不能用於保護實體頁面來免於未經授權的編輯。", + "smw-edit-protection-auto-update": "Semantic MediaWiki 已根據「Is edit protected」屬性來更新保護狀態。", + "smw-edit-protection-enabled": "編輯已保護內容(Semantic MediaWiki)", + "smw-patternedit-protection": "此頁面已被保護,並僅能由具有適當 smw-patternedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions 權限]的使用者編輯。", + "smw-property-predefined-edip": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,指示編輯是否受到保護的預先定義屬性。", + "smw-property-predefined-long-edip": "儘管任何使用者都能添加此屬性至主題,但僅有專用權限的使用者可以對已被添加的實體做出編輯或解除保護。", + "smw-query-reference-link-label": "查詢參考文獻", + "smw-format-datatable-emptytable": "表格裡沒有可用資料", + "smw-format-datatable-info": "顯示 _TOTAL_ 個項目裡從 _START_ 到 _END_ 的內容", + "smw-format-datatable-infoempty": "顯示 0 個項目從 0 到 0 的內容", + "smw-format-datatable-infofiltered": "(從 _MAX_ total 項目篩選)", + "smw-format-datatable-lengthmenu": "顯示 _MENU_ 項目", + "smw-format-datatable-loadingrecords": "載入中...", + "smw-format-datatable-processing": "處理中...", + "smw-format-datatable-search": "搜尋:", + "smw-format-datatable-zerorecords": "找不到相符的記錄", + "smw-format-datatable-first": "第一", + "smw-format-datatable-last": "最後", + "smw-format-datatable-next": "下一個", + "smw-format-datatable-previous": "上一個", + "smw-format-datatable-sortascending": ":啟用升冪排序欄位", + "smw-format-datatable-sortdescending": ":啟用降冪排序欄位", + "smw-format-datatable-toolbar-export": "匯出", + "smw-category-invalid-redirect-target": "分類「$1」包含指向到非分類命名空間的無效重新導向目標。", + "smw-parser-function-expensive-execution-limit": "解析功能已達到耗量執行的限制(請參閱 [https://www.semantic-mediawiki.org/wiki/Help:$smwgQExpensiveExecutionLimit $smwgQExpensiveExecutionLimit] 設置參數)。", + "smw-postproc-queryref": "Semantic MediaWiki 會在一些必要查詢後期處理條件下,重新整理頁面。", + "apihelp-smwinfo-summary": "檢索有關 Semantic MediaWiki 統計資訊與其它詮釋資訊的 API 模組。", + "apihelp-ask-summary": "使用請求語言來查詢 Semantic MediaWiki 的 API 模組。", + "apihelp-askargs-summary": "使用請求語言作為條件、輸出內容、參數的清單,來查詢 Semantic MediaWiki 的 API 模組。", + "apihelp-browsebyproperty-summary": "檢索有關屬性或是屬性清單資訊的 API 模組。", + "apihelp-browsebysubject-summary": "檢索有關主題資訊的 API 模組。", + "apihelp-smwtask-summary": "執行 Semantic MediaWiki 相關任務的 API 模組(僅用於內部,不適用公共)。", + "apihelp-smwbrowse-summary": "支援在 Semantic MediaWiki 瀏覽不同實體類型行動的 API 模組。", + "apihelp-ask-parameter-api-version": "輸出格式:\n;2:用於結果清單,使用 {} 的後端相容格式。\n;3:使用 [] 來作為結果清單的實驗格式。", + "apihelp-smwtask-param-task": "定義任務類型", + "apihelp-smwtask-param-params": "符合所選任務類型需求的 JSON 編碼參數", + "smw-apihelp-smwtask-example-update": "針對特定主題之運作更新任務的範例:", + "smw-api-invalid-parameters": "無效參數「$1」", + "smw-parser-recursion-level-exceeded": "$1 個遞迴的層次在解析期間溢出。建議您驗證模板結構,或是如有需要可設置參數 $maxRecursionDepth。", + "smw-property-page-list-count": "顯示使用到此屬性的 $1 個{{PLURAL:$1|頁面|頁面}}。", + "smw-property-page-list-search-count": "顯示使用到符合值「$2」之屬性的 $1 個{{PLURAL:$1|頁面|頁面}}。", + "smw-property-page-filter-note": "[https://www.semantic-mediawiki.org/wiki/Help:Property_page/Filter 搜尋篩選]允許包含查詢表達式,例如像是 ~!。所選的[https://www.semantic-mediawiki.org/wiki/Help:Query_expressions 查詢引擎]可能會支援不區分大小寫,或是其它較短的表達式。例如像:\n\n* in: 的結果為應有包含,如:'in:Foo'\n\n* not: 的結果為應不包含,如:'not:Bar'", + "smw-property-reserved-category": "分類", + "smw-category": "分類", + "smw-datavalue-uri-invalid-scheme": "「$1」未被列入在有效的 URI 架構。", + "smw-datavalue-uri-invalid-authority-path-component": "「$1」被確認含有無效的權威「$2」或路徑組成。", + "smw-browse-property-group-title": "屬性群組", + "smw-browse-property-group-label": "屬性群組標籤", + "smw-browse-property-group-description": "屬性群組描述", + "smw-property-predefined-ppgr": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,可識別用來替屬性分組實例之實體(主要是分類)的預先定義屬性。", + "smw-filter": "篩選", + "smw-section-expand": "展開章節", + "smw-section-collapse": "摺疊章節", + "smw-ask-format-help-link": "[https://www.semantic-mediawiki.org/wiki/Help:$1_format $1]格式", + "smw-help": "說明", + "smw-cheat-sheet": "提示", + "smw-personal-jobqueue-watchlist": "任務佇列監視清單", + "smw-personal-jobqueue-watchlist-explain": "等待執行的任務佇列項目估計數。", + "smw-property-predefined-label-skey": "排序鍵", + "smw-processing": "正在處理…", + "smw-loading": "正在載入…", + "smw-fetching": "正在抓取…", + "smw-preparing": "正在準備…", + "smw-expand": "展開", + "smw-collapse": "摺疊", + "smw-copy": "複製", + "smw-copy-clipboard-title": "複製內容到剪貼簿", + "smw-jsonview-expand-title": "展開 JSON 檢視", + "smw-jsonview-collapse-title": "摺疊 JSON 檢視", + "smw-jsonview-search-label": "搜尋:", + "smw-redirect-target-unresolvable": "目標無法解決,出於原因「$1」", + "smw-types-title": "類型:$1", + "smw-schema-namespace-editcontentmodel-disallowed": "不允許更改[https://www.semantic-mediawiki.org/wiki/Help:Schema 架構頁面]的內容模組。", + "smw-schema-namespace-edit-protection": "此頁面已被保護,並僅能由具有適當 smw-schemaedit [https://www.semantic-mediawiki.org/wiki/Help:Permissions 權限]的使用者編輯。", + "smw-schema-namespace-edit-protection-by-import-performer": "此頁面是由列出的[https://www.semantic-mediawiki.org/wiki/Import_performer 匯入執行]所匯入,這代表著僅限於所列出使用者能改變此頁面內容。", + "smw-schema-error-title": "驗證{{PLURAL:$1|錯誤}}", + "smw-schema-error-schema": "驗證架構'''$1'''發現以下不一致:", + "smw-schema-error-miscellaneous": "雜項錯誤($1)", + "smw-schema-error-validation-json-validator-inaccessible": "無法存取(或安裝)JSON 驗證器「$1」,此為無法審查檔案「$2」的原因,因為會阻止保存或變動目前的頁面。", + "smw-schema-error-validation-file-inaccessible": "驗證檔案「$1」無法存取。", + "smw-schema-error-violation": "[\"$1\",\"$2\"]", + "smw-schema-error-type-missing": "內容缺少可用於識別且用在[https://www.semantic-mediawiki.org/wiki/Help:Schema 架構命名空間]的類型", + "smw-schema-error-type-unknown": "類型「$1」未註冊,不能用於 [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema] 命名空間內容裡。", + "smw-schema-error-json": "JSON 錯誤:\"$1\"", + "smw-schema-error-input": "輸入驗證發現以下問題,在內容儲存之前需要先解決。[https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling 架構說明]頁面可以提供一些如何移除架構輸入不一致,或是問題解決的建議。", + "smw-schema-error-input-schema": "驗證架構'''$1'''發現以下不一致,在內容儲存之前需要先解決。[https://www.semantic-mediawiki.org/wiki/Help:Schema/Error_handling 架構說明]頁面可以提供一些如何解決問題的建議。", + "smw-schema-error-title-prefix": "此架構類型需要開頭帶有「$1」字首的架構標題。", + "smw-schema-validation-error": "類型「$1」未註冊,不能用於 [https://www.semantic-mediawiki.org/wiki/Help:Schema smw/schema] 命名空間內容裡。", + "smw-schema-validation-schema-title": "JSON綱要", + "smw-schema-summary-title": "摘要", + "smw-schema-title": "綱要", + "smw-schema-usage": "使用狀況", + "smw-schema-type": "綱要類型", + "smw-schema-type-description": "類型描述", + "smw-schema-description": "綱要描述", + "smw-schema-description-link-format-schema": "此架構類型支援的特徵定義用於創建相關[[Property:Formatter schema|格式化架構]]分配屬性的上下文連結。", + "smw-schema-description-search-form-schema": "這個架構類型支援用於定義[https://www.semantic-mediawiki.org/wiki/Help:SMWSearch 擴充搜尋]偏好設定的輸入表單與字元,其中包含如何產生輸入欄位、定義預設命名空間、或是宣告用於搜尋請求之字首表達的說明。", + "smw-schema-description-property-profile-schema": "此架構類型支援用來聲明已分配屬性與其註解值之特性的偏好設定定義。", + "smw-schema-description-facetedsearch-profile-schema": "此架構類型支援用於組成[[Special:FacetedSearch|多面搜尋]]環境的個人設定定義。", + "smw-schema-description-property-group-schema": "此架構類型支援以定義[https://www.semantic-mediawiki.org/wiki/Help:Property_group 屬性群組]的方式來協助架構[https://www.semantic-mediawiki.org/wiki/Help:Special:Browse 瀏覽]介面。", + "smw-schema-description-property-constraint-schema": "這支援定義屬性實體的限制條件和所分配的值。", + "smw-schema-description-class-constraint-schema": "此架構類型支援用於類別實例的限制規則定義(即為分類)。", + "smw-schema-tag": "{{PLURAL:$1|標籤|標籤}}", + "smw-property-predefined-constraint-schema": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來定義限制架構的預先定義屬性。", + "smw-property-predefined-schema-desc": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,儲存架構描述的預先定義屬性。", + "smw-property-predefined-schema-def": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,儲存架構內容的預先定義屬性。", + "smw-property-predefined-schema-tag": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 提供,識別綱要收集的預先定義屬性。", + "smw-property-predefined-long-schema-tag": "識別相似內容或特徵之綱要的標籤。", + "smw-property-predefined-schema-type": "「$1」是由 [https://www.semantic-mediawiki.org/wiki/Help:Special_properties Semantic MediaWiki] 所提供,用來描述區分架構群組類型的預先定義屬性。", + "smw-property-predefined-long-schema-type": "各[https://www.semantic-mediawiki.org/wiki/Help:Schema/Type 類型]提供本身對於語法元素的闡明和應用規則,並可在[https://www.semantic-mediawiki.org/wiki/Help:Schema#validation 驗證架構]的幫助下來表示出。", + "smw-ask-title-keyword-type": "關鍵字搜尋", + "smw-ask-message-keyword-type": "此搜尋符合 $1 條件。", + "smw-remote-source-unavailable": "無法連接至遠端「$1」目標。", + "smw-remote-source-disabled": "來源'''$1'''已停用遠端請求支援!", + "smw-remote-source-unmatched-id": "來源「'''$1'''」不符合可支援遠端請求的 Semantic MediaWiki 版本。", + "smw-remote-request-note": "結果已從遠端來源「'''$1'''」檢索,並且可能用於產生包含目前 wiki 的不可用資訊內容。", + "smw-remote-request-note-cached": "結果已從遠端來源「'''$1'''」給'''快取''',並且可能用於產生包含目前 wiki 的不可用資訊內容。", + "smw-parameter-missing": "遺失參數「$1」。", + "smw-property-tab-usage": "使用量", + "smw-property-tab-profile-schema": "偏好設定架構", + "smw-property-tab-redirects": "同義詞", + "smw-property-tab-subproperties": "子屬性", + "smw-property-tab-errors": "不適當分配", + "smw-property-tab-constraint-schema": "限制架構", + "smw-property-tab-constraint-schema-title": "已編譯限制架構", + "smw-property-tab-specification": "... 更多", + "smw-concept-tab-list": "清單", + "smw-concept-tab-errors": "錯誤", + "smw-ask-tab-result": "結果", + "smw-ask-tab-extra": "額外", + "smw-ask-tab-debug": "除錯", + "smw-ask-tab-code": "代碼", + "smw-install-incomplete-tasks-title": "不完整的管理任務", + "smw-install-incomplete-intro": "這裡有 $2 個未完成或是用於結束{{PLURAL:$1|安裝|更新}} [https://www.semantic-mediawiki.org Semantic MediaWiki] 的[[Special:PendingTaskList|待定]]{{PLURAL:$2|任務}}。擁有足夠權限的管理員或使用者可以完成{{PLURAL:$2|它|這些}}。為了避免資料不一致,應在添加新資料之前處理好。", + "smw-install-incomplete-intro-note": "此訊息在所有相關任務解決後會消失。", + "smw-pendingtasks-intro-empty": "沒有與 Semantic MediaWiki 關聯的任務被歸類為待辦、未完成、或是需處理。", + "smw-pendingtasks-intro": "此頁面提供與 Semantic MediaWiki 關聯,被歸類在待辦、未完成、或是需處理的任務相關資訊。", + "smw-pendingtasks-setup-no-tasks-intro": "安裝(或更新)已完成,目前沒有待辦或是需處理的任務。", + "smw-pendingtasks-tab-setup": "設定", + "smw-updateentitycollation-incomplete": "[https://www.semantic-mediawiki.org/wiki/Help:$smwgEntityCollation $smwgEntityCollation] 設定近期有更動,需要執行 [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCollation.php updateEntityCollation.php] 手稿來讓實體更新,來包含正確的排序欄位值。", + "smw-updateentitycountmap-incomplete": "smw_countmap 欄位是在最新釋出裡添加,且需要執行 [https://www.semantic-mediawiki.org/wiki/Help:updateEntityCountMap.php updateEntityCountMap.php] 手稿以讓功能可存取此欄位的內容。", + "smw-populatehashfield-incomplete": "在設定過程中裡有略過填充 smw_hash 欄位,必須執行 [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] 手稿。", + "smw-install-incomplete-populate-hash-field": "在設定過程中裡有略過填充 smw_hash 欄位,必須執行 [https://www.semantic-mediawiki.org/wiki/Help:populateHashField.php populateHashField.php] 手稿。", + "smw-install-incomplete-elasticstore-indexrebuild": "ElasticStore 被選擇為[https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore 預設儲存],但擴充無法找出 [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] 手稿執行過的紀錄, 請依照說明運行手稿。", + "smw-elastic-rebuildelasticindex-run-incomplete": "ElasticStore 被選擇為[https://www.semantic-mediawiki.org/wiki/Help:smwgDefaultStore 預設儲存],但擴充無法找出 [https://www.semantic-mediawiki.org/wiki/Help:rebuildElasticIndex.php rebuildElasticIndex.php] 手稿執行過的紀錄, 請依照說明運行手稿。", + "smw-pendingtasks-setup-intro": "Semantic MediaWiki 的{{PLURAL:$1|安裝|更新}}已歸類出以下任務為[https://www.semantic-mediawiki.org/wiki/Help:Upgrade/Incomplete_upgrade 未完成],而管理員(或是其他擁有足夠權限的使用者)應在使用者繼續建立或是更改內容之前解決掉這些任務。", + "smw-pendingtasks-setup-tasks": "任務", + "smw-filter-count": "篩選次數", + "smw-es-replication-check": "複製檢查(Elasticsearch)", + "smw-es-replication-error": "Elasticsearch 複製問題", + "smw-es-replication-file-ingest-error": "檔案接納問題", + "smw-es-replication-maintenance-mode": "Elasticsearch 維護", + "smw-es-replication-error-missing-id": "複製監測發現 Elasticsearch 後端缺少條目「$1」(ID:$2)。", + "smw-es-replication-error-divergent-date": "複製監測發現有關條目「$1」(ID:$2)的變動日期出現差異。", + "smw-es-replication-error-divergent-date-short": "以下日期資訊為用於比較:", + "smw-es-replication-error-divergent-date-detail": "參考修改日期:\n*Elasticsearch:$1\n*資料庫:$2", + "smw-es-replication-error-divergent-revision": "複製監測發現有關條目「$1」(ID:$2)的關聯修訂出現差異。", + "smw-es-replication-error-divergent-revision-short": "以下關聯修訂資料為用於比較:", + "smw-es-replication-error-divergent-revision-detail": "參考關聯修訂:\n*Elasticsearch:$1\n*資料庫:$2", + "smw-es-replication-error-maintenance-mode": "因為在[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Maintenance_mode 維護模式]下進行的緣故,Elasticsearch 複製目前受到限制,對實體與頁面做出的更改不會立即可見,另外查詢結果可能會含有過時資訊。", + "smw-es-replication-error-no-connection": "複製間是無法執行任何檢查,因為這無法建立與 Elasticsearch 叢集的連接。", + "smw-es-replication-error-bad-request-exception": "Elasticsearch 連接處理拋出一個表明在複製與搜尋請求期間所出現的持續問題之錯誤請求例外(\"400 conflict http error\")。", + "smw-es-replication-error-other-exception": "Elasticsearch 連接處理拋出一個例外:「$1」。", + "smw-es-replication-error-suggestions": "建議編輯或清除頁面來移除掉差異。如果問題持續存在,請檢查看看 Elasticsearch 叢集本身(配置器、例外狀況、磁碟空間等等)。", + "smw-es-replication-error-suggestions-maintenance-mode": "建議聯絡 wiki 管理員來檢查[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/Index_rebuild 索引重建]是否有正確進行,或是 refresh_interval 尚未有被設定到預期的預設值。", + "smw-es-replication-error-suggestions-no-connection": "建議聯絡 wiki 管理員並回報「無法連接」問題。", + "smw-es-replication-error-suggestions-exception": "請查看日誌來取得關於 Elasticsearch 的狀態資訊、索引、以及可能會有的錯誤設置問題。", + "smw-es-replication-error-file-ingest-missing-file-attachment": "複製監控找出「$1」缺少[[Property:File attachment|檔案附件]]註解指示,無法開始或結束檔案接納處理。", + "smw-es-replication-error-file-ingest-missing-file-attachment-suggestions": "請確認[https://www.semantic-mediawiki.org/wiki/Help:ElasticStore/File_ingestion 檔案接納]任務有被安排,並請在註解與檔案索引可用之前執行。", + "smw-report": "報告", + "smw-legend": "圖例", + "smw-datavalue-constraint-schema-category-invalid-type": "註解「$1」架構對於分類無效,需要是「$2」類型。", + "smw-datavalue-constraint-schema-property-invalid-type": "註解「$1」架構對於分類無效,需要是「$2」類型。", + "smw-entity-examiner-check": "在背景運行{{PLURAL:$1|審查}}", + "smw-entity-examiner-indicator": "實體問題面板", + "smw-entity-examiner-deferred-check-awaiting-response": "「$1」審查目前在等待來自後端的回應。", + "smw-entity-examiner-deferred-elastic-replication": "Elastic", + "smw-entity-examiner-deferred-constraint-error": "限制", + "smw-entity-examiner-associated-revision-mismatch": "修訂", + "smw-entity-examiner-deferred-fake": "虛假", + "smw-entity-examiner-indicator-suggestions": "作為實體審查的一部分,找出了以下{{PLURAL:$1|問題}},建議仔細地檢閱{{PLURAL:$1|問題}}並採取適當的{{PLURAL:$1|操作}}。", + "smw-indicator-constraint-violation": "{{PLURAL:$1|限制}}", + "smw-indicator-revision-mismatch": "修訂", + "smw-indicator-revision-mismatch-error": "[https://www.semantic-mediawiki.org/wiki/Help:Associated_revision/Examiner 相關修訂]檢查發現在 MediaWiki 引用的修訂之間內容不符合,且關聯到用於此實體的 Semantic MediaWiki。", + "smw-indicator-revision-mismatch-comment": "不符合通常表示某些程序中斷了在 Semantic MediaWiki 的儲存操作。建議檢視伺服器日誌並查看例外或其它錯誤。", + "smw-facetedsearch-intro-text": "Semantic MediaWiki 的 [https://www.semantic-mediawiki.org/wiki/Faceted_search 多面搜尋]為使用者提供了一個簡單的介面,可藉由從依賴屬性和分類所建立的多面檢視內容裡,來快速縮小某個條件的查詢結果範圍。", + "smw-facetedsearch-intro-tips": "*使用 category:?property:?,或是 concept:? 能用來尋找可用於建立結構化條件集的分類、屬性、或概念\n* 使用 #ask 語法可用來描述條件(例如[[Category:Foo]])\n* 使用「OR」、「AND」,或其他查詢表達式可建立複雜的條件 \n* in:phrase: 這一類的表達式可用於全文字匹配或是非結構話搜尋(若所選的[https ://www.semantic-mediawiki.org/wiki/Query_engine 查詢引擎]支援這些表達式)", + "smw-facetedsearch-profile-label-default": "預設個人檔案", + "smw-facetedsearch-intro-tab-explore": "探索", + "smw-facetedsearch-intro-tab-search": "搜尋", + "smw-facetedsearch-explore-intro": "選擇一個集合並開始瀏覽。", + "smw-facetedsearch-profile-options": "個人檔案選項", + "smw-facetedsearch-size-options": "分頁選項", + "smw-facetedsearch-order-options": "排序選項", + "smw-facetedsearch-format-options": "顯示選項", + "smw-facetedsearch-format-table": "表格", + "smw-facetedsearch-input-filter-placeholder": "篩選…", + "smw-facetedsearch-no-filters": "無篩選。", + "smw-facetedsearch-no-filter-range": "無篩選範圍。", + "smw-facetedsearch-no-output": "所選的「$1」格式沒有可用的輸出。", + "smw-facetedsearch-clear-filters": "清除{{PLURAL:$1|篩選}}", + "smw-search-placeholder": "搜尋…", + "smw-listingcontinuesabbrev": "續", + "smw-showingresults": "以下顯示從第 $2 筆開始,共 {{PLURAL:$1|1 筆結果|$1 筆結果}}:" +} diff --git a/mediawiki/extensions/SemanticMediaWiki/includes/ContentParser.php b/mediawiki/extensions/SemanticMediaWiki/includes/ContentParser.php new file mode 100644 index 0000000..278aa60 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/includes/ContentParser.php @@ -0,0 +1,219 @@ +title = $title; + $this->parser = $parser; + } + + /** + * @since 2.3 + * + * @return Parser $parser + */ + public function setParser( Parser $parser ) { + $this->parser = $parser; + } + + /** + * @since 1.9.1 + * + * @return ContentParser + */ + public function setRevision( ?RevisionRecord $revision = null ) { + $this->revision = $revision; + return $this; + } + + /** + * @since 1.9 + * + * @return Title + */ + public function getTitle() { + return $this->title; + } + + /** + * @since 1.9 + * + * @return ParserOutput|null + */ + public function getOutput() { + return $this->parserOutput; + } + + /** + * @since 1.9 + * + * @return array + */ + public function getErrors() { + return $this->errors; + } + + /** + * @since 1.9 + */ + public function skipInTextAnnotationParser() { + return $this->skipInTextAnnotationParser = true; + } + + /** + * Generates or fetches the ParserOutput object from an appropriate source + * + * @since 1.9 + * + * @param string|null $text + * @param bool $clear Whether to clear the parser cache. + * + * @return ContentParser + */ + public function parse( ?string $text = null, bool $clear = true ) { + if ( $text !== null ) { + return $this->parseText( $text, $clear ); + } + + return $this->fetchFromContent(); + } + + private function parseText( ?string $text, bool $clear ) { + $options = $this->makeParserOptions(); + + // Deal with uninitialised parser output: + if ( !$clear ) { + $this->parser->setOptions( $options ); + $this->parser->clearState(); + } + + $this->parserOutput = $this->parser->parse( $text, $this->getTitle(), $options, true, $clear ); + + return $this; + } + + private function fetchFromContent() { + if ( $this->getRevision() === null ) { + return $this->msgForNullRevision(); + } + + $revision = $this->getRevision(); + $content = $revision->getContent( SlotRecord::MAIN, RevisionRecord::RAW ); + + if ( !$content ) { + $mainSlot = $revision->getSlot( SlotRecord::MAIN, RevisionRecord::RAW ); + $contentHandlerFactory = MediaWikiServices::getInstance()->getContentHandlerFactory(); + $handler = $contentHandlerFactory->getContentHandler( $mainSlot->getModel() ); + $content = $handler->makeEmptyContent(); + } + + // Avoid "The content model 'xyz' is not registered on this wiki." + try { + $services = MediaWikiServices::getInstance(); + // MW 1.42+ + if ( version_compare( MW_VERSION, '1.42', '<' ) ) { + $revision = $revision->getId(); + } + $contentRenderer = $services->getContentRenderer(); + $this->parserOutput = $contentRenderer->getParserOutput( + $content, + $this->getTitle(), + $revision + ); + } catch ( \MWUnknownContentModelException $e ) { + $this->parserOutput = null; + } + + return $this; + } + + private function msgForNullRevision( $fname = __METHOD__ ) { + $this->errors = [ $fname . " No revision available for {$this->getTitle()->getPrefixedDBkey()}" ]; + return $this; + } + + private function makeParserOptions() { + $user = null; + + if ( $this->getRevision() !== null ) { + $identity = $this->getRevision()->getUser(); + if ( $identity ) { + $user = MediaWikiServices::getInstance()->getUserFactory()->newFromUserIdentity( $identity ); + } + } + + $user = $user ?? RequestContext::getMain()->getUser(); + $parserOptions = new ParserOptions( $user ); + + // Use the InterfaceMessage marker to skip InTextAnnotationParser + // processing + $parserOptions->setInterfaceMessage( $this->skipInTextAnnotationParser ); + + return $parserOptions; + } + + private function getRevision() { + if ( $this->revision instanceof RevisionRecord ) { + return $this->revision; + } + + $this->revision = $this->revisionGuard->getRevision( + $this->getTitle(), + $this->revision + ); + + return $this->revision; + } + +} diff --git a/mediawiki/extensions/SemanticMediaWiki/includes/DefaultSettings.php b/mediawiki/extensions/SemanticMediaWiki/includes/DefaultSettings.php new file mode 100644 index 0000000..27703eb --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/includes/DefaultSettings.php @@ -0,0 +1,2547 @@ + $smwgIP, + # + # @since 2.5 + ## + 'smwgExtraneousLanguageFileDir' => $smwgIP . '/i18n/extra', + 'smwgServicesFileDir' => $smwgIP . '/src/Services', + 'smwgResourceLoaderDefFiles' => [ 'smw' => $smwgIP . '/res/Resources.php' ], + 'smwgMaintenanceDir' => $smwgIP . '/maintenance', + 'smwgDir' => $smwgIP, + # # + + ### + # Configuration directory + # @see #3506 + # + # The maintained directory needs to be writable in order for configuration + # information to be stored persistently and be accessible for Semantic + # MediaWiki throughout its operation. + # + # You may assign the same directory as in `wgUploadDirectory` (e.g + # $smwgConfigFileDir = $wgUploadDirectory;) or select an entire different + # location. The default location is the Semantic MediaWiki extension root. + # + # During its operation it may contain: + # - `.smw.json` + # - `.smw.maintenance.json` + # + # @since 3.0 + ## + 'smwgConfigFileDir' => $smwgIP, + # # + + ### + # Upgrade key + # + # This key verifies that a correct upgrade (update.php/setupStore.php) path + # was selected and hereby ensures a consistent DB setup. + # + # Whenever a DB table change occurs, modify the key value (e.g. `smw:20...`) + # to reflect the requirement for the client to follow the processes as + # outlined in the installation manual. + # + # Once the installer is run, the `.smw.json` will be updated and no longer + # cause any exception. + # + # @since 3.0 + ## + 'smwgUpgradeKey' => 'smw:2020-04-18', + # # + + ### + # Content import + # + # Controls the content import directory and version that is expected to be + # imported during the setup process. + # + # For all legitimate files in `smwgImportFileDirs`, the import is initiated + # if the `smwgImportReqVersion` compares with the declared version in the file. + # + # In case `smwgImportReqVersion` is maintained with `false` then the import + # is going to be disabled. + # + # @since 2.5 + ## + 'smwgImportFileDirs' => [ 'smw' => $smwgIP . '/data/import' ], + 'smwgImportReqVersion' => 1, + # # + + ### + # List of users for import activities + # + # Users listed here are to be used exclusively for the import task and can + # depending on the specific protection level lock certain content from being + # altered by any other user. + # + # The protection is only enabled when a specific import content has defined + # the `import_performer` with a listed user. + # + # @since 3.2 + # @default [] + ## + 'smwgImportPerformers' => [ 'SemanticMediaWikiImporter' ], + # # + + ### + # Allows to ignore the check for whether the extension was correctly enabled + # or not. It will display an error message on `Special:Version` in case it was + # not. + # + # SMW 3.2 added an additional validation to check that `wfLoadExtension( + # 'SemanticMediaWiki')` isn't used given its conflict with `enableSemantics`. + # If the setting is set to `false` then this check is disabled as well. + # + # To ignore the check and suppress the error, set the value to `true`. + # + # @since 3.1 + ## + 'smwgIgnoreExtensionRegistrationCheck' => false, + # # + + ### + # @since 4.1.3 + ## + 'smwgIgnoreUpgradeKeyCheck' => false, + # # + + ### + # Use another storage backend for Semantic MediaWiki. The default is suitable + # for most uses of SMW. + # + # @since 0.7 + ## + 'smwgDefaultStore' => SMW\SQLStore\SQLStore::class, + # # + + ## + # Debug logger role + # + # A role (developer, user, production) defines the detail of information + # (granularity) that are expected to be logged. Roles include: + # + # - `developer` outputs any loggable event produced by SMW + # - `user` outputs certain events deemed important + # - `production` outputs a minimal set of events produced by SMW + # + # Logging only happens in case `$wgDebugLogFile` or `$wgDebugLogGroups` + # are actively maintained. + # + # @see https://www.mediawiki.org/wiki/Manual:How_to_debug#Logging + # + # @since 3.0 + # @default production + ## + 'smwgDefaultLoggerRole' => 'production', + # # + + ### + # Local connection configurations + # + # Allows to modify connection characteristics for providers that are used by + # Semantic MediaWiki. + # + # Changes to these settings should ONLY be made by trained professionals to + # avoid unexpected or unanticipated results when using connection handlers. + # + # Available DB index as provided by MediaWiki: + # + # - DB_REPLICA (1.27.4+) + # - DB_PRIMARY + # + # @since 2.5.3 + ## + 'smwgLocalConnectionConf' => [ + 'mw.db' => [ + 'read' => DB_REPLICA, + 'write' => DB_PRIMARY + ], + 'mw.db.queryengine' => [ + 'read' => DB_REPLICA, + 'write' => DB_PRIMARY + ] + ], + # # + + ### + # Configure SPARQL database connection for Semantic MediaWiki. This is used + # when SPARQL-based features are enabled, e.g. when using SPARQLStore as + # the $smwgDefaultStore. + # + # The default class GenericRepositoryConnector works with many databases that support + # SPARQL and SPARQL Update. Three different endpoints (service URLs) are given + # - query (reading queries like SELECT) + # - update (SPARQL Update queries), and + # - data (SPARQL HTTP Protocol for Graph Management). + # + # The query endpoint is necessary, but the update and data endpoints can be + # omitted if not supported. + # + # This will lead to reduced functionality (e.g. the SPARQLStore will not + # work if Update is not available). The data endpoint is always optional, but + # in some SPARQL databases this method is more efficient than update. + # + # @since 1.6 + ## + 'smwgSparqlEndpoint' => [ + 'query' => 'http://localhost:8080/sparql/', + 'update' => 'http://localhost:8080/update/', + 'data' => 'http://localhost:8080/data/' + ], + # # + + ### + # + # The default graph is similar to a database name in relational databases. It + # can be set to any URI (e.g. the main page uri of your wiki with + # " #graph" appended). Leaving the default graph URI empty only works if the + # store is configure to use some default default graph or if it generally + # supports this. Different wikis should normally use different default graphs + # unless there is a good reason to share one graph. + # + # @since 1.7 + ## + 'smwgSparqlDefaultGraph' => '', + # # + + ## + # Sparql repository connector + # + # Identifies a pre-deployed repository connector that is ought to be used together + # with the SPARQLStore. + # + # List of standard connectors ($smwgSparqlCustomConnector will have no effect): + # - '4store' + # - 'blazegraph' + # - 'fuseki' + # - 'sesame' + # - 'virtuoso' + # + # In case `$smwgSparqlRepositoryConnector` is maintained with 'custom', + # the `$smwgSparqlCustomConnector` is expected to contain a custom class + # implementing the necessary interface (see `GenericRepositoryConnector`). + # + # `$smwgSparqlCustomConnector` is only used for the definition of a custom + # connector. + # + # @since 2.0 + # @default default, meaning that the default (aka generic) connector is used + ## + 'smwgSparqlRepositoryConnector' => 'default', + # # + + ## + # Sparql cutstom connector + # + # In case `$smwgSparqlRepositoryConnector` is maintained with 'custom', + # the `$smwgSparqlCustomConnector` is expected to contain a custom class + # implementing the necessary interface (see `GenericRepositoryConnector`). + # + # `$smwgSparqlCustomConnector` is only used for the definition of a custom + # connector. + # + # @since 2.0 + ## + 'smwgSparqlCustomConnector' => '\SMW\SPARQLStore\RepositoryConnectors\GenericRepositoryConnector', + # # + + ## + # Sparql query features that are expected to be supported by the repository: + # + # - SMW_SPARQL_QF_NONE does not support any features (as required by SPARQL 1.1) + # - SMW_SPARQL_QF_REDI to support finding redirects using inverse property paths, + # can only be used for repositories with full SPARQL 1.1 support (e.g. Fuseki, + # Sesame) + # - SMW_SPARQL_QF_SUBP to resolve subproperties + # - SMW_SPARQL_QF_SUBC to resolve subcategories + # + # - SMW_SPARQL_QF_COLLATION allows to add support for the sorting collation as + # maintained in $smwgEntityCollation. + # + # - SMW_SPARQL_QF_NOCASE to support case insensitive pattern matches + # + # Please check with your repository provider whether SPARQL 1.1 is fully + # supported or not, and if not SMW_SPARQL_QF_NONE should be set. + # + # @since 2.3 + ## + 'smwgSparqlQFeatures' => SMW_SPARQL_QF_REDI | SMW_SPARQL_QF_SUBP | SMW_SPARQL_QF_SUBC, + # # + + ## + # SPARQL respository specific features + # + # - SMW_SPARQL_NONE does not support any features + # + # - SMW_SPARQL_CONNECTION_PING to support the verifcation that a connection + # can be established and allows for an uninterruppted update and query + # process + # + # @since 3.2 + ## + 'smwgSparqlRepositoryFeatures' => SMW_SPARQL_NONE, + # # + + ## + # @see https://github.com/SemanticMediaWiki/SemanticMediaWiki/issues/1306 + # + # Setting to explicitly force a CURLOPT_HTTP_VERSION for the endpoint communication + # and should not be changed unless an error as in #1306 was encountered. + # + # @see http://curl.haxx.se/libcurl/c/CURLOPT_HTTP_VERSION.html reads "... libcurl + # to use the specific HTTP versions. This is not sensible to do unless you have + # a good reason."" + # + # @since 2.3 + # @default false === means to use the default as determined by cURL + ## + 'smwgSparqlRepositoryConnectorForcedHttpVersion' => false, + # # + + ## + # Property replication exemption list + # + # Listed properties will be exempted from the replication process for a + # registered SPARQL repository. + # + # @since 2.5 + # @default array + ## + 'smwgSparqlReplicationPropertyExemptionList' => [], + # # + + ### + # If you already have custom namespaces on your site, insert + # 'smwgNamespaceIndex' => ???, + # into your LocalSettings.php *before* including this file. The number ??? must + # be the smallest even namespace number that is not in use yet. However, it + # must not be smaller than 100. + # + # @since 1.6 + ## + # 'smwgNamespaceIndex' => 100, + ## + + ### + # Overwriting the following array, you can define for which namespaces + # the semantic links and annotations are to be evaluated. On other + # pages, annotations can be given but are silently ignored. This is + # useful since, e.g., talk pages usually do not have attributes and + # the like. In fact, is is not obvious what a meaningful attribute of + # a talk page could be. Pages without annotations will also be ignored + # during full RDF export, unless they are referred to from another + # article. + # + # @since 0.7 + ## + 'smwgNamespacesWithSemanticLinks' => [ + NS_MAIN => true, + NS_TALK => false, + NS_USER => true, + NS_USER_TALK => false, + NS_PROJECT => true, + NS_PROJECT_TALK => false, + NS_FILE => true, + NS_FILE_TALK => false, + NS_MEDIAWIKI => false, + NS_MEDIAWIKI_TALK => false, + NS_TEMPLATE => false, + NS_TEMPLATE_TALK => false, + NS_HELP => true, + NS_HELP_TALK => false, + NS_CATEGORY => true, + NS_CATEGORY_TALK => false, + ], + # # + + ### + # Specifies features supported by the in-page factbox + # + # - SMW_FACTBOX_CACHE to use the main cache to avoid reparsing the content on + # each page view (replaced smwgFactboxUseCache) + # + # - SMW_FACTBOX_PURGE_REFRESH to refresh the faxtbox content on the purge + # event (replaced smwgFactboxCacheRefreshOnPurge) + # + # - SMW_FACTBOX_DISPLAY_SUBOBJECT displays subobject references + # + # - SMW_FACTBOX_DISPLAY_ATTACHMENT displays attachment list + # + # @since 3.0 + ## + 'smwgFactboxFeatures' => SMW_FACTBOX_CACHE | SMW_FACTBOX_PURGE_REFRESH | SMW_FACTBOX_DISPLAY_SUBOBJECT | SMW_FACTBOX_DISPLAY_ATTACHMENT, + + # ## + # This setting allows you to select in which cases you want to have a factbox + # appear below an article and includes the following options: + # + # - SMW_FACTBOX_NONEMPTY show only those factboxes that have some content + # - SMW_FACTBOX_SPECIAL show only if special properties were set + # - SMW_FACTBOX_HIDDEN hide always + # - SMW_FACTBOX_SHOWN show always + # + # @note The Magic Words __SHOWFACTBOX__ and __HIDEFACTBOX__ can be used to + # control Factbox display for individual pages. + # + # @since 0.7 + ## + 'smwgShowFactbox' => SMW_FACTBOX_HIDDEN, + # # + + ### + # Same as $smwgShowFactbox but for the edit mode with same possible values. + # + # @since 1.0 + ## + 'smwgShowFactboxEdit' => SMW_FACTBOX_NONEMPTY, + # # + + ### + # Compact infolink support + # + # Special:Browse, Special:Ask, and Special:SearchByProperty links can contain + # arbitrary text elements and therefore become difficult to transfer when its + # length exceeds a certain character length. + # + # The experimental feature of a compact link will be encoded and compressed to + # ensure that it can be handled more easily when referring to it as an URL + # representation. + # + # It is not expected to be used as a short-url service, yet in some instances + # the generate URL can be comparatively shorter than the plain URL. + # + # The generated link has no security relevance therefore is is not + # cryptographically hashed or secure and should not be seen as such, it is + # foremost to "compact" an URL address. + # + # @since 3.0 + # @default true + ## + 'smwgCompactLinkSupport' => false, + # # + + ### + # + # - SMW_CAT_NONE + # + # - SMW_CAT_REDIRECT: resolves redirects and errors in connection with categories + # + # - SMW_CAT_INSTANCE: Should category pages that use some [[Category:Foo]] + # statement be treated as elements of the category Foo? If disabled, then + # it is not possible to make category pages elements of other categories. + # See also SMW_CAT_HIERARCHY. (was $smwgCategoriesAsInstances) + # + # - SMW_CAT_HIERARCHY: Should a subcategory be considered a hierarchy element + # in the annotation process? If set to true, subcategories will always be + # interpreted as subclasses and automatically annotated with + # `Subcategory of`. (was $smwgUseCategoryHierarchy) + # + # @since 3.0 + ## + 'smwgCategoryFeatures' => SMW_CAT_REDIRECT | SMW_CAT_INSTANCE | SMW_CAT_HIERARCHY, + # # + + ### + # Settings for recurring events, created with the #set_recurring_event parser + # function: the default number of instances defined, if no end date is set, + # and the maximum number that can be defined, regardless of end date. + # + # @since 1.4.3 + ## + 'smwgDefaultNumRecurringEvents' => 100, + 'smwgMaxNumRecurringEvents' => 500, + # # + + ### + # Special:Browse related settings + # + # - SMW_BROWSE_NONE + # + # - SMW_BROWSE_TLINK: Should the toolbox of each content page show a link + # to browse the properties of that page using Special:Browse? This is a + # useful way to access properties and it is somewhat more subtle than + # showing a Factbox on every page. (was $smwgToolboxBrowseLink) + # + # - SMW_BROWSE_SHOW_INVERSE: Should the browse view for incoming links show + # the incoming links via its inverses, or shall they be displayed on the + # other side? (was $smwgBrowseShowInverse) + # + # - SMW_BROWSE_SHOW_INCOMING: Should the browse view always show the incoming links + # as well, and more of the incoming values? (was $smwgBrowseShowAll) + # + # - SMW_BROWSE_SHOW_GROUP: Should the browse view create group sections for + # properties that belong to the same property group? + # + # - SMW_BROWSE_SHOW_SORTKEY: Should the sortkey be displayed? + # + # - SMW_BROWSE_USE_API: Whether the browse display is to be generated using + # an API request or not. (was $smwgBrowseByApi) + # + # @since 3.0 + ## + 'smwgBrowseFeatures' => SMW_BROWSE_TLINK | SMW_BROWSE_SHOW_INCOMING | SMW_BROWSE_SHOW_GROUP | SMW_BROWSE_USE_API, + # # + + ### + # Should the search by property special page display nearby results when there + # are only a few results with the exact value? Switch this off if this page has + # performance problems. + # + # @since 2.1 enabled default types, to disable the functionality either set the + # variable to array() or false + ## + 'smwgSearchByPropertyFuzzy' => [ '_num', '_txt', '_dat', '_mlt_rec' ], + # # + + ### + # Number of results shown in the listings on pages in the Property and Concept + # namespaces as well as other services that require a limit. + # + # If a value of 0 is given, the respective listings are hidden completely. + # + # - `type` used for `Special:Types` (was $smwgTypePagingLimit) + # - `errorlist` used for `Special:ProcessingErrorList` + # - `concept` (was $smwgConceptPagingLimit) + # - `property` (was $smwgPropertyPagingLimit) + # + # Special:Browse + # - `valuelist.outgoingt` outgoing value list count + # - `valuelist.incoming` incoming value list count + # + # @since 3.0 + ## + 'smwgPagingLimit' => [ + 'type' => 50, + 'concept' => 250, + 'property' => 20, + 'errorlist' => 20, + + // Special:Browse + 'browse' => [ + 'valuelist.outgoing' => 30, + 'valuelist.incoming' => 20, + ] + ], + # # + + ### + # Property page to limit the query request for individual values + # + # How many values should at most be displayed for a page on the Property + # page and if large values are desired, consider reducing + # $smwgPropertyPagingLimit for better performance. + # + # @since 1.3 + ## + 'smwgMaxPropertyValues' => 3, + # # + + ### + # Property page list limits + # + # 'subproperty' limit the query request on subproperties + # 'redirect' limit the query request on redirects + # 'error' limit the query request on improper assignments + # + # `false` as value assignment will disable the display of a selected list + # + # @since 3.0 + ## + 'smwgPropertyListLimit' => [ + 'subproperty' => 25, + 'redirect' => 25, + 'error' => 10 + ], + # # + + ### + # Settings for inline queries ({{#ask:...}}) and for semantic queries in + # general. This can especially be used to prevent overly high server-load due + # to complex queries. The following settings affect all queries, wherever they + # occur. + # + # @since 1.0 + ## + 'smwgQEnabled' => true, // (De)activates all query related features and interfaces + 'smwgQMaxLimit' => 10000, // Max number of results *ever* retrieved, even when using special query pages. + # + # @since 1.5 + ## + // Should queries be executed even if some errors were detected? + 'smwgIgnoreQueryErrors' => true, + // A hint that points out errors is shown in any case. + ## + # + # @since 1.0 + ## + // Restrict level of sub-category inclusion (steps within category hierarchy) + 'smwgQSubcategoryDepth' => 10, + // Restrict level of sub-property inclusion (steps within property hierarchy) + 'smwgQSubpropertyDepth' => 10, + // (Use 0 to disable hierarchy-inferencing in queries) + 'smwgQDefaultNamespaces' => null, // Which namespaces should be searched by default? + // (value NULL switches off default restrictions on searching -- this is faster) + // Example with namespaces: 'smwgQDefaultNamespaces' => array(NS_MAIN, NS_FILE) + + ## + # Evaluate #redirects + # + # - SMW_EQ_NONE: Never evaluate #redirects as equality between page names + # + # - SMW_EQ_SOME: Evaluate #redirects as equality between page names, with + # possible performance-relevant restrictions depending on the storage + # engine + # + # - SMW_EQ_FULL: Evaluate #redirects as equality between page names in all + # cases + # + # @since 1.0 + # @default: SMW_EQ_SOME + ## + 'smwgQEqualitySupport' => SMW_EQ_SOME, + # # + + ### + # Sort features + # + # - SMW_QSORT_NONE + # + # - SMW_QSORT: General sort support for query results (was + # $smwgQSortingSupport) + # + # - SMW_QSORT_RANDOM: Random sorting support for query results (was + # $smwgQRandSortingSupport) + # + # - SMW_QSORT_UNCONDITIONAL: Allows an unconditional sort of results even if + # the property doesn't exists as part of the result set (#2823). The option + # isn't implemented for the SPARQLStore and the ElasticStore requires + # the `sort.property.must.exists` to be diabled to reflect the same sorting + # characteristics as with this setting enabled. + # + # @since 3.0 + ## + 'smwgQSortFeatures' => SMW_QSORT | SMW_QSORT_RANDOM, + # # + + ### + # List of comparator characters + # + # Comparators supported by queries with available entries being: + # + # < (smaller than) if $smwStrictComparators is false, it's actually smaller + # than or equal to + # > (greater than) if $smwStrictComparators is false, it's actually bigger + # than or equal to + # ! (unequal to) + # ~ (pattern with '*' as wildcard) + # !~ (not a pattern with '*' as wildcard, only for Type:String, need to be + # placed before ! and ~ to work correctly) + # ≤ (smaller than or equal to) + # ≥ (greater than or equal to) + # + # Extra compartors that in case of an enabled full-text index uses the primary + # LIKE/NLIKE match operation with operators being: + # + # like: to express LIKE use + # nlike: to express NLIKE use + # + # If unsupported comparators are used, they are treated as part of the + # queried value. + # + # @since 1.0 + ## + 'smwgQComparators' => '<|>|!~|!|~|≤|≥|<<|>>|~=|like:|nlike:|in:|not:|phrase:', + # # + + ### + # Sets whether the > and < comparators should be strict or not. If they are strict, + # values that are equal will not be accepted. + # + # @since 1.5.3 + ## + 'smwStrictComparators' => false, + + // To be used starting with 3.x (due to misspelling) + 'smwgQStrictComparators' => false, + # # + + ### + # Further settings for queries. The following settings affect inline queries + # and querying special pages. Essentially they should mirror the kind of + # queries that should immediately be answered by the wiki, using whatever + # computations are needed. + # + # @since 1.0 + ## + 'smwgQMaxSize' => 16, // Maximal number of conditions in queries, use format=debug for example sizes + 'smwgQMaxDepth' => 4, // Maximal property depth of queries, e.g. [[rel::[[rel2::Test]]]] has depth 2 + ## + + ### + # Expensive threshold + # + # The threshold defined in seconds denotes the ceiling as to when a #ask or + # #show call is classified as expensive and will count towards the + # $smwgQExpensiveExecutionLimit setting. + # + # @since 3.0 + # @default 10 + ## + 'smwgQExpensiveThreshold' => 10, + # # + + ### + # Limit of expensive #ask/#show functions + # + # The limit will count all classified #ask/#show parser functions and restricts + # further use on pages that exceed that limit. + # + # @since 3.0 + # @default false (== no limit) + ## + 'smwgQExpensiveExecutionLimit' => false, + # # + + ### + # The below setting defines which query features should be available by + # default. + # + # Examples: + # only cateory intersections: 'smwgQFeatures' => SMW_CATEGORY_QUERY | SMW_CONJUNCTION_QUERY, + # only single concepts: 'smwgQFeatures' => SMW_CONCEPT_QUERY, + # anything but disjunctions: 'smwgQFeatures' => SMW_ANY_QUERY & ~SMW_DISJUNCTION_QUERY, + # The default is to support all basic features. + # + # @since 1.2 + ## + 'smwgQFeatures' => SMW_PROPERTY_QUERY | SMW_CATEGORY_QUERY | SMW_CONCEPT_QUERY | SMW_NAMESPACE_QUERY | SMW_CONJUNCTION_QUERY | SMW_DISJUNCTION_QUERY, + # # + + ### + # Filter duplicate query segments + # + # Experimental feature that allows to filter duplicate query segments from the + # query build process to eliminate computational effort for segments that + # represent that same query signature. + # + # @since 2.5 + # @default: false + ## + 'smwgQFilterDuplicates' => false, + # # + + ### + # Settings about printout of (especially inline) queries: + # + # @since 1.0 + ## + 'smwgQDefaultLimit' => 50, // Default number of rows returned in a query. Can be increased with limit=num in #ask + 'smwgQMaxInlineLimit' => 500, // Max number of rows ever printed in a single inline query on a single page. + 'smwgQPrintoutLimit' => 100, // Max number of supported printouts (added columns in result table, ?-statements) + 'smwgQDefaultLinking' => 'all', // Default linking behavior. Can be one of "none", "subject" (first column), "all". + # + # @since 2.1 + ## + 'smwgQUpperbound' => 5000, // Max number of rows ever printed in a single inline query on a single page with an offset. + ## + + ### + # Further settings for queries. The following settings affect queries that are + # part of concept pages. These are usually chosen to be les restricted than + # inline queries, since there are two other means for controling their use: + # (1) Concept queries that would not be allowed as normal queries will not be + # executed directly, but can use pre-computed results instead. This is the + # default. + # (2) The whole Concept: namespace can be restricted (using some suitable + # MediaWiki extension) to an experienced user group that may create more + # complex queries responably. Other users can employ thus defined concepts in + # their queries. + ## + 'smwgQConceptCaching' => CONCEPT_CACHE_HARD, // Which concepts should be displayed only if available from cache? + // CONCEPT_CACHE_ALL -- show concept elements anywhere only if they are cached + // CONCEPT_CACHE_HARD -- show without cache if concept is not harder than permitted inline queries + // CONCEPT_CACHE_NONE -- show all concepts even without any cache + // In any cases, caches will always be used if available. + 'smwgQConceptMaxSize' => 20, // Same as $smwgQMaxSize, but for concepts + 'smwgQConceptMaxDepth' => 8, // Same as $smwgQMaxDepth, but for concepts + + // Same as $smwgQFeatures but for concepts + 'smwgQConceptFeatures' => SMW_PROPERTY_QUERY | SMW_CATEGORY_QUERY | SMW_NAMESPACE_QUERY | + SMW_CONJUNCTION_QUERY | SMW_DISJUNCTION_QUERY | SMW_CONCEPT_QUERY, + + // Cache life time in minutes. If a concept cache exists but is older than + // this, SMW tries to recompute it, and will only use the cache if this is not + // allowed due to settings above: + 'smwgQConceptCacheLifetime' => 24 * 60, + # # + + ## + # Predefined result formats for queries + # + # Array of available formats for formatting queries. Can be redefined in + # the settings to disallow certain formats or to register extension formats. + # To disable a format, do "unset($smwgResultFormats['template'])," Disabled + # formats will be treated like if the format parameter had been omitted. The + # formats 'table' and 'list' are defaults that cannot be disabled. The format + # 'broadtable' should not be disabled either in order not to break Special:ask. + ## + 'smwgResultFormats' => [ + 'table' => 'SMW\Query\ResultPrinters\TableResultPrinter', + 'broadtable' => 'SMW\Query\ResultPrinters\TableResultPrinter', + 'list' => 'SMW\Query\ResultPrinters\ListResultPrinter', + 'plainlist' => 'SMW\Query\ResultPrinters\ListResultPrinter', + 'ol' => 'SMW\Query\ResultPrinters\ListResultPrinter', + 'ul' => 'SMW\Query\ResultPrinters\ListResultPrinter', + 'category' => 'SMW\Query\ResultPrinters\CategoryResultPrinter', + 'embedded' => 'SMW\Query\ResultPrinters\EmbeddedResultPrinter', + 'template' => 'SMW\Query\ResultPrinters\ListResultPrinter', + 'count' => 'SMW\Query\ResultPrinters\NullResultPrinter', + 'debug' => 'SMW\Query\ResultPrinters\NullResultPrinter', + 'feed' => 'SMW\Query\ResultPrinters\FeedExportPrinter', + 'csv' => 'SMW\Query\ResultPrinters\CsvFileExportPrinter', + 'templatefile' => 'SMW\Query\ResultPrinters\TemplateFileExportPrinter', + 'dsv' => 'SMW\Query\ResultPrinters\DsvResultPrinter', + 'json' => 'SMW\Query\ResultPrinters\JsonResultPrinter', + 'rdf' => 'SMW\Query\ResultPrinters\RdfResultPrinter' + ], + # # + + ## + # Predefined aliases for result formats + # + # Array of available aliases for result formats. Can be redefined in + # the settings to disallow certain aliases or to register extension aliases. + # To disable an alias, do "unset($smwgResultAliases['alias'])," Disabled + # aliases will be treated like if the alias parameter had been omitted. + # + # @since 1.8 + ## + 'smwgResultAliases' => [ + 'feed' => [ 'rss' ], + 'templatefile' => [ 'template file' ], + 'plainlist' => [ 'plain' ] + ], + # # + + /** + * Affects format=list. + * + * When set to false (the default), format=list will result in lists with HTML markup. + * In this case you can get a plain list via format=plainlist. + * + * To also get plain lists (without HTML markup) when using format=list, set this setting to true. + * In SMW versions older than 3.0 format=list always resulted in a plain list, so this setting allows restoring old behavior. + * + * @since 3.1.2 + */ + 'smwgPlainList' => false, + + # # + # Result printer features + # + # - SMW_RF_NONE + # - SMW_RF_TEMPLATE_OUTSEP, #2022 (use the sep parameter as outer separator) + # + # @since 2.3 + ## + 'smwgResultFormatsFeatures' => SMW_RF_TEMPLATE_OUTSEP, + # # + + ### + # Handling of `RemoteRequest` features + # + # - SMW_REMOTE_REQ_SEND_RESPONSE allows Special:Ask to respond to remote requests in + # combination with $smwgQuerySources and the `RemoteRequest`. + # + # - SMW_REMOTE_REQ_SHOW_NOTE shows a note for each remote requests so users are aware + # that results retrieved from an external source. + # + # If `$smwgQuerySources` contains no entries then a remote request to a source + # is not supported and only sources that are available through the setting + # can be selected as remote source. + # + # @since 3.0 + # @default: SMW_REMOTE_REQ_SEND_RESPONSE | SMW_REMOTE_REQ_SHOW_NOTE + ## + 'smwgRemoteReqFeatures' => SMW_REMOTE_REQ_SEND_RESPONSE | SMW_REMOTE_REQ_SHOW_NOTE, + # # + + ### + # + # Predefined list of sources that can return query results + # + # Array of available sources for answering queries. Can be redefined in + # the settings to register new sources (usually an extension will do so + # on installation). Unknown source will be rerouted to the local wiki. + # Note that the basic installation comes with no additional source besides + # the local source (which in turn cannot be disabled or set explicitly). + # + # A query class handler is required to implement the `QueryEngine` interface + # and if it needs to be aware of the store, it should also implement the + # `StoreAware` interface. + # + # @since 1.4.3 + ## + 'smwgQuerySources' => [ + // 'local' => '', + // 'mw-wiki-foo' => [ '\SMW\Query\RemoteRequest', 'url' => 'http://example.org/wiki/index.php' ], + ], + # # + + ### Default property type + # Undefined properties (those without pages or whose pages have no "has type" + # statement) will be assumed to be of this type. This is an internal type id. + # See the file languages/SMW_LanguageXX.php to find what IDs to use for + # datatpyes in your language. The default corresponds to "Type:Page". + # + # @since 1.1.2 + ## + 'smwgPDefaultType' => '_wpg', + # # + + ### + # The maximal number that SMW will normally display without using scientific exp + # notation. The deafult is rather large since some users have problems understanding + # exponents. Scineitfic applications may prefer a smaller value for concise display. + # + # @since 1.4.3 + ## + 'smwgMaxNonExpNumber' => 1000000000000000, + # # + + ### + # SMW defers some tasks until after a page was edited by using the MediaWiki + # job queueing system (see https://www.mediawiki.org/wiki/Manual:Job_queue). + # For example, when the type of a property is changed, all affected pages will + # be scheduled for (later) update. If a wiki generates too many jobs in this + # way (Special:Statistics and "showJobs.php" can be used to check that), the + # following setting can be used to disable jobs. Note that this will cause some + # parts of the semantic data to get out of date, so that manual modifications + # or the use of SMW_refreshData.php might be needed. + # + # @since 1.1.2 + ## + 'smwgEnableUpdateJobs' => true, + # # + + ### + # JobQueue watchlist + # + # This setting allows to display a personal bar link that shows the queue + # sizes for listed jobs. The information presented is fetched from the + # MediaWiki API and might be slightly inaccurate but should allow to make + # assumptions as to where the system needs attention. + # + # @see https://www.mediawiki.org/wiki/Manual:Job_queue#Special:Statistics + # + # To make this feature available, assign a simple list to the setting as in: + # + # $GLOBALS['smwgJobQueueWatchlist'] = [ + # 'smw.update', + # 'smw.parserCachePurge', + # 'smw.fulltextSearchTableUpdate', + # 'smw.changePropagationUpdate' + # ] + # + # Information are not displayed unless a user enables the setting in his or + # her preference setting. + # + # @since 3.0 + # @default disabled (empty array) + ## + 'smwgJobQueueWatchlist' => [], + # # + + ### + # List of enabled special page properties. + # + # - `_MDAT` Modification date is enabled by default for backward compatibility. + # - `_TRANS` Add annotations (language, source etc. ) when a page is + # indentified as translation page (as done by the Translation extension) + # - `_ATTCH_LINK` tracks embedded files and images + # + # Extend array to enable other properties: + # $smwgPageSpecialProperties[ => '_CDAT', + # Or: + # array_merge( $smwgPageSpecialProperties, array( '_CDAT' ) ), + # Or rewrite entire array: + # 'smwgPageSpecialProperties' => array( '_MDAT', '_CDAT' ), + # + # However, DO NOT use `+=' operator! This DOES NOT work: + # $smwgPageSpecialProperties += array( '_MDAT' ), + # + # @since 1.7 + ## + 'smwgPageSpecialProperties' => [ '_MDAT' ], + # # + + ### + # Change propagation watchlist + # + # Properties (usually given as internal ids or DB key versions of property + # titles) that are relevant for declaring the behavior of a property P on a + # property page in the sense that changing their values requires that all + # pages that use P must be processed again. + # + # For example, if _PVAL (allowed values) for a property change, then pages + # must be processed again. This setting is not normally changed by users but + # by extensions that add new types that have their own additional declaration + # properties. + # + # @since 1.5 + ## + 'smwgChangePropagationWatchlist' => [ + '_PVAL', '_LIST', '_PVAP', '_PVUC', '_PDESC', '_PPLB', '_PREC', '_PDESC', + '_SUBP', '_SUBC', '_PVALI' + ], + # # + + ## + # Change propagation protection + # + # An administrative intervention to disable the protection for an active change + # propagation. + # + # @since 3.0 + # @default true + ## + 'smwgChangePropagationProtection' => true, + # # + + ### + # By default, DataTypes (Date, URL etc.) are registered with a corresponding + # property of the same name to match the expected semantics. Yet, users can + # decide to change the behaviour by exempting listed DataTypes from the property + # registration process. + # + # @since 2.5 + ## + 'smwgDataTypePropertyExemptionList' => [ + 'Record', + 'Reference', + 'Keyword' + ], + # # + + ## + # Default output formatter + # + # Users who want to alter the default output for a specific type can do so by + # setting a specify default formatter. + # + # The expected form is: + # + # [ <_typeID> => '' ] OR + # [ => '' ] OR + # [ => '' ] + # + # Only valid formatters will be considered for an individual type, no + # errors or exceptions are raised in case of an improper formatter. + # + # The formatter is applied to values displayed on special pages + # as well. + # + # @since 3.0 + # @default: [] + ## + 'smwgDefaultOutputFormatters' => [ + // '_dat' => 'LOCL', + // 'Boolean' => 'tick', + ], + # # + + // some default settings which usually need no modification + + ### + # -- FEATURE IS DISABLED -- + # Setting this to true allows to translate all the labels within + # the browser GIVEN that they have interwiki links. + # + # @since 0.7 + ## + 'smwgTranslate' => false, + # # + + ### + # -- FEATURE IS DISABLED -- + # If you want to import ontologies, you need to install RAP, + # a free RDF API for PHP, see + # http://wifo5-03.informatik.uni-mannheim.de/bizer/rdfapi/index.html + # The following is the path to your installation of RAP + # (the directory where you extracted the files to) as seen + # from your local filesystem. Note that ontology import is + # highly experimental at the moment, and may not do what you + # extect. + # + # @since 1.0 + ## + // 'smwgRAPPath' => $smwgIP . 'libs/rdfapi-php', + // 'smwgRAPPath' => '/another/example/path/rdfapi-php', + ## + + ### + # List of Special:SemanticMediaWiki (or Special:SMWAdmin) features + # https://www.semantic-mediawiki.org/wiki/Help:$smwgAdminFeatures + # + # - SMW_ADM_REFRESH: to initiate the repairing or updating of all wiki data + # - SMW_ADM_SETUP: Allows running database installation and upgrade + # - SMW_ADM_DISPOSAL: Allows access to the "Object ID lookup and disposal" + # feature and the "Outdated entities disposal" + # - SMW_ADM_PSTATS: Allows updating property statistics + # - SMW_ADM_FULLT: Allows rebuilding the fulltext search index + # - SMW_ADM_MAINTENANCE_SCRIPT_DOCS: Show maintenance scripts documentation tab + # - SMW_ADM_SHOW_OVERVIEW: Show the Overview tab + # + # Maintenance alerts + # + # - SMW_ADM_ALERT_LAST_OPTIMIZATION_RUN: Alerts when table optimization is + # overdue + # + # @since 2.5 + ## + 'smwgAdminFeatures' => + SMW_ADM_REFRESH | SMW_ADM_SETUP | SMW_ADM_DISPOSAL | SMW_ADM_PSTATS | SMW_ADM_FULLT | + SMW_ADM_MAINTENANCE_SCRIPT_DOCS | SMW_ADM_SHOW_OVERVIEW | SMW_ADM_ALERT_LAST_OPTIMIZATION_RUN, + # # + + ### + # Sets whether or not to refresh the pages of which semantic data is stored. + # + # @since 1.5.6 + ## + 'smwgAutoRefreshSubject' => true, + # # + + ### + # Semantic MediaWiki uses various cache instances and types to improve access + # and re-access to objects. `smwgMainCacheType` identifies the "main" type + # to be used for a persitent storage to a vendor (SQL, memcache, redis etc.) + # specific solution. + # + # `CACHE_ANYTHING` refers to settings available in `$wgMessageCacheType` or + # `$wgParserCacheType` if they are set. + # + # @see https://www.semantic-mediawiki.org/wiki/Help:Caching + # @see https://www.mediawiki.org/wiki/$wgMainCacheType + # + # @since 3.0 + # @default CACHE_ANYTHING + ## + 'smwgMainCacheType' => CACHE_ANYTHING, + # # + + ### + # CacheTTL settings + # + # Defines time to live for in Semantic MediaWiki used cache instances and + # requires $smwgMainCacheType to be set otherwise related settings will have + # no effect. + # + # - special.wantedproperties TTL (in sec, or false to disable it) for caching + # the lookup on wanted property usage + # + # - special.unusedproperties TTL (in sec, or false to disable it) for caching + # the lookup on unused property usage + # + # - special.properties TTL (in sec, or false to disable it) for caching the + # lookup on property usage + # + # - special.statistics TTL (in sec, or false to disable it) for caching the + # lookup on statistics + # + # - api.browse TTL (in sec, or false to disable it) for the API browse module + # as general cache + # + # - api.browse.pvalue TTL (in sec, or false to disable it) for the API browse + # pvalue module when requesting property values + # + # - api.browse.psubject TTL (in sec, or false to disable it) for the API browse + # psubject module when requesting property subjects + # + # - api.task TTL (in sec, or false to disable it) for the API task module + # + # @since 1.9 + ## + 'smwgCacheUsage' => [ + 'special.wantedproperties' => 3600, + 'special.unusedproperties' => 3600, + 'special.properties' => 3600, + 'special.statistics' => 3600, + 'table.statistics' => 3600, + 'api.browse' => 3600, + 'api.browse.pvalue' => 3600, + 'api.browse.psubject' => 3600, + 'api.task' => 3600, + 'api.table.statistics' => 3600 + ], + # # + + ### + # Sets whether or not to refresh semantic data in the store when a page is + # manually purged + # + # @since 1.9 + # + # @requires $smwgMainCacheType be set + # @default true + ## + 'smwgAutoRefreshOnPurge' => true, + # # + + ### + # Sets whether or not to refresh semantic data in the store when a page was + # moved + # + # @since 1.9 + # + # @requires $smwgMainCacheType be set + # @default true + ## + 'smwgAutoRefreshOnPageMove' => true, + # # + + ## + # List of user-defined fixed properties + # + # Listed properties are managed by its own fixed table (instad of a + # shared one) to allow for sharding large datasets with value assignments. + # + # The type definition is talen from the property page `[[Has type::...]]` and + # by default (if no type is defined) then the `smwgPDefaultType` is returned. + # + # Any change to the property type requires to run the `setupStore.php` script + # or `Special:SMWAdmin` table update. + # + # 'smwgFixedProperties' => array( + # 'Age', + # 'Has population' + # ), + # + # @see https://semantic-mediawiki.org/wiki/Fixed_properties + # @since 1.9 + # + # @default array() + ## + 'smwgFixedProperties' => [], + + # ## + # Sets a threshold value for when a property is being highlighted as "hardly + # begin used" on Special:Properties + # + # @since 1.9 + # + # default = 5 + ## + 'smwgPropertyLowUsageThreshold' => 5, + # # + + ### + # Hide properties where the usage count is zero on Special:Properties + # + # @since 1.9 + # + # default = true (legacy behaviour) + ## + 'smwgPropertyZeroCountDisplay' => true, + # # + + ### + # QueryProfiler related settings + # + # @note If these settings are changed, please ensure to run update.php/rebuildData.php + # + # - smwgQueryProfiler can be set false to disable its functionality but it + # may impact secondary processes that rely on profile information to be + # available (Notification system etc.) + # + # - SMW_QPRFL_DUR to record query duration (the time + # between the query result selection and output its) + # + # - SMW_QPRFL_PARAMS to record query parameters that are necessary + # for allowing to generate a query result using a background job + # + # $smwgQueryProfiler = SMW_QPRFL_DUR | SMW_QPRFL_PARAMS; + # + # @since 1.9 + # @default true + ## + 'smwgQueryProfiler' => true, + # # + + ### + # Enables SMW specific annotation and content processing for listed SpecialPages + # + # @since 1.9 + ## + 'smwgEnabledSpecialPage' => [ 'Ask' ], + # # + + ### + # Search engine to fall back to in case SMWSearch is used as custom search + # engine but is unable to interpret the search term as an SMW query + # + # Leave as null to select the default search engine for the selected database + # type (e.g. SearchMySQL, SearchPostgres or SearchOracle), or set to a class + # name to override to a custom search engine. + # + # @since 2.1 + ## + 'smwgFallbackSearchType' => null, + # # + + ### + # If enabled it will display help information on the edit page to support users + # unfamiliar with SMW when extending page content. + # + # @since 2.1 + ## + 'smwgEnabledEditPageHelp' => false, + # # + + ### + # Various MediaWiki update operations in MW 1.26+ started to use DeferredUpdates + # and to ensure that the Store update follows in queue of updates made to a page + # this setting should be enabled by default for MW 1.26 onwards. + # + # It will improve page responsiveness for purge and move action significantly. + # + # @since 2.4 + ## + 'smwgEnabledDeferredUpdate' => true, + # # + + ### + # Regulates task specific settings for the post-edit process. + # + # The main objective is to defer secondary updates until after the GET request + # has been finalized so that resource requirements are part of an API request + # (and not a GET) and hereby ensures that a client remains responsive + # independent of the update workload. + # + # `run-jobs` specifies jobs that should be executed on a post-edit to run in a + # timely manner independent of a users job scheduler environment. The number + # indicates the expected number of jobs to be executed per request. + # + # `purge-page` + # `on-outdated-query-dependency` actively does a page purge via the API + # so that not only the parser cache is refreshed but also ensures that any + # newly annotation values (such as annotations depending on some query input) + # are stored and recomputed. + # + # @experimental + # + # `check-query` The display of query results and the storage of entities that + # make up the results of a query are two distinct processes. The display + # normally happens before the storage due to how the MW parser works meaning + # that a query can only display the most recent results after a page has + # been processed and rendered while the storage is being deferred (or in case + # of an external store is influenced by the network lag). + # + # The `check-query` uses the `post-edit` event to run registered queries and + # if necessary reloads the page (hereby refreshes the results) in case the + # result is different by comparing the `result_hash` from before and after. + # To determine the query state, the `post-edit` has to invoke the API (as + # background task) which has to probe the query and to only run the query once + # for the page that embeds the query, it is strongly recommended that this + # option is only enabled together with: + # - the query cache (@see $smwgQueryResultCacheType) and + # - the query links store (@see $smwgEnabledQueryDependencyLinksStore) + # + # @since 3.0 + ## + 'smwgPostEditUpdate' => [ + 'check-query' => false, + 'run-jobs' => [ + 'smw.fulltextSearchTableUpdate' => 1 + ], + 'purge-page' => [ + 'on-outdated-query-dependency' => true + ] + ], + # # + + ### + # Query dependency and parser cache invalidation + # + # If enabled it will store dependencies for queries allowing it to purge + # the ParserCache on subjects with embedded queries that contain altered entities. + # + # @since 2.3 (experimental) + # @default false + ## + 'smwgEnabledQueryDependencyLinksStore' => false, + # # + + ### + # Relates to `smwgEnabledQueryDependencyLinksStore` and defines property keys + # to be excluded from the dependency detection. + # + # For example, to avoid a purge process being triggered for each altered subobject + # '_SOBJ' is excluded from the processing but it will not exclude any properties + # defined by a subobject (given that it is not part of an extended exclusion list). + # + # `_MDAT` is excluded to avoid a purge on each page edit with a `Modification date` + # change that would otherwise trigger a dependency update. + # + # '_ASKDU' changes to the duration of a query should not trigger an update of + # possible query dependencies (as this has no bearing on the result list). + # + # @since 2.3 (experimental) + ## + 'smwgQueryDependencyPropertyExemptionList' => [ + '_MDAT', '_SOBJ', '_ASKDU', '_ASKDE', '_ASKSI', '_ASKFO', '_ASKST' + ], + # # + + ### + # Settings for OWL/RDF export + # + # Whether or not "normal" users can request an recursive export. + # + # @since 0.7 + # @default = false + ## + 'smwgAllowRecursiveExport' => false, + # # + + ### + # Settings for OWL/RDF export + # + # Whether or not backlinks should be included by default. + # + # @since 0.7 + # @default = true + ## + 'smwgExportBacklinks' => true, + # # + + ### + # OWL/RDF export namespace for URIs/IRIs + # + # Will be set automatically if nothing is given, but in order to make pretty + # URIs you will need to set this to something nice and adapt your Apache + # configuration appropriately. + # + # @see https://www.semantic-mediawiki.org/wiki/Help:$smwgNamespace + # @see https://www.semantic-mediawiki.org/wiki/Help:EnableSemantics + # @see https://www.semantic-mediawiki.org/wiki/Help:Pretty_URIs + # + # Example: + # 'smwgNamespace' => "http://example.org/id/" + # + # @since 1.0 + # @default null + ## + 'smwgNamespace' => null, + # # + + ### + # The setting is introduced the keep backwards compatibility with existing Rdf/Turtle + # exports. The `aux` marker is expected only used to be used for selected properties + # to generate a helper value and not for any other predefined property. + # + # Any property that does not explicitly require an auxiliary value (such `_dat`/ + # `_geo` type values) now uses its native as condition descriptor (`Has_subobject` + # instead of `Has_subobject-23aux`) + # + # For SPARQL repository users that don't want to run an a `rebuildData.php`, + # the setting has to be TRUE. + # + # This BC setting is planned to vanish with 3.x. + # + # @since 2.3 + ## + 'smwgExportBCAuxiliaryUse' => false, + # # + + ## + # The preferred form is to use canonical identifiers (Category:, Property:) + # instead of localized names to ensure that RDF/Query statements are language + # agnostic and do work even after the site/content language changes. + # + # This BC setting is planned to vanish with 3.x. + # + # @since 2.3 + ## + 'smwgExportBCNonCanonicalFormUse' => false, + # # + + ## + # Export resources using IRIs + # + # Instead of ASCII encoded URI's, allow resources to be exported as IRI's (RFC + # 3987). + # + # @see https://www.w3.org/TR/rdf11-concepts/#section-IRIs + # + # @since 2.5 + # @default true + ## + 'smwgExportResourcesAsIri' => true, + # # + + ### + # Features related to text and annotion parsing + # + # - SMW_PARSER_NONE + # + # - SMW_PARSER_STRICT: The default interpretation (strict) is to find a single + # triple such as [[property::value:partOfTheValue::alsoPartOfTheValue]] where + # in case the strict mode is disabled multiple properties can be assigned + # using a [[property1::property2::value]] notation but may cause value + # strings to be interpret unanticipated in case of additional colons. + # + # - SMW_PARSER_UNSTRIP: Support decoding (unstripping) of hidden text elements + # (e.g. `` as in `[[Has description::{{#ask: HasStripMarkers + # }}]]` etc.) within an annotation value (can only be stored together + # with a `_txt` type property). + # + # - SMW_PARSER_INL_ERROR: Should warnings be displayed in wikitexts right after + # the problematic input? This affects only semantic annotations, not warnings + # that are displayed by inline queries or other features. (was $smwgInlineErrors) + # + # - SMW_PARSER_HID_CATS: Switch to omit hidden categories (marked with + # __HIDDENCAT__) from the annotation process. Changing the setting requires + # to run a full rebuild to ensure hidden categories are discarded during + # the parsing process. (was $smwgShowHiddenCategories 1.9) + # + # - SMW_PARSER_LINV: Support parsing of "links in values" for annotations like + # [[SomeProperty::Foo [[link]] in [[Bar::AnotherValue]]]] (was $smwgLinksInValues + # with SMW_LINV_OBFU, SMW_LINV_PCRE is no longer available) + # + # @since 3.0 + ## + 'smwgParserFeatures' => SMW_PARSER_STRICT | SMW_PARSER_INL_ERROR | SMW_PARSER_HID_CATS, + # # + + ## + # Features or restrictions for specific DataValue types + # + # - SMW_DV_NONE + # + # - SMW_DV_PROV_REDI (PropertyValue) If a property is redirected to a different + # target (Foo -> Bar) then follow it by default in order to allow query results + # to be displayed equivalent for both queries without having to adjust + # (or change) a query. This flag is mainly provided to restore backwards + # compatibility where behaviour is not expected to be altered, nevertheless it is + # recommended that the setting is enabled to improve user friendliness in terms + # of query execution. + # + # - SMW_DV_MLTV_LCODE (MonolingualTextValue) is to require a language code in order + # for a DV to be completed otherwise a MLTV can operate without a language code + # + # - SMW_DV_PVAP (Allows pattern) to allow regular expression pattern matching + # when `Allows pattern` property is assigned to user-defined property + # + # - SMW_DV_WPV_DTITLE (WikiPageValue) is to allow requesting a lookup for a display + # title and if present will be used as caption for the invoked subject + # + # - SMW_DV_PROV_DTITLE (PropertyValue) in combination with SMW_DV_WPV_DTITLE, If + # enabled it will attempt to resolve a property label by matching it against a + # possible assigned property "Display title of" value. For example, property + # "Foo" has "Display title of" "hasFoolishFoo" where "hasFoolishFoo" is being + # resolved as "Foo" when creating annotations. Currently, this uses an + # uncached lookup and therefore is disabled by default to avoid a possible + # performance impact (which has not been established or analyzed). + # + # - SMW_DV_PVUC (Uniqueness constraint) to specify that a property can only + # assign a value that is unique in its literal representation (the state of + # uniqueness for a value is established by the fact that it is assigned before + # any other value of the same representation to a property). + # + # - SMW_DV_TIMEV_CM (TimeValue) to indicate the CalendarModel if is not a + # CM_GREGORIAN + # + # - SMW_DV_NUMV_USPACE (Number/QuantityValue) to preserve spaces within + # unit labels + # + # - SMW_DV_PPLB to support the use of preferred property labels + # + # - SMW_DV_PROV_LHNT (PropertyValue) to output a p hint marker on + # properties that use a preferred label + # + # - SMW_DV_WPV_PIPETRICK WikiPageValue use a full pipe trick when rendering + # its caption + # + # @since 2.4 + ## + 'smwgDVFeatures' => SMW_DV_PROV_REDI | SMW_DV_MLTV_LCODE | SMW_DV_PVAP | SMW_DV_WPV_DTITLE | SMW_DV_TIMEV_CM | SMW_DV_PPLB | SMW_DV_PROV_LHNT, + # # + + ## + # Fulltext search support + # + # If enabled, it will store text elements using a separate table in order for + # the SQL back-end to use the special fulltext index operations provided by + # the SQL engine. + # + # - Tested with MySQL/MariaDB + # - Tested with SQLite + # + # @since 2.5 + # @default: false + ## + 'smwgEnabledFulltextSearch' => false, + # # + + ## + # Throttle index updates + # + # The objective is to postpone an update by relying on a deferred process that + # runs the index update decoupled from the storage back-end update. + # + # + # If a user wants to push updates to the updater immediately then this setting needs + # to be disabled but by disabling this setting update lag may increase due to having + # the process being executed synchronously to the wikipage update. + # + # @since 2.5 + # @default: true + ## + 'smwgFulltextDeferredUpdate' => true, + # # + + ## + # Fulltext search table options + # + # This setting directly influences how a ft table is created therefore change + # the content with caution. + # + # - MySQL version 5.5 or later with only MyISAM and InnoDB storage engines + # to support full-text search (according to sources) + # + # - MariaDB full-text indexes can be used only with MyISAM and Aria tables, + # from MariaDB 10.0.5 with InnoDB tables and from MariaDB 10.0.15 + # with Mroonga tables (according to sources) + # + # - SQLite FTS3 has been available since version 3.5, FTS4 were added with + # version 3.7.4, and FTS5 is available with version 3.9.0 (according to + # sources), The setting allows to specify extra arguments after the module + # engine such as array( 'FTS4', 'tokenize=porter' ). + # + # It is possible to extend the option description (MySQL 5.7+) with + # 'mysql' => array( 'ENGINE=MyISAM, DEFAULT CHARSET=utf8', 'WITH PARSER ngram' ) + # + # @since 2.5 + ## + 'smwgFulltextSearchTableOptions' => [ + 'mysql' => [ 'ENGINE=MyISAM, DEFAULT CHARSET=utf8' ], + 'sqlite' => [ 'FTS4' ] + ], + # # + + ## + # Exempted properties + # + # List of property keys for which index and fulltext match operations are + # exempted because there are either insignificant, mostly represent single + # terms, or contain other characteristics that make them non preferable when + # searching via the fulltext index. + # + # Listed properties will use the standard LIKE/NLIKE match operation when used + # in connection with the ~/!~ expression. + # + # @since 2.5 + ## + 'smwgFulltextSearchPropertyExemptionList' => [ + '_ASKFO', '_ASKST', '_ASKPA', '_IMPO', '_LCODE', '_UNIT', '_CONV', + '_TYPE', '_ERRT', '_INST', '_ASK', '_SOBJ', '_PVAL', '_PVALI', + '_REDI', '_CHGPRO' + ], + # # + + ## + # List of indexable DataTypes + # + # - SMW_FT_BLOB property values of type Blob (Text) + # - SMW_FT_URI property values of type URI + # - SMW_FT_WIKIPAGE property values of type Page + # + # SMW_FT_WIKIPAGE has not been added as default value as no performance + # impact analysis is available as to how indexing and search performance would + # be affected by a wiki with a large pool of pages (10K+) or extended page + # type value assignments on a full-text index. + # + # Enabling SMW_FT_WIKIPAGE will support the same search features (case + # insensitivity, phrase matching etc.) as available for Text or URI values + # when searches are executed using the ~/!~. + # + # @since 2.5 + # @default: SMW_FT_BLOB | SMW_FT_URI + ## + 'smwgFulltextSearchIndexableDataTypes' => SMW_FT_BLOB | SMW_FT_URI, + # # + + ## + # Describes the minimum word/token length to help to decide whether MATCH or LIKE + # operators are to be used for a condition statement. + # + # For MySQL it is expected it corresponds to either innodb_ft_min_token_size or + # ft_min_word_len + # + # @since 2.5 + ## + 'smwgFulltextSearchMinTokenSize' => 3, + # # + + ## + # To detect a possible language candidate from an indexable text element. + # + # TextCatLanguageDetector, a large list of languages does have a detrimental + # influence on the performance when trying to detect a language from a free text. + # + # Stopwords are only applied after language detection has been enabled. + # + # @see https://github.com/wikimedia/wikimedia-textcat + # + # @since 2.5 + # @default empty list (language detection is disabled by default) + ## + 'smwgFulltextLanguageDetection' => [ + // 'TextCatLanguageDetector' => array( 'en', 'de', 'fr', 'es', 'ja', 'zh' ) + // 'CdbNGramLanguageDetector' => array( 'en', 'de', 'fr', 'es', 'ja', 'zh' ) + ], + # # + + ## + # MySQL's "Global Transaction Identifier" will create issues when executing + # queries that rely on temporary tables, according to the documentation "... the + # operations listed here cannot be used ... CREATE TEMPORARY TABLE statements + # inside transactions". + # + # MySQL Global transaction identifier is a unique transaction ID assigned to + # every transaction that happens in the MySQL database. + # + # Issue is encountered when @@GLOBAL.ENFORCE_GTID_CONSISTENCY = 1 + # + # @see https://dev.mysql.com/doc/refman/5.6/en/replication-options-gtids.html + # @see https://support.software.dell.com/kb/184275 + # + # This setting (if enabled) will force an auto commit operation for temporary + # tables to avoid the described limitation. + # + # @since 2.5 + # @default false + ## + 'smwgQTemporaryTablesAutoCommitMode' => false, + # # + + ### + # Support to store a computed subject list that were fetched from the QueryEngine + # (not the string result generated from a result printer) and improve general + # page-loading time for articles that contain embedded queries and decrease + # server load on query requests. + # + # It is recommended that `smwgEnabledQueryDependencyLinksStore` is enabled + # to make use of automatic query results cache eviction. + # + # Enabling this option will render queries with a new ID to optimize queries + # that result in the same signature (fingerprint) to lower the rate of cache + # fragmentation. + # + # @since 2.5 (experimental) + # @default: CACHE_NONE (== feature is disabled) + ## + 'smwgQueryResultCacheType' => CACHE_NONE, + # # + + ### + # Specifies the lifetime of embedded query and their results fetched from a + # QueryEngine for when `smwgQueryResultCacheType` is enabled. + # + # @since 2.5 + ## + 'smwgQueryResultCacheLifetime' => 60 * 60 * 24 * 7, // a week + ## + + ### + # Specifies the lifetime of non-embedded queries (Special:Ask, API etc.) and their + # results that are fetched from a QueryEngine for when `smwgQueryResultCacheType` is + # enabled. + # + # This setting can also be used to minimize a possible DoS vector by preventing + # an advisory to make unlimited query requests from either Special:Ask or the + # API that may lock the DB due to complex query answering and instead being + # rerouted to the cache once a result has been computed. + # + # @note Non-embedded queries cannot not be tracked using the `QueryDependencyLinksStore` + # (subject is being missing that would identify the entity) therefore + # an auto-purge mechanism as in case of an embedded entity is not possible hence + # the lifetime should be carefully selected to provide the necessary means for a + # user and the application. + # + # 0/false as setting to disable caching of non-embedded queries. + # + # @since 2.5 + ## + 'smwgQueryResultNonEmbeddedCacheLifetime' => 60 * 10, // 10 min + ## + + ### + # Enables the manual refresh for embedded queries when the action=purge event is + # triggered. + # + # @since 2.5 + ## + 'smwgQueryResultCacheRefreshOnPurge' => true, + # # + + ## + # Property create protection + # + # If enabled, users are able to annotate property values using existing properties + # but new properties can only be created by those with the assigned "authority" + # (aka user right). + # + # Changes to a property specification requires the permission as well. + # + # @since 3.0 + # @default false + ## + 'smwgCreateProtectionRight' => false, + # # + + ### + # Page edit protection + # + # To prevent accidental changes of content especially to those of property + # definitions, this setting allows with the help of the `Is edit protected` + # property to prevent editing on pages that have annotate the property with + # `true`. + # + # Once the property is set, only users with the listed user right are able + # to edit and/or revoke the restriction on the selected page. + # + # `smw-pageedit` has been deployed as extra right to be distinct from existing + # edit protections + # + # To enable this functionality either assign `smw-pageedit` or any other + # right to the variable to activate an edit protection. + # + # @since 2.5 + # @default false + ## + 'smwgEditProtectionRight' => false, + # # + + ## + # Similarity lookup exemption property + # + # The listed property is used to exclude a property from the similarity + # lookup in case the comparing property contains an annotation value with the + # exemption property. + # + # For example, the property `Governance level` may define + # [[owl:differentFrom::Governance level of]] which would result in a suppressed + # similarity lookup for both `Governance level` and `Governance level of` + # property when compared to each other. + # + # @since 2.5 + ## + 'smwgSimilarityLookupExemptionProperty' => 'owl:differentFrom', + # # + + ## + # Property label invalid characters + # + # Listed characters are categorized as invalid for a property label and will + # result in an error. + # + # @see #1568, #1638, #3134 + # + # @since 2.5 + ## + 'smwgPropertyInvalidCharacterList' => [ + // Common characters + '[', ']', '|', '<', '>', '{', '}', '+', '–', '%', "\r", "\n", + '?', '*', '!' + ], + # # + + ## + # Properties classified as retired/no longer in use + # + # Listed properties will be removed from the entity table hereby avoids + # references or display of those classified as retired. + # + # The system normally leaves properties untouched (once created) but this + # setting allows them to be marked as retired and eventually removed from + # the system. + # + # @since 3.1 + ## + 'smwgPropertyRetiredList' => [ + + // No longer valid predefined property prefixes + '_SF_', '_SD_' + ], + # # + + ## + # Reserved property names + # + # Listed names are reserved as they may interfere with Semantic MediaWiki or + # MediaWiki itself. + # + # Removing default names from the list is not recommended (extending the list + # is supported and may be used to customize use cases for an individual wiki). + # + # The list can contain simple names or identifiers that start with + # `smw-property-reserved-` to link to a translatable representation that + # matches a string in a content language. + # + # @see #2835, #2840 + # + # @since 3.0 + ## + 'smwgPropertyReservedNameList' => [ 'Category', 'smw-property-reserved-category' ], + # # + + ## + # Entity specific collation + # + # This should correspond to the $wgCategoryCollation setting (also in regards + # to selected argument values), yet it is kept separate to have a better + # control over changes in regards to the collation, sorting, and display of + # values. + # + # This setting is "global" and applies to any entity that is maintained for + # a wiki. In being global means that it cannot be selective (use one collation + # for one query and use another collation for a different query) because the + # field (smw_sort) contains a computed representation of the sort value. + # + # ANY change to this setting requires to run the `updateEntityCollation.php` + # maintenance script. + # + # @since 3.0 + # @default identity (as legacy setting) + ## + 'smwgEntityCollation' => 'identity', + # # + + ## + # Experimental settings + # + # Features enabled are considered stable but for any unforeseen behaviour, the + # feature can be disabled to return to a previous working state avoiding + # the need for hot-patching a system. + # + # After a certain in-production period, features will be moved permanently + # to the desired target state and hereby automatically retires the related + # setting. + # + # - SMW_QUERYRESULT_PREFETCH to use the prefetch method to retrieve row + # related items for a `QueryResult`. + # + # - SMW_SHOWPARSER_USE_CURTAILMENT to use a short cut and circumventing the + # `QueryEngine` and directly access the DB since `#show` will always only + # request an output for one particular entity. + # + # @since 3.0 + ## + 'smwgExperimentalFeatures' => SMW_QUERYRESULT_PREFETCH | SMW_SHOWPARSER_USE_CURTAILMENT, + # # + + ## + # SQLStore specific field type features + # + # SMW_FIELDT_NONE + # + # SMW_FIELDT_CHAR_NOCASE - Modifies selected search fields to use a case + # insensitive collation and may require additional extension (e.g. Postgres + # requires `citext`) on non MySQL related systems therefore it is disabled + # by default. + # + # Furthermore, no extensive analysis has been performed on how the switch + # from VARBINARY to a collated VARCHAR field type affects the search + # performance. + # + # If enabled, the setting will replace selected `FieldType::FIELD_TITLE` + # types with `FieldType::TYPE_CHAR_NOCASE`. + # + # `FieldType::TYPE_CHAR_NOCASE` has been defined as: + # + # - MySQL: VARCHAR(255) CHARSET utf8 COLLATE utf8_general_ci + # - Postgres: citext NOT NULL + # - SQLite: VARCHAR(255) NOT NULL COLLATE NOCASE but according to [0] this may + # not work and need a special solution as hinted in [0] + # + # [0] https://techblog.dorogin.com/case-insensitive-like-in-sqlite-504f594dcdc3 + # + # SMW_FIELDT_CHAR_LONG - Extends the size to 300 chars for text pattern + # match (DIBlob and DIUri) fields. + # + # 300 has been selected to be able to build an index prefix with the available + # default setting of MySQL/MariaDB which restricts the prefix length to 767 + # bytes for InnoDB tables [1]. The index length can be lifted [2] to up to + # 3072 bytes for InnoDB tables that use the DYNAMIC or COMPRESSED row format but + # that requires custom intervention. + # + # [1] https://dev.mysql.com/doc/refman/5.7/en/innodb-restrictions.html + # [2] https://dev.mysql.com/doc/refman/5.7/en/innodb-parameters.html#sysvar_innodb_large_prefix + # + # By default, the SQLStore has restricted the DIBlob and DIUri fields to a + # 72 chars search depth in exchange for index size and performance. + # Extending fields to 300 allows to run LIKE/NLIKE matching on a larger text + # body without relying on a full-text index but an increased index size could + # potentially carry a performance penalty when the index cannot be kept in + # memory. + # + # No analysis has been performed on how performance is impacted. Selecting + # this option requires to run `rebuildData.php` to adjust the field content + # to the new length. + # + # SMW_FIELDT_CHAR_NOCASE | SMW_FIELDT_CHAR_LONG can be combined to build a + # case insensitive long field type. + # + # @since 3.0 + # @default false + ## + 'smwgFieldTypeFeatures' => false, + # # + + ## + # Subobject content hash !! BC setting ONLY !! + # + # Normalized content hash is enabled by default to ensure that a content + # declaration like: + # + # {{#subobject: + # |Has text=Foo,Bar|+sep=, + # }} + # + # yields the same hash as: + # + # {{#subobject: + # |Has text=Bar,Foo|+sep=, + # }} + # + # The setting is only provided to allow for a temporary backwards compatibility + # and will be removed with 3.1 at which point the functionality is enabled + # without any constraint. + # + # @since 3.0 + # @default true + ## + 'smwgUseComparableContentHash' => true, + # # + + ## + # List of supported schemes for a URI typed property + # + # @see https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml + # @see https://www.w3.org/wiki/UriSchemes + # + # @since 3.0 + ## + 'smwgURITypeSchemeList' => [ + 'http', 'https', 'mailto', 'tel', 'ftp', 'sftp', 'news', 'file', 'urn', + 'telnet', 'ldap', 'gopher', 'ssh', 'git', 'irc', 'ircs' + ], + # # + + ## + # Special:Ask form submit method + # + # - SMW_SASK_SUBMIT_POST uses `post` as submit method, allows to jump + # directly to the search result but will not produce any copyable URL + # string (use the result bookmark button instead) + # + # - SMW_SASK_SUBMIT_GET uses `get` as submit method and was the default + # until 2.5, is not able to jump the search result directly after a submit + # + # - SMW_SASK_SUBMIT_GET_REDIRECT uses `get` as submit method and provides + # the means to directly jump to the search result after a submit but + # requires an extra HTTP request to follow a redirect + # + # @since 3.0 + # @default SMW_SASK_SUBMIT_POST + ## + 'smwgSpecialAskFormSubmitMethod' => SMW_SASK_SUBMIT_POST, + # # + + ## + # Enable/disable
    ...
    support + # + # @since 3.0 + # @default true + ## + 'smwgSupportSectionTag' => true, + # # + + ## + # Subproperty type inheritance + # + # This setting enforces a type inheritance between a parent property and its + # subproperties. + # + # @since 3.1 + # @default false + ## + 'smwgMandatorySubpropertyParentTypeInheritance' => false, + # # + + ## + # Find and remove remnant entities + # + # So called remnant entities or ghosts (i.e. assignments in tables without a + # corresponding entry in a `smw_proptable_hash` field) should rarely happen + # but can and to enable the updater to re-balance the content of the + # `smw_proptable_hash` field (by checking and removing any ghosts in tables + # currently not in use for a particular subject). This setting can be enabled + # to force the updater/differ to make additional inquiries during an update + # to find and remove remnants that have no assignments in a table for a + # selected subject. + # + # The impact (in terms of performance) on the updater is unknown since each + # update is expected to run additional queries therefore the setting is + # set on purge only by default. + # + # - `purge` enables the check to happen only during a purge action which + # limits a possible performance impact to a single subject request hereby + # avoids impacting regular updates + # - `true` as setting will carry out the check on every update + # - `false` will disable the check all together + # + # @see #3849#issuecomment-477605049 + # + # @since 3.1 + # @default 'purge' + ## + 'smwgCheckForRemnantEntities' => 'purge', + # # + + ## + # Lookup and display of constraint errors + # + # A convenience function to provided users with a help to quickly identify + # which constraints violation are currently exists for a viewed subject. + # + # - `SMW_CONSTRAINT_ERR_CHECK_NONE` disables the check and display via the + # page indicator + # - `SMW_CONSTRAINT_ERR_CHECK_MAIN` will only check the main subject + # - `SMW_CONSTRAINT_ERR_CHECK_ALL` will check the main subject and all + # subobjects attached to the main subject + # + # The constraint error lookup is cached therefore no negative performance + # impact is expected when viewing a page repeatedly. + # + # @since 3.1 + # @default SMW_CONSTRAINT_ERR_CHECK_ALL + ## + 'smwgCheckForConstraintErrors' => SMW_CONSTRAINT_ERR_CHECK_ALL, + # # + + ## + # THE FOLLOWING SETTINGS AND SUPPORT FUNCTIONS ARE EXPERIMENTAL! + # + # Please make you read the Readme.md (see the Elastic folder) file first + # before enabling the ElasticStore and its settings! + ## + + ## + # @deprecated since 3.2, use `SchemaTypes` or the + # `SMW::Schema::RegisterSchemaTypes` hook. + # + # Schema types + # + # The mapping defines the relation between a specific type, group and + # a possible interpreter which validates the expected syntax. + # + # Each type will have its own interpretation about elements and how to + # define and enact requirements. + # + # @since 3.0 + ## + 'smwgSchemaTypes' => [], + # # + + ## + # ElasticStore settings + # + # Supported options and settings required by the ElasticStore. + # + # This setting provides documentation and default values for the ElasticStore + # and its use in an ES cluster. + # + # @since 3.0 + ## + 'smwgElasticsearchConfig' => [ + 'index_def' => [ + // The complete name will be auto-generated from + // "smw-...-" + WikiMap::getCurrentWikiId() to avoid indicies among + // different wikis being corrupted when sharing an ES instance. + 'data' => $smwgIP . '/data/elastic/smw-data-standard.json', + 'lookup' => $smwgIP . '/data/elastic/smw-lookup.json' + ], + 'connection' => [ + 'quick_ping' => true, + + // Number of times the client tries to reconnect before throwing an + // exception + 'retries' => 2, + + // Controls how long curl should wait for the entire request to finish + 'timeout' => 30, + + // Controls how long curl should wait for the "connect" phase to finish + 'connect_timeout' => 30 + ], + 'settings' => [ + 'data' => [ + // Setting names match those from ES, any misspelling or + // incorrect setting will cause an error in ES + 'index.mapping.total_fields.limit' => 9000, + 'index.max_result_window' => 50000 + ] + ], + 'indexer' => [ + + // Allows to index unstructured, unprocessed raw text from a revision + 'raw.text' => false, + + // Experimental feature to investigate the use of the ingest pipline + // to index uploaded files and make that content available to + // QueryEngine during a wide proximity search (e.g. [[in:fox jumps]]) + // Requires https://www.elastic.co/guide/en/elasticsearch/plugins/master/ingest-attachment.html + 'experimental.file.ingest' => false, + + // If the replication encounters an `illegal_argument_exception` from + // the ES cluster, rethrow it as exception to ensure it doesn't get + // unnoticed as it is likely to require intervention due to issues + // like "Limit of total fields ... has been exceeded" etc. + 'throw.exception.on.illegal.argument.error' => true, + + // Number of max. retries before the recovery job will resign from + // trying any more attempts to update the ES cluster. This is to + // prevent jobs from invoking themselves indefinitely. + 'job.recovery.retries' => 5, + + // Number of max. retries before the file ingest + 'job.file.ingest.retries' => 3, + + // Compare and report the status of the replication on a page view + // about entities hereby allowing users to immediately comprehend a + // possible discrepancy between the stored on-wiki data and the data + // replicated to Elasticsearch. + 'monitor.entity.replication' => true, + 'monitor.entity.replication.cache_lifetime' => 3600, + + // DataItems (Blob, Uri, Page etc.) are transformed in exactly the + // same way as done by the SQLStore `DataItemHandler` before being + // added to the storage layer (includes transformations like + // htmlspecialchars_decode, rawurldecode etc.) to ensure that data + // have a test compatibility with the SQLStore. + 'data.sqlstore_compatibility' => true + ], + 'query' => [ + + // If for some reason no connection to the ES cluster could be + // established, use the SQLStore QueryEngine as fallback. + 'fallback.no_connection' => false, + + // @see https://www.elastic.co/guide/en/elasticsearch/reference/6.1/_profiling_queries.html + 'profiling' => false, + + // @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-validate.html + // Part of the `format=debug` to validate potentially expensive queries + // without executing them. + 'debug.explain' => true, + + // During the debug output, display details about which description was + // when resolved in connection with a query + 'debug.description.log' => true, + + // #3698 + // Restrict the length of an individual input value to avoid a potential + // "... "java.lang.IllegalArgumentException:input automaton is too + // large: 1001 ..." + 'maximum.value.length' => 500, + + // When `!...` is used make sure that the condition is only applied + // on entities where the property exists together with the negated + // value condition otherwise the ! condition becomes unrestricted + 'must_not.property.exists' => true, + + // When sorting on a particular property, enforce that the property + // exists as an assignment to a selected entity. The default setting + // matches the SQLStore behaviour. (See also #2823) + 'sort.property.must.exists' => true, + + // Sort by score (aka relevancy) + // + // Defines the name of the sortkey (as covention) that is used to sort + // results by scores computed by ES (based on Term Frequency, Inverse + // Document Frequency etc.). + // + // Output results with the highest score first: + // + // {{#ask: [[Category:Foo]] + // |sort=es.score + // |order=desc + // }} + // + // @see https://www.compose.com/articles/how-scoring-works-in-elasticsearch/ + 'score.sortfield' => 'es.score', + + // The `+` and `-` symbols will be interpret as boolean operators so that + // things like `+foo, -bar` mean `+` (this term must be present) and + // `-`(this term must not be present). If they need to be part of + // the search string itself then it is required to escape them like + // `\+`. + 'query_string.boolean.operators' => true, + + // ES works different with text elements compared to the SQL interface + // (and its DSL query logic) therefore we try to modify some + // common scenarios and alter strings (and boolean operators) to pass + // most use cases from the SQLStore integration test suite and hereby + // allows to be compatible with the SMW SQL answering behaviour. + // + // ES has reserved characters `+ - = && || > < ! ( ) { } [ ] ^ " ~ * + // ? : \ /` and this mode will automatically encode them which of course + // limits the ability to use them as part of the native boolean operators + // within the query expression. + // + // In case the mode is disabled, the user has to make sure to follow + // the rules set forth by ES in connection with the query_string + // parser. + // + // @see https://www.elastic.co/guide/en/elasticsearch/reference/6.1/query-dsl-query-string-query.html + 'compat.mode' => true, + + // Size (limit) of the subquery construct which is executed as separated + // search request. + 'subquery.size' => 10000, + + // Sorting and scoring of subqueries is generally not necessary therefore + // we use the `constant_score` filter context to executed queries which + // helps to elevate the use of the filter caching. + // + // @see https://www.elastic.co/guide/en/elasticsearch/guide/current/filter-caching.html + 'subquery.constant.score' => true, + + // Defines the threshold for a result size as to when those should be + // stored in a special lookup index to facilitate the ES terms lookup + // feature (which requires to write and refresh the specific index + // element ad-hoc before it can be used by the "source" query). + // + // The more often subqueries are used (or reused) the lower the threshold + // should be set as it directly impacts performance. + // + // @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-terms-query.html + 'subquery.terms.lookup.result.size.index.write.threshold' => 200, + + // Intermediary optimization to allow for a subquery (executed as part + // of a "source" query and uses the special lookup index) to be reused + // (aka cached) for any succeeding query executions for the time frame + // set and hereby avoids fetching subquery results on repeating + // requests especially when the source query changes its limit and + // offset parameters frequently. + // + // Only subqueries with `subquery.terms.lookup.result.size.index.write.threshold` + // will be available to make use of this index cache. + // + // The cache is static and will not apply any eviction strategy which + // means that in case of additional values that would normally invalidate + // a subquery result, results remain static for the time frame set. + // + // Caching becomes crucial when a subqery terms lookup contains 1000+ + // of matching documents as we avoid executing the subquery and if + // available directly resuse the terms lookup index. + // + // @default 1h + 'subquery.terms.lookup.cache.lifetime' => 60 * 60, + + // A concept as (aka dynamix category) is defined using a query and + // will return a list of matchable IDs therefore to improve performance + // during the lookup of those entities use the lookup index to retrieve + // precomputed results. + 'concept.terms.lookup' => true, + + // Threshold when to store and use the index lookup + 'concept.terms.lookup.result.size.index.write.threshold' => 10, + + // Threshold when to store and use the index lookup + // It is similar to `$smwgQConceptCacheLifetime` + // + // @default 1h + 'concept.terms.lookup.cache.lifetime' => 60 * 60, + + // In case search terms contains CJK terms, remove `*` prefix/affix + // from a search request in an effort to best match single characters + // that created as part of the standard analyzer. Use a phrase match + // instead of a wildcard proximity. + // + // This setting may be disabled when using a different index definition + // (e.g. ICU). + 'cjk.best.effort.proximity.match' => true, + + // Specifies that a wide proximity search (e.g. [[~~Foo bar]] or + // [[in:Foo bar]]) is executed as a match_phrase search meaning that + // that all elements of the query string need to be present in the + // order of the query + 'wide.proximity.as.match_phrase' => true, + + // Fields to be used for a wide proximity search with some being + // boosted to weight higher in relevance. For example, when `Foo` is + // part of the title it relevance is boosted by 8 (i.e. count more + // towards the relevance score) as when it would only appear in one + // of the text fields. + // + // It means that [[in:Foo]] where titles match `Foo` will be + // assigned a 5 times higher score and therefore appear higher in a + // list when sorted by relevancy. + 'wide.proximity.fields' => [ + 'subject.title^8', + 'text_copy^5', + 'text_raw', + 'attachment.title^3', + 'attachment.content' + ], + + // By default, the URI fields are considered case sensitive similar to + // what RFC 3986 " ... the scheme and host are case-insensitive and + // therefore should be normalized to lowercase ... the other generic + // syntax components are assumed to be case-sensitive unless ", + // RFC 2616 " ... comparing two URIs to decide if they match or + // not, a client SHOULD use a case-sensitive octet-by-octet + // comparison of the entire URIs ..." + // + // The setting applies to the EQ, LIKE, and NLIKE match. + 'uri.field.case.insensitive' => false, + + // By default, equality searches (e.g. [[Has text:Foo]], [Has text:foo]]) + // are case senstive but as in case of the SMW_FIELDT_CHAR_NOCASE, + // the search can be altered to find case insensitive matches as well. + // + // The default setting matches the SQLStore standard behaviour and + // uses the faster ES `term` search instead of a `match` variant + // which would become necessary for any analyzed field. + // + // @see https://www.elastic.co/guide/en/elasticsearch/guide/current/term-vs-full-text.html + 'text.field.case.insensitive.eq.match' => false, + + // [[~Foo/Bar/*]] vs. [[~FOO/bar/*]] + // [[Has page::~Foo bar/bar/*]] + 'page.field.case.insensitive.proximity.match' => true, + + // Allows to retrieve text fragments from ES for query request and + // depending on the type selected can require more query time. + // + // Available types are `plain`, `unified`, and `fvh`. The `fvh` type + // requires text fields to have the `term_vector` with `with_positions_offsets` + // enabled. + // + // @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-highlighting.html#plain-highlighter + // @see https://www.elastic.co/guide/en/elasticsearch/reference/current/term-vector.html + 'highlight.fragment' => [ 'number' => 1, 'size' => 250, 'type' => false ] + ] + ], + # # + + ## + # ElasticStore profile + # + # Maintaining various settings using an array notation in `LocalSettinga.php` + # can become challenging hence we provide a JSON profile that can be assigned + # instead. Settings will be merged together with the default + # `smwgElasticsearchConfig` where a profile will override any previous value + # assignments. + # + # @since 3.0 + ## + 'smwgElasticsearchProfile' => false, // $smwgIP . '/data/elastic/default-profile.json', + + ## + # ElasticStore connection settings + # + # @since 3.0 + ## + 'smwgElasticsearchEndpoints' => [ + // [ 'host' => '127.0.0.1', 'port' => 9200, 'scheme' => 'http' ], + // [ 'host' => '127.0.0.1', 'port' => 9200, 'scheme' => 'http', 'user' => 'username', 'pass' => 'password!#$?*abc' ] + // 'localhost:9200' + ], + + # # + # ElasticSearch basic authentication credentials + # + # @since 4.2 + ## + 'smwgElasticsearchCredentials' => [ + // 'user' => 'foo', 'pass' => 'bar' + // 'foo', 'bar' + ], + + /** + * If SMW should verify that the semantic data is up to date with the latest revision of a + * page whenever this page is loaded. If the semantic data is out of date this will be shown + * in the "entity issue panel". This panel is only shown when there is something to + * display, so setting this setting to true increases the frequency the panel is shown on + * pages. + * + * @since 3.2 + */ + 'smwgDetectOutdatedData' => false, + + /** + * Whether Special:ExportRDF element is added to the element + * Used to avoid bots scraping ExportRDF by not advertising on every page + * Because the page is not a cheap call + * + * @since 5.0 + */ + 'smwgEnableExportRDFLink' => true, + + /** + * Sets whether or not to set the timestamp on the ParserOutput object + * Enabling this allows parser cache to be invalidated immediately + * + * However: + * - Last modified date will become the parser cache purge time instead of the page edit time + * - CDN cache might not be invalidated correctly because the revision is not old enough to be considered stale + * + * @since 5.1 + */ + 'smwgSetParserCacheTimestamp' => true, + + /** + * Sets the keys that will be added to the parser cache key. + * Each key will trigger a cache fragmentation. + * + * @since 5.1 + */ + 'smwgSetParserCacheKeys' => [ + 'userlang', + 'dateformat' + ], + ]; +} )(); diff --git a/mediawiki/extensions/SemanticMediaWiki/includes/GlobalFunctions.php b/mediawiki/extensions/SemanticMediaWiki/includes/GlobalFunctions.php new file mode 100644 index 0000000..5e33be1 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/includes/GlobalFunctions.php @@ -0,0 +1,239 @@ +fetch( $GLOBALS['wgLanguageCode'] ); +} + +/** + * Takes a title text and turns it safely into its DBKey. This function + * reimplements most of the title normalization as done in Title.php in order + * to achieve conversion with less overhead. The official code could be called + * here if more advanced normalization is needed. + * + * @param string $text + */ +function smwfNormalTitleDBKey( $text ) { + global $wgCapitalLinks; + + $text = trim( $text ); + + if ( $wgCapitalLinks ) { + $text = ucfirst( $text ); + } + + return str_replace( ' ', '_', $text ); +} + +/** + * @deprecated since 3.2, use `Localizer::normalizeTitleText` + */ +function smwfNormalTitleText( $text ) { + return Localizer::getInstance()->normalizeTitleText( $text ); +} + +/** + * Escapes text in a way that allows it to be used as XML content (e.g. as a + * string value for some property). + * + * @param string|null $text + */ +function smwfXMLContentEncode( ?string $text ) { + return str_replace( [ '&', '<', '>' ], [ '&', '<', '>' ], Sanitizer::decodeCharReferences( $text ?? '' ) ); +} + +/** + * Decodes character references and inserts Unicode characters instead, using + * the MediaWiki Sanitizer. + * + * @param string|null $text + */ +function smwfHTMLtoUTF8( ?string $text ) { + return Sanitizer::decodeCharReferences( $text ?? '' ); +} + +/** + * @deprecated since 2.1, use NumberFormatter instead + */ +function smwfNumberFormat( $value, $decplaces = 3 ) { + return IntlNumberFormatter::getInstance()->getLocalizedFormattedNumber( $value, $decplaces ); +} + +/** + * @since 3.0 + * + * @param string $text + */ +function smwfAbort( $text ) { + if ( PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg' ) { + $text = strip_tags( $text ); + } + + die( $text ); +} + +/** + * Formats an array of message strings so that it appears as a tooltip. + * $icon should be one of: 'warning' (default), 'info'. + * + * @param array $messages + * @param string $type Acts like an enum. Callers must ensure safety, since this value is used directly in the output. + * @param string $separator + * @param bool $escape Should the messages be escaped or not (ie when they already are) + * + * @return string + */ +function smwfEncodeMessages( array $messages, $type = 'warning', $separator = ' ', $escape = true ) { + $messages = ProcessingErrorMsgHandler::normalizeAndDecodeMessages( $messages ); + + if ( $messages === [] ) { + return ''; + } + + if ( $escape ) { + $messages = array_map( 'htmlspecialchars', $messages ); + } + + if ( count( $messages ) == 1 ) { + $content = $messages[0]; + } else { + foreach ( $messages as &$message ) { + $message = '
  • ' . $message . '
  • '; + } + + $content = '
      ' . implode( $separator, $messages ) . '
    '; + } + + // Stop when a previous processing produced an error and it is expected to be + // added to a new tooltip (e.g {{#info {{#show ...}} }} ) instance + if ( Highlighter::hasHighlighterClass( $content, 'warning' ) ) { + return $content; + } + + $highlighter = Highlighter::factory( $type ); + + $highlighter->setContent( [ + 'caption' => null, + 'content' => Highlighter::decode( $content ) + ] ); + + return $highlighter->getHtml(); +} + +/** + * Returns an instance for the storage back-end + * + * @return Store + */ +function &smwfGetStore() { + $store = StoreFactory::getStore(); + return $store; +} + +/** + * @since 3.0 + * + * @param string $namespace + * @param string $key + * + * @return string + */ +function smwfCacheKey( $namespace, $key ) { + $cachePrefix = $GLOBALS['wgCachePrefix'] === false ? + WikiMap::getCurrentWikiId() : $GLOBALS['wgCachePrefix']; + + if ( $namespace[0] !== ':' ) { + $namespace = ':' . $namespace; + } + + if ( is_array( $key ) ) { + $key = json_encode( $key ); + } + + return $cachePrefix . $namespace . ':' . md5( $key ); +} + +/** + * Compatibility helper for using Linker methods. + * MW 1.16 has a Linker with non-static methods, + * where in MW 1.19 they are static, and a DummyLinker + * class is introduced, which can be instantiated for + * compat reasons. As of MW 1.28, DummyLinker is being + * deprecated, so always use Linker. + * + * @since 1.6 + * + * @return Linker + */ +function smwfGetLinker() { + static $linker = false; + + if ( $linker === false ) { + $linker = new Linker(); + } + + return $linker; +} + +/** + * Function to switch on Semantic MediaWiki. This function must be called in + * LocalSettings.php after including SMW_Settings.php. It is used to ensure + * that required parameters for SMW are really provided explicitly. For + * readability, this is the only global function that does not adhere to the + * naming conventions. + * + * This function also sets up all autoloading, such that all SMW classes are + * available as early on. Moreover, jobs and special pages are registered. + * + * @param mixed $namespace + * @param bool $complete + * + * @return ConfigPreloader + * + * @codeCoverageIgnore + */ +function enableSemantics( $namespace = null, $complete = false ) { + global $smwgNamespace; + + SemanticMediaWiki::setupDefines(); + SemanticMediaWiki::setupGlobals(); + + if ( !$complete && ( $smwgNamespace !== '' ) ) { + // The dot tells that the domain is not complete. It will be completed + // in the Export since we do not want to create a title object here when + // it is not needed in many cases. + $smwgNamespace = '.' . $namespace; + } else { + $smwgNamespace = $namespace; + } + + return new ConfigPreloader(); +} diff --git a/mediawiki/extensions/SemanticMediaWiki/includes/Highlighter.php b/mediawiki/extensions/SemanticMediaWiki/includes/Highlighter.php new file mode 100644 index 0000000..c651d15 --- /dev/null +++ b/mediawiki/extensions/SemanticMediaWiki/includes/Highlighter.php @@ -0,0 +1,393 @@ +type = $type; + $this->language = $language; + } + + /** + * @since 1.9 + * + * @param string|int $type + * @param string|null $language + * + * @return Highlighter + */ + public static function factory( $type, $language = null ) { + if ( $type === '' || !is_int( $type ) ) { + $type = self::getTypeId( $type ); + } + + return new Highlighter( $type, $language ); + } + + /** + * @since 3.0 + * + * @param string $text + * @param string|null $type + * + * @return bool + */ + public static function hasHighlighterClass( $text, $type = null ) { + if ( strpos( $text, 'smw-highlighter' ) === false ) { + return false; + } + + if ( $type !== null ) { + return strpos( $text, 'data-type="' . self::getTypeId( $type ) . '"' ) !== false; + } + + return true; + } + + /** + * @since 3.0 + * + * @param string $text + * + * @return string + */ + public static function decode( $text ) { + // #2347, '[' is handled by the MediaWiki parser/sanitizer itself + return str_replace( + [ '&', '<', '>', ' ', '', '' ], + [ '&', '<', '>', ' ', '', '' ], + $text + ); + } + + /** + * Returns html output + * + * @since 1.9 + * + * @return string + */ + public function getHtml() { + SMWOutputs::requireStyle( 'ext.smw.styles' ); + SMWOutputs::requireStyle( 'ext.smw.tooltip.styles' ); + SMWOutputs::requireResource( 'ext.smw.tooltip' ); + return $this->getContainer(); + } + + /** + * Set content + * + * An external class that invokes content via setContent has to ensure + * that all data are appropriately escaped. + * + * @since 1.9 + * + * @param array $content + * + * @return array + */ + public function setContent( array $content ) { + /** + * @var $content + * $content['caption'] = a text or null + * $content['context'] = a text or null + */ + return $this->options = array_merge( $this->getTypeConfiguration( $this->type ), $content ); + } + + /** + * Returns type id + * + * @since 1.9 + * + * @param string $type + * + * @return int + */ + public static function getTypeId( $type ) { + // TODO: why do we have a htmlspecialchars here?! + switch ( strtolower( htmlspecialchars( $type ?? '' ) ) ) { + case 'property': + return self::TYPE_PROPERTY; + case 'text': + return self::TYPE_TEXT; + case 'quantity': + return self::TYPE_QUANTITY; + case 'warning': + return self::TYPE_WARNING; + case 'error': + return self::TYPE_ERROR; + case 'info': + return self::TYPE_INFO; + case 'help': + return self::TYPE_HELP; + case 'note': + return self::TYPE_NOTE; + case 'service': + return self::TYPE_SERVICE; + case 'reference': + return self::TYPE_REFERENCE; + default: + return self::TYPE_NOTYPE; + } + } + + /** + * Builds Html container + * + * Content that is being invoked has to be escaped + * @see Highlighter::setContent + * + * @since 1.9 + * + * @return string + */ + private function getContainer() { + $captionclass = $this->options['captionclass']; + + // 2.4+ can display context for user-defined properties, here we ensure + // to keep the style otherwise it displays italic which is by convention + // reserved for predefined properties + if ( $this->type === self::TYPE_PROPERTY && isset( $this->options['userDefined'] ) ) { + $captionclass = $this->options['userDefined'] ? 'smwtext' : $captionclass; + } + + $language = is_string( $this->language ) ? $this->language : Message::USER_LANGUAGE; + $attribs = []; + + if ( isset( $this->options['style'] ) ) { + $attribs['style'] = $this->options['style']; + } + + if ( isset( $this->options['maxwidth'] ) && $this->options['maxwidth'] !== '' ) { + $attribs['data-maxwidth'] = $this->options['maxwidth']; + } + + if ( isset( $this->options['themeclass'] ) && $this->options['themeclass'] !== '' ) { + $attribs['data-tooltipclass'] = $this->options['themeclass']; + } + + // In case the text contains HTML, remove trailing line feeds to avoid breaking + // the display + if ( $this->options['content'] != strip_tags( $this->options['content'] ?? '' ) ) { + $this->options['content'] = str_replace( [ "\n" ], [ '' ], $this->options['content'] ); + } + + // #1875 + // title attribute contains stripped content to allow for a display in + // no-js environments, the tooltip will remove the element once it is + // loaded + $title = $this->title( $this->options['content'], $language ); + + $html = Html::rawElement( + 'span', + [ + 'class' => 'smw-highlighter', + 'data-type' => $this->options['type'], + 'data-content' => isset( $this->options['data-content'] ) ? $this->options['data-content'] : null, + 'data-state' => $this->options['state'], + 'data-title' => Message::get( $this->options['title'], Message::TEXT, $language ), + 'title' => $title + ] + $attribs, + Html::rawElement( + 'span', + [ + 'class' => $captionclass + ], + $this->options['caption'] + ) . Html::rawElement( + 'span', + [ + 'class' => 'smwttcontent' + ], + // Embedded wiki content that has other elements like (e.g.