translate
This commit is contained in:
parent
3d8f061e8c
commit
16032ebc57
|
@ -0,0 +1,35 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
# identifier: Captive Portal
|
||||||
|
# description: Creates an "evil twin" access point.
|
||||||
|
|
||||||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
|
CaptivePortalJammerInterfaceQuery="Selecteer een interface voor jamming."
|
||||||
|
CaptivePortalAccessPointInterfaceQuery="Selecteer een interface voor het access point."
|
||||||
|
CaptivePortalCannotStartInterfaceError="${CRed}Niet mogelijk om captive portal interface te starten$CClr, ga terug!"
|
||||||
|
CaptivePortalStaringAPServiceNotice="Starten van Captive Portal access point service..."
|
||||||
|
CaptivePortalStaringAPRoutesNotice="Starten van Captive Portal access point routes..."
|
||||||
|
CaptivePortalStartingDHCPServiceNotice="Starten van access point DHCP service als daemon..."
|
||||||
|
CaptivePortalStartingDNSServiceNotice="Starten van access point DNS service als daemon..."
|
||||||
|
CaptivePortalStartingWebServiceNotice="Starten van access point captive portal als daemon..."
|
||||||
|
CaptivePortalStartingJammerServiceNotice="Starten van access point jammer als daemon..."
|
||||||
|
CaptivePortalStartingAuthenticatorServiceNotice="Starten authenticator script..."
|
||||||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
|
CaptivePortalAPServiceQuery="Selecteer een access point service"
|
||||||
|
CaptivePortalAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}aangeraden$CClr)"
|
||||||
|
CaptivePortalAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}traag$CClr)"
|
||||||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
|
CaptivePortalVerificationMethodQuery="Selecteer een wachtwoord verificatie methode"
|
||||||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
|
CaptivePortalCertificateSourceQuery="Selecteer een SSL certificaat bron voor captive portal."
|
||||||
|
CaptivePortalCertificateSourceGenerateOption="Creeer een SSL certificaat"
|
||||||
|
CaptivePortalCertificateSourceRescanOption="Detecteer SSL certificaaat (${CClr}zoek opnieuw$CGry)"
|
||||||
|
CaptivePortalCertificateSourceDisabledOption="Geen (${CYel}Schakel SSL uit$CGry)"
|
||||||
|
CaptivePortalUIQuery="Selecteer een captive portal interface voor het rogue network."
|
||||||
|
CaptivePortalGenericInterfaceOption="Generiek Portaal"
|
||||||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
|
CaptivePortalConnectivityQuery="Selecteer eenn internet verbindingstype voor het rogue network."
|
||||||
|
CaptivePortalConnectivityDisconnectedOption="Verbroken (${CGrn}aangeraden$CClr)"
|
||||||
|
CaptivePortalConnectivityEmulatedOption="geemuleerd"
|
||||||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
|
|
||||||
|
# FLUXSCRIPT END
|
|
@ -0,0 +1,31 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
# identifier: Handshake Snopper
|
||||||
|
# description: Acquires WPA/WPA2 encryption hashes.
|
||||||
|
|
||||||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
|
HandshakeSnooperJammerInterfaceQuery="Selecteer eenn interface voor monitoring & jamming."
|
||||||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
|
HandshakeSnooperMethodQuery="Selecteer een methode voor handshake verkrijgen"
|
||||||
|
HandshakeSnooperMonitorMethodOption="Monitor (${CYel}passief$CClr)"
|
||||||
|
HandshakeSnooperAireplayMethodOption="aireplay-ng deauthentication (${CRed}agressief$CClr)"
|
||||||
|
HandshakeSnooperMdk3MethodOption="mdk3 deauthentication (${CRed}agressief$CClr)"
|
||||||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
|
HandshakeSnooperVerifierIntervalQuery="Hoe vaak moet er gecontrollerd worden voor een handshake?"
|
||||||
|
HandshakeSnooperVerifierInterval30SOption="Elke 30 seconden (${CGrn}aangeraden${CClr})."
|
||||||
|
HandshakeSnooperVerifierInterval60SOption="Elke 60 seconden."
|
||||||
|
HandshakeSnooperVerifierInterval90SOption="Elke 90 seconden."
|
||||||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
|
HandshakeSnooperVerifierSynchronicityQuery="Hoe vaak zal er geverifieerd moeten worden?"
|
||||||
|
HandshakeSnooperVerifierSynchronicityAsynchronousOption="Asynchroon (${CYel}alleen voor snelle systemen${CClr})."
|
||||||
|
HandshakeSnooperVerifierSynchronicitySynchronousOption="Synchroon (${CGrn}aangeraden${CClr})."
|
||||||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
|
HandshakeSnooperStartingArbiterNotice="${CCyn}Handshake Snooper$CClr arbiter daemon draait."
|
||||||
|
HandshakeSnooperSnoopingForNSecondsNotice="Snooping voor \$HandshakeSnooperVerifierInterval seconden."
|
||||||
|
HandshakeSnooperStoppingForVerifierNotice="Stop snooper & controle voor hashes."
|
||||||
|
HandshakeSnooperSearchingForHashesNotice="Zoek naar hashes in het capture bestand."
|
||||||
|
HandshakeSnooperArbiterAbortedWarning="${CYel}Geannuleerd${CClr}: De operatie is geannuleerd been, geen geldige hash gevonden."
|
||||||
|
HandshakeSnooperArbiterSuccededNotice="${CGrn}Gelukt${CClr}: Een geldige hash is gedetecteerd en opgeslagen in de fluxion's database."
|
||||||
|
HandshakeSnooperArbiterCompletedTip="${CBCyn}Handshake Snooper$CBYel aanval afgerond, Sluit dit scherm en start een andere aanval.$CClr"
|
||||||
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
|
|
||||||
|
# FLUXSCRIPT END
|
116
language/nl.sh
116
language/nl.sh
|
@ -13,86 +13,86 @@ FLUXIONUnblockingWINotice="Alle draadloze interfaces deblokkeren."
|
||||||
FLUXIONRemovingExtraWINotice="Externe draadloze interfaces verwijderen ..."
|
FLUXIONRemovingExtraWINotice="Externe draadloze interfaces verwijderen ..."
|
||||||
FLUXIONFindingWINotice="Zoek naar beschikbare draadloze interfaces..."
|
FLUXIONFindingWINotice="Zoek naar beschikbare draadloze interfaces..."
|
||||||
FLUXIONSelectedBusyWIError="De geselecteerde draadloze interface lijkt al in gebruik te zijn!"
|
FLUXIONSelectedBusyWIError="De geselecteerde draadloze interface lijkt al in gebruik te zijn!"
|
||||||
FLUXIONSelectedBusyWITip="This is usually caused by the network manager using the interface selected. We recommened you$CGrn gracefully stop the network manager$CClr or configure it to ignored the selected interface. Alternatively, run \"export FLUXIONWIKillProcesses=1\" before fluxion to kill it but we suggest you$CRed avoid using the killer flag${CClr}."
|
FLUXIONSelectedBusyWITip="Dit wordt meestal veroorzaakt doordat de network manager de interface in gebruik heeft. We raden aan om$CGrn de network manager af te sluiten$CClr of in te stellen om deze interface te negeren. Alternatief, start \"export FLUXIONWIKillProcesses=1\" om fluxion het proces te sluiten maar we raden aan $CRed om niet de killer optie te gebruiken${CClr}."
|
||||||
FLUXIONGatheringWIInfoNotice="Verzamel interface informatie..."
|
FLUXIONGatheringWIInfoNotice="Verzamel interface informatie..."
|
||||||
FLUXIONUnknownWIDriverError="Unable to determine interface driver!"
|
FLUXIONUnknownWIDriverError="Onmogelijk om interface driver te bepalen!"
|
||||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$interface\" to unload..."
|
FLUXIONUnloadingWIDriverNotice="Wacht op interface \"\$interface\" om af te sluiten..."
|
||||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$interface\" to load..."
|
FLUXIONLoadingWIDriverNotice="Wacht op interface \"\$interface\" te laden..."
|
||||||
FLUXIONFindingConflictingProcessesNotice="Looking for notorious services..."
|
FLUXIONFindingConflictingProcessesNotice="Zoek naar beruchte services..."
|
||||||
FLUXIONKillingConflictingProcessesNotice="Killing notorious services..."
|
FLUXIONKillingConflictingProcessesNotice="Sluit beruchte services af..."
|
||||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Unable to determine interface's physical device!"
|
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Onmogelijk om te bepalen interface's physieke apparaat!"
|
||||||
FLUXIONStartingWIMonitorNotice="Starting monitor interface..."
|
FLUXIONStartingWIMonitorNotice="Start monitor interface..."
|
||||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
FLUXIONTargetSearchingInterfaceQuery="selecteer a draadloze interface for target searching."
|
FLUXIONTargetSearchingInterfaceQuery="Selecteer een draadloze interface voor target searching."
|
||||||
FLUXIONTargetTrackerInterfaceQuery="selecteer a draadloze interface for target tracking."
|
FLUXIONTargetTrackerInterfaceQuery="Selecteer een draadloze interface voor target tracking."
|
||||||
FLUXIONTargetTrackerInterfaceQueryTip="${CSYel}Choosing a dedicated interface may be required.$CClr"
|
FLUXIONTargetTrackerInterfaceQueryTip="${CSYel}Keuze voor een dedicated interface is misschien verplicht.$CClr"
|
||||||
FLUXIONTargetTrackerInterfaceQueryTip2="${CBRed}If you're unsure, choose \"${CBYel}Skip${CBRed}\"!$CClr"
|
FLUXIONTargetTrackerInterfaceQueryTip2="${CBRed}Als je het niet weet, kies \"${CBYel}Overslaan${CBRed}\"!$CClr"
|
||||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
FLUXIONIncompleteTargettingInfoNotice="Mist ESSID, BSSID, of Kanaal informatie!"
|
||||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
FLUXIONTargettingAccessPointAboveNotice="Fluxion valt bovenstaande access point aan."
|
||||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
FLUXIONContinueWithTargetQuery="Doorgaan met deze target?"
|
||||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
FLUXIONStartingScannerNotice="Starting scanner, please wait..."
|
FLUXIONStartingScannerNotice="Start scanner, moment geduld..."
|
||||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner (ctrl+c)."
|
FLUXIONStartingScannerTip="Vijf seconden nadat target AP verschijnt, sluit de FLUXION Scanner (ctrl+c)."
|
||||||
FLUXIONPreparingScannerResultsNotice="Synthesizing scan results, please wait..."
|
FLUXIONPreparingScannerResultsNotice="Analyseer scan resultaten, moment geduld..."
|
||||||
FLUXIONScannerFailedNotice="draadloze card may not be supported (no APs found)"
|
FLUXIONScannerFailedNotice="draadloze kaart is misschien niet ondersteund (geen APs gevonden)"
|
||||||
FLUXIONScannerDetectedNothingNotice="No access points were detected, returning..."
|
FLUXIONScannerDetectedNothingNotice="Geen access points gevonden, ga terug..."
|
||||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
FLUXIONHashFileDoesNotExistError="Hash file does not exist!"
|
FLUXIONHashFileDoesNotExistError="Hash betsand betstaat niet!"
|
||||||
FLUXIONHashInvalidError="${CRed}Error$CClr, invalid hash file!"
|
FLUXIONHashInvalidError="${CRed}Fout$CClr, Ongeldig hash bestand!"
|
||||||
FLUXIONHashValidNotice="${CGrn}Success$CClr, hash verification completed!"
|
FLUXIONHashValidNotice="${CGrn}Gelukt$CClr, hash verificatie gelukt!"
|
||||||
FLUXIONPathToHandshakeFileQuery="Enter path to handshake file $CClr(Example: /path/to/file.cap)"
|
FLUXIONPathToHandshakeFileQuery="Geef pad naar handshake bestand $CClr(Bijv: /path/to/file.cap)"
|
||||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
FLUXIONPathToHandshakeFileReturnTip="Om terug te keren, laat hash pad leeg."
|
||||||
FLUXIONAbsolutePathInfo="Absolute path"
|
FLUXIONAbsolutePathInfo="Absoluut pad"
|
||||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
FLUXIONEmptyOrNonExistentHashError="${CRed}Fout$CClr, pad wijst naar niet bestaand of leeg hash bestand."
|
||||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
FLUXIONScannerChannelQuery="Select a channel to monitor"
|
FLUXIONScannerChannelQuery="Selecteer een kanaal voor monitor"
|
||||||
FLUXIONScannerChannelOptionAll="All channels"
|
FLUXIONScannerChannelOptionAll="Alle kanalen"
|
||||||
FLUXIONScannerChannelOptionSpecific="Specific channel(s)"
|
FLUXIONScannerChannelOptionSpecific="Specifiek kanaal"
|
||||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
FLUXIONScannerChannelSingleTip="Single channel"
|
FLUXIONScannerChannelSingleTip="Een kanaal"
|
||||||
FLUXIONScannerChannelMiltipleTip="Multiple channels"
|
FLUXIONScannerChannelMiltipleTip="Meerdere kanalen"
|
||||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
FLUXIONScannerHeader="FLUXION Scanner"
|
FLUXIONScannerHeader="FLUXION Scanner"
|
||||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
FLUXIONHashSourceQuery="selecteer a method to retrieve the handshake"
|
FLUXIONHashSourceQuery="Selecteer een methode om handshake te verkrijgen"
|
||||||
FLUXIONHashSourcePathOption="Path to capture file"
|
FLUXIONHashSourcePathOption="Pad naar capture bestand"
|
||||||
FLUXIONHashSourceRescanOption="Rescan handshake directory"
|
FLUXIONHashSourceRescanOption="Vernieuw handshake map"
|
||||||
FLUXIONFoundHashNotice="A hash for the target AP was found."
|
FLUXIONFoundHashNotice="Een hash voor target AP is gevonden."
|
||||||
FLUXIONUseFoundHashQuery="Do you want to use this file?"
|
FLUXIONUseFoundHashQuery="Wil je dit bestand gebruiken?"
|
||||||
FLUXIONUseFoundHashOption="Gebruik gevonden hash"
|
FLUXIONUseFoundHashOption="Gebruik gevonden hash"
|
||||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
FLUXIONSpecifyHashPathOption="Geef pad op naar hash"
|
||||||
FLUXIONHashVerificationMethodQuery="selecteer a method of verification for the hash"
|
FLUXIONHashVerificationMethodQuery="Selecteer een methode om hash te verifieren"
|
||||||
FLUXIONHashVerificationMethodPyritOption="pyrit verificatie"
|
FLUXIONHashVerificationMethodPyritOption="pyrit verificatie"
|
||||||
FLUXIONHashVerificationMethodAircrackOption="aircrack-ng verificatie (${CYel}unreliable$CClr)"
|
FLUXIONHashVerificationMethodAircrackOption="aircrack-ng verificatie (${CYel}onbetrouwbaar$CClr)"
|
||||||
FLUXIONHashVerificationMethodCowpattyOption="cowpatty verificatie (${CGrn}recommended$CClr)"
|
FLUXIONHashVerificationMethodCowpattyOption="cowpatty verificatie (${CGrn}aangeraden$CClr)"
|
||||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
FLUXIONAttackQuery="selecteer a draadloze aanval voor dit access point"
|
FLUXIONAttackQuery="Selecteer a draadloze aanval voor dit access point"
|
||||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr aanval bezig..."
|
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr aanval bezig..."
|
||||||
FLUXIONSelectAnotherAttackOption="Selecteer andere aanval"
|
FLUXIONSelectAnotherAttackOption="Selecteer andere aanval"
|
||||||
FLUXIONAttackResumeQuery="Deze aanval is al geconfigureerd."
|
FLUXIONAttackResumeQuery="Deze aanval is al geconfigureerd."
|
||||||
FLUXIONAttackRestoreOption="Restore attack"
|
FLUXIONAttackRestoreOption="Zet attack terug"
|
||||||
FLUXIONAttackResetOption="Reset aanval"
|
FLUXIONAttackResetOption="Reset aanval"
|
||||||
FLUXIONAttackRestartOption="Herstart"
|
FLUXIONAttackRestartOption="Herstart"
|
||||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
FLUXIONGeneralSkipOption="${CYel}Sla over"
|
FLUXIONGeneralSkipOption="${CYel}Sla over"
|
||||||
FLUXIONGeneralBackOption="${CRed}Teug"
|
FLUXIONGeneralBackOption="${CRed}Teug"
|
||||||
FLUXIONGeneralExitOption="${CRed}Exit"
|
FLUXIONGeneralExitOption="${CRed}Sluit af"
|
||||||
FLUXIONGeneralRepeatOption="${CRed}Herhaal"
|
FLUXIONGeneralRepeatOption="${CRed}Herhaal"
|
||||||
FLUXIONGeneralNotFoundError="Not Found"
|
FLUXIONGeneralNotFoundError="Niet gevonden"
|
||||||
FLUXIONGeneralXTermFailureError="${CRed}Failed to start xterm session (possible misconfiguration)."
|
FLUXIONGeneralXTermFailureError="${CRed}Mislukt om xterm session te starten (waarchijnlijk verkeerde configuratie)."
|
||||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
FLUXIONCleanupAndClosingNotice="Cleaning and closing"
|
FLUXIONCleanupAndClosingNotice="Opruimen en sluiten"
|
||||||
FLUXIONKillingProcessNotice="Killing ${CGry}\$targetID$CClr"
|
FLUXIONKillingProcessNotice="Sluiten ${CGry}\$targetID$CClr"
|
||||||
FLUXIONRestoringPackageManagerNotice="Restoring ${CCyn}\$PackageManagerCLT$CClr"
|
FLUXIONRestoringPackageManagerNotice="Terugzetten ${CCyn}\$PackageManagerCLT$CClr"
|
||||||
FLUXIONDisablingMonitorNotice="Disabling monitoring interface"
|
FLUXIONDisablingMonitorNotice="Uitschakelen monitoring interface"
|
||||||
FLUXIONDisablingExtraInterfacesNotice="Disabling extra interfaces"
|
FLUXIONDisablingExtraInterfacesNotice="Uitschakelen extra interfaces"
|
||||||
FLUXIONDisablingPacketForwardingNotice="Disabling ${CGry}forwarding of packets"
|
FLUXIONDisablingPacketForwardingNotice="Uitschakelen ${CGry}forwarding of packets"
|
||||||
FLUXIONDisablingCleaningIPTablesNotice="Cleaning ${CGry}iptables"
|
FLUXIONDisablingCleaningIPTablesNotice="Opruimen ${CGry}iptables"
|
||||||
FLUXIONRestoringTputNotice="Restoring ${CGry}tput"
|
FLUXIONRestoringTputNotice="Terugzetten ${CGry}tput"
|
||||||
FLUXIONDeletingFilesNotice="Deleting ${CGry}files"
|
FLUXIONDeletingFilesNotice="Verwijderen ${CGry}files"
|
||||||
FLUXIONRestartingNetworkManagerNotice="Restarting ${CGry}Network-Manager"
|
FLUXIONRestartingNetworkManagerNotice="Herstart ${CGry}Network-Manager"
|
||||||
FLUXIONCleanupSuccessNotice="Cleanup performed successfully!"
|
FLUXIONCleanupSuccessNotice="Opruimen gelukt!"
|
||||||
FLUXIONThanksSupportersNotice="Thank you for using FLUXION"
|
FLUXIONThanksSupportersNotice="Bedankt voor het gebruiken van FLUXION"
|
||||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||||
|
|
||||||
# FLUXSCRIPT END
|
# FLUXSCRIPT END
|
||||||
|
|
Loading…
Reference in New Issue