Updated fluxion general language files.
This commit is contained in:
parent
412bf22081
commit
a89befd423
17
fluxion.sh
17
fluxion.sh
|
@ -1704,7 +1704,7 @@ fluxion_set_attack() {
|
|||
return -1
|
||||
fi
|
||||
|
||||
if [ "${IOQueryFormatFields[1]}" = "$FluxionRestartOption" ]; then
|
||||
if [ "${IOQueryFormatFields[1]}" = "$FLUXIONAttackRestartOption" ]; then
|
||||
return 2
|
||||
fi
|
||||
|
||||
|
@ -1768,15 +1768,14 @@ fluxion_prep_attack() {
|
|||
if type -t load_attack &> /dev/null; then
|
||||
# If configuration file available, check if user wants to restore.
|
||||
if [ -f "$path/attack.conf" ]; then
|
||||
local choice="?"
|
||||
# TODO: This doesn't translate choices to the selected language.
|
||||
while ! echo "$choice" | grep -q "^[ynYN]$" &> /dev/null; do
|
||||
echo -ne "$FLUXIONVLine Would you like to repeat the last attack? [Y/n] "
|
||||
read choice
|
||||
if [ ! "$choice" ]; then break; fi
|
||||
done
|
||||
local choices=( \
|
||||
"$FLUXIONAttackRestoreOption" \
|
||||
"$FLUXIONAttackResetOption" \
|
||||
)
|
||||
|
||||
if [ "${choice,,}" != "n" ]; then
|
||||
io_query_choice "$FLUXIONVLine $FLUXIONAttackResumeQuery" choices[@]
|
||||
|
||||
if [ "$IOQueryChoice" = "$FLUXIONAttackRestoreOption" ]; then
|
||||
load_attack "$path/attack.conf"
|
||||
fi
|
||||
fi
|
||||
|
|
|
@ -3,25 +3,34 @@
|
|||
# native: čeština
|
||||
|
||||
FLUXIONInterfaceQuery="Vyberte rozhraní"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Unblocking all wireless interfaces..."
|
||||
FLUXIONFindingExtraWINotice="Looking for extraneous wireless interfaces..."
|
||||
#FLUXIONFindingExtraWINotice="Looking for extraneous wireless interfaces..."
|
||||
FLUXIONRemovingExtraWINotice="Removing extraneous wireless interfaces..."
|
||||
FLUXIONFindingWINotice="Looking for available wireless interfaces..."
|
||||
FLUXIONSelectedBusyWIError="The wireless interface selected appears to be currently in use!"
|
||||
FLUXIONSelectedBusyWITip="Run \"export FLUXIONWIKillProcesses=1\" before FLUXION to use it."
|
||||
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}."
|
||||
FLUXIONGatheringWIInfoNotice="Gathering interface information..."
|
||||
FLUXIONUnknownWIDriverError="Unable to determine interface driver!"
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to load..."
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$interface\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$interface\" to load..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Looking for notorious services..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Killing notorious services..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Unable to determine interface's physical device!"
|
||||
FLUXIONStartingWIMonitorNotice="Starting monitor interface..."
|
||||
FLUXIONMonitorModeWIEnabledNotice="${CGrn}Interface monitor mode enabled."
|
||||
FLUXIONMonitorModeWIFailedError="${CRed}Interface monitor mode failed!"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Starting scanner, please wait..."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Synthesizing scan results, please wait..."
|
||||
FLUXIONScannerFailedNotice="Wireless card may not be supported (no APs found)"
|
||||
FLUXIONScannerDetectedNothingNotice="No access points were detected, returning..."
|
||||
|
@ -30,38 +39,42 @@ FLUXIONHashFileDoesNotExistError="Hash file does not exist!"
|
|||
FLUXIONHashInvalidError="${CRed}Error$CClr, invalid hash file!"
|
||||
FLUXIONHashValidNotice="${CGrn}Success$CClr, hash verification completed!"
|
||||
FLUXIONPathToHandshakeFileQuery="Enter path to handshake file $CClr(Example: /.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="Absolute path"
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="Vyberte kanál"
|
||||
FLUXIONScannerChannelOptionAll="Všechny kanály"
|
||||
FLUXIONScannerChannelOptionSpecific="Specifický kanál(y)"
|
||||
FluxionRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelSingleTip="Jeden kanál"
|
||||
FLUXIONScannerChannelMiltipleTip="Více kanálů"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="Sledování WIFI"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAPServiceQuery="Vyberte metodu útočení"
|
||||
FLUXIONAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}Doporučeno$CClr)"
|
||||
FLUXIONAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}Pomalejší připojení$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="Select a method to retrieve the handshake"
|
||||
FLUXIONHashSourcePathOption="Path to capture file"
|
||||
FLUXIONHashSourceRescanOption="Handshake directory (rescan)"
|
||||
FLUXIONFoundHashNotice="A hash for the target AP was found."
|
||||
FLUXIONUseFoundHashQuery="Do you want to use this file?"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="Select a method of verification for the hash"
|
||||
FLUXIONHashVerificationMethodPyritOption="pyrit verification (${CGrn}recommended$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="aircrack-ng verification (${CYel}unreliable$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="Vyberte"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FLUXIONAttack$CClr attack in progress..."
|
||||
FLUXIONAttackQuery="Select a wireless attack for the access point"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr attack in progress..."
|
||||
FLUXIONSelectAnotherAttackOption="Select another attack"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}Zpět"
|
||||
FLUXIONGeneralExitOption="${CRed}Exit"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat operation"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat"
|
||||
FLUXIONGeneralNotFoundError="Nenalezeno"
|
||||
FLUXIONGeneralXTermFailureError="${CRed}Failed to start xterm session (possible misconfiguration)."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
|
|
@ -3,25 +3,34 @@
|
|||
# native: Deutsch
|
||||
|
||||
FLUXIONInterfaceQuery="Wähle Sie ihre Netzwerkkarte aus"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Wiederherstellen von allen Netzwerkkarten..."
|
||||
FLUXIONFindingExtraWINotice="Suche nach Netzwerkkarten..."
|
||||
#FLUXIONFindingExtraWINotice="Suche nach Netzwerkkarten..."
|
||||
FLUXIONRemovingExtraWINotice="Entferne Netzwerkkarten..."
|
||||
FLUXIONFindingWINotice="Suche nach Netzwerkkarten..."
|
||||
FLUXIONSelectedBusyWIError="Die ausgewählte Netzwerkkarte befindet sich gerade in Benutzung"
|
||||
FLUXIONSelectedBusyWITip="Führe \"export FLUXIONWIKillProcesses=1\" aus bevor Sie FLUXION benutzen"
|
||||
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}."
|
||||
FLUXIONGatheringWIInfoNotice="Sammeln von Daten, von allen Netzwerken..."
|
||||
FLUXIONUnknownWIDriverError="Netzwerkkartentreiber konnte nicht bestimmt werden"
|
||||
FLUXIONUnloadingWIDriverNotice="Warte auf Netzwerkarte \"\$wiSelected\"..."
|
||||
FLUXIONLoadingWIDriverNotice="Warte auf Treiberantwort \"\$wiSelected\"..."
|
||||
FLUXIONUnloadingWIDriverNotice="Warte auf Netzwerkarte \"\$interface\"..."
|
||||
FLUXIONLoadingWIDriverNotice="Warte auf Treiberantwort \"\$interface\"..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Suche nach Diensten die Probleme verursachen können..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Beende Diensten die Probleme verursachen können..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Die Physische Schnittstelle konnte nicht ermittelt werden"
|
||||
FLUXIONStartingWIMonitorNotice="Starte die Netzwerkkarte im sogenannten Monitor Mode"
|
||||
FLUXIONMonitorModeWIEnabledNotice="${CGrn}Monitormode konnte erfolgreich gestartet werden"
|
||||
FLUXIONMonitorModeWIFailedError="${CRed}Monitormode konnte nicht gestartet werden"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Starte Netzwerkscanner"
|
||||
FLUXIONStartingScannerTip="Wenn nach etwa 30 Sekunden Netzwerke sichbar werden, schließe Netzwerkscanner"
|
||||
FLUXIONStartingScannerTip="Wenn nach etwa 30 Sekunden Netzwerke sichbar werden, schließe Netzwerkscanner (ctrl+c)"
|
||||
FLUXIONPreparingScannerResultsNotice="Analysieren von allen gesammelten Daten..."
|
||||
FLUXIONScannerFailedNotice="Netzwerkkarte ist möglichweise nicht geeignet ( Keine Netzwerke gefunden )"
|
||||
FLUXIONScannerDetectedNothingNotice="Keine Netzwerke konnten gefunden werden"
|
||||
|
@ -30,38 +39,42 @@ FLUXIONHashFileDoesNotExistError="Hash Datei existiert nicht"
|
|||
FLUXIONHashInvalidError="${CRed}Fehler$CClr, falscher Hash"
|
||||
FLUXIONHashValidNotice="${CGrn}Erfolgreich$CClr,Hash wurde erfolgreich verifiziert"
|
||||
FLUXIONPathToHandshakeFileQuery="Geben sie den Pfad zum Handshake an $CClr(Beispiel: /.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="Geben sie den absoluten Pfad ein"
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="Wähle deinen Netzwerkfrequenz aus"
|
||||
FLUXIONScannerChannelOptionAll="Alle Netzwerkfrequenzen"
|
||||
FLUXIONScannerChannelOptionSpecific="Spezifische Frequenz(en)"
|
||||
FluxionRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelSingleTip="Einzelne Frequenz"
|
||||
FLUXIONScannerChannelMiltipleTip="Mehrere Frequenzen"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="FLUXION Scanner"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAPServiceQuery="Wähle deine Angriffsmethode aus"
|
||||
FLUXIONAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}Empfohlen$CClr)"
|
||||
FLUXIONAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}Langsame Verbindung$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="Wähle eine Methode aus um den Handshake zu erlangen"
|
||||
FLUXIONHashSourcePathOption="Handshake Pfad eingeben"
|
||||
FLUXIONHashSourceRescanOption="Handshake Ordner neu einlesen"
|
||||
FLUXIONFoundHashNotice="Ein Hash wurde für das Netzwerk gefunden"
|
||||
FLUXIONUseFoundHashQuery="Möchten Sie dieses Netzwerk nutzen?"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="Wählen sie eine Methode um den Hash zu verifizieren"
|
||||
FLUXIONHashVerificationMethodPyritOption="Pyrit verifizierung (${CGrn}Empfohlen$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="Aircrack verfizierung (${CYel}Nicht empfohlen$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="Wählen Sie einen drahtlosen Angriff für den Zugangspunkt aus"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FLUXIONAttack$CClr Angriff gestartet"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr Angriff gestartet"
|
||||
FLUXIONSelectAnotherAttackOption="Wählen Sie einen anderen Angriff"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}Zurück"
|
||||
FLUXIONGeneralExitOption="${CRed}Ausgang"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Wiederholen Sie den Vorgang"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat"
|
||||
FLUXIONGeneralNotFoundError="Nicht gefunden"
|
||||
FLUXIONGeneralXTermFailureError="${CRed}Xterm Terminal konnte nicht gestartet werden"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
|
|
@ -3,65 +3,78 @@
|
|||
# native: Ελληνικά
|
||||
|
||||
FLUXIONInterfaceQuery="Επιλέξτε μία διεπαφή"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Απεμπλοκή όλων των ασύρματων διεπαφών..."
|
||||
FLUXIONFindingExtraWINotice="Έλεγχος για εξωτερικές ασύρματες διεπαφές,.."
|
||||
#FLUXIONFindingExtraWINotice="Έλεγχος για εξωτερικές ασύρματες διεπαφές,.."
|
||||
FLUXIONRemovingExtraWINotice="Αφαίρεση εξωτερικων ασύρματων διεπαφών..."
|
||||
FLUXIONFindingWINotice="Έλεγχος για διαθέσιμες ασύρματες διεπαφές..."
|
||||
FLUXIONSelectedBusyWIError="Η επιλεγμένη ασύρματη διεπαφή φαίνεται να χρησιμοποιείται αυτή τη στιγμή!"
|
||||
FLUXIONSelectedBusyWITip="Εκτελέστε \"export FLUXIONWIKillProcesses=1\"πριν από το FLUXION για να το χρησιμοποιήσετε."
|
||||
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}."
|
||||
FLUXIONGatheringWIInfoNotice="Συγκέντρωση πληροφοριών διεπαφής..."
|
||||
FLUXIONUnknownWIDriverError="Δεν είναι δυνατός ο προσδιορισμός του οδηγού διεπαφής!"
|
||||
FLUXIONUloadingWIDriverNotice="Περιμένω την διεπαφη \"\$wiSelected\"να απενεργοποιηθεί..."
|
||||
FLUXIONLoadingWIDriverNotice="Περιμένω την διεπαφη \"\$wiSelected\"να φορτώσει..."
|
||||
FLUXIONUnloadingWIDriverNotice="Περιμένω την διεπαφη \"\$interface\"να απενεργοποιηθεί..."
|
||||
FLUXIONLoadingWIDriverNotice="Περιμένω την διεπαφη \"\$interface\"να φορτώσει..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Έλεγχος για υπηρεσίες που προκαλούν προβλήματα..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Απενεργοποιηση υπηρεσιών που προκαλούν προβλήματα ..."
|
||||
FLUXIONPhicalWIDeviceUnknownError="${CRed}Δεν είναι δυνατός ο προσδιορισμός της φυσικής συσκευής της διασύνδεσης!"
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Δεν είναι δυνατός ο προσδιορισμός της φυσικής συσκευής της διασύνδεσης!"
|
||||
FLUXIONStartingWIMonitorNotice="Έναρξη διεπαφής παρακολουθησης..."
|
||||
FLUXIONMonitorModeWIEnabledNotice="${CGrn}Η λειτουργία παρακολούθησης είναι ενεργοποιημένη."
|
||||
FLUXIONMonitorModeWIFailedError="${CRed}Η λειτουργία παρακολουθησης απέτυχε!"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Ξεκινάω τον σαρωτή,παρακαλώ περιμένετε..."
|
||||
FLUXIONStartingScannerTip="Πέντε δευτερόλεπτα μετά την εμφάνιση του ασυρματου δικτυου που θελετε να κανετε επιθεση,κλείστε τον σαρωτή FLUXION.( Control + C )"
|
||||
FLUXIONStartingScannerTip="Πέντε δευτερόλεπτα μετά την εμφάνιση του ασυρματου δικτυου που θελετε να κανετε επιθεση,κλείστε τον σαρωτή FLUXION (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Σύνθεση αποτελεσμάτων σάρωσης,παρακαλώ περιμένετε..."
|
||||
FLUXIONScannerFailedNotice="Η ασύρματη κάρτα ενδέχεται να μην υποστηρίζεται(δεν βρέθηκαν ασυρματα δικτυα)"
|
||||
FLUXIONScannerDetectedNothingNotice="Δεν εντοπίστηκαν ασυρματα δικτυα,επιστρέφω..."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashFileDoesNotExistError="Το αρχείο Hash δεν υπάρχει!"
|
||||
FLUXIONHashInvalidError="${CRed}Σφάλμα$CClr,μη έγκυρο αρχείο hash!"
|
||||
FLUXIONHashValidNotice="${CGrn}Επιτυχία$CClr,η εξακρίβωση του Hash ολοκληρώθηκε!"
|
||||
FLUXIONPathToHandshakeFileQuery="Εισαγάγετε τη διαδρομή για το αρχείο Handshake$CClr (Παράδειγμα:/.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="Εισαγετε διαδρομή αρχειου"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="Επίλεξτε κανάλι"
|
||||
FLUXIONScannerChannelOptionAll="Όλα τα κανάλια"
|
||||
FLUXIONScannerChannelOptionSpecific="Συγκεκριμένο(α) κανάλι(α)"
|
||||
FluxionRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelSingleTip="Ενα κανάλι"
|
||||
FLUXIONScannerChannelMiltipleTip="Πολλαπλά κανάλια"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="Εποπτεία Wi-Fi"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAPServiceQuery="Επίλογη τύπου επίθεσης"
|
||||
FLUXIONAPServiceHostapdOption="Ψευτικο δικτυο - hostapd (${CGrn}Συνιστάται$CClr)"
|
||||
FLUXIONAPServiceAirbaseOption="Ψευτικο δικτυο - airbase-ng (${CYel}Πιό αργή σύνδεση$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="Επιλέξτε μια μέθοδο για την ανάκτηση του Handshake"
|
||||
FLUXIONHashSourcePathOption="Διαδρομή για καταγραφή αρχείου"
|
||||
FLUXIONHashSourceRescanOption="Φακελος Handshake (επανελεγχος)"
|
||||
FLUXIONFoundHashNotice="Έχει εντοπιστεί ένα hash για το στόχο."
|
||||
FLUXIONUseFoundHashQuery="Θέλετε να χρησιμοποιήσετε αυτό το αρχείο;"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="Επιλέξτε μια μέθοδο επαλήθευσης για το hash"
|
||||
FLUXIONHashVerificationMethodPyritOption="επαλήθευση με pyrit (${CGrn}συνιστώμενη$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="επαληθευση με aircrack-ng (${CYel}αναξιόπιστη$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="Καντε μια επιλογη"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FLUXIONAttack$CClr επιθεση σε εξελιξη..."
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr επιθεση σε εξελιξη..."
|
||||
FLUXIONSelectAnotherAttackOption="Διαλεξτε μια αλλη επιθεση"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}Πίσω"
|
||||
FLUXIONGeneralExitOption="${CRed}Εξοδος"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Επαναληψη διαδικασιας"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat"
|
||||
FLUXIONGeneralNotFoundError="Δεν βρέθηκε"
|
||||
FLUXIONGeneralXTermFailureError="${CRed}Προβλημα εναρξης xterm (πιθανη λανθασμενη ρυθμιση)."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
|
|
@ -5,12 +5,10 @@
|
|||
FLUXIONInterfaceQuery="Select a wireless interface"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Unblocking all wireless interfaces."
|
||||
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
|
||||
#FLUXIONFindingExtraWINotice="Looking for extraneous wireless interfaces..."
|
||||
FLUXIONRemovingExtraWINotice="Removing extraneous wireless interfaces..."
|
||||
FLUXIONFindingWINotice="Looking for available wireless interfaces..."
|
||||
|
@ -24,19 +22,15 @@ FLUXIONFindingConflictingProcessesNotice="Looking for notorious services..."
|
|||
FLUXIONKillingConflictingProcessesNotice="Killing notorious services..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Unable to determine interface's physical device!"
|
||||
FLUXIONStartingWIMonitorNotice="Starting monitor interface..."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
|
||||
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing essid, bssid, or channel information!"
|
||||
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Starting scanner, please wait..."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Synthesizing scan results, please wait..."
|
||||
FLUXIONScannerFailedNotice="Wireless card may not be supported (no APs found)"
|
||||
FLUXIONScannerDetectedNothingNotice="No access points were detected, returning..."
|
||||
|
@ -72,7 +66,10 @@ FLUXIONHashVerificationMethodAircrackOption="aircrack-ng verification (${CYel}un
|
|||
FLUXIONAttackQuery="Select a wireless attack for the access point"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr attack in progress..."
|
||||
FLUXIONSelectAnotherAttackOption="Select another attack"
|
||||
FluxionRestartOption="Restart"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}Back"
|
||||
|
|
|
@ -3,25 +3,34 @@
|
|||
# native: Español
|
||||
|
||||
FLUXIONInterfaceQuery="Seleccione una interfase"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Unblocking all wireless interfaces..."
|
||||
FLUXIONFindingExtraWINotice="Looking for extraneous wireless interfaces..."
|
||||
#FLUXIONFindingExtraWINotice="Looking for extraneous wireless interfaces..."
|
||||
FLUXIONRemovingExtraWINotice="Removing extraneous wireless interfaces..."
|
||||
FLUXIONFindingWINotice="Looking for available wireless interfaces..."
|
||||
FLUXIONSelectedBusyWIError="The wireless interface selected appears to be currently in use!"
|
||||
FLUXIONSelectedBusyWITip="Run \"export FLUXIONWIKillProcesses=1\" before FLUXION to use it."
|
||||
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}."
|
||||
FLUXIONGatheringWIInfoNotice="Gathering interface information..."
|
||||
FLUXIONUnknownWIDriverError="Unable to determine interface driver!"
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to load..."
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$interface\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$interface\" to load..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Looking for notorious services..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Killing notorious services..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Unable to determine interface's physical device!"
|
||||
FLUXIONStartingWIMonitorNotice="Starting monitor interface..."
|
||||
FLUXIONMonitorModeWIEnabledNotice="${CGrn}Interface monitor mode enabled."
|
||||
FLUXIONMonitorModeWIFailedError="${CRed}Interface monitor mode failed!"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Starting scanner, please wait..."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Synthesizing scan results, please wait..."
|
||||
FLUXIONScannerFailedNotice="Wireless card may not be supported (no APs found)"
|
||||
FLUXIONScannerDetectedNothingNotice="No access points were detected, returning..."
|
||||
|
@ -30,7 +39,9 @@ FLUXIONHashFileDoesNotExistError="Hash file does not exist!"
|
|||
FLUXIONHashInvalidError="${CRed}Error$CClr, invalid hash file!"
|
||||
FLUXIONHashValidNotice="${CGrn}Success$CClr, hash verification completed!"
|
||||
FLUXIONPathToHandshakeFileQuery="Enter path to handshake file $CClr(Example: /.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="Absolute path"
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="Seleccione canal"
|
||||
FLUXIONScannerChannelOptionAll="Todos los canales "
|
||||
|
@ -41,27 +52,29 @@ FLUXIONScannerChannelMiltipleTip="Canales múltiples"
|
|||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="FLUXION Escáner"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAPServiceQuery="Seleccione Opción de Ataque"
|
||||
FLUXIONAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}recomendado$CClr)"
|
||||
FLUXIONAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}Conexión más lenta$CClr)"
|
||||
FluxionRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="Select a method to retrieve the handshake"
|
||||
FLUXIONHashSourcePathOption="Path to capture file"
|
||||
FLUXIONHashSourceRescanOption="Handshake directory (rescan)"
|
||||
FLUXIONFoundHashNotice="A hash for the target AP was found."
|
||||
FLUXIONUseFoundHashQuery="Do you want to use this file?"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="Select a method of verification for the hash"
|
||||
FLUXIONHashVerificationMethodPyritOption="pyrit verification (${CGrn}recommended$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="aircrack-ng verification (${CYel}unreliable$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="Seleccione un ataque inalámbrico para el punto de acceso"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FLUXIONAttack$CClr attack in progress..."
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr attack in progress..."
|
||||
FLUXIONSelectAnotherAttackOption="Select another attack"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}Atrás"
|
||||
FLUXIONGeneralExitOption="${CRed}Salir"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repetir la operación"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repetir"
|
||||
FLUXIONGeneralNotFoundError="No_Encontrado"
|
||||
FLUXIONGeneralXTermFailureError="${CRed}Failed to start xterm session (possible misconfiguration)."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
|
|
@ -3,25 +3,34 @@
|
|||
# native: français
|
||||
|
||||
FLUXIONInterfaceQuery="Sélectionnez une interface"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Débloque toutes les interfaces wireless..."
|
||||
FLUXIONFindingExtraWINotice="Cherche des interfaces wireless externes..."
|
||||
#FLUXIONFindingExtraWINotice="Cherche des interfaces wireless externes..."
|
||||
FLUXIONRemovingExtraWINotice="Suppression des interfaces wireless externes..."
|
||||
FLUXIONFindingWINotice="Cherche des interfaces wireless disponibles..."
|
||||
FLUXIONSelectedBusyWIError="L'interface wireless sélectionnée semble déjà en cours d'utilisation !"
|
||||
FLUXIONSelectedBusyWITip="Run \"export FLUXIONWIKillProcesses=1\" before FLUXION to use it."
|
||||
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}."
|
||||
FLUXIONGatheringWIInfoNotice="Récupération des informations d'interface..."
|
||||
FLUXIONUnknownWIDriverError="Incapable de déterminer les drivers d'interface !"
|
||||
FLUXIONUnloadingWIDriverNotice="En attente du déchargement de l'interface \"\$wiSelected\"..."
|
||||
FLUXIONLoadingWIDriverNotice="En attente du chargement de l'interface \"\$wiSelected\"..."
|
||||
FLUXIONUnloadingWIDriverNotice="En attente du déchargement de l'interface \"\$interface\"..."
|
||||
FLUXIONLoadingWIDriverNotice="En attente du chargement de l'interface \"\$interface\"..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Looking for notorious services..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Killing notorious services..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Incapable de déterminer l'interface physique !"
|
||||
FLUXIONStartingWIMonitorNotice="Lancement de l'interface de monitoring..."
|
||||
FLUXIONMonitorModeWIEnabledNotice="${CGrn}Mode monitoring activé."
|
||||
FLUXIONMonitorModeWIFailedError="${CRed}Échec de l'activation du mode monitoring !"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Lancement du scanner, veuillez patienter..."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Synthèse des résultats du scan, veuillez patienter..."
|
||||
FLUXIONScannerFailedNotice="Carte wireless probablement pas supportée (pas de point d'accès trouvé)."
|
||||
FLUXIONScannerDetectedNothingNotice="Pas de point d'accès trouvé, retour..."
|
||||
|
@ -30,7 +39,9 @@ FLUXIONHashFileDoesNotExistError="Fichier hash inexistant !"
|
|||
FLUXIONHashInvalidError="${CRed}Error$CClr, fichier hash invalide !"
|
||||
FLUXIONHashValidNotice="${CGrn}Success$CClr, vérification du hash complète !"
|
||||
FLUXIONPathToHandshakeFileQuery="Entrez le chemin du hash $CClr(Exemple: /.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="Chemin absolu"
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="Sélectionnez un canal"
|
||||
FLUXIONScannerChannelOptionAll="Tous les canaux"
|
||||
|
@ -41,27 +52,29 @@ FLUXIONScannerChannelMiltipleTip="Plusieurs canaux"
|
|||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="Scanner FLUXION"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAPServiceQuery="Sélectionnez une option d'attaque"
|
||||
FLUXIONAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}recommandé$CClr)"
|
||||
FLUXIONAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}Connexion plus lente$CClr)"
|
||||
FluxionRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="Sélectionnez une méthode de récupération de handshake"
|
||||
FLUXIONHashSourcePathOption="Chemin du fichier capturé"
|
||||
FLUXIONHashSourceRescanOption="Dossier du handshake (rescan)"
|
||||
FLUXIONFoundHashNotice="Un hash pour le point d'accès ciblé a été trouvé."
|
||||
FLUXIONUseFoundHashQuery="Voulez-vous utiliser ce fichier ?"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="Sélectionnez une méthode de vérification du hash"
|
||||
FLUXIONHashVerificationMethodPyritOption="vérification pyrit (${CGrn}recommandé$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="vérification aircrack-ng (${CYel}peu fiable$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="Sélectionnez une attaque wireless pour le point d'accès"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FLUXIONAttack$CClr attaque en cours..."
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr attaque en cours..."
|
||||
FLUXIONSelectAnotherAttackOption="Sélectionnez une autre attaque"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}Retour"
|
||||
FLUXIONGeneralExitOption="${CRed}Sortie"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Répéter l'opération"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat"
|
||||
FLUXIONGeneralNotFoundError="Non trouvé"
|
||||
FLUXIONGeneralXTermFailureError="${CRed} Echec au lancement de la session xterm (mauvaise configuration possible)."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
|
|
@ -3,25 +3,34 @@
|
|||
# native: italiano
|
||||
|
||||
FLUXIONInterfaceQuery="Seleziona un'interfaccia"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Sblocca tutte le interfacce wireless..."
|
||||
FLUXIONFindingExtraWINotice="Trova interfacce extra wireless..."
|
||||
#FLUXIONFindingExtraWINotice="Trova interfacce extra wireless..."
|
||||
FLUXIONRemovingExtraWINotice="Rimuove interfacce extra wireless..."
|
||||
FLUXIONFindingWINotice="Trova interfacce wireless disponibili..."
|
||||
FLUXIONSelectedBusyWIError="L'interfaccia selezionata sembra in uso in questo momento!"
|
||||
FLUXIONSelectedBusyWITip="Usa \"export FLUXIONWIKillProcesses=1\" prima di FLUXION per sfruttarlo."
|
||||
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}."
|
||||
FLUXIONGatheringWIInfoNotice="Raccolta informazioni interfaccia..."
|
||||
FLUXIONUnknownWIDriverError="Impossibile trovare il driver dell'interfaccia!"
|
||||
FLUXIONUnloadingWIDriverNotice="Attendo che l'interfaccia \"\$wiSelected\" venga scaricata..."
|
||||
FLUXIONLoadingWIDriverNotice="Attendo che l'interfaccia \"\$wiSelected\" venga caricata..."
|
||||
FLUXIONUnloadingWIDriverNotice="Attendo che l'interfaccia \"\$interface\" venga scaricata..."
|
||||
FLUXIONLoadingWIDriverNotice="Attendo che l'interfaccia \"\$interface\" venga caricata..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Individuo i servizi noti..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Chiudo i servizi noti..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Impossibile determinare l'interfaccia del dispositivo fisico!"
|
||||
FLUXIONStartingWIMonitorNotice="Avvio dell'interfaccia MONITOR..."
|
||||
FLUXIONMonitorModeWIEnabledNotice="${CGrn}Interfaccia monitor ATTIVATA."
|
||||
FLUXIONMonitorModeWIFailedError="${CRed}Interfaccia monitor FALLITA!"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Avvio Scanner, attendi..."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Sintetizzo i risultati dello scan, attendi..."
|
||||
FLUXIONScannerFailedNotice="La scheda Wireless non è supportata (nessun APs trovato)"
|
||||
FLUXIONScannerDetectedNothingNotice="Nessun Access Point e' stato trovato, ritorno..."
|
||||
|
@ -30,7 +39,9 @@ FLUXIONHashFileDoesNotExistError="Il file di hash non esiste!"
|
|||
FLUXIONHashInvalidError="${CRed}Errore$CClr, hash del file invalido!"
|
||||
FLUXIONHashValidNotice="${CGrn}Perfetto$CClr, verifica hash completata!"
|
||||
FLUXIONPathToHandshakeFileQuery="Inserisci il percorso del file di handshake $CClr(Esempio: /.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="Path assoluto"
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="Selezione Canale"
|
||||
FLUXIONScannerChannelOptionAll="Tutti i Canali"
|
||||
|
@ -41,27 +52,29 @@ FLUXIONScannerChannelMiltipleTip="Canali Multipli"
|
|||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="WIFI Monitor"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAPServiceQuery="Seleziona Opzione d'Attacco"
|
||||
FLUXIONAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}Consigliato!$CClr)"
|
||||
FLUXIONAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}Connessione Lenta$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="Seleziona il metodo di scoperta dell'handshake"
|
||||
FLUXIONHashSourcePathOption="Path del file catturato"
|
||||
FLUXIONHashSourceRescanOption="Handshake directory (rescan)"
|
||||
FLUXIONFoundHashNotice="L'hash del target AP è stato trovato."
|
||||
FLUXIONUseFoundHashQuery="Vuoi usare questo file?"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="Seleziona il metodo di verifica dell'hash"
|
||||
FLUXIONHashVerificationMethodPyritOption="pyrit verification (${CGrn}raccomandato$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="aircrack-ng verification (${CYel}inaffidabile$CClr)"
|
||||
FluxionRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="Seleziona la tua scelta"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FLUXIONAttack$CClr attacco in corso..."
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr attacco in corso..."
|
||||
FLUXIONSelectAnotherAttackOption="Seleziona un altro tipo di attacco"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}Indietro"
|
||||
FLUXIONGeneralExitOption="${CRed}Esci"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Ripeti Operazione"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat"
|
||||
FLUXIONGeneralNotFoundError="Non Trovato"
|
||||
FLUXIONGeneralXTermFailureError="${CRed}Errore nell'avvio della sessione XTerm (possibile configurazione errata)."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
|
|
@ -3,25 +3,34 @@
|
|||
# native: Polski
|
||||
|
||||
FLUXIONInterfaceQuery="Wybierz kartę bezprzewodową..."
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Odblokowanie wszystkick kart bezprzewodowych..."
|
||||
FLUXIONFindingExtraWINotice="Wyszukiwanie zewnętrznych kart bezprzewodowych..."
|
||||
#FLUXIONFindingExtraWINotice="Wyszukiwanie zewnętrznych kart bezprzewodowych..."
|
||||
FLUXIONRemovingExtraWINotice="Usuwanie zewnętrznych kart bezprzewodowych..."
|
||||
FLUXIONFindingWINotice="Wyszukiwanie dostępnych kart bezprzewodowych..."
|
||||
FLUXIONSelectedBusyWIError="Wygląda na to, że wybrana karta bezprzewodowa jest obecnie używana!"
|
||||
FLUXIONSelectedBusyWITip="Uruchom \"export FLUXIONWIKillProcesses=1\" przed startem FLUXION aby jej użyć."
|
||||
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}."
|
||||
FLUXIONGatheringWIInfoNotice="Pozyskiwanie informacji o karcie..."
|
||||
FLUXIONUnknownWIDriverError="Nie można ustalić sterownika karty!"
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to load..."
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$interface\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$interface\" to load..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Poszukiwanie przeszkadzających usług..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Zabijanie przeszkadzających usług..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Unable to determine interface's physical device!"
|
||||
FLUXIONStartingWIMonitorNotice="Starting monitor interface..."
|
||||
FLUXIONMonitorModeWIEnabledNotice="${CGrn}Tryb monitorowania dla karty aktywowany."
|
||||
FLUXIONMonitorModeWIFailedError="${CRed}Aktywowanie trybu monitorowania nieudane!"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Uruchamianie skanera, proszę czekać..."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Synthesizing scan results, please wait..."
|
||||
FLUXIONScannerFailedNotice="Twoja karta może być nie obsługiwana (nie znaleziono żadnego(ych) AP)"
|
||||
FLUXIONScannerDetectedNothingNotice="Nie znaleziono punktów dostępu, powracanie..."
|
||||
|
@ -30,8 +39,9 @@ FLUXIONHashFileDoesNotExistError="Plik hash nie istnieje!"
|
|||
FLUXIONHashInvalidError="${CRed}Error$CClr, invalid hash file!"
|
||||
FLUXIONHashValidNotice="${CGrn}Success$CClr, hash verification completed!"
|
||||
FLUXIONPathToHandshakeFileQuery="Podaj ścieżkę dostępu do pliku handshake $CClr(Example: /.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="Absolute path"
|
||||
FluxionRestartOption="Restart"s
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="Wybierz kanał do monitorowania"
|
||||
FLUXIONScannerChannelOptionAll="Wszystkie kanały"
|
||||
|
@ -42,26 +52,29 @@ FLUXIONScannerChannelMiltipleTip="Wiele kanałów"
|
|||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="Skaner FLUXION"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAPServiceQuery="Select an access point service"
|
||||
FLUXIONAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}recommended$CClr)"
|
||||
FLUXIONAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}slow$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="Wybierz metodę pozyskania handshake'a"
|
||||
FLUXIONHashSourcePathOption="Path to capture file"
|
||||
FLUXIONHashSourceRescanOption="Handshake directory (rescan)"
|
||||
FLUXIONFoundHashNotice="Hash dla AP został znaleziony."
|
||||
FLUXIONUseFoundHashQuery="Chcesz użyć ten plik?"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="Wybierz metodę weryfikacji hash'a"
|
||||
FLUXIONHashVerificationMethodPyritOption="weryfikacja przy pomocy pyrit-a (${CGrn}recommended$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="weryfikacja przy pomocy aircrack-ng (${CYel}unreliable$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="Wybierz rodzaj ataka na punkt dostępowy"
|
||||
FLUXIONAttackInProgressNotice="Atak ${CCyn}\$FLUXIONAttack$CClr w trakcie..."
|
||||
FLUXIONAttackInProgressNotice="Atak ${CCyn}\$FluxionAttack$CClr w trakcie..."
|
||||
FLUXIONSelectAnotherAttackOption="Wybierz inny rodzaj ataku"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}Cofnij"
|
||||
FLUXIONGeneralExitOption="${CRed}Wyjście"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Powtórz"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat"
|
||||
FLUXIONGeneralNotFoundError="Nie znaleziono"
|
||||
FLUXIONGeneralXTermFailureError="${CRed} Start xterm niemożliwy (źle skonfigurowany?)."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
|
|
@ -3,35 +3,45 @@
|
|||
# native: Português-BR
|
||||
|
||||
FLUXIONInterfaceQuery="Selecione sua interface wireless"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Desbloqueando interfaces wireless..."
|
||||
FLUXIONFindingExtraWINotice="A procura de interfaces wireless..."
|
||||
#FLUXIONFindingExtraWINotice="A procura de interfaces wireless..."
|
||||
FLUXIONRemovingExtraWINotice="Removendo interfaces wireless..."
|
||||
FLUXIONFindingWINotice="Procurando por interfaces wireless válidas..."
|
||||
FLUXIONSelectedBusyWIError="A interface selecionada esta aparentemente em uso"
|
||||
FLUXIONSelectedBusyWITip="Execute \"export FLUXIONWIKillProcesses=1\" antes do FLUXION ."
|
||||
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}."
|
||||
FLUXIONGatheringWIInfoNotice="Relhendo informações da interface..."
|
||||
FLUXIONUnknownWIDriverError="Ative o drive da interface!"
|
||||
FLUXIONUnloadingWIDriverNotice="Esperando pela interface \"\$wiSelected\" para descarregar..."
|
||||
FLUXIONLoadingWIDriverNotice="Esperando pela interface \"\$wiSelected\" para carregar..."
|
||||
FLUXIONUnloadingWIDriverNotice="Esperando pela interface \"\$interface\" para descarregar..."
|
||||
FLUXIONLoadingWIDriverNotice="Esperando pela interface \"\$interface\" para carregar..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Procurando serviços conflitantes..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Matando serviços conflitantes..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Não é possível determinar o dispositivo físico da interface!"
|
||||
FLUXIONStartingWIMonitorNotice="Iniciando modo monitor..."
|
||||
FLUXIONMonitorModeWIEnabledNotice="${CGrn}Interface em modo monitor ativada!"
|
||||
FLUXIONMonitorModeWIFailedError="${CRed}Falha ao ativar modo monitor!"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Iniciando busca, aguarde por favor..."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Sintetizando os resultados da varredura, aguarde..."
|
||||
FLUXIONScannerFailedNotice="Wireless card não suportado (sem APs encontrados)"
|
||||
FLUXIONScannerDetectedNothingNotice="Sem APs encontrados, retornando..."
|
||||
FluxionRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashFileDoesNotExistError="Arquivo hash não existe!"
|
||||
FLUXIONHashInvalidError="${CRed}Error$CClr, arquivo hash inválido!"
|
||||
FLUXIONHashValidNotice="${CGrn}Success$CClr, verificação de hash completa!"
|
||||
FLUXIONPathToHandshakeFileQuery="Insira o arquivo de handshake $CClr(Exemplo: /.../dump-01.cap)"
|
||||
FLUXIONAbsolutePathInfo="Caminho "
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="Caminho"
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="Selecione um canal para monitorar"
|
||||
FLUXIONScannerChannelOptionAll="Todos os Canais"
|
||||
|
@ -42,23 +52,26 @@ FLUXIONScannerChannelMiltipleTip="Múltiplos canais"
|
|||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="FLUXION Scanner"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAPServiceQuery="Selecione um serviço de ponto de acesso"
|
||||
FLUXIONAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}recomendado$CClr)"
|
||||
FLUXIONAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}lento$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="Selecione um método para capturar o handshake"
|
||||
FLUXIONHashSourcePathOption="Caminho para captura do arquivo"
|
||||
FLUXIONHashSourceRescanOption="Diretório do handshake"
|
||||
FLUXIONFoundHashNotice="Um handshake para o AP alvo foi encontrado."
|
||||
FLUXIONUseFoundHashQuery="Gostaria de usar esse arquivo?"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="Selecione um método de verificação para a hash"
|
||||
FLUXIONHashVerificationMethodPyritOption="pyrit verification (${CGrn}recomendada$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="aircrack-ng verification (${CYel}não confiável$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="Selecione uma rede sem fio para atacar"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FLUXIONAttack$CClr ataque em progresso..."
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr ataque em progresso..."
|
||||
FLUXIONSelectAnotherAttackOption="Selecione outro ataque"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}Voltar"
|
||||
FLUXIONGeneralExitOption="${CRed}Sair"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repetir"
|
||||
|
|
|
@ -3,35 +3,45 @@
|
|||
# native: Română
|
||||
|
||||
FLUXIONInterfaceQuery="Selecteaza o interfata"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Unblocking all wireless interfaces..."
|
||||
FLUXIONFindingExtraWINotice="Looking for extraneous wireless interfaces..."
|
||||
#FLUXIONFindingExtraWINotice="Looking for extraneous wireless interfaces..."
|
||||
FLUXIONRemovingExtraWINotice="Removing extraneous wireless interfaces..."
|
||||
FLUXIONFindingWINotice="Looking for available wireless interfaces..."
|
||||
FLUXIONSelectedBusyWIError="The wireless interface selected appears to be currently in use!"
|
||||
FLUXIONSelectedBusyWITip="Run \"export FLUXIONWIKillProcesses=1\" before FLUXION to use it."
|
||||
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}."
|
||||
FLUXIONGatheringWIInfoNotice="Gathering interface information..."
|
||||
FLUXIONUnknownWIDriverError="Unable to determine interface driver!"
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to load..."
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$interface\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$interface\" to load..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Looking for notorious services..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Killing notorious services..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Unable to determine interface's physical device!"
|
||||
FLUXIONStartingWIMonitorNotice="Starting monitor interface..."
|
||||
FLUXIONMonitorModeWIEnabledNotice="${CGrn}Interface monitor mode enabled."
|
||||
FLUXIONMonitorModeWIFailedError="${CRed}Interface monitor mode failed!"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Starting scanner, please wait..."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Synthesizing scan results, please wait..."
|
||||
FLUXIONScannerFailedNotice="Wireless card may not be supported (no APs found)"
|
||||
FLUXIONScannerDetectedNothingNotice="No access points were detected, returning..."
|
||||
FluxionRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashFileDoesNotExistError="Hash file does not exist!"
|
||||
FLUXIONHashInvalidError="${CRed}Error$CClr, invalid hash file!"
|
||||
FLUXIONHashValidNotice="${CGrn}Success$CClr, hash verification completed!"
|
||||
FLUXIONPathToHandshakeFileQuery="Enter path to handshake file $CClr(Example: /.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="Absolute path"
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="Selecteaza canalul"
|
||||
FLUXIONScannerChannelOptionAll="Toate canalele "
|
||||
|
@ -42,26 +52,29 @@ FLUXIONScannerChannelMiltipleTip="Canale multiple"
|
|||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="FLUXION Scanner"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAPServiceQuery="Selecteaza optiunea de atac"
|
||||
FLUXIONAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}Recomandat$CClr)"
|
||||
FLUXIONAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}Conexiune mai lenta$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="Select a method to retrieve the handshake"
|
||||
FLUXIONHashSourcePathOption="Path to capture file"
|
||||
FLUXIONHashSourceRescanOption="Handshake directory (rescan)"
|
||||
FLUXIONFoundHashNotice="A hash for the target AP was found."
|
||||
FLUXIONUseFoundHashQuery="Do you want to use this file?"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="Select a method of verification for the hash"
|
||||
FLUXIONHashVerificationMethodPyritOption="pyrit verification (${CGrn}recommended$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="aircrack-ng verification (${CYel}unreliable$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="Selecteaza optiunea ta"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FLUXIONAttack$CClr attack in progress..."
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr attack in progress..."
|
||||
FLUXIONSelectAnotherAttackOption="Select another attack"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}Inapoi"
|
||||
FLUXIONGeneralExitOption="${CRed}Exit"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat operation"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat"
|
||||
FLUXIONGeneralNotFoundError="Nu a fost gasit"
|
||||
FLUXIONGeneralXTermFailureError="${CRed}Failed to start xterm session (possible misconfiguration)."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
|
|
@ -5,11 +5,10 @@
|
|||
FLUXIONInterfaceQuery="Выберите беспроводной интерфейс"
|
||||
FLUXIONAllocatingInterfaceNotice="Выделение зарезервированного интерфейса $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Перераспределение зарезервированного интерфейса $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Успешное распределение интерфейса!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Не удалось выполнить резервирование интерфейса!"
|
||||
FLUXIONReidentifyingInterface="Переименование интерфейса."
|
||||
FLUXIONUnblockingWINotice="Разблокирование всех беспроводных интерфейсов."
|
||||
|
||||
FLUXIONTargetTrackerInterfaceQuery="Выберите интерфейс для отслеживания целей."
|
||||
|
||||
#FLUXIONFindingExtraWINotice="Поиск посторонних беспроводных интерфейсов..."
|
||||
FLUXIONRemovingExtraWINotice="Удаление посторонних беспроводных интерфейсов..."
|
||||
FLUXIONFindingWINotice="Поиск доступных беспроводных интерфейсов..."
|
||||
|
@ -23,19 +22,15 @@ FLUXIONFindingConflictingProcessesNotice="Поиск конфликтующих
|
|||
FLUXIONKillingConflictingProcessesNotice="Остановка конфликтующих служб..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Невозможно определить физическое устройство интерфейса!"
|
||||
FLUXIONStartingWIMonitorNotice="Запуск интерфейса монитора..."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Успешное распределение интерфейса!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Не удалось выполнить резервирование интерфейса!"
|
||||
|
||||
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Выберите интерфейс для отслеживания целей."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Отсутствует информация об essid, bssid или канале!"
|
||||
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion нацелен на вышеприведённую точку доступа."
|
||||
|
||||
FLUXIONContinueWithTargetQuery="Продолжить с этой целью?"
|
||||
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Запуск сканера, пожалуйста, подождите..."
|
||||
FLUXIONStartingScannerTip="Через пять секунд после появления целевой точки ТД закройте сканер FLUXION."
|
||||
FLUXIONStartingScannerTip="Через пять секунд после появления целевой точки ТД закройте сканер FLUXION (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Подготовка результатов сканирования, пожалуйста, ожидайте..."
|
||||
FLUXIONScannerFailedNotice="Возможно, беспроводная карта не поддерживается (точки доступа не найдены)"
|
||||
FLUXIONScannerDetectedNothingNotice="Точки доступа не обнаружены, возвращаемся назад..."
|
||||
|
@ -71,12 +66,15 @@ FLUXIONHashVerificationMethodAircrackOption="проверка с помощью
|
|||
FLUXIONAttackQuery="Выбор беспроводной атаки для точки доступа"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr идёт атака..."
|
||||
FLUXIONSelectAnotherAttackOption="Выбор другой атаки"
|
||||
FluxionRestartOption="Перезапуск"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Перезапуск"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Пропустить"
|
||||
FLUXIONGeneralBackOption="${CRed}Назад"
|
||||
FLUXIONGeneralExitOption="${CRed}Выход"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Повторить"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat"
|
||||
FLUXIONGeneralNotFoundError="Не найдено"
|
||||
FLUXIONGeneralXTermFailureError="${CRed}Не удалось запустить xterm (возможно неправильная настройка, безголовая машина)."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
|
|
@ -3,35 +3,45 @@
|
|||
# native: slovenčina
|
||||
|
||||
FLUXIONInterfaceQuery="Vyberte bezdrôtový adaptér"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Odblokúvam všetky bezdrôtové adaptéry..."
|
||||
FLUXIONFindingExtraWINotice="Hľadám prídavné bezdrôtové adaptéry..."
|
||||
#FLUXIONFindingExtraWINotice="Hľadám prídavné bezdrôtové adaptéry..."
|
||||
FLUXIONRemovingExtraWINotice="Odstraňujem prídavné bezdrôtové adaptéry..."
|
||||
FLUXIONFindingWINotice="Hľadám dostupné bezdrôtové adaptéry..."
|
||||
FLUXIONSelectedBusyWIError="Vybraný bezdrôtový adaptér sa pravdepodobne používa!"
|
||||
FLUXIONSelectedBusyWITip="Pred spustením FLUXION spustite \"export FLUXIONWIKillProcesses=1\" aby to bolo možné použiť."
|
||||
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}."
|
||||
FLUXIONGatheringWIInfoNotice="Zhromažďujem informácie o adaptéri..."
|
||||
FLUXIONUnknownWIDriverError="Nepodarilo sa zistiť driver adaptéru!"
|
||||
FLUXIONUnloadingWIDriverNotice="Čakám na uvolnenie adaptéru \"\$wiSelected\" ..."
|
||||
FLUXIONLoadingWIDriverNotice="Čakám na pripravenie adaptéru \"\$wiSelected\" ..."
|
||||
FLUXIONUnloadingWIDriverNotice="Čakám na uvolnenie adaptéru \"\$interface\" ..."
|
||||
FLUXIONLoadingWIDriverNotice="Čakám na pripravenie adaptéru \"\$interface\" ..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Hľadám známe služby..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Zastavujem známe služby..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Nedokážem zistiť fyzické zariadenie adaptéru!"
|
||||
FLUXIONStartingWIMonitorNotice="Štartujem monitorovací adaptér..."
|
||||
FLUXIONMonitorModeWIEnabledNotice="${CGrn}Monitorovací mód adaptéru aktivovaný."
|
||||
FLUXIONMonitorModeWIFailedError="${CRed}Monitorovací mód adaptéru zlyhal!"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Štartujem scanner, čakajte..."
|
||||
FLUXIONStartingScannerTip="Päť sekúnd po objavení sa cieľového AP, zavrite FLUXION Scanner."
|
||||
FLUXIONStartingScannerTip="Päť sekúnd po objavení sa cieľového AP, zavrite FLUXION Scanner (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Výsledky scanu sa pripravujú, čakajte..."
|
||||
FLUXIONScannerFailedNotice="Bezdrôtová sieťová karta nemusí byť podporovaná (nenašli sa žiadne AP)"
|
||||
FLUXIONScannerDetectedNothingNotice="Žiadne prístupové body neboli najdené, vraciam sa..."
|
||||
FluxionRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashFileDoesNotExistError="Súbor 'hash' neexistuje!"
|
||||
FLUXIONHashInvalidError="${CRed}Error$CClr, nesprávny 'hash' súbor!"
|
||||
FLUXIONHashValidNotice="${CGrn}Success$CClr, 'hash' overenie úspešné!"
|
||||
FLUXIONPathToHandshakeFileQuery="Zadajte cestu k 'handshake' súboru $CClr(Príklad: /.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="Absolúna cesta"
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="Vyberte kanál, ktorý chcete monitorovať"
|
||||
FLUXIONScannerChannelOptionAll="Všetky kanály"
|
||||
|
@ -42,26 +52,29 @@ FLUXIONScannerChannelMiltipleTip="Viecero kanálov"
|
|||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="FLUXION Scanner"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAPServiceQuery="Vyberte spôsob útoku"
|
||||
FLUXIONAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}Odporúčané$CClr)"
|
||||
FLUXIONAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}pomalšie$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="Vyberte spôsob získania 'handshake'"
|
||||
FLUXIONHashSourcePathOption="Cesta ku 'capture' súboru"
|
||||
FLUXIONHashSourceRescanOption="Priečinok s 'handshake' (preskenovať)"
|
||||
FLUXIONFoundHashNotice="Našiel sa 'hash' pre vybrané AP."
|
||||
FLUXIONUseFoundHashQuery="Chcete použiť tento súbor?"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="Vyberte spôsob overenia pre 'hash'"
|
||||
FLUXIONHashVerificationMethodPyritOption="pyrit verification (${CGrn}Odporúčané$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="aircrack-ng verification (${CYel}nespoľahlivé$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="Vyberte spôsob útoku pre prístupový bod"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FLUXIONAttack$CClr prebieha útok..."
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr prebieha útok..."
|
||||
FLUXIONSelectAnotherAttackOption="Vyberte iný útok"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}Späť"
|
||||
FLUXIONGeneralExitOption="${CRed}Exit"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Opakovať"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat"
|
||||
FLUXIONGeneralNotFoundError="Nenájdené"
|
||||
FLUXIONGeneralXTermFailureError="${CRed}Nepodarilo sa spustiť 'xterm session' (možná nesprávna konfigurácia)."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
|
|
@ -3,35 +3,45 @@
|
|||
# native: Slovenščina
|
||||
|
||||
FLUXIONInterfaceQuery="Izberite vmesnik"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Unblocking all wireless interfaces..."
|
||||
FLUXIONFindingExtraWINotice="Looking for extraneous wireless interfaces..."
|
||||
#FLUXIONFindingExtraWINotice="Looking for extraneous wireless interfaces..."
|
||||
FLUXIONRemovingExtraWINotice="Removing extraneous wireless interfaces..."
|
||||
FLUXIONFindingWINotice="Looking for available wireless interfaces..."
|
||||
FLUXIONSelectedBusyWIError="The wireless interface selected appears to be currently in use!"
|
||||
FLUXIONSelectedBusyWITip="Run \"export FLUXIONWIKillProcesses=1\" before FLUXION to use it."
|
||||
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}."
|
||||
FLUXIONGatheringWIInfoNotice="Gathering interface information..."
|
||||
FLUXIONUnknownWIDriverError="Unable to determine interface driver!"
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to load..."
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$interface\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$interface\" to load..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Looking for notorious services..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Killing notorious services..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Unable to determine interface's physical device!"
|
||||
FLUXIONStartingWIMonitorNotice="Starting monitor interface..."
|
||||
FLUXIONMonitorModeWIEnabledNotice="${CGrn}Interface monitor mode enabled."
|
||||
FLUXIONMonitorModeWIFailedError="${CRed}Interface monitor mode failed!"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Starting scanner, please wait..."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Synthesizing scan results, please wait..."
|
||||
FLUXIONScannerFailedNotice="Wireless card may not be supported (no APs found)"
|
||||
FLUXIONScannerDetectedNothingNotice="No access points were detected, returning..."
|
||||
FluxionRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashFileDoesNotExistError="Hash file does not exist!"
|
||||
FLUXIONHashInvalidError="${CRed}Error$CClr, invalid hash file!"
|
||||
FLUXIONHashValidNotice="${CGrn}Success$CClr, hash verification completed!"
|
||||
FLUXIONPathToHandshakeFileQuery="Enter path to handshake file $CClr(Example: /.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="Absolute path"
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="Izberite kanal"
|
||||
FLUXIONScannerChannelOptionAll="Vsi kanali "
|
||||
|
@ -42,26 +52,29 @@ FLUXIONScannerChannelMiltipleTip="Več kanalov"
|
|||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="WIFI Nadzor"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAPServiceQuery="Izberite način napada"
|
||||
FLUXIONAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}Priporočeno$CClr)"
|
||||
FLUXIONAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}Počasnejša povezava$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="Select a method to retrieve the handshake"
|
||||
FLUXIONHashSourcePathOption="Path to capture file"
|
||||
FLUXIONHashSourceRescanOption="Handshake directory (rescan)"
|
||||
FLUXIONFoundHashNotice="A hash for the target AP was found."
|
||||
FLUXIONUseFoundHashQuery="Do you want to use this file?"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="Select a method of verification for the hash"
|
||||
FLUXIONHashVerificationMethodPyritOption="pyrit verification (${CGrn}recommended$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="aircrack-ng verification (${CYel}unreliable$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="Izberi možnost"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FLUXIONAttack$CClr attack in progress..."
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr attack in progress..."
|
||||
FLUXIONSelectAnotherAttackOption="Select another attack"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}Nazaj"
|
||||
FLUXIONGeneralExitOption="${CRed}Exit"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat operation"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat"
|
||||
FLUXIONGeneralNotFoundError="Ni_najdeno"
|
||||
FLUXIONGeneralXTermFailureError="${CRed}Failed to start xterm session (possible misconfiguration)."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
|
|
@ -3,35 +3,45 @@
|
|||
# native: Türk
|
||||
|
||||
FLUXIONInterfaceQuery="Bir Ag Secin"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="Unblocking all wireless interfaces..."
|
||||
FLUXIONFindingExtraWINotice="Looking for extraneous wireless interfaces..."
|
||||
#FLUXIONFindingExtraWINotice="Looking for extraneous wireless interfaces..."
|
||||
FLUXIONRemovingExtraWINotice="Removing extraneous wireless interfaces..."
|
||||
FLUXIONFindingWINotice="Looking for available wireless interfaces..."
|
||||
FLUXIONSelectedBusyWIError="The wireless interface selected appears to be currently in use!"
|
||||
FLUXIONSelectedBusyWITip="Run \"export FLUXIONWIKillProcesses=1\" before FLUXION to use it."
|
||||
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}."
|
||||
FLUXIONGatheringWIInfoNotice="Gathering interface information..."
|
||||
FLUXIONUnknownWIDriverError="Unable to determine interface driver!"
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to load..."
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$interface\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$interface\" to load..."
|
||||
FLUXIONFindingConflictingProcessesNotice="Looking for notorious services..."
|
||||
FLUXIONKillingConflictingProcessesNotice="Killing notorious services..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Unable to determine interface's physical device!"
|
||||
FLUXIONStartingWIMonitorNotice="Starting monitor interface..."
|
||||
FLUXIONMonitorModeWIEnabledNotice="${CGrn}Interface monitor mode enabled."
|
||||
FLUXIONMonitorModeWIFailedError="${CRed}Interface monitor mode failed!"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="Starting scanner, please wait..."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner."
|
||||
FLUXIONStartingScannerTip="Five seconds after the target AP appears, close the FLUXION Scanner (ctrl+c)."
|
||||
FLUXIONPreparingScannerResultsNotice="Synthesizing scan results, please wait..."
|
||||
FLUXIONScannerFailedNotice="Wireless card may not be supported (no APs found)"
|
||||
FLUXIONScannerDetectedNothingNotice="No access points were detected, returning..."
|
||||
FluxionRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashFileDoesNotExistError="Hash file does not exist!"
|
||||
FLUXIONHashInvalidError="${CRed}Error$CClr, invalid hash file!"
|
||||
FLUXIONHashValidNotice="${CGrn}Success$CClr, hash verification completed!"
|
||||
FLUXIONPathToHandshakeFileQuery="Enter path to handshake file $CClr(Example: /.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="Absolute path"
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="Kanal Sec"
|
||||
FLUXIONScannerChannelOptionAll="Tum Kanallar "
|
||||
|
@ -42,26 +52,29 @@ FLUXIONScannerChannelMiltipleTip="Coklu Kanal"
|
|||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="Wifi Goruntule"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAPServiceQuery="Saldiri Tipi Secin"
|
||||
FLUXIONAPServiceHostapdOption="SahteAP - hostapd (${CGrn}Tavsiye Edilen$CClr)"
|
||||
FLUXIONAPServiceAirbaseOption="SahteAP - airbase-ng (${CYel}Yavas Baglanti$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="Select a method to retrieve the handshake"
|
||||
FLUXIONHashSourcePathOption="Path to capture file"
|
||||
FLUXIONHashSourceRescanOption="Handshake directory (rescan)"
|
||||
FLUXIONFoundHashNotice="A hash for the target AP was found."
|
||||
FLUXIONUseFoundHashQuery="Do you want to use this file?"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="Select a method of verification for the hash"
|
||||
FLUXIONHashVerificationMethodPyritOption="pyrit verification (${CGrn}recommended$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="aircrack-ng verification (${CYel}unreliable$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="Secenegi Sec"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FLUXIONAttack$CClr attack in progress..."
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr attack in progress..."
|
||||
FLUXIONSelectAnotherAttackOption="Select another attack"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}Geri"
|
||||
FLUXIONGeneralExitOption="${CRed}Exit"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat operation"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat"
|
||||
FLUXIONGeneralNotFoundError="Bulunamadi"
|
||||
FLUXIONGeneralXTermFailureError="${CRed}Failed to start xterm session (possible misconfiguration)."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
|
|
@ -3,35 +3,45 @@
|
|||
# native: 中文
|
||||
|
||||
FLUXIONInterfaceQuery="请选择你要调用的网卡设备"
|
||||
FLUXIONAllocatingInterfaceNotice="Allocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONDeallocatingInterfaceNotice="Deallocating reserved interface $CGrn\"\$interfaceIdentifier\"."
|
||||
FLUXIONInterfaceAllocatedNotice="${CGrn}Interface allocation succeeded!"
|
||||
FLUXIONInterfaceAllocationFailedError="${CRed}Interface reservation failed!"
|
||||
FLUXIONReidentifyingInterface="Renaming interface."
|
||||
FLUXIONUnblockingWINotice="解除所有占用无线接口设备的进程..."
|
||||
FLUXIONFindingExtraWINotice="查询USB外部网卡接口设备..."
|
||||
#FLUXIONFindingExtraWINotice="查询USB外部网卡接口设备..."
|
||||
FLUXIONRemovingExtraWINotice="正在移除USB外部网卡接口设备..."
|
||||
FLUXIONFindingWINotice="寻找可用的USB外部网卡接口设备..."
|
||||
FLUXIONSelectedBusyWIError="选择的USB外部网卡接口设备正在被调用!"
|
||||
FLUXIONSelectedBusyWITip="Run \"export FLUXIONWIKillProcesses=1\" before FLUXION to use it."
|
||||
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}."
|
||||
FLUXIONGatheringWIInfoNotice="采集接口信息..."
|
||||
FLUXIONUnknownWIDriverError="找不到网卡设备"
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$wiSelected\" to load..."
|
||||
FLUXIONUnloadingWIDriverNotice="Waiting for interface \"\$interface\" to unload..."
|
||||
FLUXIONLoadingWIDriverNotice="Waiting for interface \"\$interface\" to load..."
|
||||
FLUXIONFindingConflictingProcessesNotice="自动查询干扰Fluxion运行的进程..."
|
||||
FLUXIONKillingConflictingProcessesNotice="结束干扰Fluxion运行的进程..."
|
||||
FLUXIONPhysicalWIDeviceUnknownError="${CRed}Unable to determine interface's physical device!"
|
||||
FLUXIONStartingWIMonitorNotice="启动监听模式..."
|
||||
FLUXIONMonitorModeWIEnabledNotice="${CGrn}监听模式启动成功"
|
||||
FLUXIONMonitorModeWIFailedError="${CRed}监听模式启动失败"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONTargetSearchingInterfaceQuery="Select a wireless interface for target searching."
|
||||
FLUXIONTargetTrackerInterfaceQuery="Select an interface for target tracking."
|
||||
FLUXIONIncompleteTargettingInfoNotice="Missing ESSID, BSSID, or channel information!"
|
||||
FLUXIONTargettingAccessPointAboveNotice="Fluxion is targetting the access point above."
|
||||
FLUXIONContinueWithTargetQuery="Continue with this target?"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONStartingScannerNotice="启动扫描, 请稍等..."
|
||||
FLUXIONStartingScannerTip="目标AP出现后,按 Ctrl+C 关闭FLUXION扫描"
|
||||
FLUXIONPreparingScannerResultsNotice="综合扫描的结果获取中,请稍等..."
|
||||
FLUXIONScannerFailedNotice="你的无线网卡好像不支持 (没有发现APs)"
|
||||
FLUXIONScannerDetectedNothingNotice="没有发现访问点, 请返回重试..."
|
||||
FluxionRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashFileDoesNotExistError="Hash文件不存在!"
|
||||
FLUXIONHashInvalidError="${CRed}错误$CClr, 无效的Hash文件!"
|
||||
FLUXIONHashValidNotice="${CGrn}成功$CClr, Hash效验完成!"
|
||||
FLUXIONPathToHandshakeFileQuery="指定捕获到的握手包存放的路径 $CClr(例如: /.../dump-01.cap)"
|
||||
FLUXIONPathToHandshakeFileReturnTip="To go back, leave the hash path blank."
|
||||
FLUXIONAbsolutePathInfo="捕获到握手包后存放的绝对路径"
|
||||
FLUXIONEmptyOrNonExistentHashError="${CRed}Error$CClr, path points to non-existing or empty hash file."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerChannelQuery="选择要扫描的信道"
|
||||
FLUXIONScannerChannelOptionAll="扫描所有信道 "
|
||||
|
@ -42,26 +52,29 @@ FLUXIONScannerChannelMiltipleTip="多个信道"
|
|||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONScannerHeader="FLUXION 扫描仪"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAPServiceQuery="选择攻击方式"
|
||||
FLUXIONAPServiceHostapdOption="钓鱼热点破解 - hostapd (${CGrn}推荐用这个$CClr)"
|
||||
FLUXIONAPServiceAirbaseOption="钓鱼热点破解 - airbase-ng (${CYel}缓慢$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONHashSourceQuery="选择一种方式来检查握手包获取状态"
|
||||
FLUXIONHashSourcePathOption="检测文件的路径"
|
||||
FLUXIONHashSourceRescanOption="握手包目录(重新扫描)"
|
||||
FLUXIONFoundHashNotice="发现目标热点的Hash文件."
|
||||
FLUXIONUseFoundHashQuery="你想要使用这个文件吗?"
|
||||
FLUXIONUseFoundHashOption="Use hash found"
|
||||
FLUXIONSpecifyHashPathOption="Specify path to hash"
|
||||
FLUXIONHashVerificationMethodQuery="选择Hash的验证方法"
|
||||
FLUXIONHashVerificationMethodPyritOption="验证码 (${CGrn}推荐用这个$CClr)"
|
||||
FLUXIONHashVerificationMethodAircrackOption="aircrack-ng 验证 (${CYel}不推荐$CClr)"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONAttackQuery="请选择一个攻击方式"
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FLUXIONAttack$CClr attack in progress..."
|
||||
FLUXIONAttackInProgressNotice="${CCyn}\$FluxionAttack$CClr attack in progress..."
|
||||
FLUXIONSelectAnotherAttackOption="选择启动攻击方式"
|
||||
FLUXIONAttackResumeQuery="This attack has already been configured."
|
||||
FLUXIONAttackRestoreOption="Restore attack"
|
||||
FLUXIONAttackResetOption="Reset attack"
|
||||
FLUXIONAttackRestartOption="Restart"
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
FLUXIONGeneralSkipOption="${CYel}Skip"
|
||||
FLUXIONGeneralBackOption="${CRed}返回"
|
||||
FLUXIONGeneralExitOption="${CRed}退出"
|
||||
FLUXIONGeneralRepeatOption="${CRed}重复操作"
|
||||
FLUXIONGeneralRepeatOption="${CRed}Repeat"
|
||||
FLUXIONGeneralNotFoundError="未找到"
|
||||
FLUXIONGeneralXTermFailureError="${CRed}Failed to start xterm session (possible misconfiguration)."
|
||||
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
||||
|
|
Loading…
Reference in New Issue