|
| 1 | +<?php |
| 2 | + |
| 3 | +$texts = [ |
| 4 | + 'project.link' => 'Project op GitHub', |
| 5 | + |
| 6 | + 'menu.status' => 'Status', |
| 7 | + 'menu.config' => 'Configuratie', |
| 8 | + 'menu.scripts' => 'Opgeslagen Scripts', |
| 9 | + 'menu.graphs' => 'Grafieken', |
| 10 | + |
| 11 | + 'reset.submit' => 'Leegmaken', |
| 12 | + 'confirmation.reset' => 'Weet je zeker dat je de cache wilt leegmaken?', |
| 13 | + 'confirmation.yes' => 'Ja', |
| 14 | + 'confirmation.no' => 'Nee', |
| 15 | + |
| 16 | + 'status.title' => 'Status', |
| 17 | + 'status.opcache_enabled' => 'Aangezet', |
| 18 | + 'status.cache_full' => 'Cache vol', |
| 19 | + 'status.restart_pending' => 'Herstart in afwachting', |
| 20 | + 'status.restart_in_progress' => 'Herstart is bezig', |
| 21 | + |
| 22 | + 'memory.title' => 'Geheugen gebruik', |
| 23 | + 'memory.used_memory' => 'Gebruikt geheugen', |
| 24 | + 'memory.free_memory' => 'Vrij geheugen', |
| 25 | + 'memory.wasted_memory' => 'Verspild geheugen', |
| 26 | + 'memory.current_wasted_percentage' => 'Momenteel verspild', |
| 27 | + |
| 28 | + 'stats.title' => 'Statistieken', |
| 29 | + 'stats.num_cached_scripts' => 'Cached Scripts', |
| 30 | + 'stats.num_cached_keys' => 'Cached sleutels', |
| 31 | + 'stats.max_cached_keys' => 'Max cached sleutels', |
| 32 | + 'stats.hits' => 'Hits', |
| 33 | + 'stats.start_time' => 'Start tijd', |
| 34 | + 'stats.last_restart_time' => 'Laatste herstart', |
| 35 | + 'stats.oom_restarts' => 'Oom herstarts', |
| 36 | + 'stats.hash_restarts' => 'Hash herstarts', |
| 37 | + 'stats.manual_restarts' => 'Handmatige herstarts', |
| 38 | + 'stats.misses' => 'Misses', |
| 39 | + 'stats.blacklist_misses' => 'Blacklist misses', |
| 40 | + 'stats.blacklist_miss_ratio' => 'Miss ratio', |
| 41 | + 'stats.opcache_hit_rate' => 'Opcache hit ratio', |
| 42 | + |
| 43 | + 'config.title' => 'Configuratie', |
| 44 | + 'config.opcache.enable' => 'Aangezet', |
| 45 | + 'config.opcache.enable.description' => 'Bepaald of Zend OPCache aan staat', |
| 46 | + 'config.opcache.enable_cli' => 'Aangezet op de CLI', |
| 47 | + 'config.opcache.enable_cli.description' => 'Bepaald of Zend OPCache aan staat op de CLI versie van PHP', |
| 48 | + 'config.opcache.use_cwd' => 'Sleutels gebaseerd op de huidige werk map', |
| 49 | + 'config.opcache.use_cwd.description' => 'Indien deze waarde aan staat zal OPcache de huidige werk map toevoegen aan de sleutel van scripts. Dit voorkomt dat scripts met dezelfde naam in andere mappen elkaar overschrijven. Uitschakelen van deze optie verbeterd de prestatie, maar kan huidige applicatie breken.', |
| 50 | + 'config.opcache.validate_timestamps' => 'Valideer tijstempels', |
| 51 | + 'config.opcache.validate_timestamps.description' => 'Indien uitgeschakeld moet OPcache of de webserver handmatig herstart worden om wijzigen aan bestanden effect te laten hebben.', |
| 52 | + 'config.opcache.inherited_hack' => 'Inherited hack', |
| 53 | + 'config.opcache.inherited_hack.description' => '', |
| 54 | + 'config.opcache.dups_fix' => 'Duplicaten fix', |
| 55 | + 'config.opcache.dups_fix.description' => '', |
| 56 | + 'config.opcache.revalidate_path' => 'Valideer pad', |
| 57 | + 'config.opcache.revalidate_path.description' => 'Optie voor het aan- of uitzetten van het zoeken van bestanden in de include_path optimalisatie', |
| 58 | + 'config.opcache.log_verbosity_level' => 'Logging niveau', |
| 59 | + 'config.opcache.log_verbosity_level.description' => 'Alle OPcache foutmeldingen gaan naar het log van de webserver. Standaard zullen alleen fatale fouten (niveau 0) of fouten (niveau 1) gelogged worden. Het is ook mogelijk om waarschuwingen (niveau 2), informatieve meldingen (niveau 3) of debug meldingen (niveau 4) te loggen.', |
| 60 | + 'config.opcache.memory_consumption' => 'Opcache geheugen grootte', |
| 61 | + 'config.opcache.memory_consumption.description' => 'De grootte van het gedeelde geheugen dat OPcache kan gebruiken.', |
| 62 | + 'config.opcache.interned_strings_buffer' => 'Interned strings buffer', |
| 63 | + 'config.opcache.interned_strings_buffer.description' => 'The grootte van het geheugen voor interned strings in Mbytes.', |
| 64 | + 'config.opcache.max_accelerated_files' => 'Maximum aantal van opgeslagen (cached) scripts', |
| 65 | + 'config.opcache.max_accelerated_files.description' => 'Het maximum aantal sleutels (scripts) in de OPcache hash tabel. Alleen getallen tussen 200 en 100000 zijn valide.', |
| 66 | + 'config.opcache.max_wasted_percentage' => 'Maximaal verspild voordat er een herstart wordt uitgevoerd', |
| 67 | + 'config.opcache.max_wasted_percentage.description' => 'Het maximum percentage "verspilde" geheugen voordat een herstart cal worden gepland.', |
| 68 | + 'config.opcache.consistency_checks' => 'Consitentie checks frequency', |
| 69 | + 'config.opcache.consistency_checks.description' => 'Controleer de cache checksum elke N verzoeken. The standaard waarde van "0" houdt in dat de controle is uitgeschakeld.', |
| 70 | + 'config.opcache.force_restart_timeout' => 'Forceer herstart timeout', |
| 71 | + 'config.opcache.force_restart_timeout.description' => 'Hoe lang te wachten (in seconden) voordat een geplande herstart zal beginnen als de cache niet is gebruikt.', |
| 72 | + 'config.opcache.revalidate_freq' => 'Frenquentie om te controleren voor wijzigen', |
| 73 | + 'config.opcache.revalidate_freq.description' => 'Hoe vaak (in seconden) er zal worden gecontroleerd op wijzigingen. ("1" betekend 1 maal per seconde, maar slechts 1 maal per verzoek. "0" betekend dat er altijd gecontroleerd zal worden)', |
| 74 | + 'config.opcache.preferred_memory_model' => '', |
| 75 | + 'config.opcache.preferred_memory_model.description' => 'Voorkeur voor gedeelde geheugen back-end. Indien deze waarde leeg is zal het systeem dit bepalen.', |
| 76 | + 'config.opcache.blacklist_filename' => 'Blacklist', |
| 77 | + 'config.opcache.blacklist_filename.description' => 'De locatie van het blacklist bestand (wildcards zijn toegstaan). Elk OPcache blacklist bestand is een tekst bestand met daarin de namen van de bestanden die niet meegenomen moeten worden in het caching mechanisme. Het bestandformaat bevat een bestandsnaam per regel. De bestandsnaam kan een volledig pad zijn of alleen het begin van een pad (bijvoorbeeld, /var/www/x zal alle bestanden en mappen in /var/www die beginnen met \'x\' niet meenmen in het caching mechanisme). Regels die beginnen met aan ; zullen worden genegeerd (opmerkingen).', |
| 78 | + 'config.opcache.max_file_size' => 'Uitsluiten van caching boven grootte', |
| 79 | + 'config.opcache.max_file_size.description' => 'Uitsluiten van grote bestanden. Standaard zullen alle bestande worden gecached.', |
| 80 | + 'config.opcache.error_log' => 'Foutmeldingen log', |
| 81 | + 'config.opcache.error_log.description' => 'OPcache error_log bestandnaam. Indien deze waarde leeg is zal "stderr" worden gebruikt.', |
| 82 | + 'config.opcache.protect_memory' => 'Bescherm geheugen', |
| 83 | + 'config.opcache.protect_memory.description' => 'Beschermt het gdeelde geheugen tegen onverwacht schrijven tijdens het uitvoeren van scripts. Alleen handig tijdens debuggen.', |
| 84 | + 'config.opcache.save_comments' => 'Bewaren opmerkingen', |
| 85 | + 'config.opcache.save_comments.description' => 'Indien uitgeschakeld zullen alle PHPDoc opmerkingen worden verwijderd van de code om de grootte van de geoptimimaliseerde scripts te verkleinen.', |
| 86 | + 'config.opcache.load_comments' => 'Opslaan opmerkingen', |
| 87 | + 'config.opcache.load_comments.description' => 'Indien uitgeschakeld zullen PHPDoc opmerkingen niet worden geladen vanuit het SHM. Dit betekent dat "Doc Comments" altijd zullen worden opgeslagen (save_comments=1), maar niet zullen worden geladen door applicaties die dit niet nodig hebben.', |
| 88 | + 'config.opcache.fast_shutdown' => 'Snel uitschakelen', |
| 89 | + 'config.opcache.fast_shutdown.description' => 'Indien ingeschakeld zal een "fast shutdown sequence" gebruikt worden voor geaccelereerde code', |
| 90 | + 'config.opcache.enable_file_override' => 'File override', |
| 91 | + 'config.opcache.enable_file_override.description' => 'Allow file existence override (file_exists, etc.) performance feature.', |
| 92 | + 'config.opcache.optimization_level' => 'Optimisatie niveau', |
| 93 | + 'config.opcache.optimization_level.description' => 'Een bitmask waar elke bit een OpCache pass aan- of uitzet', |
| 94 | + |
| 95 | + 'blacklist.title' => 'Blacklist', |
| 96 | + 'blacklist.empty' => 'Er zijn geen scripts geblacklist', |
| 97 | + |
| 98 | + 'scripts.title' => 'Cached Scripts', |
| 99 | + 'scripts.empty' => 'Er zijn geen scripts gecached', |
| 100 | + 'scripts.directory.script_count' => ' (<i class="count">%s</i> bestanden)', |
| 101 | + 'scripts.full_path' => 'Bestandnaam', |
| 102 | + 'scripts.hits' => 'Hits', |
| 103 | + 'scripts.memory_consumption' => 'Geheugen', |
| 104 | + 'scripts.last_used_timestamp' => 'Laats gebruikt', |
| 105 | + 'scripts.timestamp' => 'Aangemaakt', |
| 106 | + 'scripts.actions' => 'Acties', |
| 107 | + 'script.invalidate' => 'Invalideer', |
| 108 | + |
| 109 | + 'graph.title' => 'Grafieken', |
| 110 | + 'graph.memory.title' => 'Geheugen', |
| 111 | + 'graph.memory.free' => 'beschikbaar', |
| 112 | + 'graph.memory.used' => 'gebruikt', |
| 113 | + 'graph.memory.wasted' => 'verspild', |
| 114 | + 'graph.keys.title' => 'Sleutels', |
| 115 | + 'graph.keys.free' => 'beschikbaar', |
| 116 | + 'graph.keys.scripts' => 'gebruikt', |
| 117 | + 'graph.keys.wasted' => 'verspild', |
| 118 | + 'graph.hits.title' => 'Hits', |
| 119 | + 'graph.hits.hits' => 'hits', |
| 120 | + 'graph.hits.misses' => 'misses', |
| 121 | + 'graph.hits.blacklist' => 'blacklist', |
| 122 | +]; |
0 commit comments